Repzo API - Inventory Adjustment Reason (1.0.0)

Download OpenAPI specification:Download

OpenAPI specification for Repzo Inventory Adjustment Reason endpoints.

Find inventory adjustment reasons

query Parameters
params
object

Query parameters for filtering inventory adjustment reasons

Responses

Response samples

Content type
application/json
{
  • "data": [
    ],
  • "meta": { }
}

Create an inventory adjustment reason

Request Body schema: application/json
name
string
type
string
Enum: "increase" "decrease"
disabled
boolean

Responses

Request samples

Content type
application/json
{
  • "name": "string",
  • "type": "increase",
  • "disabled": true
}

Response samples

Content type
application/json
{
  • "data": {
    }
}

Get an inventory adjustment reason by ID

path Parameters
id
required
string

Responses

Response samples

Content type
application/json
{
  • "data": {
    }
}

Update an inventory adjustment reason

path Parameters
id
required
string
Request Body schema: application/json
name
string
type
string
Enum: "increase" "decrease"
disabled
boolean

Responses

Request samples

Content type
application/json
{
  • "name": "string",
  • "type": "increase",
  • "disabled": true
}

Response samples

Content type
application/json
{
  • "data": {
    }
}

Remove an inventory adjustment reason

path Parameters
id
required
string

Responses

Response samples

Content type
application/json
{
  • "success": true
}