Skip to main content

Record paywall view API request

Adapty can help you measure the conversion of your paywalls. However, to do so, it is required for you to log when a paywall gets shown — without that we'd only know about the users who made a purchase and we'd miss those who did not. Use this request to log a paywall view.

Endpoint and method

POST https://api.adapty.io/api/v2/web-api/paywall/visit/
curl --location 'https://api.adapty.io/api/v2/web-api/paywall/visit/' \
--header 'Content-Type: application/json' \
--header 'Authorization: Api-Key <YOUR_PUBLIC_API_KEY>' \
--data '{
"visited_at": "2024-08-24T14:15:22Z",
"store": "app_store",
"variation_id": "00000000-0000-0000-0000-000000000000",
"customer_user_id": "<YOUR_CUSTOMER_USER_ID>"
}'

Parameters

NameTypeRequiredDescription
customer_user_idString*

An identifier of a user in your system.

* Either customer_user_id or profile_id is required.

profile_idString*

An identifier of a user in Adapty.

* Either customer_user_id or profile_id is required.

visited atISO 8601 dateThe datetime when the user opened the paywall.
storeStringStore where the product was bought. Possible values: app_store, play_store, stripe, or the Store ID of your custom store.
variation_idStringThe variation ID used to trace purchases to the specific paywall they were made from.

Responses

201: Created

The paywall view is recorded successfully.

400: Bad Request

The request failed because the format of the visited_at field is incorrect. Use the ISO 8601 date format, e.g. 2025-01-14T14:15:22Z.

Body

ParameterTypeDescription
errorsObject
  • source: (string) Always visited_at.
  • errors: A description of the error.
error_codeStringShort error name. Here: base_error.
status_codeIntegerHTTP status. Always 400.

Response example

{
"errors": [
{
"source": "visited_at",
"errors": [
"invalid datetime format"
]
}
],
"error_code": "datetime",
"status_code": 400
}

401: Unauthorised

The request failed due to missing or incorrect authorization. Check the Authorization page, paying close attention to the Authorization header.

The request also failed because the specified profile wasn’t found.

Body

ParameterTypeDescription
errorsObject
  • source: (string) Always non_field_errors.
  • errors: A description of the error.
error_codeStringShort error name. Always not_authenticated.
status_codeIntegerHTTP status. Always 401.

Response example

{
"errors": [
{
"source": "non_field_errors",
"errors": [
"Authentication credentials were not provided."
]
}
],
"error_code": "not_authenticated",
"status_code": 401
}

404: Not Found

The request failed because the specified profile wasn’t found. Double-check the customer_user_id or profile_id for any typos.

Body
ParameterTypeDescription
errorsObject
  • source: (string) Always null.
  • errors: A description of the error.
error_codeStringShort error name. Always profile_does_not_exist.
status_codeIntegerHTTP status. Always 404.
Response example
{
"errors": [
{
"source": null,
"errors": [
"Profile not found"
]
}
],
"error_code": "profile_does_not_exist",
"status_code": 404
}