Create Support Session
POST/api/support-sessions
This endpoint can be used to create a support session for a cardholder account
Request
- application/json
Body
required
accountId stringrequired
The ID of the cardholder account that needs support
Responses
- 200
- 400
- 403
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
url stringrequired
The URL of the support session
{
"url": "https://help.immersve.com/"
}
Request fields are invalid
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
statusCode integerrequired
statusName stringrequired
errorCode stringrequired
errors
object[]
message string
path string
The location of the invalid path param, query param or payload attribute.
{
"statusCode": 400,
"statusName": "Bad Request",
"errorCode": "INVALID_REQUEST_INPUT",
"errors": [
{
"message": "Invalid type",
"path": "items[1].attributes.invalidField"
}
]
}
User is not allowed to perform the action with the reason stated in the errorCode
FORBIDDEN Insufficient permissions to perform the action.
- application/json
- Schema
- Example (from schema)
Schema
statusCode integerrequired
statusName stringrequired
errorCode stringrequired
reason string
{
"statusCode": 403,
"statusName": "Forbidden",
"errorCode": "FORBIDDEN",
"reason": "Unauthorized"
}
Loading...