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

200
application/json

Successfully retrieved the campaign details.

Represents the response containing details of a campaign.