Ad Serving
This page contains a documentation for each API related to Ad Serving
List Ad Networks for Ad Serving
If you want to list Ad Networks for Ad Serving, please refer to this page
Enable Ad Tag
This endpoint requests an HTTP POST to enable Ad Tag for a specific design
Request
Method:
POST
Endpoint:
https://api.creatopy.com/v1/adServing/{{design_hash}}
Response
Upon a successful execution, the response will have a status code of 200 and a JSON content type. The response body will contain the following structure:
JSON
Notes
You need to provide a valid design hash to this API in order to enable its Ad Tag.
We only support Ad Tag for designs not templates.
You can't enable Ad Tag for a design that has already enabled. In this case, an error will be thrown.
Disable Ad Tag
This endpoint requests an HTTP DELETE to disable Ad Tag for a specific design
Request
Method:
DELETE
Endpoint:
https://api.creatopy.com/v1/adServing/{{design_hash}}
Response
Upon a successful execution, the response will have a status code of 200 and a JSON content type. The response body will contain the following structure:
JSON
Notes
You need to provide a valid design hash to this API in order to disable its Ad Tag.
We only support Ad Tag for designs not templates.
You must have an enabled Ad Tag for this design before calling this endpoint, otherwise, an error will be thrown.
Update Ad Tag Settings
This endpoint makes an HTTP POST request to update the settings for an AdTag.
Request
Method:
POST
Endpoint:
https://api.creatopy.com/v1/adServing/{{design_hash}}/update-settings
Request Body
The request body must be sent in JSON format and include the following parameters:
useAsClickTag
Boolean
Enables/disables click tag functionality
url
String
URL associated with the AdTag
target
String
Target window for the AdTag (_blank
, _top
)
responsiveScaling
Boolean
Enables/disables responsive scaling
networkIds
Array of Numbers
List of ad network IDs to associate
Notes
You don't need to pass all the request body's parameters. for example, the following body is valid
Response
Upon a successful execution, the response will have a status code of 200
and a JSON content type. The response body will contain the following structure:
JSON
Response Fields
useAsClickTag
Boolean
Indicates if the click tag is enabled
url
String
The URL configured for the AdTag
target
String
The target window for the AdTag (_blank
, _top
)
responsiveScaling
Boolean
Indicates if responsive scaling is enabled
networkIds
Array of Numbers
List of ad network IDs linked to the AdTag
Generate Ad Tag Code
This endpoint makes an HTTP GET request to generate the embed code for an Ad Tag.
Request
Method:
GET
Endpoint:
https://api.creatopy.com/v1/adServing/{{design_hash}}/generate-code
Response
Upon a successful execution, the response will have a status code of 200
and a JSON content type.
Response Body Example:
Notes:
You may encounter an error if you update the settings and then directly call this endpoint. The error will be like this
In this case, you need to wait a few seconds until all Ad Tags are synced, and then you can generate the Ad Tag code.
Generate Ad Tag File
This endpoint makes an HTTP POST request to generate a file containing AdTag data in either XLSX or CSV format. The response provides a URL to download the generated file.
Request
Method:
POST
Endpoint:
https://api.creatopy.com/v1/adServing/{{design_hash}}/generate-file?format=XLSX
cURL Example (Generating XLSX File):
cURL Example (Generating CSV File):
Response
Upon a successful execution, the response will have a status code of 200
and a JSON content type.
Response Body Example:
Notes:
The file format is determined by the
format
query parameter (XLSX
orCSV
).The
url
returned is a temporary link with a time-limited expiration.The generated file contains Ad Tag data in the specified format.
Last updated