View Ssp settings
View Ssp settings
GET
https://api.ocamba.com/v2/adex/ssp/settings
Display SSP (Supply Side Platform) Settings
Response schemas
›
200
application/json
GET https://api.ocamba.com/v2/adex/ssp/settings HTTP/1.1
Host: api.ocamba.com
Authorization: Bearer YOUR_SECRET_TOKEN
curl -X GET "https://api.ocamba.com/v2/adex/ssp/settings" \
-H "Authorization: Bearer $TOKEN"
fetch("https://api.ocamba.com/v2/adex/ssp/settings", {
method: "GET",
headers: { Authorization: `Bearer ${TOKEN}` }
}).then(r => r.json());
$ch = curl_init("https://api.ocamba.com/v2/adex/ssp/settings");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Authorization: Bearer $token"
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
Responses
200 OK
HTTP/1.1 200 OK
Content-Type: application/json
{
"general": {
"domain": "example.com",
"automatic_approval": {
"advertiser": true,
"publisher": true
}
},
"appearance": {
"logo": "https://dev-example.com/path/to/logo.jpg",
"theme": [
null
],
"home_page": {
"background_image": "https://dev-example.com/path/to/logo.jpg",
"form_image": "https://dev-example.com/path/to/logo.jpg"
}
},
"notifications": {
"recipients": [
null
],
"verify": {
"sender": "[email protected]",
"subject": "subject example",
"data": {
"logo": "https://dev-example.com/path/to/logo.jpg",
"support_email": "[email protected]",
"signature": "Best regards, Example Team"
}
},
"welcome": {
"sender": "[email protected]",
"subject": "subject example",
"data": {
"logo": "https://dev-example.com/path/to/logo.jpg",
"support_email": "[email protected]",
"ssp_name": "Example Team",
"signature": "Best regards, Example Team"
}
}
}
}
Responses