Important: This API is currently in pre-release status and is only available to approved early access participants. The API is under development and might change before being generally released. To become an early access participant, contact your SAP Concur Representative.

Travel Request v4 - Request Policy Resources

Get the list of existing Request policies for a given user

Scopes

travelrequest.write - Refer to Scope Usage for full details.

HTTP Request

URI Template
GET {datacenter}/travelrequest/v4/userpolicies

Parameters

Name Type Format Description
userId string - The unique identifier of the user for whom the list of Request policies will be retrieved. Required when connecting with a Company token. If empty, a 400 missingRequiredParam error.

Headers

concur-correlationid is a specific custom header used for technical support in the form of a RFC 4122 A Universally Unique IDentifier (UUID) URN Namespace.

Payload

None.

HTTP Response

HTTP Status Codes

To learn more about response HTTP status codes for this API see Travel Request v4 - HTTP Status Codes.

Payload

List of Request Policies

Example

HTTP Request

GET https://us.api.concursolutions.com/travelrequest/v4/userpolicies
Accept: application/json
Authorization: Bearer {token}
Concur-CorrelationId: 5512c7be-3fab-4d65-ae69-8a74a04a0c7f

HTTP Response

200 OK
[
  {
   "href": "https://us.api.concursolutions.com/travelrequest/v4/userpolicies/F4C8BD31CA9D4D6292795BE687EB9B2A",
   "id": "F4C8BD31CA9D4D6292795BE687EB9B2A",
   "name": "Internal training Request policy",
   "allowParticipants": false
  },
  {
   "href": "https://us.api.concursolutions.com/travelrequest/v4/userpolicies/F10E6059B5A14A4C80327FE387491026",
   "id": "F10E6059B5A14A4C80327FE387491026",
   "name": "Client meeting Request policy",
   "allowParticipants": false,
  },
  {
   "href": "https://us.api.concursolutions.com/travelrequest/v4/userpolicies/98B49B2523DDAB41A182DD581C637415",
   "id": "98B49B2523DDAB41A182DD581C637415",
   "name": "Budget Event Request policy",
   "allowParticipants": true
  }
]

On this page