Response to server-side API requests: 404: Not found
指定されたプロファイルが見つからなかったため、リクエストが失敗しました。`customer_user_id` または `profile_id` にタイポがないか確認してください。
Body
| パラメーター | タイプ | 説明 |
|---|---|---|
| errors | Object |
|
| error_code | String | エラーの短い名前。常に profile_does_not_exist。 |
| status_code | Integer | HTTP ステータス。常に 404。 |
レスポンス例
{
"errors": [
{
"source": null,
"errors": [
"Profile not found"
]
}
],
"error_code": "profile_does_not_exist",
"status_code": 404
}