document_scanner
Ad Tag Tester
CPU/RAM usage, Dimensions, SSL...
document_scanner
HTML5 Ad Validator
Initial Load, Click Tags, Meta ad.size...
document_scanner
Video Validator
MOOV Atoms, Audio Loudness, Bit Rates...
document_scanner
Banner Ad Validator
Dimensions, Aspect ratio, SFW, Creative Border...

Workspaces

Endpoint

get
/v3/workspaces



Query Parameters

folder_id
int
The ID of the folder for which you want to list all workspaces.


Response
200
400
401
429

workspace_id
int
A unique workspace ID.
name
string
The name of the workspace.
folder_id
int
The ID of the folder to which this workspace was added.
share_link
string
The URL to share the workspace with 3rd parties. No login required.
cURL
curl "https://{your_name}.api.advalify.io/v3/workspaces"
  -H "X-ApiKey: TCm2Hd_rT4pRNvSZ2cGYCJ6... (example)"
  -X GET
Example Response
[{
    "workspace_id": 892872389,
    "name": "My workspace",
    "folder_id": 728838992,
    "share_link": "https://share.advalify.io/ca/30d9k-682120816-cb47b148"
},
{
    "workspace_id": 548937770,
    "name": "Another workspace",
    "folder_id": 132992888,
    "share_link": "https://share.advalify.io/ca/30d9k-821620816-7b148cb4"
}]

Endpoint

post
/v3/workspaces



Parameters

folder_id
int, required
The ID of the folder to which you want add the workspace.
name
string, required
The name of the workspace.


Response
200
400
401
429

workspace_id
int
The unique workspace ID.
cURL
curl "https://{your_name}.api.advalify.io/v3/workspaces"
  -H "X-ApiKey: TCm2Hd_rT4pRNvSZ2cGYCJ6... (example)"
  -X POST
  -d '{
    "folder_id": 837193849,
    "name": "New workspace name"
}'
Example Response
{
    "workspace_id": 328083047
}

Endpoint

get
/v3/workspaces/{workspace_id}



Response
200
400
401
429

workspace_id
int
A unique workspace ID.
name
string
The name of the workspace.
folder_id
int
The ID of the folder to which this workspace was added.
share_link
string
The URL to share the workspace with 3rd parties. No login required.
cURL
curl "https://{your_name}.api.advalify.io/v3/workspaces/{workspace_id}"
  -H "X-ApiKey: TCm2Hd_rT4pRNvSZ2cGYCJ6... (example)"
  -X GET
Example Response
{
    "workspace_id": 892872389,
    "name": "My workspace",
    "folder_id": 728838992,
    "share_link": "https://share.advalify.io/ca/30d9k-821620816-7b148cb4"
}

Endpoint

put
/v3/workspaces/{workspace_id}



Parameters

name
string, required
The name of the workspace.


cURL
curl "https://{your_name}.api.advalify.io/v3/workspaces/{workspace_id}"
  -H "X-ApiKey: TCm2Hd_rT4pRNvSZ2cGYCJ6... (example)"
  -X PUT
  -d '{
    "name": "New workspace name"
}'

Endpoint

delete
/v3/workspaces/{workspace_id}
cURL
curl "https://{your_name}.api.advalify.io/v3/workspaces/{workspace_id}"
  -H "X-ApiKey: TCm2Hd_rT4pRNvSZ2cGYCJ6... (example)"
  -X DELETE