TECHCOMM API DOC
  1. POS Interface
Landing
  • Landing
  • POS Interface
    • CompPost
      POST
    • CompVoid
      POST
  1. POS Interface

CompVoid

Developing
POST
https://dev.your-api-server.com/CompVoid

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
or
Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Body

🟠400Bad Request
🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://dev.your-api-server.com/CompVoid' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "openCheckNum":"CHECK#123"
}'
Response Response Example
200 - Example 1
{
    "result": "Success"
}
Previous
CompPost
Built with