latestOpenAPI 3.0.02026-08-2217901.1 MB

ef9153fcac7c

Part Transfer Requests

Create a part transfer request

post/parttransferrequests

Query parameters

skipWebhookboolean

Set skipWebhook=true, skipWebhook=1 or skipWebhook=yes to skip all webhooks upon successful operation on the endpoint. Learn more about webhooks

Request body

quantityRequestedinteger required

Quantity of parts requested for transfer.

sourcePartIdinteger required

ID of the part that belongs to the organization receiving the request. (Sending stocks)

destinationPartIdinteger required

ID of the part that belongs to the organization performing the request. (Receiving stocks)

requestMessagestring nullable

Message to give context surrounding the part transfer request.

Example request

{
  "quantityRequested": 3,
  "sourcePartId": 843,
  "destinationPartId": 852,
  "requestMessage": "Would you please send us five ball screws for our cnc machine?"
}

Response

Successfully created part transfer request

idinteger required

Global ID of the part transfer request.

Example response

{
  "id": 963
}