Response to web API requests: 404: Not found
VARIATION_DOES_NOT_EXIST_ERROR
İstenen paywall için variation_ID bulunamadığından istek başarısız oldu. İstediğiniz placement_id’nin uygulamada mevcut olduğunu ve istekte yazım hatası olmadığını kontrol edin.
Gövde
| Parametre | Tür | Açıklama |
|---|---|---|
| errors | Object |
|
| error_code | String | Kısa hata adı. Olası değer: VARIATION_DOES_NOT_EXIST_ERROR. |
| status_code | Integer | HTTP durumu. Her zaman 404. |
Yanıt örneği
{
"errors": [
{
"source": null,
"errors": [
"Variation for example_onboarding does not exist."
]
}
],
"error_code": "VARIATION_DOES_NOT_EXIST_ERROR",
"status_code": 404
}
profile_does_not_exist
İ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
| Parametre | Tür | Açıklama |
|---|---|---|
| errors | Object |
|
| error_code | String | Kısa hata adı. Her zaman profile_does_not_exist. |
| status_code | Integer | HTTP 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
}