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

请求失败,因为未找到指定的用户画像。请仔细检查 `customer_user_id` 或 `profile_id` 是否有拼写错误。
Body
参数类型描述
errorsObject
  • source:(字符串)始终为 null
  • errors:错误描述。
error_codeString简短的错误名称。始终为 profile_does_not_exist
status_codeIntegerHTTP 状态码。始终为 404
响应示例
{
    "errors": [
        {
            "source": null,
            "errors": [
                "Profile not found"
            ]
        }
    ],
    "error_code": "profile_does_not_exist",
    "status_code": 404
}