SubletVendorCostEntry

Creates a new sublet vendor cost entry.

Securitybearer
Request
Request Body schema:
required
workOrderNumber
required
integer <int32>

The work order number.

entryDate
string <date-time>

The effective date of the sublet vendor cost entry, given in UTC. If left null, will default to current date/time.

amount
number <double>

The value of the amount. (Optional. If there are details this will be replaced)

estimatedCost
number <double>

The value of the estimated cost. (Optional. If there are details this will be replaced)

referenceNumber
string or null

The reference number. (Optional. May be auto-generated depending on system preference. Discard if they post one while they have preference turned on.)

description
string or null

The description of the cost entry. (Optional.)

Responses
200

Success

404

Endpoint Not Found. This response may occur if the on-premises E360 service does not exist or is not currently running.

post/api/v1/subletVendorCostEntry
Request samples
{
  • "workOrderNumber": 1,
  • "entryDate": "2019-03-01T12:05:05Z",
  • "amount": 1000.5,
  • "estimatedCost": 1000.5,
  • "referenceNumber": "DZ-101:F2123",
  • "description": "Outsourcing the labor to Dave at Acme Auto Repair."
}
Response samples
application/json
{
  • "id": "d65a1bc3-2363-4c43-97e9-286131830f5c",
  • "workOrderNumber": 1,
  • "entryDate": "2019-03-01T12:05:05Z",
  • "amount": 1000.5,
  • "estimatedCost": 1000.5,
  • "referenceNumber": "DZ-101:F2123",
  • "description": "Outsourcing the labor to Dave at Acme Auto Repair."
}

Adds a detail to the sublet vendor cost entry.

Securitybearer
Request
path Parameters
subletVendorCostEntryId
required
string <uuid>

Sublet Vendor Cost Entry Id for the detail being created.

Request Body schema:
required

Details about the sublet vendor cost entry to add.

vendorId
required
string <uuid>

The vendor id for the cost entry.

amount
number <double>

The value of the amount. (Optional. If there are details this will be replaced)

estimatedCost
number <double>

The value of the estimated cost. (Optional. If there are details this will be replaced)

description
string or null

The description of the cost entry. (Optional.)

Responses
200

Success

404

Endpoint Not Found. This response may occur if the on-premises E360 service does not exist or is not currently running.

post/api/v1/subletVendorCostEntries/{subletVendorCostEntryId}/details
Request samples
{
  • "vendorId": "309dcd94-2c42-43b8-9d71-ed61560a6d2e",
  • "amount": 375.9,
  • "estimatedCost": 400,
  • "description": "Catalytic converter replacement labor."
}
Response samples
application/json
{
  • "id": "286e9aea-2c04-40cd-aa01-289defc73a65",
  • "vendorId": "309dcd94-2c42-43b8-9d71-ed61560a6d2e",
  • "amount": 375.9,
  • "estimatedCost": 400,
  • "description": "Catalytic converter replacement labor."
}