APIsStatsReference
Get the full request/response payload for one API call
Returns the complete request and response bodies Samtec logged for one specific call, identified by its TraceIdentifier from /v1/requests/details. Use this to debug a specific failed or unexpected call rather than to browse traffic in bulk.
Authorization
Bearer AuthorizationBearer <token>
JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {your token here}"
In: header
Query Parameters
api*string
Internal API name the call was made to — one of catalog, orders, pricing, quotes, delivery (Lead Time's internal name).
date*string
Date the call was made, in yyyy-MM-dd format.
traceIdentifier*string
The TraceIdentifier of the specific call, from /v1/requests/details.
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/requests/fulldetail?api=string&date=string&traceIdentifier=string" \ -H "client-app-name: samtec-dev-portal"{ "TraceIdentifier": "8f14e45f-ceea-467e-bd3f-11a2c9d7e001", "Request": { "Method": "GET", "Path": "/catalog/v3/TSW-110-08-T-D", "Headers": { "client-app-name": "your-app-name" } }, "Response": { "Part": "TSW-110-08-T-D", "StockQuantity": 18500 }, "RequestTimeUtc": "2026-08-27T14:32:07.481Z", "TotalElapsedMilliseconds": 112, "ResponseCode": 200, "Url": "/catalog/v3/TSW-110-08-T-D", "QueryString": "", "Action": "GET /v3/{part}"}