GET /experience-connections/{experienceConnectionId}

Get a specific Experience Connection

Retrieve a specific Experience Connection

Authentication

OAuth 2.0. Required scope(s): experience-connections:manage.

Request

Path parameters

Name Type Required Description
experienceConnectionId string yes ID of the Experience Connection

Query parameters

None.

Headers

None.

Responses

200 — Experience Connection retrieved successfully

Content-Type: application/json

Schema: ExperienceConnection

Example:

{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "accountId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "accountName": "Acme Communications",
  "experienceId": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
  "state": "INACTIVE"
}

401 — Unauthorized - Missing or expired access token. Obtain a new token and retry.

Content-Type: application/problem+json

Schema: ProblemDetails

Example:

{
  "title": "Unauthorized",
  "status": 401,
  "detail": "Access token is missing or has expired",
  "traceId": "6d4a3a62-0d4b-4b96-9171-8c5070e01c35"
}

404 — Not Found - Experience Connection does not exist or the authenticated user does not have authorization to access it

Content-Type: application/problem+json

Schema: ProblemDetails

Example:

{
  "title": "Resource Not Found",
  "status": 404,
  "detail": "The requested Experience Connection does not exist",
  "traceId": "6d4a3a62-0d4b-4b96-9171-8c5070e01c35"
}

Errors

This operation may return:

  • 401 — Unauthorized - Missing or expired access token. Obtain a new token and retry.
  • 404 — Not Found - Experience Connection does not exist or the authenticated user does not have authorization to access it

See Errors reference for the full catalogue.