Response to server-side API requests: 404: Not found
请求失败,因为未找到指定的用户画像。请仔细检查 `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
}