Create a strategy template
Security
Auth0(Required scopes: offline_accessmanage:services)
POST
- GlobalTemplate
- OrganizationLevel
- AgencyLevel
- AdvertiserLevel
curl -i -X POST \
https://api.mediamath.com/api/v3.0/strategy_templates \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"global": true,
"name": "valid strategy template (Global)",
"description": "this is an example of valid strategy template at Global level",
"template": "key: value"
}'Response
{ "data": { "organization_id": 0, "agency_id": 0, "advertiser_id": 0, "global": true, "name": "string", "description": "string", "template": {}, "created_on": "2019-08-24T14:15:22Z", "updated_on": "2019-08-24T14:15:22Z" }, "meta": { "status": "success" } }