Purchase Order Tire
WIP: A summary needs to be written for Purchase Order Tire
GET/v3/purchase_order_tire/:id
Find purchase order tire
Find the purchase order tire by id
URL parameters
- Name
id
- Type
- string Required
- Description
- the id for the object
Produces
The response content type: application/json
200
Response
- Name
code
- Type
- string
- Description
- The error code
- Name
documentation_url
- Type
- string
- Description
- An optional link to the documentation for the error
- Name
message
- Type
- string
- Description
- the error message if success = false
- Name
success
- Type
- boolean Required
- Description
- if successful, will be true. if not successful, will be false and message will contain a human readable error message
- Name
data
- Type
- object Required
- Description
Properties for data
object
- Name
id
- Type
- string Required
- Description
- Name
companyId
- Type
- string Required
- Description
- Name
locationId
- Type
- string Required
- Description
- Name
purchaseOrderId
- Type
- string Required
- Description
- Name
meta
- Type
- object Required
- Description
- the metadata about the most recent change to the row
- Name
metadata
- Type
- object
- Description
- metadata reserved for customers to control
- Name
createdDate
- Type
- string Required
- Description
- Name
updatedDate
- Type
- string Required
- Description
- Name
name
- Type
- string Required
- Description
- Name
number
- Type
- string Required
- Description
- Name
costCents
- Type
- integer Required
- Description
- Name
quantity
- Type
- number Required
- Description
- Name
receivedQuantity
- Type
- number Required
- Description
- Name
ordinal
- Type
- number Required
- Description
- Name
inventoryTireId
- Type
- string Required
- Description
- Name
providerData
- Type
- object
- Description
- Name
linkedToServiceItem
- Type
- boolean Required
- Description
- flag to indicate if the item was linked to any service item during swap
- Name
purchaseOrder
- Type
- object Required
- Description
- PurchaseOrder schema
Properties for meta
object
- Name
userId
- Type
- string
- Description
- the user id that made the most recent change
- Name
sessionId
- Type
- string
- Description
- the session id for the most recent change
- Name
version
- Type
- number
- Description
- a monotonically increasing number for the most recent change
Properties for purchaseOrder
object
- Name
id
- Type
- string Required
- Description
- Name
companyId
- Type
- string Required
- Description
- Name
locationId
- Type
- string Required
- Description
- Name
meta
- Type
- object Required
- Description
- the metadata about the most recent change to the row
- Name
metadata
- Type
- object
- Description
- metadata reserved for customers to control
- Name
session
- Type
- object
- Description
- Name
number
- Type
- integer Required
- Description
- Name
status
- Type
- one of: Draft, Ordered, Received, Fulfilled, Cancelled Required
- Description
- Name
totalCostCents
- Type
- integer Required
- Description
- Name
invoiceNumber
- Type
- string Required
- Description
- Name
orderId
- Type
- string Required
- Description
- Name
note
- Type
- string Required
- Description
- Name
provider
- Type
- one of: PartsTech, Nexpart, Epicor, Worldpac, ATD, RepairLink Required
- Description
- Name
providerData
- Type
- object
- Description
- Name
createdDate
- Type
- string Required
- Description
- Name
updatedDate
- Type
- string Required
- Description
- Name
orderedDate
- Type
- string Required
- Description
- Name
fulfilledDate
- Type
- string Required
- Description
- Name
vendorId
- Type
- string Required
- Description
Properties for meta
object
- Name
userId
- Type
- string
- Description
- the user id that made the most recent change
- Name
sessionId
- Type
- string
- Description
- the session id for the most recent change
- Name
version
- Type
- number
- Description
- a monotonically increasing number for the most recent change
4xx
Response
- Name
code
- Type
- string
- Description
- The error code
- Name
data
- Type
- object
- Description
- An optional object containing relevant error data
- Name
documentation_url
- Type
- string
- Description
- An optional link to the documentation for the error
- Name
message
- Type
- string
- Description
- the error message if not successful
- Name
success
- Type
- boolean Required
- Description
- if successful, will be true. if not successful, will be false and message will contain a human readable error message
5xx
Response
- Name
code
- Type
- string
- Description
- The error code
- Name
data
- Type
- object
- Description
- An optional object containing relevant error data
- Name
documentation_url
- Type
- string
- Description
- An optional link to the documentation for the error
- Name
message
- Type
- string
- Description
- the error message if not successful
- Name
success
- Type
- boolean Required
- Description
- if successful, will be true. if not successful, will be false and message will contain a human readable error message
Example Request
GET
/v3/purchase_order_tire/:idcurl https://api.shopmonkey.cloud/v3/purchase_order_tire/:id \
-H "Authorization: Bearer ${SM_TOKEN}"
Example Responseapplication/json
{
"success": true,
"data": {
"id": "id",
"companyId": "companyId",
"locationId": "locationId",
"purchaseOrderId": "purchaseOrderId",
"meta": {
"userId": "userId",
"sessionId": "sessionId",
"version": 1
},
"createdDate": "createdDate",
"updatedDate": null,
"name": "name",
"number": "number",
"costCents": 1,
"quantity": 1,
"receivedQuantity": 1,
"ordinal": 1,
"inventoryTireId": null,
"purchaseOrder": {
"id": "id",
"companyId": "companyId",
"locationId": "locationId",
"meta": {
"userId": "userId",
"sessionId": "sessionId",
"version": 1
},
"number": 1,
"status": "status",
"totalCostCents": 1,
"invoiceNumber": null,
"orderId": null,
"note": null,
"provider": null,
"createdDate": "createdDate",
"updatedDate": null,
"orderedDate": null,
"fulfilledDate": null,
"vendorId": null
}
}
}
DELETE/v3/purchase_order_tire/:id
Delete a purchase order tire
Permanently delete a purchase order tire by id`
URL parameters
- Name
id
- Type
- string Required
- Description
- The unique purchase order tire identifier
Produces
The response content type: application/json
200
Response
- Name
code
- Type
- string
- Description
- The error code
- Name
documentation_url
- Type
- string
- Description
- An optional link to the documentation for the error
- Name
message
- Type
- string
- Description
- the error message if success = false
- Name
success
- Type
- boolean Required
- Description
- if successful, will be true. if not successful, will be false and message will contain a human readable error message
4xx
Response
- Name
code
- Type
- string
- Description
- The error code
- Name
data
- Type
- object
- Description
- An optional object containing relevant error data
- Name
documentation_url
- Type
- string
- Description
- An optional link to the documentation for the error
- Name
message
- Type
- string
- Description
- the error message if not successful
- Name
success
- Type
- boolean Required
- Description
- if successful, will be true. if not successful, will be false and message will contain a human readable error message
5xx
Response
- Name
code
- Type
- string
- Description
- The error code
- Name
data
- Type
- object
- Description
- An optional object containing relevant error data
- Name
documentation_url
- Type
- string
- Description
- An optional link to the documentation for the error
- Name
message
- Type
- string
- Description
- the error message if not successful
- Name
success
- Type
- boolean Required
- Description
- if successful, will be true. if not successful, will be false and message will contain a human readable error message
Example Requestapplication/json
DELETE
/v3/purchase_order_tire/:idcurl https://api.shopmonkey.cloud/v3/purchase_order_tire/:id \
-H "Authorization: Bearer ${SM_TOKEN}" \
-X DELETE -H 'Content-Type: application/json' \
--data '{}'
Example Responseapplication/json
{
"success": true
}