DataCenter Event API
Interact with DC Entry Event records in ServiceNow through the ServiceNow Table API.
Base URL: /domains/servicenow/datacenterevent
Version: v1
Summary
Path | Operation | Description |
---|---|---|
/u_dc_access_event* | GET | returns a list of DC Entry Event records |
POST | creates a new DC Entry Event record | |
/u_dc_access_event/{sys_id}* | GET | returns a single DC Entry Event record |
PUT | updates a single DC Entry Event record |
Paths
GET /u_dc_access_event*
sysparm_query | An encoded query string used to filter the results. To generate an encoded query for the results you want, go to the list view of the table in ServiceNow and create your filter. Then right click on the last filter in the breadcrumb style filter list and select 'Copy Query'. That is the query to use here. On most tables, passing 'active=true' will return only active records. | query | string | |
sysparm_display_value | Pass 'true' to return the display value of the record, pass 'false' to get the sys_id of the record, or pass 'all' to get both for reference fields. | query | string false | |
sysparm_exclude_reference_link | True to exclude Table API links for reference fields. | query | string false | |
sysparm_suppress_pagination_header | True to supress pagination header. | query | string true | |
sysparm_fields | A comma-separated list of fields to return in the response. Defaults to a list that will just get form fields | query | string u_authorized_user,u_state,u_beginning_time,u_ending_time,u_badge,u_departure_time,u_rfc,u_change_task,u_request,u_guests,u_ccure_status,u_reason,u_location | |
sysparm_limit | The maximum number of results returned per page. | query | string 10,000 | |
sysparm_view | Render the response according to the specified UI view (overridden by sysparm_fields). | query | string |
application/json
- 200 OK
-
Success with response body.
- result: object[]
-
object {
"u_authorized_user": "Zeeman, Jay",
"u_badge": "",
"u_beginning_time": "2016-10-13 07:29:17",
"u_ccure_status": "Remove FAILED",
"u_change_task": "",
"u_departure_time": "",
"u_ending_time": "2016-10-13 16:29:21",
"u_guests": "",
"u_location": "Data Center",
"u_reason": "Facilities",
"u_request": "RITM556280",
"u_rfc": "Facilities",
"u_state": "Expired"
}- u_authorized_user: string (32 to 32 chars)
-
Authorized User field from the u_dc_access_event form
- u_state: string
-
Status field from the u_dc_access_event form
- u_beginning_time: string (date-time)
-
Beginning Time field from the u_dc_access_event form
- u_ending_time: string (date-time)
-
Ending Time field from the u_dc_access_event form
- u_badge: string
-
Badge field from the u_dc_access_event form
- u_departure_time: string (date-time)
-
Departure Time field from the u_dc_access_event form
- u_rfc: string
-
RFC / Incident / Work Order field from the u_dc_access_event form
- u_change_task: string (32 to 32 chars)
-
Change Task field from the u_dc_access_event form
- u_request: string (32 to 32 chars)
-
Request field from the u_dc_access_event form
- u_guests: string
-
Guests field from the u_dc_access_event form
- u_ccure_status: string
-
CCure Status field from the u_dc_access_event form
- u_reason: string
-
Reason field from the u_dc_access_event form
- u_location: string
-
Location field from the u_dc_access_event form
- 201 Created
-
Success with response body
- result: object
-
{
"u_authorized_user": "Zeeman, Jay",
"u_badge": "",
"u_beginning_time": "2016-10-13 07:29:17",
"u_ccure_status": "Remove FAILED",
"u_change_task": "",
"u_departure_time": "",
"u_ending_time": "2016-10-13 16:29:21",
"u_guests": "",
"u_location": "Data Center",
"u_reason": "Facilities",
"u_request": "RITM556280",
"u_rfc": "Facilities",
"u_state": "Expired"
}- u_authorized_user: string (32 to 32 chars)
-
Authorized User field from the u_dc_access_event form
- u_state: string
-
Status field from the u_dc_access_event form
- u_beginning_time: string (date-time)
-
Beginning Time field from the u_dc_access_event form
- u_ending_time: string (date-time)
-
Ending Time field from the u_dc_access_event form
- u_badge: string
-
Badge field from the u_dc_access_event form
- u_departure_time: string (date-time)
-
Departure Time field from the u_dc_access_event form
- u_rfc: string
-
RFC / Incident / Work Order field from the u_dc_access_event form
- u_change_task: string (32 to 32 chars)
-
Change Task field from the u_dc_access_event form
- u_request: string (32 to 32 chars)
-
Request field from the u_dc_access_event form
- u_guests: string
-
Guests field from the u_dc_access_event form
- u_ccure_status: string
-
CCure Status field from the u_dc_access_event form
- u_reason: string
-
Reason field from the u_dc_access_event form
- u_location: string
-
Location field from the u_dc_access_event form
- 204 No Content
-
Success with no response body
- 400 Bad Request
-
The request URI does not match the APIs in the system, or the operation failed for unknown reasons. Invalid headers can also cause this error.
- 401 Unauthorized
-
The user is not authorized to use the API.
- 403 Forbidden
-
The requested operation is not permitted for the user. This error can also be caused by ACL failures, or business rule or data policy constraints.
- 404 Not Found
-
The requested resource was not found. This can be caused by an ACL constraint or if the resource does not exist.
- 405 Method Not Allowed
-
The HTTP action is not allowed for the requested REST API, or it is not supported by any API.
- 406 Not Acceptable
-
The endpoint does not support the response format specified in the request Accept header.
- 415 Unsupported Media Type
-
The endpoint does not support the format of the request body.
POST /u_dc_access_event*
The body to pass or that is received in a response
{
"u_authorized_user": "Zeeman, Jay",
"u_badge": "",
"u_beginning_time": "2016-10-13 07:29:17",
"u_ccure_status": "Remove FAILED",
"u_change_task": "",
"u_departure_time": "",
"u_ending_time": "2016-10-13 16:29:21",
"u_guests": "",
"u_location": "Data Center",
"u_reason": "Facilities",
"u_request": "RITM556280",
"u_rfc": "Facilities",
"u_state": "Expired"
}
- u_authorized_user: string (32 to 32 chars)
-
Authorized User field from the u_dc_access_event form
- u_state: string
-
Status field from the u_dc_access_event form
- u_beginning_time: string (date-time)
-
Beginning Time field from the u_dc_access_event form
- u_ending_time: string (date-time)
-
Ending Time field from the u_dc_access_event form
- u_badge: string
-
Badge field from the u_dc_access_event form
- u_departure_time: string (date-time)
-
Departure Time field from the u_dc_access_event form
- u_rfc: string
-
RFC / Incident / Work Order field from the u_dc_access_event form
- u_change_task: string (32 to 32 chars)
-
Change Task field from the u_dc_access_event form
- u_request: string (32 to 32 chars)
-
Request field from the u_dc_access_event form
- u_guests: string
-
Guests field from the u_dc_access_event form
- u_ccure_status: string
-
CCure Status field from the u_dc_access_event form
- u_reason: string
-
Reason field from the u_dc_access_event form
- u_location: string
-
Location field from the u_dc_access_event form
sysparm_display_value | Pass 'true' to return the display value of the record, pass 'false' to get the sys_id of the record, or pass 'all' to get both for reference fields. | query | string false | |
sysparm_exclude_reference_link | True to exclude Table API links for reference fields. | query | string false | |
sysparm_fields | A comma-separated list of fields to return in the response. Defaults to a list that will just get form fields | query | string u_authorized_user,u_state,u_beginning_time,u_ending_time,u_badge,u_departure_time,u_rfc,u_change_task,u_request,u_guests,u_ccure_status,u_reason,u_location | |
sysparm_view | Render the response according to the specified UI view (overridden by sysparm_fields). | query | string | |
sysparm_input_display_value | True to set raw value of input fields. | query | string false | |
sysparm_suppress_auto_sys_field | True to suppress auto generation of system fields. | query | string false |
application/json
- 200 OK
-
Success with response body.
- result: object
-
{
"u_authorized_user": "Zeeman, Jay",
"u_badge": "",
"u_beginning_time": "2016-10-13 07:29:17",
"u_ccure_status": "Remove FAILED",
"u_change_task": "",
"u_departure_time": "",
"u_ending_time": "2016-10-13 16:29:21",
"u_guests": "",
"u_location": "Data Center",
"u_reason": "Facilities",
"u_request": "RITM556280",
"u_rfc": "Facilities",
"u_state": "Expired"
}- u_authorized_user: string (32 to 32 chars)
-
Authorized User field from the u_dc_access_event form
- u_state: string
-
Status field from the u_dc_access_event form
- u_beginning_time: string (date-time)
-
Beginning Time field from the u_dc_access_event form
- u_ending_time: string (date-time)
-
Ending Time field from the u_dc_access_event form
- u_badge: string
-
Badge field from the u_dc_access_event form
- u_departure_time: string (date-time)
-
Departure Time field from the u_dc_access_event form
- u_rfc: string
-
RFC / Incident / Work Order field from the u_dc_access_event form
- u_change_task: string (32 to 32 chars)
-
Change Task field from the u_dc_access_event form
- u_request: string (32 to 32 chars)
-
Request field from the u_dc_access_event form
- u_guests: string
-
Guests field from the u_dc_access_event form
- u_ccure_status: string
-
CCure Status field from the u_dc_access_event form
- u_reason: string
-
Reason field from the u_dc_access_event form
- u_location: string
-
Location field from the u_dc_access_event form
- 201 Created
-
Success with response body
- result: object
-
{
"u_authorized_user": "Zeeman, Jay",
"u_badge": "",
"u_beginning_time": "2016-10-13 07:29:17",
"u_ccure_status": "Remove FAILED",
"u_change_task": "",
"u_departure_time": "",
"u_ending_time": "2016-10-13 16:29:21",
"u_guests": "",
"u_location": "Data Center",
"u_reason": "Facilities",
"u_request": "RITM556280",
"u_rfc": "Facilities",
"u_state": "Expired"
}- u_authorized_user: string (32 to 32 chars)
-
Authorized User field from the u_dc_access_event form
- u_state: string
-
Status field from the u_dc_access_event form
- u_beginning_time: string (date-time)
-
Beginning Time field from the u_dc_access_event form
- u_ending_time: string (date-time)
-
Ending Time field from the u_dc_access_event form
- u_badge: string
-
Badge field from the u_dc_access_event form
- u_departure_time: string (date-time)
-
Departure Time field from the u_dc_access_event form
- u_rfc: string
-
RFC / Incident / Work Order field from the u_dc_access_event form
- u_change_task: string (32 to 32 chars)
-
Change Task field from the u_dc_access_event form
- u_request: string (32 to 32 chars)
-
Request field from the u_dc_access_event form
- u_guests: string
-
Guests field from the u_dc_access_event form
- u_ccure_status: string
-
CCure Status field from the u_dc_access_event form
- u_reason: string
-
Reason field from the u_dc_access_event form
- u_location: string
-
Location field from the u_dc_access_event form
- 204 No Content
-
Success with no response body
- 400 Bad Request
-
The request URI does not match the APIs in the system, or the operation failed for unknown reasons. Invalid headers can also cause this error.
- 401 Unauthorized
-
The user is not authorized to use the API.
- 403 Forbidden
-
The requested operation is not permitted for the user. This error can also be caused by ACL failures, or business rule or data policy constraints.
- 404 Not Found
-
The requested resource was not found. This can be caused by an ACL constraint or if the resource does not exist.
- 405 Method Not Allowed
-
The HTTP action is not allowed for the requested REST API, or it is not supported by any API.
- 406 Not Acceptable
-
The endpoint does not support the response format specified in the request Accept header.
- 415 Unsupported Media Type
-
The endpoint does not support the format of the request body.
GET /u_dc_access_event/{sys_id}*
sysparm_display_value | Pass 'true' to return the display value of the record, pass 'false' to get the sys_id of the record, or pass 'all' to get both for reference fields. | query | string false | |
sysparm_exclude_reference_link | True to exclude Table API links for reference fields. | query | string false | |
sysparm_fields | A comma-separated list of fields to return in the response. Defaults to a list that will just get form fields | query | string u_authorized_user,u_state,u_beginning_time,u_ending_time,u_badge,u_departure_time,u_rfc,u_change_task,u_request,u_guests,u_ccure_status,u_reason,u_location | |
sysparm_view | Render the response according to the specified UI view (overridden by sysparm_fields). | query | string | |
sysparm_input_display_value | True to set raw value of input fields. | query | string false | |
sysparm_suppress_auto_sys_field | True to suppress auto generation of system fields. | query | string false | |
sys_id | sys_id of the record you would like to delete from the table. | path | string |
application/json
- 200 OK
-
Success with response body.
- result: object
-
{
"u_authorized_user": "Zeeman, Jay",
"u_badge": "",
"u_beginning_time": "2016-10-13 07:29:17",
"u_ccure_status": "Remove FAILED",
"u_change_task": "",
"u_departure_time": "",
"u_ending_time": "2016-10-13 16:29:21",
"u_guests": "",
"u_location": "Data Center",
"u_reason": "Facilities",
"u_request": "RITM556280",
"u_rfc": "Facilities",
"u_state": "Expired"
}- u_authorized_user: string (32 to 32 chars)
-
Authorized User field from the u_dc_access_event form
- u_state: string
-
Status field from the u_dc_access_event form
- u_beginning_time: string (date-time)
-
Beginning Time field from the u_dc_access_event form
- u_ending_time: string (date-time)
-
Ending Time field from the u_dc_access_event form
- u_badge: string
-
Badge field from the u_dc_access_event form
- u_departure_time: string (date-time)
-
Departure Time field from the u_dc_access_event form
- u_rfc: string
-
RFC / Incident / Work Order field from the u_dc_access_event form
- u_change_task: string (32 to 32 chars)
-
Change Task field from the u_dc_access_event form
- u_request: string (32 to 32 chars)
-
Request field from the u_dc_access_event form
- u_guests: string
-
Guests field from the u_dc_access_event form
- u_ccure_status: string
-
CCure Status field from the u_dc_access_event form
- u_reason: string
-
Reason field from the u_dc_access_event form
- u_location: string
-
Location field from the u_dc_access_event form
- 201 Created
-
Success with response body
- result: object
-
{
"u_authorized_user": "Zeeman, Jay",
"u_badge": "",
"u_beginning_time": "2016-10-13 07:29:17",
"u_ccure_status": "Remove FAILED",
"u_change_task": "",
"u_departure_time": "",
"u_ending_time": "2016-10-13 16:29:21",
"u_guests": "",
"u_location": "Data Center",
"u_reason": "Facilities",
"u_request": "RITM556280",
"u_rfc": "Facilities",
"u_state": "Expired"
}- u_authorized_user: string (32 to 32 chars)
-
Authorized User field from the u_dc_access_event form
- u_state: string
-
Status field from the u_dc_access_event form
- u_beginning_time: string (date-time)
-
Beginning Time field from the u_dc_access_event form
- u_ending_time: string (date-time)
-
Ending Time field from the u_dc_access_event form
- u_badge: string
-
Badge field from the u_dc_access_event form
- u_departure_time: string (date-time)
-
Departure Time field from the u_dc_access_event form
- u_rfc: string
-
RFC / Incident / Work Order field from the u_dc_access_event form
- u_change_task: string (32 to 32 chars)
-
Change Task field from the u_dc_access_event form
- u_request: string (32 to 32 chars)
-
Request field from the u_dc_access_event form
- u_guests: string
-
Guests field from the u_dc_access_event form
- u_ccure_status: string
-
CCure Status field from the u_dc_access_event form
- u_reason: string
-
Reason field from the u_dc_access_event form
- u_location: string
-
Location field from the u_dc_access_event form
- 204 No Content
-
Success with no response body
- 400 Bad Request
-
The request URI does not match the APIs in the system, or the operation failed for unknown reasons. Invalid headers can also cause this error.
- 401 Unauthorized
-
The user is not authorized to use the API.
- 403 Forbidden
-
The requested operation is not permitted for the user. This error can also be caused by ACL failures, or business rule or data policy constraints.
- 404 Not Found
-
The requested resource was not found. This can be caused by an ACL constraint or if the resource does not exist.
- 405 Method Not Allowed
-
The HTTP action is not allowed for the requested REST API, or it is not supported by any API.
- 406 Not Acceptable
-
The endpoint does not support the response format specified in the request Accept header.
- 415 Unsupported Media Type
-
The endpoint does not support the format of the request body.
PUT /u_dc_access_event/{sys_id}*
The body to pass or that is received in a response
{
"u_authorized_user": "Zeeman, Jay",
"u_badge": "",
"u_beginning_time": "2016-10-13 07:29:17",
"u_ccure_status": "Remove FAILED",
"u_change_task": "",
"u_departure_time": "",
"u_ending_time": "2016-10-13 16:29:21",
"u_guests": "",
"u_location": "Data Center",
"u_reason": "Facilities",
"u_request": "RITM556280",
"u_rfc": "Facilities",
"u_state": "Expired"
}
- u_authorized_user: string (32 to 32 chars)
-
Authorized User field from the u_dc_access_event form
- u_state: string
-
Status field from the u_dc_access_event form
- u_beginning_time: string (date-time)
-
Beginning Time field from the u_dc_access_event form
- u_ending_time: string (date-time)
-
Ending Time field from the u_dc_access_event form
- u_badge: string
-
Badge field from the u_dc_access_event form
- u_departure_time: string (date-time)
-
Departure Time field from the u_dc_access_event form
- u_rfc: string
-
RFC / Incident / Work Order field from the u_dc_access_event form
- u_change_task: string (32 to 32 chars)
-
Change Task field from the u_dc_access_event form
- u_request: string (32 to 32 chars)
-
Request field from the u_dc_access_event form
- u_guests: string
-
Guests field from the u_dc_access_event form
- u_ccure_status: string
-
CCure Status field from the u_dc_access_event form
- u_reason: string
-
Reason field from the u_dc_access_event form
- u_location: string
-
Location field from the u_dc_access_event form
sysparm_display_value | Pass 'true' to return the display value of the record, pass 'false' to get the sys_id of the record, or pass 'all' to get both for reference fields. | query | string false | |
sysparm_exclude_reference_link | True to exclude Table API links for reference fields. | query | string false | |
sysparm_fields | A comma-separated list of fields to return in the response. Defaults to a list that will just get form fields | query | string u_authorized_user,u_state,u_beginning_time,u_ending_time,u_badge,u_departure_time,u_rfc,u_change_task,u_request,u_guests,u_ccure_status,u_reason,u_location | |
sysparm_view | Render the response according to the specified UI view (overridden by sysparm_fields). | query | string | |
sysparm_input_display_value | True to set raw value of input fields. | query | string false | |
sysparm_suppress_auto_sys_field | True to suppress auto generation of system fields. | query | string false | |
sys_id | sys_id of the record you would like to delete from the table. | path | string |
application/json
- 200 OK
-
Success with response body.
- result: object
-
{
"u_authorized_user": "Zeeman, Jay",
"u_badge": "",
"u_beginning_time": "2016-10-13 07:29:17",
"u_ccure_status": "Remove FAILED",
"u_change_task": "",
"u_departure_time": "",
"u_ending_time": "2016-10-13 16:29:21",
"u_guests": "",
"u_location": "Data Center",
"u_reason": "Facilities",
"u_request": "RITM556280",
"u_rfc": "Facilities",
"u_state": "Expired"
}- u_authorized_user: string (32 to 32 chars)
-
Authorized User field from the u_dc_access_event form
- u_state: string
-
Status field from the u_dc_access_event form
- u_beginning_time: string (date-time)
-
Beginning Time field from the u_dc_access_event form
- u_ending_time: string (date-time)
-
Ending Time field from the u_dc_access_event form
- u_badge: string
-
Badge field from the u_dc_access_event form
- u_departure_time: string (date-time)
-
Departure Time field from the u_dc_access_event form
- u_rfc: string
-
RFC / Incident / Work Order field from the u_dc_access_event form
- u_change_task: string (32 to 32 chars)
-
Change Task field from the u_dc_access_event form
- u_request: string (32 to 32 chars)
-
Request field from the u_dc_access_event form
- u_guests: string
-
Guests field from the u_dc_access_event form
- u_ccure_status: string
-
CCure Status field from the u_dc_access_event form
- u_reason: string
-
Reason field from the u_dc_access_event form
- u_location: string
-
Location field from the u_dc_access_event form
- 201 Created
-
Success with response body
- result: object
-
{
"u_authorized_user": "Zeeman, Jay",
"u_badge": "",
"u_beginning_time": "2016-10-13 07:29:17",
"u_ccure_status": "Remove FAILED",
"u_change_task": "",
"u_departure_time": "",
"u_ending_time": "2016-10-13 16:29:21",
"u_guests": "",
"u_location": "Data Center",
"u_reason": "Facilities",
"u_request": "RITM556280",
"u_rfc": "Facilities",
"u_state": "Expired"
}- u_authorized_user: string (32 to 32 chars)
-
Authorized User field from the u_dc_access_event form
- u_state: string
-
Status field from the u_dc_access_event form
- u_beginning_time: string (date-time)
-
Beginning Time field from the u_dc_access_event form
- u_ending_time: string (date-time)
-
Ending Time field from the u_dc_access_event form
- u_badge: string
-
Badge field from the u_dc_access_event form
- u_departure_time: string (date-time)
-
Departure Time field from the u_dc_access_event form
- u_rfc: string
-
RFC / Incident / Work Order field from the u_dc_access_event form
- u_change_task: string (32 to 32 chars)
-
Change Task field from the u_dc_access_event form
- u_request: string (32 to 32 chars)
-
Request field from the u_dc_access_event form
- u_guests: string
-
Guests field from the u_dc_access_event form
- u_ccure_status: string
-
CCure Status field from the u_dc_access_event form
- u_reason: string
-
Reason field from the u_dc_access_event form
- u_location: string
-
Location field from the u_dc_access_event form
- 204 No Content
-
Success with no response body
- 400 Bad Request
-
The request URI does not match the APIs in the system, or the operation failed for unknown reasons. Invalid headers can also cause this error.
- 401 Unauthorized
-
The user is not authorized to use the API.
- 403 Forbidden
-
The requested operation is not permitted for the user. This error can also be caused by ACL failures, or business rule or data policy constraints.
- 404 Not Found
-
The requested resource was not found. This can be caused by an ACL constraint or if the resource does not exist.
- 405 Method Not Allowed
-
The HTTP action is not allowed for the requested REST API, or it is not supported by any API.
- 406 Not Acceptable
-
The endpoint does not support the response format specified in the request Accept header.
- 415 Unsupported Media Type
-
The endpoint does not support the format of the request body.
Parameter definitions
Response definitions
- SuccessfullyRetrieved
-
Success with response body.
- result: object[]
-
object {
"u_authorized_user": "Zeeman, Jay",
"u_badge": "",
"u_beginning_time": "2016-10-13 07:29:17",
"u_ccure_status": "Remove FAILED",
"u_change_task": "",
"u_departure_time": "",
"u_ending_time": "2016-10-13 16:29:21",
"u_guests": "",
"u_location": "Data Center",
"u_reason": "Facilities",
"u_request": "RITM556280",
"u_rfc": "Facilities",
"u_state": "Expired"
}- u_authorized_user: string (32 to 32 chars)
-
Authorized User field from the u_dc_access_event form
- u_state: string
-
Status field from the u_dc_access_event form
- u_beginning_time: string (date-time)
-
Beginning Time field from the u_dc_access_event form
- u_ending_time: string (date-time)
-
Ending Time field from the u_dc_access_event form
- u_badge: string
-
Badge field from the u_dc_access_event form
- u_departure_time: string (date-time)
-
Departure Time field from the u_dc_access_event form
- u_rfc: string
-
RFC / Incident / Work Order field from the u_dc_access_event form
- u_change_task: string (32 to 32 chars)
-
Change Task field from the u_dc_access_event form
- u_request: string (32 to 32 chars)
-
Request field from the u_dc_access_event form
- u_guests: string
-
Guests field from the u_dc_access_event form
- u_ccure_status: string
-
CCure Status field from the u_dc_access_event form
- u_reason: string
-
Reason field from the u_dc_access_event form
- u_location: string
-
Location field from the u_dc_access_event form
- Success
-
Success with response body.
- result: object
-
{
"u_authorized_user": "Zeeman, Jay",
"u_badge": "",
"u_beginning_time": "2016-10-13 07:29:17",
"u_ccure_status": "Remove FAILED",
"u_change_task": "",
"u_departure_time": "",
"u_ending_time": "2016-10-13 16:29:21",
"u_guests": "",
"u_location": "Data Center",
"u_reason": "Facilities",
"u_request": "RITM556280",
"u_rfc": "Facilities",
"u_state": "Expired"
}- u_authorized_user: string (32 to 32 chars)
-
Authorized User field from the u_dc_access_event form
- u_state: string
-
Status field from the u_dc_access_event form
- u_beginning_time: string (date-time)
-
Beginning Time field from the u_dc_access_event form
- u_ending_time: string (date-time)
-
Ending Time field from the u_dc_access_event form
- u_badge: string
-
Badge field from the u_dc_access_event form
- u_departure_time: string (date-time)
-
Departure Time field from the u_dc_access_event form
- u_rfc: string
-
RFC / Incident / Work Order field from the u_dc_access_event form
- u_change_task: string (32 to 32 chars)
-
Change Task field from the u_dc_access_event form
- u_request: string (32 to 32 chars)
-
Request field from the u_dc_access_event form
- u_guests: string
-
Guests field from the u_dc_access_event form
- u_ccure_status: string
-
CCure Status field from the u_dc_access_event form
- u_reason: string
-
Reason field from the u_dc_access_event form
- u_location: string
-
Location field from the u_dc_access_event form
- Created
-
Success with response body
- result: object
-
{
"u_authorized_user": "Zeeman, Jay",
"u_badge": "",
"u_beginning_time": "2016-10-13 07:29:17",
"u_ccure_status": "Remove FAILED",
"u_change_task": "",
"u_departure_time": "",
"u_ending_time": "2016-10-13 16:29:21",
"u_guests": "",
"u_location": "Data Center",
"u_reason": "Facilities",
"u_request": "RITM556280",
"u_rfc": "Facilities",
"u_state": "Expired"
}- u_authorized_user: string (32 to 32 chars)
-
Authorized User field from the u_dc_access_event form
- u_state: string
-
Status field from the u_dc_access_event form
- u_beginning_time: string (date-time)
-
Beginning Time field from the u_dc_access_event form
- u_ending_time: string (date-time)
-
Ending Time field from the u_dc_access_event form
- u_badge: string
-
Badge field from the u_dc_access_event form
- u_departure_time: string (date-time)
-
Departure Time field from the u_dc_access_event form
- u_rfc: string
-
RFC / Incident / Work Order field from the u_dc_access_event form
- u_change_task: string (32 to 32 chars)
-
Change Task field from the u_dc_access_event form
- u_request: string (32 to 32 chars)
-
Request field from the u_dc_access_event form
- u_guests: string
-
Guests field from the u_dc_access_event form
- u_ccure_status: string
-
CCure Status field from the u_dc_access_event form
- u_reason: string
-
Reason field from the u_dc_access_event form
- u_location: string
-
Location field from the u_dc_access_event form
- SuccessNoBody
-
Success with no response body
- BadRequest
-
The request URI does not match the APIs in the system, or the operation failed for unknown reasons. Invalid headers can also cause this error.
- Unauthorized
-
The user is not authorized to use the API.
- Forbidden
-
The requested operation is not permitted for the user. This error can also be caused by ACL failures, or business rule or data policy constraints.
- NotFound
-
The requested resource was not found. This can be caused by an ACL constraint or if the resource does not exist.
- MethodNotAllowed
-
The HTTP action is not allowed for the requested REST API, or it is not supported by any API.
- NotAcceptable
-
The endpoint does not support the response format specified in the request Accept header.
- UnsupportedMediaType
-
The endpoint does not support the format of the request body.
Schema definitions
- result: object[]
-
object {
"u_authorized_user": "Zeeman, Jay",
"u_badge": "",
"u_beginning_time": "2016-10-13 07:29:17",
"u_ccure_status": "Remove FAILED",
"u_change_task": "",
"u_departure_time": "",
"u_ending_time": "2016-10-13 16:29:21",
"u_guests": "",
"u_location": "Data Center",
"u_reason": "Facilities",
"u_request": "RITM556280",
"u_rfc": "Facilities",
"u_state": "Expired"
}- u_authorized_user: string (32 to 32 chars)
-
Authorized User field from the u_dc_access_event form
- u_state: string
-
Status field from the u_dc_access_event form
- u_beginning_time: string (date-time)
-
Beginning Time field from the u_dc_access_event form
- u_ending_time: string (date-time)
-
Ending Time field from the u_dc_access_event form
- u_badge: string
-
Badge field from the u_dc_access_event form
- u_departure_time: string (date-time)
-
Departure Time field from the u_dc_access_event form
- u_rfc: string
-
RFC / Incident / Work Order field from the u_dc_access_event form
- u_change_task: string (32 to 32 chars)
-
Change Task field from the u_dc_access_event form
- u_request: string (32 to 32 chars)
-
Request field from the u_dc_access_event form
- u_guests: string
-
Guests field from the u_dc_access_event form
- u_ccure_status: string
-
CCure Status field from the u_dc_access_event form
- u_reason: string
-
Reason field from the u_dc_access_event form
- u_location: string
-
Location field from the u_dc_access_event form
- result: object
-
{
"u_authorized_user": "Zeeman, Jay",
"u_badge": "",
"u_beginning_time": "2016-10-13 07:29:17",
"u_ccure_status": "Remove FAILED",
"u_change_task": "",
"u_departure_time": "",
"u_ending_time": "2016-10-13 16:29:21",
"u_guests": "",
"u_location": "Data Center",
"u_reason": "Facilities",
"u_request": "RITM556280",
"u_rfc": "Facilities",
"u_state": "Expired"
}- u_authorized_user: string (32 to 32 chars)
-
Authorized User field from the u_dc_access_event form
- u_state: string
-
Status field from the u_dc_access_event form
- u_beginning_time: string (date-time)
-
Beginning Time field from the u_dc_access_event form
- u_ending_time: string (date-time)
-
Ending Time field from the u_dc_access_event form
- u_badge: string
-
Badge field from the u_dc_access_event form
- u_departure_time: string (date-time)
-
Departure Time field from the u_dc_access_event form
- u_rfc: string
-
RFC / Incident / Work Order field from the u_dc_access_event form
- u_change_task: string (32 to 32 chars)
-
Change Task field from the u_dc_access_event form
- u_request: string (32 to 32 chars)
-
Request field from the u_dc_access_event form
- u_guests: string
-
Guests field from the u_dc_access_event form
- u_ccure_status: string
-
CCure Status field from the u_dc_access_event form
- u_reason: string
-
Reason field from the u_dc_access_event form
- u_location: string
-
Location field from the u_dc_access_event form
{
"u_authorized_user": "Zeeman, Jay",
"u_badge": "",
"u_beginning_time": "2016-10-13 07:29:17",
"u_ccure_status": "Remove FAILED",
"u_change_task": "",
"u_departure_time": "",
"u_ending_time": "2016-10-13 16:29:21",
"u_guests": "",
"u_location": "Data Center",
"u_reason": "Facilities",
"u_request": "RITM556280",
"u_rfc": "Facilities",
"u_state": "Expired"
}
- u_authorized_user: string (32 to 32 chars)
-
Authorized User field from the u_dc_access_event form
- u_state: string
-
Status field from the u_dc_access_event form
- u_beginning_time: string (date-time)
-
Beginning Time field from the u_dc_access_event form
- u_ending_time: string (date-time)
-
Ending Time field from the u_dc_access_event form
- u_badge: string
-
Badge field from the u_dc_access_event form
- u_departure_time: string (date-time)
-
Departure Time field from the u_dc_access_event form
- u_rfc: string
-
RFC / Incident / Work Order field from the u_dc_access_event form
- u_change_task: string (32 to 32 chars)
-
Change Task field from the u_dc_access_event form
- u_request: string (32 to 32 chars)
-
Request field from the u_dc_access_event form
- u_guests: string
-
Guests field from the u_dc_access_event form
- u_ccure_status: string
-
CCure Status field from the u_dc_access_event form
- u_reason: string
-
Reason field from the u_dc_access_event form
- u_location: string
-
Location field from the u_dc_access_event form