For the complete documentation index, see llms.txt. This page is also available as Markdown.

Request

The Request object contains the following properties:

Field
Type
Description

id

string

(Read-only) The primary identifier for the request.

status

string

The status of the request.

client

object

Represents the client accountobject.

vendor

object

Represents the vendor account object

requester

object

The client account user who created the request.

assignee

object

(Optional) The vendor account user responsible for processing the request.

product

object

Represents the product object.

externalIds

object

(Optional) A set of externalID identifiers.

parameters.order

object

(Optional) Values of the orderParameter associated with the request.

Example:

error

object

Error reported by validation procedure.

Example:

audit

object

(Read-only) Represents the audit object.

Examples

REQUEST OBJECT
{
  "id": "REQ-1671-0642",  
  "status": "Querying",
  "client": { 
    "id": "ACC-1234-4444",
    "name": "Rolls-Royce"
  },
  "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?