Campaign templates

The Templates API endpoint retrieves a list of available templates in your Scalemate account.

Endpoint Information

  • URL: https://api.scalemate.co/api/external/templates

  • Method: GET

Headers

Content-Type: application/json
X-Api-Key: <YOUR_API_KEY>

You can generate the API Key at the Settings page under API Key section

Example cURL Request

curl --location 'https://api.scalemate.co/api/external/templates' \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <YOUR_API_KEY>' \

Example Response

{
  "templates": [
    {
      "id": 123,
      "ad_account_id": "12345678901",
      "name": "External Endpoint test"
    }
  ]
}

Last updated