GET /experience-assignments/{assignmentId}
Get a specific Experience Assignment
Retrieve details on a specific Experience Assignment
Authentication
OAuth 2.0. Required scope(s): experience-assignments:manage.
Request
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
assignmentId |
string (uuid) | yes | ID of the Experience Assignment |
Query parameters
None.
Headers
None.
Responses
200 — Experience Assignment retrieved successfully
Content-Type: application/json
Schema: ExperienceAssignment
Example:
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"experienceId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"accountId": "d4e5f6a7-b8c9-0123-def0-234567890123",
"targetType": "PHONE_NUMBER",
"targetValue": "+14155551234",
"updatedAt": "2026-05-01T12:00:00Z"
}
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 Assignment does not exist or the authenticated user does not have authorization to access the Experience Assignment
Content-Type: application/problem+json
Schema: ProblemDetails
Example:
{
"title": "Resource Not Found",
"status": 404,
"detail": "The requested Experience Assignment 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 Assignment does not exist or the authenticated user does not have authorization to access the Experience Assignment
See Errors reference for the full catalogue.
Related
- Schema:
ExperienceAssignment - Schema:
ProblemDetails