SDSamtec Developer Portal
APIsQuotesReferenceCustomer Specific

List quotes (opportunities) for your account

Returns paged quote/opportunity records for the caller's organization, with current pricing and price breaks for each affected part. Filter by opportunityId or part, and use includeCurrentOnly to exclude opportunities that have already expired.

GET
/v1
AuthorizationBearer <token>

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

In: header

Query Parameters

opportunityId?integer
Formatint64
part?string
includeCurrentOnly?boolean
Defaulttrue
pageNumber?integer
Formatint32
Default1

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"
{  "totalResultsCount": 2,  "opportunities": [    {      "designCustomer": "Acme Robotics Inc.",      "distributor": "Digi-Key Electronics",      "contractManufacturer": "Flex Ltd.",      "samtecPart": "TSW-110-08-T-D",      "opportunityId": 771234,      "effectiveDate": "2026-08-14",      "expirationDate": "2026-11-14",      "priceBreaks": [        {          "moq": 100,          "oemPrice": 0.842,          "distPrice": 0.958        },        {          "moq": 1000,          "oemPrice": 0.701,          "distPrice": 0.799        }      ],      "priceProtectionType": "Design Registration",      "willAutoRenew": false,      "estimatedAnnualUsage": 48000    },    {      "designCustomer": "Nimbus Sensing LLC",      "distributor": "Mouser Electronics",      "contractManufacturer": null,      "samtecPart": "SFM-150-02-L-D-A",      "opportunityId": 771891,      "effectiveDate": "2026-07-01",      "expirationDate": "2026-10-01",      "priceBreaks": [        {          "moq": 250,          "oemPrice": 1.184,          "distPrice": null        }      ],      "priceProtectionType": "Price Protected",      "willAutoRenew": true,      "estimatedAnnualUsage": 12000    }  ]}