Attendee Types v1
This API has been deprecated.
Partners and customers using a deprecated API should contact SAP Concur and discuss moving to the latest versions.
Learn more in the API Lifecycle & Deprecation Policy.
Description
The Attendee Type resource represents the type of attendee as configured in Concur. Retrieves the list of attendee types for the company.
Version
1.0
Limitations
Access to this documentation does not provide access to the API.
URI
https://www.concursolutions.com/api/expense/attendee/v1.0/type
Get list of attendee types
Request
Parameters
None.
Headers
- RFC 7231 Content-Type:
application/xml
- RFC 7235 Authorization
- The authorization header must have an OAuth token for a valid Concur user.
- The OAuth consumer must have one of the following user roles in Concur: Company Administrator or Web Services Administrator for Professional, or Can Administer for Standard. These roles allow the user to manage data for the entire company.
Response
Payload
This response will return an attendee-types parent element containing an attendee-type child element for each attendee type.
Element | Description |
---|---|
type | The attendee type code. |
name | The attendee type name. |
Example
Request
GET https://www.concursolutions.com/api/expense/attendee/v1.0/type
Authorization: OAuth {access token}
Response
HTTP/1.1 200 OK
Content-Type: application/xml
<attendee-types xmlns="http://www.concursolutions.com/api/expense/attendee/2010/05" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<attendee-type>
<type>BUSGUEST</type>
<name>Business Guest</name>
</attendee-type>
<attendee-type>
<type>EMPLOYEE</type>
<name>Employee</name>
</attendee-type>
</attendee-types>