POST /adjustment-reasons.json

POST /adjustment-reasons.json
application/json

Body Required

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
POST /adjustment-reasons.json
curl \
 -X POST http://api.example.com/v1/adjustment-reasons.json \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"code":"string","name":"string","showInReturnsPortal":true}'
Request example
{
  "code": "string",
  "name": "string",
  "showInReturnsPortal": true
}
Response examples (200)
{
  "code": "string",
  "createdAt": "2024-05-04T09:42:00+00:00",
  "id": 42,
  "name": "string",
  "showInReturnsPortal": true,
  "updatedAt": "2024-05-04T09:42:00+00:00"
}