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

İstek başarısız oldu çünkü belirtilen profil bulunamadı. `customer_user_id` veya `profile_id` değerini yazım hatası açısından kontrol edin.
Body
ParametreTürAçıklama
errorsObject
  • source: (string) Her zaman null.
  • errors: Hatanın açıklaması.
error_codeStringKısa hata adı. Her zaman profile_does_not_exist.
status_codeIntegerHTTP durum kodu. Her zaman 404.
Yanıt örneği
{
    "errors": [
        {
            "source": null,
            "errors": [
                "Profile not found"
            ]
        }
    ],
    "error_code": "profile_does_not_exist",
    "status_code": 404
}