GET
/
experience-manager
/
campaigns
/
{id}
Retrieve a campaign
curl --request GET \
  --url https://{FUSION HOST}/api/experience-manager/campaigns/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "doc_type": "<string>",
  "effective_range": [
    "<string>"
  ],
  "id": "<string>",
  "name": "<string>",
  "updatedOn": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

Unique identifier of the campaign to retrieve.

Query Parameters

context
string
required

Application context for the campaign request, typically indicating the scope or tenant.

staging
boolean
required

Indicates whether to retrieve the campaign from a staging environment.

Response

Successfully retrieved the campaign details.

Represents the response containing details of a campaign.

doc_type
string

Specifies the document type of the campaign.

effective_range
string[]

The time range during which the campaign is active.

id
string

Unique identifier for the campaign.

name
string

The name of the campaign.

updatedOn
string<date-time>

Timestamp indicating when the campaign was last updated.