Response to web API requests: 404: Not found

VARIATION_DOES_NOT_EXIST_ERROR

Yêu cầu thất bại vì không tìm thấy variation_ID cho paywall được yêu cầu. Hãy kiểm tra xem placement_id bạn đang yêu cầu có tồn tại trong ứng dụng không và không có lỗi đánh máy nào trong yêu cầu của bạn.

Body

Tham sốKiểuMô tả
errorsObject
  • source: (string) Luôn là bull.
  • errors: Mô tả lỗi.
error_codeStringTên lỗi rút gọn. Giá trị có thể có: VARIATION_DOES_NOT_EXIST_ERROR.
status_codeIntegerHTTP status. Luôn là 404.

Ví dụ response

{
    "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

Yêu cầu thất bại vì không tìm thấy hồ sơ người dùng được chỉ định. Hãy kiểm tra lại `customer_user_id` hoặc `profile_id` xem có lỗi đánh máy không.
Body
Tham sốKiểuMô tả
errorsObject
  • source: (string) Luôn là null.
  • errors: Mô tả lỗi.
error_codeStringTên lỗi ngắn gọn. Luôn là profile_does_not_exist.
status_codeIntegerHTTP status. Luôn là 404.
Ví dụ response
{
    "errors": [
        {
            "source": null,
            "errors": [
                "Profile not found"
            ]
        }
    ],
    "error_code": "profile_does_not_exist",
    "status_code": 404
}