POST api/v1/orders/{orderId}/areas/{areaId}/repairs

Endpoint that creates a new order repair. There are two types of repairs, catalog based and custom based repairs. The first ones are created by selecting existing categories and subcategories. The second ones are created by the users. Custom repairs are identified by itemXREF=99999 and they required unit of measure (ItemUM), which can be modified at a later update. Catalog based repairs don't require unit of measure because the system already has this value predefined. This value cannot be modified.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
orderId

Order Id

integer

Required

areaId

Area Id

integer

Required

Body Parameters

Repair Item Information

BasicRepairItemInformationVM
NameDescriptionTypeAdditional information
ItemXREF

integer

Required

Description

string

None.

VendorPPU

decimal number

None.

Quantity

decimal number

Required

Comments

string

None.

Code

string

None.

ItemUM

string

None.

Request Formats

application/json, text/json

Sample:
{
  "itemXREF": 1,
  "description": "sample string 2",
  "vendorPPU": 3.0,
  "quantity": 4.0,
  "comments": "sample string 5",
  "code": "sample string 6",
  "itemUM": "sample string 7"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

An entity with the values of the new repair.

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.