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
- JavaScript
- Ruby
- PHP
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>"
}'
const myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
myHeaders.append("Authorization", "Api-Key <YOUR_PUBLIC_API_KEY>");
const raw = JSON.stringify({
"visited_at": "2024-08-24T14:15:22Z",
"store": "app_store",
"variation_id": "00000000-0000-0000-0000-000000000000",
"customer_user_id": "<YOUR_CUSTOMER_USER_ID>"
});
const requestOptions = {
method: "POST",
headers: myHeaders,
body: raw,
redirect: "follow"
};
fetch("https://api.adapty.io/api/v2/web-api/paywall/visit/", requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));
require "uri"
require "json"
require "net/http"
url = URI("https://api.adapty.io/api/v2/web-api/paywall/visit/")
https = Net::HTTP.new(url.host, url.port)
https.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = "application/json"
request["Authorization"] = "Api-Key <YOUR_PUBLIC_API_KEY>"
request.body = JSON.dump({
"visited_at": "2024-08-24T14:15:22Z",
"store": "app_store",
"variation_id": "00000000-0000-0000-0000-000000000000",
"customer_user_id": "<YOUR_CUSTOMER_USER_ID>"
})
response = https.request(request)
puts response.read_body
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.adapty.io/api/v2/web-api/paywall/visit/',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"visited_at": "2024-08-24T14:15:22Z",
"store": "app_store",
"variation_id": "00000000-0000-0000-0000-000000000000",
"customer_user_id": "<YOUR_CUSTOMER_USER_ID>"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json',
'Authorization: Api-Key <YOUR_PUBLIC_API_KEY>'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Parameters
Name | Type | Required | Description |
---|---|---|---|
customer_user_id | String | ➕* | An identifier of a user in your system. * Either |
profile_id | String | ➕* | An identifier of a user in Adapty. * Either |
visited at | ISO 8601 date | ➖ | The datetime when the user opened the paywall. |
store | String | ➕ | Store where the product was bought. Possible values: app_store, play_store, stripe, or the Store ID of your custom store. |
variation_id | String | ➕ | The 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
Parameter | Type | Description |
---|---|---|
errors | Object |
|
error_code | String | Short error name. Here: base_error . |
status_code | Integer | HTTP 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
Parameter | Type | Description |
---|---|---|
errors | Object |
|
error_code | String | Short error name. Always not_authenticated . |
status_code | Integer | HTTP 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
Parameter | Type | Description |
---|---|---|
errors | Object |
|
error_code | String | Short error name. Always profile_does_not_exist . |
status_code | Integer | HTTP status. Always 404 . |
Response example
{
"errors": [
{
"source": null,
"errors": [
"Profile not found"
]
}
],
"error_code": "profile_does_not_exist",
"status_code": 404
}