Skip to main content

Get paywall API request

Receives the paywall from the provided placement.

Method and endpoint

POST https://api.adapty.io/api/v2/web-api/paywall/
curl --location 'https://api.adapty.io/api/v2/web-api/paywall/' \
--header 'Content-Type: application/json' \
--header 'Authorization: Api-Key <YOUR_PUBLIC_API_KEY>' \
--data '{
"store": "app_store",
"locale": "en",
"placement_id": "PaywallPlacementId",
"customer_user_id": "<YOUR_CUSTOMER_USER_ID>"
}'

Parameters

NameTypeRequiredDescription
titleString
use_paywall_builderBoolean
use_paywall_builder_v4Boolean`false is used by default
remote_config_legacyString
screenshot_idInteger
builder_screenshot_idInteger
productsArray of objectsArray of the Product objects containing information about products that can be sold in the paywall.
remote_configsArray of objectsArray of the RemoteConfig objects containing information about remote configs of the paywall.
paywall_builderObject
paywall_builder_v3Object

Responses

200: OK

The successful response will contain the Paywall object.

The object that contains information on a paywall.

Properties

NameTypeRequiredDescription
placement_idStringThe ID of the Placement where this paywall is shown. This value is set when creating a placement in your Adapty Dashboard.
variation_idString(uuid)The variation ID used to track purchases linked to this specific paywall.
paywall_idString(uuid)The unique identifier of the paywall.
ab_test_nameStringThe name of the parent A/B test.
paywall_nameStringThe name of the paywall, as defined in your Adapty Dashboard.
productsArray of objectsArray of Products objects containing product information for the paywall.
remote_configJSONA RemoteConfig object in JSON format containing the full remote config of the paywall.

Example

JSON
{
"placement_id": "PaywallPlacementId",
"variation_id": "00000000-0000-0000-0000-000000000000",
"paywall_id": "InternalPaywallId",
"ab_test_name": "Existing Offer | Improved Offer",
"paywall_name": "Used Paywall",
"products": [
{
"title": "Monthly Subscription w/o Trial",
"is_consumable": true,
"adapty_product_id": "InternalProductId",
"vendor_product_id": "onemonth_no_trial",
"introductory_offer_eligibility": false,
"promotional_offer_eligibility": true,
"base_plan_id": "B1",
"offer": {
"category": "promotional",
"type": "pay_up_front",
"id": "StoreOfferId"
}
}
],
"remote_config": {
"lang": "en",
"data": "RemoteConfigObject"
}
}

400: Bad Request

The response means that either your request is not a valid JSON or some field is missing. Correct the JSON to make it valid and add the missing parameter.

Body

ParameterTypeDescription
errorsObject
  • source: (string) For invalid JSON, it will be null.
  • errors: A description of the error.
error_codeStringShort error name. Here: parse_error.
status_codeIntegerHTTP status. Always 400.

Response example

{
"errors": [
{
"source": null,
"errors": [
"JSON parse error - Expecting ',' delimiter: line 4 column 3 (char 67)"
]
}
],
"error_code": "parse_error",
"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 variation_ID for the requested paywall couldn’t be found. Check that the placement_id you’re requesting exists in the app and that there are no typos in it in your request.

Body

ParameterTypeDescription
errorsObject
  • source: (string) Always bull.
  • errors: A description of the error.
error_codeStringShort error name. Possible value: VARIATION_DOES_NOT_EXIST_ERROR.
status_codeIntegerHTTP status. Always 404.

Response example

{
"errors": [
{
"source": null,
"errors": [
"Variation for example_onboarding does not exist."
]
}
],
"error_code": "VARIATION_DOES_NOT_EXIST_ERROR",
"status_code": 404
}