Response to server-side API requests: 404: Not found

指定されたプロファイルが見つからなかったため、リクエストが失敗しました。`customer_user_id` または `profile_id` にタイポがないか確認してください。
Body
パラメータータイプ説明
errorsObject
  • source: (string) 常に null
  • errors: エラーの説明。
error_codeStringエラーの短い名前。常に profile_does_not_exist
status_codeIntegerHTTP ステータス。常に 404
レスポンス例
{
    "errors": [
        {
            "source": null,
            "errors": [
                "Profile not found"
            ]
        }
    ],
    "error_code": "profile_does_not_exist",
    "status_code": 404
}