Cases are part of the Partner Support API, allowing partners to open, retrieve and respond to support and operations queries.
The endpoints described here allow partners to directly integrate their back end tooling with Wise's, allowing faster responses, better structure to data, and operational efficiencies.
The Partner Support APIs are currently in a closed Beta and subject to change. Please speak with your implementation manager if you would like to integrate with these APIs.
Case Statuses
Cases can move through different statuses.
| Status | Transitions to | Description |
|---|---|---|
CREATING | OPEN | Cases being created by Wise from a Partner call. Once created, cases move into the open status. |
OPEN | PENDING, SOLVED, CLOSED | Cases being actioned by Wise. Partners do not need to action these cases. Note that we may update a case in this status and not change it. |
PENDING | OPEN, SOLVED, CLOSED | Cases that require additional information from the partner. You should action these cases by reviewing the newest comment and updating the case. |
SOLVED | OPEN, PENDING, CLOSED | Cases that have been solved and scheduled for closure. These can be re-opened by the partner or Wise if needed before closing. |
CLOSED | — | Cases that have been solved and closed. Once closed, they cannot be reopened and a new case should be created if needed. |
Cases are used to collect or transmit additional information between Partners and Wise. Use this endpoint to create a new case.
Please do not include PII in the subject of a case. Any specific details regarding the case that need to be communicated should be included in the description.
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Type of the case. Value must be GENERAL_ENQUIRY. More case types will be added in the future.
The subject of the case. Do not include PII in the subject of cases.
An ID provided by the external partner for partner internal tracking.
- Production Environmenthttps://api.wise.com/v1/cases
- Sandbox Environmenthttps://api.wise-sandbox.com/v1/cases
curl -i -X POST \
https://api.wise.com/v1/cases \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479' \
-d '{
"type": "GENERAL_ENQUIRY",
"subject": "Inquiry about Transfer 12345",
"details": {
"transferId": 58114690,
"profileId": 14556049,
"userId": 1234
},
"externalId": "partner_external_id_12345",
"description": "Initial summary of the issue"
}'Created case.
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
Type of the case. More case types will be added in the future.
An ID provided by the external partner for partner internal tracking.
{ "id": 123456789, "status": "PENDING", "type": "GENERAL_ENQUIRY", "externalId": "partner_12344567", "createdAt": "2023-06-28T15:21:24.901", "updatedAt": "2023-06-28T15:21:24.901" }