Vendor

These endpoints let you manage vendor master data in the system. It allows you to retrieve vendor records.

Get Vendors

get

Return a paginated list of vendors.

Authorizations
AuthorizationstringRequired

Bearer authentication header of the form Bearer <token>.

Query parameters
pageintegerOptional

Page number

Default: 0Example: 0
sizeinteger · min: 1 · max: 50Optional

Page size

Default: 10Example: 10
querystringOptional

Search Query

Supported KeysSupported OperatorsNotes
id:Equal operator with multiple values. Each value should separated with delimiters ;
name:Equal operator
Example: {"summary":"Search Vendors by Multiple IDs","value":"id:f18f5618-ac6c-11e6-80f5-76304dec7eb7;f18f5618-ac6c-11e6-80f5-76304dec7eb8"}
Responses
chevron-right
200

OK

application/json
totalPagesintegerRequired

Total number of pages available

lastbooleanRequired

Indicates whether this is the last page

totalElementsintegerRequired

Total number of elements across all pages

numberOfElementsintegerRequired

Number of elements in the current page

firstbooleanRequired

Indicates whether this is the first page

sizeintegerRequired

Size of the page (number of elements per page)

numberintegerRequired

Current page number (zero-indexed)

get
/core/v1/vendors

Get Vendor By Id

get

Return a single vendor by its ID.

Authorizations
AuthorizationstringRequired

Bearer authentication header of the form Bearer <token>.

Path parameters
idstringRequiredExample: f18f5618-ac6c-11e6-80f5-76304dec7eb7
Responses
chevron-right
200

OK

application/json
idstringOptional
namestringOptional
createdBystringOptional
createdDatenumberOptional
updatedBystringOptional
updatedDatenumberOptional
get
/core/v1/vendors/{id}

Last updated