v5
latestOpenAPI 3.1.02026-07-262421791.5 MBcase
Create a partner case
Cases are used to collect or transmit additional information between Partners and Wise. Use this endpoint to create a new case.
{% admonition type="warning" %} 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. {% /admonition %}
post/v1/cases
Headers
X-External-Correlation-Idstring uuid
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Request body
Example request
{
"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"
}Response
Created partner case.
Example response
{
"id": 123456789,
"status": "PENDING",
"type": "GENERAL_ENQUIRY",
"externalId": "partner_12344567",
"createdAt": "2023-06-28T15:21:24.901",
"updatedAt": "2023-06-28T15:21:24.901"
}