Request

The Request object contains the following properties:

Field Name
Data Type
Description

id

string

The primary identifier for the request.

Example: REQ-1671-0642

href

string

Relative reference to the object in the API.

Example: /v1/commerce/requests/REQ-1671-0642

status

string

The status of the request.

Example: Querying

client

object

A reference to the client accountobject.

Example:

vendor

object

A reference to the vendor account object.

Example:

requester

object

The client account user who created the request.

Example:

assignee

object

The vendor account user responsible for processing the request.

Example:

product

object

A reference to the product object.

Example:

externalIds

object

A set of externalID identifiers.

Example:

parameters.order

object

The values of the orderParameter associated with the request.

Example:

error

object

Error reported by validation procedure.

Example:

audit

A reference to the audit object. Allowed values: created, updated, activated, or terminated .

Example response

{
  "id": "REQ-1671-0642",
  "status": "Querying",
  "client": { 
    "id": "ACC-1234-4444",
    "name": "Stark-industries"
  },
  "vendor": { 
    "id": "ACC-1234-1111",
    "name": "Microsoft"
  },
  "requester": { 
    "id": "USR-1234-4444",
    "name": "John Smith"
  },
  "assignee": { 
    "id": "USR-1234-1111",
    "name": "Santa Claus"
  },
  "product": {
    "id": "PRD-1111-1111-1111",
    "name": "Microsoft Office 365 NCE",
    "icon": "/static/PRD-1111-1111-1111/logo.png"
  }
}

Last updated

Was this helpful?