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

Yêu cầu thất bại vì không tìm thấy hồ sơ người dùng được chỉ định. Hãy kiểm tra lại `customer_user_id` hoặc `profile_id` xem có lỗi đánh máy không.
Body
Tham sốKiểuMô tả
errorsObject
  • source: (string) Luôn là null.
  • errors: Mô tả lỗi.
error_codeStringTên lỗi ngắn gọn. Luôn là profile_does_not_exist.
status_codeIntegerHTTP status. Luôn là 404.
Ví dụ response
{
    "errors": [
        {
            "source": null,
            "errors": [
                "Profile not found"
            ]
        }
    ],
    "error_code": "profile_does_not_exist",
    "status_code": 404
}