Response to web API requests: 404: Not found
VARIATION_DOES_NOT_EXIST_ERROR
请求失败,因为找不到所请求付费墙的 variation_ID。请检查您请求中的 placement_id 是否在应用中存在,以及请求中是否有拼写错误。
Body
| 参数 | 类型 | 描述 |
|---|---|---|
| errors | Object |
|
| error_code | String | 简短的错误名称。可能的值:VARIATION_DOES_NOT_EXIST_ERROR。 |
| status_code | Integer | HTTP 状态码。始终为 404。 |
响应示例
{
"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
请求失败,因为找不到指定的用户画像。请仔细检查 `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
}