SDSamtec Developer Portal
APIsOrdersReference

Return list of received, unscheduled orders.

Returns orders Samtec has received but not yet scheduled for shipment. Use this to confirm an order has reached Samtec before it moves into production scheduling.

GET
/v1/receivedorders
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"

In: header

Query Parameters

topMatches?integer

Number of matches to be returned if found; defaulted to 10 with a max of 100

Formatint32
Default10
startAfter?string

Database identifier (id attribute from the Order model), e.g. 71a53e94ad4bf8ad97322e05, to use as a starting point for a page of results in a single session of paging through results. An empty value will retrieve the first page. To get the next page in the result set, pass the ID of the last document from the previous page. PLEASE NOTE: the ID values are only intended to be valid for a single session of paging through results. If you wish to page through the results again, start over by passing an empty string to the startAfter parameter.

Default""
matchOrderType?string

Type of order to search (all, sales, sample, nco); defaulted to all

Value in

  • "all"
  • "sales"
  • "sample"
  • "nco"

Header Parameters

client-app-name?string

Name of the client application

Default"samtec-dev-portal"

Response Body

application/json

curl -X GET "https://example.com/v1/receivedorders"
[  {    "Id": "68b4a1f2c9e77a0012ab34cd",    "ConfirmationNumber": "TTQ44XTJM6P8",    "OrderId": 4512389,    "MfgLineNumber": 1,    "LineNumber": 1,    "Received": "2026-08-01T14:32:00Z",    "PONumber": "PO-88214-A",    "ReferencePONumber": null,    "Part": "TSW-110-08-T-D",    "CustomerPart": "CP-8842-A",    "Status": "Received"  }]