Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/api-explorer/v4-0/Attendees.swagger2.json
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,11 @@
"type": "string",
"description": "The attendee's first name. Maximum length: 50 characters"
},
"formId": {
"type": "string",
"format": "uuid",
"description": "The attendee's form ID. **Note: This ID is unique to the v4 API and not cross-compatible with v3.**"
},
"HasExceptionsPrevYear": {
"type": "boolean",
"description": "Determines whether the attendee had exceptions in the previous year, based on yearly total limits for attendees."
Expand Down
5 changes: 5 additions & 0 deletions src/api-reference/common/attendees/v4.attendees.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ Content-Type: application/json
"type": "Text",
"value": "NYC"
},
"formId": "0f9cf1b6-875c-497d-a78e-9e706bd1c175",
"id": "fed46bff-8131-4d8b-977a-e81bc14268a4",
"uri": "https://www.us2.apiconcursolutions.com/v4/attendees/fed46bff-8131-4d8b-977a-e81bc14268a4"
}
Expand Down Expand Up @@ -191,6 +192,7 @@ Content-Type: application/json
"type": "Text",
"value": "NYC"
},
"formId": "0f9cf1b6-875c-497d-a78e-9e706bd1c175",
"id": "fed46bff-8131-4d8b-977a-e81bc14268a4",
"uri": "https://www.us2.apiconcursolutions.com/v4/attendees/fed46bff-8131-4d8b-977a-e81bc14268a4"
}
Expand Down Expand Up @@ -267,6 +269,7 @@ Content-Type: application/json
"type": "Text",
"value": "NYC"
},
"formId": "0f9cf1b6-875c-497d-a78e-9e706bd1c175",
"id": "fed46bff-8131-4d8b-977a-e81bc14268a4",
"uri": "https://www.us2.apiconcursolutions.com/v4/attendees/fed46bff-8131-4d8b-977a-e81bc14268a4"
},
Expand Down Expand Up @@ -296,6 +299,7 @@ Content-Type: application/json
"type": "Text",
"value": "V5E6W"
},
"formId": "0f9cf1b6-875c-497d-a78e-9e706bd1c175",
"id": "9647f11d-43f8-4469-ba7c-f7a24efae5b0",
"uri": "https://us2.api.concursolutions.com/v4/attendees/9647f11d-43f8-4469-ba7c-f7a24efae5b0"
}
Expand Down Expand Up @@ -454,6 +458,7 @@ Name|Type|Format|Description
`custom1 through custom25`|`object` |[`Custom Field`](#custom-field-schema)|A custom field associated with the attendee. This field may or may not have data, depending on how Expense form fields are configured. If this field is not configured for the attendee type in question, the response excludes this field. For `custom1-20`, maximum length: `100 characters`. For `custom21-25`, maximum length: `48 characters`
`externalId`|`string` |-| **Required** An identifier for the attendee, usually assigned outside of the SAP Concur systems. Maximum length: `48 characters` **NOTE:** For HCP connectors where information returned to the SAP Concur systems represent one record per attendee+address pair, this value should be a unique identifier for that pair, and the unique identifier for the individual should be placed into a custom field.
`firstName`|`string` |-| **Required** The attendee's first name. Maximum length: `50 characters`
`formId`|`string` |`uuid`| **Required** The attendee's form ID. **Note:** This ID is unique to the v4 API and not cross-compatible with v3.
`hasExceptionsPrevYear`|`boolean`|`true / false`| **Required** If `true`, the attendee had exceptions in the previous year, based on yearly total limits for attendees.
`hasExceptionsYtd`|`boolean`|`true / false`| **Required** If `true`, the attendee has exceptions in the current year, based on yearly total limits for attendees.
`id`|`string` |`uuid`| **Required** The unique identifier of the attendee. **Note:** This ID is unique to the v4 API and not cross-compatible with v3.
Expand Down