cURL
curl --request POST \ --url https://prolinks.pro/api/v1/organizations/{organizationId}/campaign-names \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>" } '
{ "id": 123, "type": "Campaign Name", "attributes": { "name": "<string>" }, "relationships": { "links": [ { "id": 123, "type": "<string>", "attributes": { "organization": "<string>", "domain": "<string>", "slug": "<string>", "url": "<string>", "description": "<string>", "campaign_source": "<string>", "campaign_medium": "<string>", "campaign_name": "<string>", "is_active": 123, "final_url": "<string>" } } ] } }
Creates a new Campaing Name
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of the organization
1
Campaign Name to add
The name
Campaign Name response
The Campaign Name id
Campaign Name
"Campaign Name"
Show child attributes