Retrieves the complete details of a support case including all public messages and reference information.
Returns the full case object with:
- Case metadata (id, type, subType, status, timestamps)
- Profile and external reference information
- All public messages associated with the case
Messages in the response can have three different content structures:
Attributes Content (REQUEST messages) Present in messages like
DEPOSIT_SANCTION_HIT_REQUEST,REFERENCE_SANCTION_HIT_REQUEST, etc. Contains dynamic attributes that define what information is required.Submission Data Content (SUBMISSION messages) Present in messages like
DEPOSIT_SANCTION_HIT_SUBMISSION,REFERENCE_LOCATION_HIT_SUBMISSION, etc. Contains the data submitted by the partner in response to a request.Text Content (FREEFORM messages) Present in
FREEFORMmessages. Contains free text conversation between partners and Wise.
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
- Production Environmenthttps://api.wise.com/2026Q3/cases/{caseId}
- Sandbox Environmenthttps://api.wise-sandbox.com/2026Q3/cases/{caseId}
curl -X GET \
'https://api.sandbox.wise.com/2026Q3/cases/{caseId}' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <token>'Case details retrieved successfully
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
The type of the support case.
The sub-type of the support case.
The current status of the support case.
Partner-created identifier for this case, if applicable.
Timestamp when the case was created. Format: ISO 8601 datetime without timezone (YYYY-MM-DDTHH:mm:ss.SSS).
Timestamp when the case was last updated. Format: ISO 8601 datetime without timezone (YYYY-MM-DDTHH:mm:ss.SSS).
- REFERENCE_SANCTION_HIT - Resolved case
- DEPOSIT_SANCTION_HIT - Complete message journey
- RECIPIENT_SANCTION_HIT - Complete message journey
- REFERENCE_SANCTION_HIT - Vessel submission
- REFERENCE_LOCATION_HIT - Complete message journey
- RECIPIENT_LOCATION_HIT - Complete message journey
{ "id": 485, "profileId": 220002553, "type": "SANCTIONS", "subType": "REFERENCE_SANCTION_HIT", "status": "RESOLVED", "externalId": null, "createdAt": "2026-07-29T16:06:06.003", "updatedAt": "2026-07-29T16:09:32.998", "reference": { "type": "TRANSFER", "referenceId": "2147513101" }, "messages": [ { "id": "67631430-77fd-4bbb-a8e0-fdfa67563d66", "caseId": 485, "createdAt": "2026-07-29T16:06:06.014", "content": { … }, "type": "REFERENCE_SANCTION_HIT_REQUEST", "author": "WISE_SYSTEM" }, { "id": "8c08894d-1e62-45c4-8332-cd1565916273", "caseId": 485, "createdAt": "2026-07-29T16:08:14.308", "content": { … }, "type": "REFERENCE_SANCTION_HIT_SUBMISSION", "author": "PARTNER" } ] }