
API
Create User Block
Adscend Offers API Parameters
Your publisher ID pubID
, and API Key api_key
values are needed for every API call.
These values can be found at Offers API section of the publisher dashboard.
If you would like us to notify you whenever an offer is completed (lead generated), set up a server postback.
Create User Block
Using the ids
parameter, you can create user(s) block from your offer wall.
Response 404 is provided when pubID
doesn't exist.
POST:
https://api.adscendmedia.com/v1/publisher/{pubId}/users
Example JSON Body Request:
{ "ids":["698155", "690241", "698151", "698153", "698154"] }
Parameters | Description | Type | |
---|---|---|---|
pubId |
Required | Your publisher ID | Number |
ids |
Required | List of users to create block | Array (String) |
Response 201
Content-Type: application/json
{ "data": { "created_count": 3, "existed_ids": [ "698155", "690241" ], "errors_ids": [] }, "details": { "status": "Created" }, "ok": true, "code": 201 }