Body
Required
-
code
string Required Code
-
name
string Required Name
-
showInReturnsPortal
boolean | null Required Show in returns portal
Default value is
true
.
POST
/adjustment-reasons.json
curl \
--request POST 'http://api.example.com/v1/adjustment-reasons.json' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"code":"string","name":"string","showInReturnsPortal":true}'
Request examples
{
"code": "string",
"name": "string",
"showInReturnsPortal": true
}
Response examples (200)
{
"code": "string",
"createdAt": "2025-05-04T09:42:00Z",
"id": 42,
"name": "string",
"showInReturnsPortal": true,
"updatedAt": "2025-05-04T09:42:00Z"
}