Get Tracking Domain
HTTP method
Endpoint
GET
/v1/domains
Response body parameters
Field
Type
Description
domain_id
integer
Domain id
tracking_domain
string
the domain to generate offer tracking link and postback
ssl_status
integer
Enable/Disable SSL .</br>1.Enabled: cryptographic protocol is applied</br>2.Disabled: cryptographic protocol is not applied
is_default
integer
Default domain? </br>0 No;</br>1 Yes;
Example request
Request GET https://{networkname}.api.offerslook.com/v1/domains
Example response
{
"code": 0,
"message": "Success",
"data": [
{
"domain_id": 1,
"tracking_domain": "click.dev.offerslook.com:9080",
"ssl_status": 1,
"is_default": 1
},
{
"domain_id": 2,
"tracking_domain": "b.com",
"ssl_status": 0,
"is_default": 0
},
{
"domain_id": 3,
"tracking_domain": "a.com",
"ssl_status": 0,
"is_default": 0
}
]
}
Last updated
Was this helpful?