GET https://restapi.actonsoftware.com/api/1/campaigns/{ID}
Parameters
Name | Parameter Type |
Allow Multiple |
Required/ Optional |
Data Type | Description |
---|---|---|---|---|---|
Authorization | Header | False | Required | String (Bearer {access token}) | Pass the authentication token that was granted when you authorized access. |
id | Path | False | Required | String | ID value of the campaign to retrieve. |
Response
{
"id": "0003",
"name": "Example Campaign Name",
"description": "Example Campaign Description",
"assetIds": [
"s-007a-2212"
],
"urls": [],
"creationTimestampEpoch": 1670622123432,
"modifiedTimestampEpoch": 1670622123432
}
Code Examples
cURL
curl -X GET https://restapi.actonsoftware.com/api/1/campaigns/{id} -H "Authorization: Bearer d42baa96-9160-3816-a8d2-ea660cc83ff0"