Skip to main content
cURL
curl --request POST \
  --url https://prolinks.pro/api/v1/organizations/{organizationId}/utm-templates \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "id": 123,
  "type": "<string>",
  "attributes": {
    "name": "<string>",
    "campaign_source_id": 123,
    "campaign_med_id": 123,
    "campaign_name_id": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organizationId
string
required

ID of the organization

Example:

1

Body

application/json

UTM Template to add

name
string
required

The name

Response

200 - application/json

UTM Template response

id
integer

The UTM Template id

type
string

UTM Template

attributes
object