---
sourceDocument: Australia API Reference
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/api-reference

 Release :

    - australia

ft:locale :

    - en-US

ft:publication_title :

    - Australia API Reference

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# WSD Presence API

# WSD Presence API {#ariaid-title1}

Release version: Australia  
Updated April 27, 2026  
![](https://www.servicenow.com/docs/portal-asset/ico-clock) 33 minutes to read  
The WSD Presence API enables users to manage their in-office presence schedule, including weekly routines, one-time exceptions, and collaborator visibility.
This API supports the Workplace Service Delivery (WSD) Concierge experience by enabling employees to communicate their planned office attendance to colleagues. Use this API for the following actions:

* Retrieve an authenticated user's complete presence data, including their weekly in-office routine, scheduled exceptions, and optionally collaborators' presence information.
* Manage weekly in-office routines so employees can set a recurring schedule.
* Create and manage one-time exceptions that override the routine for a specific date.
* View and manage collaborators to enable coordinated in-office planning.
{#wsd_presence-api__ul_ktl_jw4_bjc}

An authenticated user is someone who is logged in or whose credentials are included in the API request. Call endpoints in any order; each operates independently.

The WSD Presence API belongs to the sn_wsd_concierge namespace. The [WSD Reservation API](https://servicenow-prod.fluidtopics.net/r3i5_UTLG6fl4kDlBgBlOA#wsd_reservation-api "The Workplace Service Delivery (WSD) Reservation API provides endpoints for managing workplace reservations.")
`GET /user/context` endpoint can return presence schedule data from the WSD Presence API when the concierge plugin is active.

## Requirements {#wsd_presence-api__section_mbl_vw4_bjc}

The WSD Presence API requires:

* The sn_wsd_core.workplace_user role assigned to the user.
* The Workplace Service Delivery Core (com.sn_wsd_core) and Workplace Service Delivery Concierge (com.sn_wsd_concierge) plugins activated.
* At least one user record must exist in User \[sys_user\] table with the sn_wsd_core.workplace_user role assigned.
{#wsd_presence-api__ul_okx_zw4_bjc}

## WSD Presence - DELETE /api/sn_wsd_concierge/v1/presence/collaborator/{collaborator_id} {#ariaid-title2}

Removes a collaborator from the authenticated user's presence visibility list. Use this endpoint when a user no longer wants to track a colleague's office attendance.
An authenticated user is someone who is logged in or whose credentials are included in the API request. The collaborator is identified by their sys_id.

### URL format

Versioned URL: /api/sn_wsd_concierge/{api_version}/presence/collaborator/{collaborator_id}

Default URL: /api/sn_wsd_concierge/presence/collaborator/{collaborator_id}

### Supported request parameters

{#wsd_presence-DELETE-collaborator-id__entry__2}{#wsd_presence-DELETE-collaborator-id__version-not_optional-RESTAPI}

| Name | Description |
|-|-|
| api_version | Optional. Version of the endpoint to access. For example, <kbd class="ph userinput">v1</kbd> or <kbd class="ph userinput">v2</kbd>. Only specify this value to use an endpoint version other than the latest. Data type: String |
| collaborator_id | Sys_id of the collaborator to remove from the user's visibility list. Table: User \[sys_user\] Data type: String |
[Table 1. Path parameters]

{#wsd_presence-DELETE-collaborator-id__entry__8}

| Name | Description |
|-|-|
| None |   |
[Table 2. Query parameters]

{#wsd_presence-DELETE-collaborator-id__entry__12}

| Name | Description |
|-|-|
| None |   |
[Table 3. Request body parameters (XML or JSON)]

### Headers

The following request and response headers apply to this HTTP
action only, or apply to this action in a distinct way. For a list of general headers used
in the REST API, see [Supported REST API headers](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-DELETE-collaborator-id__entry__16}

| Header | Description |
|-|-|
| Accept | Data format of the response body. Supported types: application/json, application/xml, or text/xml. |
| Authorization | Authentication credentials. Supports Basic authentication or session-based authentication. |
[Table 4. Request headers]

{#wsd_presence-DELETE-collaborator-id__entry__22}

| Header | Description |
|-|-|
| Content-Type | Data format of the response body: application/json. |
[Table 5. Response headers]

### Status codes

The following status codes apply to this HTTP action. For a
list of possible status codes used in the REST API, see [REST API HTTP response
codes](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-DELETE-collaborator-id__entry__26}{#wsd_presence-DELETE-collaborator-id__entry-200-status-code}{#wsd_presence-DELETE-collaborator-id__entry-500-status-code}

| Status code | Description |
|-|-|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad Request. Missing or invalid collaborator_id path parameter. |
| 404 | Not Found. The specified collaborator wasn't found. |
| 500 | Internal server error. An unexpected error occurred while processing the request. The response contains additional information about the error. |
[Table 6. Status codes]

### Response body parameters (JSON or XML)

{#wsd_presence-DELETE-collaborator-id__entry__36}

| Name | Description |
|-|-|
| result | Object containing results of the request. Data type: Object "result": { "message": "String" } |
| result.message | Confirmation message indicating the number of collaborators removed. Data type: String |
[ ]

### cURL request

This example removes a specific collaborator from the authenticated user's presence visibility list.

    curl "https://<instance>.service-now.com/api/sn_wsd_concierge/v1/presence/collaborator/usr1a2b3c4d5e6" \
    --request DELETE \
    --header "Accept: application/json" \
    --user "username:password"

Response body.

    {
      "result": {
        "message": "1 collaborator(s) removed"
      }
    }

## WSD Presence - DELETE /api/sn_wsd_concierge/v1/presence/exception/{exception_id} {#ariaid-title3}

Deletes a specific presence exception identified by its sys_id. Use this endpoint when a user wants to remove a one-time override and revert to their regular weekly routine for that date.

### URL format

Versioned URL: /api/sn_wsd_concierge/{api_version}/presence/exception/{exception_id}

Default URL: /api/sn_wsd_concierge/presence/exception/{exception_id}

### Supported request parameters

{#wsd_presence-DELETE-exception_id__entry__2}{#wsd_presence-DELETE-exception_id__version-not_optional-RESTAPI}

| Name | Description |
|-|-|
| api_version | Optional. Version of the endpoint to access. For example, <kbd class="ph userinput">v1</kbd> or <kbd class="ph userinput">v2</kbd>. Only specify this value to use an endpoint version other than the latest. Data type: String |
| exception_id | Required. Sys_id of the presence exception to delete. Table: Employee presence exceptions (sn_wsd_concierge_employee_presence_exception) Data type: String |
[Table 7. Path parameters]

{#wsd_presence-DELETE-exception_id__entry__8}

| Name | Description |
|-|-|
| None |   |
[Table 8. Query parameters]

{#wsd_presence-DELETE-exception_id__entry__12}

| Name | Description |
|-|-|
| None |   |
[Table 9. Request body parameters (XML or JSON)]

### Headers

The following request and response headers apply to this HTTP
action only, or apply to this action in a distinct way. For a list of general headers used
in the REST API, see [Supported REST API headers](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-DELETE-exception_id__entry__16}

| Header | Description |
|-|-|
| Accept | Data format of the response body. Supported types: application/json, application/xml, or text/xml. |
| Authorization | Authentication credentials. Supports Basic authentication or session-based authentication. |
[Table 10. Request headers]

{#wsd_presence-DELETE-exception_id__entry__22}

| Header | Description |
|-|-|
| Content-Type | Data format of the response body: application/json. |
[Table 11. Response headers]

### Status codes

The following status codes apply to this HTTP action. For a
list of possible status codes used in the REST API, see [REST API HTTP response
codes](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-DELETE-exception_id__entry__26}{#wsd_presence-DELETE-exception_id__entry-200-status-code}{#wsd_presence-DELETE-exception_id__entry-500-status-code}

| Status code | Description |
|-|-|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad Request. Missing or invalid exception_id path parameter. |
| 404 | Not Found. The specified exception wasn't found. |
| 500 | Internal server error. An unexpected error occurred while processing the request. The response contains additional information about the error. |
[Table 12. Status codes]

### Response body parameters (JSON or XML)

{#wsd_presence-DELETE-exception_id__entry__36}

| Name | Description |
|-|-|
| result | Object containing results of the request. Data type: Object "result": { "message": "String" } |
| result.message | Confirmation message indicating the exception was deleted. Data type: String |
[ ]

### cURL request

This example deletes exception exc1a2b3c4d5e6, reverting that date to the user's regular weekly routine.

    curl "https://<instance>.service-now.com/api/sn_wsd_concierge/v1/presence/exception/exc1a2b3c4d5e6" \
    --request DELETE \
    --header "Accept: application/json" \
    --user "username:password"

Response body.

    {
      "result": {
        "message": "Exception deleted successfully"
      }
    }

## WSD Presence - GET /api/sn_wsd_concierge/v1/presence/collaborator {#ariaid-title4}

Retrieves the list of collaborators for the authenticated user along with each collaborator's presence data, routine, and exceptions. Use this endpoint to view the office attendance schedules of colleagues, enabling coordinated
in-office planning.

### URL format

Versioned URL: /api/sn_wsd_concierge/{api_version}/presence/collaborator

Default URL: /api/sn_wsd_concierge/presence/collaborator

### Supported request parameters

{#wsd_presence-GET-collaborator__entry__2}{#wsd_presence-GET-collaborator__version-not_optional-RESTAPI}

| Name | Description |
|-|-|
| api_version | Optional. Version of the endpoint to access. For example, <kbd class="ph userinput">v1</kbd> or <kbd class="ph userinput">v2</kbd>. Only specify this value to use an endpoint version other than the latest. Data type: String |
[Table 13. Path parameters]

{#wsd_presence-GET-collaborator__entry__6}

| Name | Description |
|-|-|
| None |   |
[Table 14. Query parameters]

{#wsd_presence-GET-collaborator__entry__10}

| Name | Description |
|-|-|
| None |   |
[Table 15. Request body parameters (XML or JSON)]

### Headers

The following request and response headers apply to this HTTP
action only, or apply to this action in a distinct way. For a list of general headers used
in the REST API, see [Supported REST API headers](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-GET-collaborator__table_a35_235_bjc__entry__2}

| Header | Description |
|-|-|
| Accept | Data format of the response body. Supported types: application/json, application/xml, or text/xml. |
| Authorization | Authentication credentials. Supports Basic authentication or session-based authentication. |
[Table 16. Request headers]

{#wsd_presence-GET-collaborator__table_a35_235_bjc} {#wsd_presence-GET-collaborator__table_f5p_f35_bjc__entry__2}

| Header | Description |
|-|-|
| Content-Type | Data format of the response body: application/json. |
[Table 17. Response headers]

{#wsd_presence-GET-collaborator__table_f5p_f35_bjc}

### Status codes

The following status codes apply to this HTTP action. For a
list of possible status codes used in the REST API, see [REST API HTTP response
codes](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-GET-collaborator__table_twp_g35_bjc__entry__2}{#wsd_presence-GET-collaborator__entry-200-status-code}{#wsd_presence-GET-collaborator__entry-500-status-code}

| Status code | Description |
|-|-|
| 200 | Successful. The request was successfully processed. |
| 404 | Not Found. The user wasn't found. |
| 500 | Internal server error. An unexpected error occurred while processing the request. The response contains additional information about the error. |
[Table 18. Status codes]

{#wsd_presence-GET-collaborator__table_twp_g35_bjc}

### Response body parameters (JSON or XML)

{#wsd_presence-GET-collaborator__entry__32}

| Name | Description |
|-|-|
| result | Object containing results of the request. Data type: Object "result": { "count": Number, "collaborators": [Array] } |
| result.count | Total number of collaborators returned. Data type: Number |
| result.collaborators | List of collaborators with their presence data. If a collaborator has privacy enabled, privacy_enabled is true with null routine and empty exceptions. Data type: Array of Objects "collaborators": [ { "sys_id": "String", "name": "String", "privacy_enabled": Boolean, "routine": {Object}, "exceptions": [Array] } ] |
| result.collaborators.sys_id | Sys_id of the collaborator's user record. Table: User \[sys_user\] Data type: String |
| result.collaborators.name | Display name of the collaborator as it appears in their sys_user record. Table: User \[sys_user\] Data type: String |
| result.collaborators.privacy_enabled | Boolean. Flag that indicates whether the collaborator has enabled privacy on their presence data. Valid values: * `true`: The collaborator's routine and exceptions are hidden. routine will be `null` and exceptions will be an empty array. * `false`: The collaborator's presence data is visible. {#wsd_presence-GET-collaborator__ul_w4x_k1q_bjc} Data type: Boolean |
| result.collaborators.routine | Collaborator's weekly in-office routine. Contains a Boolean flag for each day of the week indicating planned office attendance. Displays `true` when collaborator plans to be in-office for that day, and `false` when attendance isn't planned. Data type: Object "routine": { "monday": Boolean" "tuesday": Boolean, "wednesday": Boolean, "thursday": Boolean, "friday": Boolean, "saturday": Boolean, "sunday": Boolean } |
| result.collaborators.exceptions | Collaborator's one-time presence exceptions. Returns an empty array if `privacy_enabled` is `true`. Data type: Array of Objects "exceptions": [ { "sys_id": "String", "date": "String", "in_office": Boolean, "origin": "String", "location": "String" } ] |
| result.collaborators.exceptions.sys_id | Sys_id of the exception record. Table: Employee presence exceptions (sn_wsd_concierge_employee_presence_exception) Data type: String |
| result.collaborators.exceptions.date | Date this exception applies to. This is the date the user's routine is being overridden. Format: yyyy-MM-dd Data type: String |
| result.collaborators.exceptions.in_office | Flag that indicates whether the user will be in the office on this date. This overrides whatever the weekly routine specifies for that day of the week. Valid values: * `true`: User will be in the office. * `false`: User won't be in the office {#wsd_presence-GET-collaborator__ul_ttw_2zp_bjc} Data type: Boolean |
| result.collaborators.exceptions.origin | Source that created the exception. Valid values: * `user`: Created manually by the employee. * `system`: Created automatically by the platform. * `manual`: Created by an admin or on behalf of the user. {#wsd_presence-GET-collaborator__ul_mzn_kzp_bjc} Data type: String |
| result.collaborators.exceptions.location | Name or identifier of the office location the user will be at on this date. Only relevant when `in_office` is `true`. May be an empty string when the user is remote. Data type: String |
[ ]

### cURL request

This example retrieves all collaborators and their presence data for the authenticated user.

    curl "https://<instance>.service-now.com/api/sn_wsd_concierge/v1/presence/collaborator" \
    --request GET \
    --header "Accept: application/json" \
    --user "username:password"

Response body.

    {
      "result": {
        "count": 2,
        "collaborators": [
          {
            "sys_id": "usr1a2b3c4d5e6", "name": "Jane Smith", "privacy_enabled": false,
            "routine": {
              "monday": true, "tuesday": true, "wednesday": false,
              "thursday": true, "friday": false, "saturday": false, "sunday": false
            },
            "exceptions": [
              { "sys_id": "exc1a2b3c", "date": "2026-03-10", "in_office": true, "origin": "user", "location": "Building B" }
            ]
          },
          { "sys_id": "usr7f8g9h0i1j2", "name": "John Doe", "privacy_enabled": true, "routine": null, "exceptions": [] }
        ]
      }
    }

## WSD Presence - GET /api/sn_wsd_concierge/v1/presence/exception {#ariaid-title5}

Retrieves presence exceptions for the authenticated user. Exceptions can be filtered by a date range or by a specific exception sys_id. Use this endpoint when you need to view one-time overrides to a user's weekly
routine.

### URL format

Versioned URL: /api/sn_wsd_concierge/{api_version}/presence/exception

Default URL: /api/sn_wsd_concierge/presence/exception

### Supported request parameters

{#wsd_presence-GET-exception__entry__2}{#wsd_presence-GET-exception__version-not_optional-RESTAPI}

| Name | Description |
|-|-|
| api_version | Optional. Version of the endpoint to access. For example, <kbd class="ph userinput">v1</kbd> or <kbd class="ph userinput">v2</kbd>. Only specify this value to use an endpoint version other than the latest. Data type: String |
[Table 19. Path parameters]

{#wsd_presence-GET-exception__entry__6}

| Name | Description |
|-|-|
| exception_id | Sys_id of a specific exception to retrieve. When provided, overrides the date range filter and returns only the matching exception. Table: Employee presence exceptions (sn_wsd_concierge_employee_presence_exception) Data type: String |
| exception_start_date | Start date for filtering exceptions. Format: yyyy-MM-dd Data type: String Default: Today |
| exception_end_date | End date for filtering exceptions. Format: yyyy-MM-dd Data type: String Default: Today +3 months |
[Table 20. Query parameters]

{#wsd_presence-GET-exception__entry__14}

| Name | Description |
|-|-|
| None |   |
[Table 21. Request body parameters (XML or JSON)]

### Headers {#wsd_presence-GET-exception__section_egz_s35_bjc}

The following request and response headers apply to this HTTP
action only, or apply to this action in a distinct way. For a list of general headers used
in the REST API, see [Supported REST API headers](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-GET-exception__table_a35_235_bjc__entry__2}

| Header | Description |
|-|-|
| Accept | Data format of the response body. Supported types: application/json, application/xml, or text/xml. |
| Authorization | Authentication credentials. Supports Basic authentication or session-based authentication. |
[Table 22. Request headers]

{#wsd_presence-GET-exception__table_a35_235_bjc} {#wsd_presence-GET-exception__table_f5p_f35_bjc__entry__2}

| Header | Description |
|-|-|
| Content-Type | Data format of the response body: application/json. |
[Table 23. Response headers]

{#wsd_presence-GET-exception__table_f5p_f35_bjc}

### Status codes

The following status codes apply to this HTTP action. For a
list of possible status codes used in the REST API, see [REST API HTTP response
codes](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-GET-exception__entry__28}{#wsd_presence-GET-exception__entry-200-status-code}{#wsd_presence-GET-exception__entry-500-status-code}

| Status code | Description |
|-|-|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad Request. Invalid date format for exception_start_date or exception_end_date. |
| 404 | Not Found. The specified exception wasn't found. |
| 500 | Internal server error. An unexpected error occurred while processing the request. The response contains additional information about the error. |
[Table 24. Status codes]

### Response body parameters (JSON or XML)

{#wsd_presence-GET-exception__entry__38}

| Name | Description |
|-|-|
| result | Object containing results of the request. Data type: Object "result": { "exceptions": [Array] } |
| result.exceptions | List of presence exceptions matching the filter criteria. Data type: Array of Objects "exceptions": [ { "sys_id": "sys_id", "date": "String", "in_office": String, "origin": "String", "location": "String" } ] |
| result.exceptions.date | Date this exception applies to. This is the date the user's routine is being overridden. Format: yyyy-MM-dd format Data type: String |
| result.exceptions.in_office | Flag that indicates whether the user will be in the office on this date. This overrides whatever the weekly routine specifies for that day of the week. Valid values: * `true`: User will be in the office. * `false`: User won't be in the office {#wsd_presence-GET-exception__ul_ttw_2zp_bjc} Data type: Boolean |
| result.exceptions.location | The name or identifier of the office location the user will be at on this date. Only relevant when `in_office` is `true`. May be an empty string when the user is remote. Data type: String |
| result.exceptions.origin | Source that created the exception. Valid values: * `user`: Created manually by the employee. * `system`: Created automatically by the platform. * `manual`: Created by an admin or on behalf of the user. {#wsd_presence-GET-exception__ul_mzn_kzp_bjc} Data type: String |
| result.exceptions.sys_id | Sys_id of the exception record. Table: Employee presence exceptions (sn_wsd_concierge_employee_presence_exception) Data type: String |
[ ]

### cURL request

This example retrieves all exceptions for the first half of 2026.

    curl "https://<instance>.service-now.com/api/sn_wsd_concierge/v1/presence/exception?exception_start_date=2026-01-01&exception_end_date=2026-06-30" \
    --request GET \
    --header "Accept: application/json" \
    --user "username:password"

Response body.

    {
      "result": {
        "exceptions": [
          { "sys_id": "exc1a2b3c4d5e6", "date": "2026-02-14", "in_office": true, "origin": "user", "location": "Building A" },
          { "sys_id": "exc7f8g9h0i1j2", "date": "2026-03-17", "in_office": false, "origin": "system", "location": "" }
        ]
      }
    }

## WSD Presence - GET /api/sn_wsd_concierge/v1/presence {#ariaid-title6}

Retrieves the authenticated user's complete presence data, including their weekly in-office routine, scheduled presence exceptions, and optionally their collaborators' presence information.
Use this endpoint to get a holistic view of a user's planned office attendance. You can also query another user's presence data by providing their sys_id, subject to privacy settings.

### URL format

Versioned URL: /api/sn_wsd_concierge/{api_version}/presence

Default URL: /api/sn_wsd_concierge/presence

### Supported request parameters

{#wsd_presence-GET-presence__entry__2}{#wsd_presence-GET-presence__version-not_optional-RESTAPI}

| Name | Description |
|-|-|
| api_version | Optional. Version of the endpoint to access. For example, <kbd class="ph userinput">v1</kbd> or <kbd class="ph userinput">v2</kbd>. Only specify this value to use an endpoint version other than the latest. Data type: String |
[Table 25. Path parameters]

{#wsd_presence-GET-presence__entry__6}

| Name | Description |
|-|-|
| user_id | Sys_id of the target user whose presence data to retrieve. If not provided, returns presence data for the authenticated user. Note: To query another user's presence data, the caller must have the admin role. Without it, the request returns 401 Unauthorized. Table: User \[sys_user\] Data type: String |
| exception_start_date | Start date for filtering presence exceptions. Format: yyyy-MM-dd Data type: String Default: Today |
| exception_end_date | End date for filtering presence exceptions. Format: yyyy-MM-dd Data type: String Default: Today + 3 months |
| include | Related data to include in the response. Only valid value: <kbd class="ph userinput">collaborators</kbd> Data type: String |
[Table 26. Query parameters]

{#wsd_presence-GET-presence__entry__16}

| Name | Description |
|-|-|
| None |   |
[Table 27. Request body parameters (XML or JSON)]

### Headers

The following request and response headers apply to this HTTP
action only, or apply to this action in a distinct way. For a list of general headers used
in the REST API, see [Supported REST API headers](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-GET-presence__entry__20}

| Header | Description |
|-|-|
| Accept | Data format of the response body. Supported types: application/json, application/xml, or text/xml. |
| Authorization | Authentication credentials. Supports Basic authentication or session-based authentication. |
[Table 28. Request headers]

{#wsd_presence-GET-presence__entry__26}

| Header | Description |
|-|-|
| Content-Type | Data format of the response body: application/json. |
[Table 29. Response headers]

### Status codes

The following status codes apply to this HTTP action. For a
list of possible status codes used in the REST API, see [REST API HTTP response
codes](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-GET-presence__entry__30}{#wsd_presence-GET-presence__entry-200-status-code}

| Status code | Description |
|-|-|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad Request. Invalid date format for exception_start_date or exception_end_date, or invalid user_id format. |
| 401 | Unauthorized. The authenticated user doesn't have permission to view the target user's presence data. Returned when user_id is provided and doesn't match the authenticated user. |
| 404 | Not Found. The specified user wasn't found. |
| 500 | Internal Server Error. An unexpected error occurred while processing the request. |
[Table 30. Status codes]

### Response body parameters (JSON or XML)

{#wsd_presence-GET-presence__entry__42}

| Name | Description |
|-|-|
| result | Object containing results of the response. "result": { "routine": {Object}, "exceptions": [Array], "collaborators": [Array] } |
| result.routine | Weekly in-office routine for the user. Contains a Boolean flag for each day of the week indicating planned office attendance. Displays `true` when the authenticated user plans to be in-office that day, and `false` when attendance isn't planned. Data type: Object "routine": { "monday": Boolean, "tuesday": Boolean, "wednesday": Boolean, "thursday": Boolean, "friday": Boolean, "saturday": Boolean, "sunday": Boolean } |
| result.exceptions | List of one-time presence exceptions that override the user's routine for specific dates. Data type: Array of Objects "exceptions": [ { "sys_id": "String", "date": "String", "in_office": Boolean, "origin": "String", "location": "String" } ] |
| result.exceptions.sys_id | Sys_id of the exception record. Table: Employee presence exceptions (sn_wsd_concierge_employee_presence_exception) Data type: String |
| result.exceptions.date | Date this exception applies to, in yyyy-MM-dd format. This is the date the user's routine is being overridden. Data type: String |
| result.exceptions.in_office | Flag that indicates whether the user will be in the office on this date. This overrides whatever the weekly routine specifies for that day of the week. Valid values: * `true`: User will be in the office. * `false`: User won't be in the office {#wsd_presence-GET-presence__ul_ttw_2zp_bjc} Data type: Boolean |
| result.exceptions.origin | Source that created the exception. Valid values: * `user`: Created manually by the employee. * `system`: Created automatically by the platform. * `manual`: Created by an admin or on behalf of the user. {#wsd_presence-GET-presence__ul_mzn_kzp_bjc} Data type: String |
| result.exceptions.location | The name or identifier of the office location the user will be at on this date. Only relevant when `in_office` is `true`. May be an empty string when the user is remote. Data type: String |
| result.collaborators | List of collaborators and their presence data. Only returned when `include=collaborators` is specified. If a collaborator has privacy enabled, privacy_enabled is true with null routine and empty exceptions. Data type: Array of Objects "collaborators": [ { "sys_id": "String", "name": "String", "privacy_enabled": Boolean, "routine": {Object}, "exceptions": [Array] } ] |
| result.collaborators.sys_id | Sys_id of the collaborator's user record. Table: User \[sys_user\] Data type: String |
| result.collaborators.name | The display name of the collaborator as it appears in their sys_user record. Table: User \[sys_user\] Data type: String |
| result.collaborators.privacy_enabled | Boolean. Flag that indicates whether the collaborator has enabled privacy on their presence data. Valid values: * `true`: The collaborator's routine and exceptions are hidden. routine will be `null` and exceptions will be an empty array. * `false`: The collaborator's presence data is visible. {#wsd_presence-GET-presence__ul_w4x_k1q_bjc} Data type: Boolean |
| result.collaborators.routine | The collaborator's weekly in-office routine. Contains a Boolean flag for each day of the week indicating planned office attendance. Displays `true` when the collaborator plans to be in-office that day, and `false` when attendance isn't planned. Data type: Object "routine": { "monday": Boolean, "tuesday": Boolean, "wednesday": Boolean, "thursday": Boolean, "friday": Boolean, "saturday": Boolean, "sunday": Boolean } |
| result.collaborators.exceptions | The collaborator's one-time presence exceptions. Follows the same structure as the authenticated user's exceptions parameter. Returns an empty array if `privacy_enabled` is `true`. Data type: Array of Objects "exceptions": [ { "sys_id": "String", "date": "String", "in_office": Boolean, "origin": "String", "location": "String" } ] |
[ ]

### cURL request

This example retrieves the authenticated user's full presence data, including collaborator schedules, for exceptions in Q1 2026.

    curl "https://<instance>.service-now.com/api/sn_wsd_concierge/v1/presence?include=collaborators&exception_start_date=2026-01-01&exception_end_date=2026-03-31" \
    --request GET \
    --header "Accept: application/json" \
    --user "username:password"

Response body.

    {
      "result": {
        "routine": {
          "monday": true,  "tuesday": false, "wednesday": true,
          "thursday": true, "friday": false, "saturday": false, "sunday": false
        },
        "exceptions": [
          {
            "sys_id": "a1b2c3d4e5f6",
            "date": "2026-02-14",
            "in_office": true,
            "origin": "user",
            "location": "Building A"
          }
        ],
        "collaborators": [
          {
            "sys_id": "f6e5d4c3b2a1",
            "name": "Jane Smith",
            "privacy_enabled": false,
            "routine": {
              "monday": true, "tuesday": true, "wednesday": false,
              "thursday": true, "friday": false, "saturday": false, "sunday": false
            },
            "exceptions": []
          }
        ]
      }
    }

## WSD Presence - GET /api/sn_wsd_concierge/v1/presence/routine {#ariaid-title7}

Retrieves only the authenticated user's weekly in-office routine. This is a lightweight alternative to GET /presence when you only need the routine schedule without exceptions or collaborators.

### URL format

Versioned URL: /api/sn_wsd_concierge/{api_version}/presence/routine

Default URL: /api/sn_wsd_concierge/presence/routine

### Supported request parameters

{#wsd_presence-GET-routine__entry__2}{#wsd_presence-GET-routine__version-not_optional-RESTAPI}

| Name | Description |
|-|-|
| api_version | Optional. Version of the endpoint to access. For example, <kbd class="ph userinput">v1</kbd> or <kbd class="ph userinput">v2</kbd>. Only specify this value to use an endpoint version other than the latest. Data type: String |
[Table 31. Path parameters]

{#wsd_presence-GET-routine__entry__6}

| Name | Description |
|-|-|
| None |   |
[Table 32. Query parameters]

{#wsd_presence-GET-routine__entry__10}

| Name | Description |
|-|-|
| None |   |
[Table 33. Request body parameters (XML or JSON)]

### Headers {#wsd_presence-GET-routine__section_zlj_rj5_bjc}

The following request and response headers apply to this HTTP
action only, or apply to this action in a distinct way. For a list of general headers used
in the REST API, see [Supported REST API headers](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-GET-routine__table_amj_rj5_bjc__entry__2}

| Header | Description |
|-|-|
| Accept | Data format of the response body. Supported types: application/json, application/xml, or text/xml. |
| Authorization | Authentication credentials. Supports Basic authentication or session-based authentication. |
[Table 34. Request headers]

{#wsd_presence-GET-routine__table_amj_rj5_bjc} {#wsd_presence-GET-routine__table_bmj_rj5_bjc__entry__2}

| Header | Description |
|-|-|
| Content-Type | Data format of the response body: application/json. |
[Table 35. Response headers]

{#wsd_presence-GET-routine__table_bmj_rj5_bjc}

### Status codes

The following status codes apply to this HTTP action. For a
list of possible status codes used in the REST API, see [REST API HTTP response
codes](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-GET-routine__entry__24}{#wsd_presence-GET-routine__entry-200-status-code}{#wsd_presence-GET-routine__entry-500-status-code}

| Status code | Description |
|-|-|
| 200 | Successful. The request was successfully processed. |
| 404 | Not Found. The user or routine wasn't found. |
| 500 | Internal server error. An unexpected error occurred while processing the request. The response contains additional information about the error. |
[Table 36. Status codes]

### Response body parameters (JSON or XML)

{#wsd_presence-GET-routine__entry__32}

| Name | Description |
|-|-|
| result | Object containing results of the request. Data type: Object "result": { "user_id": "String", "routine": {Object} } |
| result.user_id | Sys_id of the user whose routine is returned. Table: User \[sys_user\] Data type: String |
| result.routine | User's recurring weekly in-office schedule. Contains a Boolean flag for each day of the week indicating planned office attendance. Displays `true` when the user plans to be in-office that day, and `false` when attendance isn't planned. Data type: Object "routine": { "monday": Boolean, "tuesday": Boolean, "wednesday": Boolean, "thursday": Boolean, "friday": Boolean, "saturday": Boolean, "sunday": Boolean } |
[ ]

### cURL request

This example retrieves the weekly in-office routine for the authenticated user.

    curl "https://<instance>.service-now.com/api/sn_wsd_concierge/v1/presence/routine" \
    --request GET \
    --header "Accept: application/json" \
    --user "username:password"

Response body. Shows that the user's routine shows in-office attendance for Monday through Thursday.

    {
      "result": {
        "user_id": "a1b2c3d4e5f6g7h8",
        "routine": {
          "monday": true,  "tuesday": true,  "wednesday": true,
          "thursday": true, "friday": false, "saturday": false, "sunday": false
        }
      }
    }

## WSD Presence - PATCH /api/sn_wsd_concierge/v1/presence/routine {#ariaid-title8}

Partially updates the authenticated user's weekly in-office routine. Use this endpoint when a user needs to adjust specific days without resetting the entire schedule.
Only the days provided in the request body are updated. All other days remain unchanged.

### URL format

Versioned URL: /api/sn_wsd_concierge/{api_version}/presence/routine

Default URL: /api/sn_wsd_concierge/presence/routine

### Supported request parameters

{#wsd_presence-PATCH-routine__entry__2}{#wsd_presence-PATCH-routine__version-not_optional-RESTAPI}

| Name | Description |
|-|-|
| api_version | Optional. Version of the endpoint to access. For example, <kbd class="ph userinput">v1</kbd> or <kbd class="ph userinput">v2</kbd>. Only specify this value to use an endpoint version other than the latest. Data type: String |
[Table 37. Path parameters]

{#wsd_presence-PATCH-routine__entry__6}

| Name | Description |
|-|-|
| None |   |
[Table 38. Query parameters]

{#wsd_presence-PATCH-routine__entry__10}

| Name | Description |
|-|-|
| routine | Required. The authenticated user's weekly routine. Contains a Boolean flag for each day of the week indicating planned office attendance. Displays `true` when the authenticated user plans to be in-office that day, and `false` when attendance isn't planned. Days omitted in the request remain unchanged. An empty routine object is accepted as a no-op. Data type: Object "routine": { "monday": "Boolean", "tuesday": "Boolean", "wednesday": "Boolean", "thursday": "Boolean", "friday": "Boolean", "saturday": "Boolean", "sunday": "Boolean" } |
[Table 39. Request body parameters (XML or JSON)]

### Headers {#wsd_presence-PATCH-routine__section_zlj_rj5_bjc}

The following request and response headers apply to this HTTP
action only, or apply to this action in a distinct way. For a list of general headers used
in the REST API, see [Supported REST API headers](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-PATCH-routine__table_amj_rj5_bjc__entry__2}

| Header | Description |
|-|-|
| Accept | Data format of the response body. Supported types: application/json, application/xml, or text/xml. |
| Authorization | Authentication credentials. Supports Basic authentication or session-based authentication. |
| Content-Type | Data format of the request body: application/json. |
[Table 40. Request headers]

{#wsd_presence-PATCH-routine__table_amj_rj5_bjc} {#wsd_presence-PATCH-routine__table_bmj_rj5_bjc__entry__2}

| Header | Description |
|-|-|
| Content-Type | Data format of the response body: application/json. |
[Table 41. Response headers]

{#wsd_presence-PATCH-routine__table_bmj_rj5_bjc}

### Status codes {#wsd_presence-PATCH-routine__section_cjt_dk5_bjc}

The following status codes apply to this HTTP action. For a
list of possible status codes used in the REST API, see [REST API HTTP response
codes](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-PATCH-routine__table_djt_dk5_bjc__entry__2}{#wsd_presence-PATCH-routine__entry-200-status-code}{#wsd_presence-PATCH-routine__entry-500-status-code}

| Status code | Description |
|-|-|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad Request. Missing request body, invalid format, or no valid day fields provided. |
| 500 | Internal server error. An unexpected error occurred while processing the request. The response contains additional information about the error. |
[Table 42. Status codes]

{#wsd_presence-PATCH-routine__table_djt_dk5_bjc}

### Response body parameters (JSON or XML)

{#wsd_presence-PATCH-routine__entry__34}

| Name | Description |
|-|-|
| result | Object containing results of the request. Data type: Object "result": { "message": "String", "result": {Object} } |
| result.message | Confirmation message indicating the routine was updated. Data type: String |
| result.result | Contains the complete updated routine object with all seven days including unchanged days. Data type: Object "result": { "routine": {Object} } |
| result.routine | Weekly in-office routine. Contains a Boolean flag for each day of the week where `true` indicates in-office attendance, and `false` indicates no attendance. Data type: Object "routine": { "monday": "Boolean", "tuesday": "Boolean", "wednesday": "Boolean", "thursday": "Boolean", "friday": "Boolean", "saturday": "Boolean", "sunday": "Boolean" } |
[ ]

### cURL request

This example updates only Friday and Saturday to true, leaving all other days unchanged.

    curl "https://<instance>.service-now.com/api/sn_wsd_concierge/v1/presence/routine" \
    --request PATCH \
    --header "Accept: application/json" \
    --header "Content-Type: application/json" \
    --user "username:password" \
    --data '{
      "routine": { "friday": true, "saturday": true }
    }'

Response body.

    {
      "result": {
        "message": "Routine updated successfully",
        "result": {
          "routine": {
            "monday": true, "tuesday": true, "wednesday": true,
            "thursday": true, "friday": true, "saturday": true, "sunday": false
          }
        }
      }
    }

## WSD Presence - POST /api/sn_wsd_concierge/v1/presence/collaborator {#ariaid-title9}

Adds one or more collaborators to the authenticated user's presence visibility list. Collaborators can then view each other's presence data. Use this endpoint to build a team or group of colleagues whose office attendance you
want to track.

### URL format

Versioned URL: /api/sn_wsd_concierge/{api_version}/presence/collaborator

Default URL: /api/sn_wsd_concierge/presence/collaborator

### Supported request parameters

{#wsd_presence-POST-collaborator__entry__2}{#wsd_presence-POST-collaborator__version-not_optional-RESTAPI}

| Name | Description |
|-|-|
| api_version | Optional. Version of the endpoint to access. For example, <kbd class="ph userinput">v1</kbd> or <kbd class="ph userinput">v2</kbd>. Only specify this value to use an endpoint version other than the latest. Data type: String |
[Table 43. Path parameters]

{#wsd_presence-POST-collaborator__entry__6}

| Name | Description |
|-|-|
| None |   |
[Table 44. Query parameters]

{#wsd_presence-POST-collaborator__entry__10}

| Name | Description |
|-|-|
| collaborator_ids | Required. Non-empty array of sys_id values identifying users to add as collaborators. Table: User \[sys_user\] Data type: Array of Strings "collaborator_ids": ["String", "String"] |
[Table 45. Request body parameters (XML or JSON)]

### Headers {#wsd_presence-POST-collaborator__section_zlj_rj5_bjc}

The following request and response headers apply to this HTTP
action only, or apply to this action in a distinct way. For a list of general headers used
in the REST API, see [Supported REST API headers](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-POST-collaborator__table_amj_rj5_bjc__entry__2}

| Header | Description |
|-|-|
| Accept | Data format of the response body. Supported types: application/json, application/xml, or text/xml. |
| Authorization | Authentication credentials. Supports Basic authentication or session-based authentication. |
| Content-Type | Data format of the request body: application/json. |
[Table 46. Request headers]

{#wsd_presence-POST-collaborator__table_amj_rj5_bjc} {#wsd_presence-POST-collaborator__table_bmj_rj5_bjc__entry__2}

| Header | Description |
|-|-|
| Content-Type | Data format of the response body: application/json. |
[Table 47. Response headers]

{#wsd_presence-POST-collaborator__table_bmj_rj5_bjc}

### Status codes

The following status codes apply to this HTTP action. For a
list of possible status codes used in the REST API, see [REST API HTTP response
codes](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-POST-collaborator__table_djt_dk5_bjc__entry__2}{#wsd_presence-POST-collaborator__entry-200-status-code}{#wsd_presence-POST-collaborator__entry-500-status-code}

| Status code | Description |
|-|-|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad Request. Missing collaborator_ids, empty array, or invalid sys_id format. |
| 404 | Not Found. One or more collaborator sys_ids weren't found in the sys_user table. |
| 500 | Internal server error. An unexpected error occurred while processing the request. The response contains additional information about the error. |
[Table 48. Status codes]

{#wsd_presence-POST-collaborator__table_djt_dk5_bjc}

### Response body parameters (JSON or XML)

{#wsd_presence-POST-collaborator__entry__36}

| Name | Description |
|-|-|
| result | Object containing results of the request. Data type: Object result": { "message": "String", "collaborators": [Array] } |
| result.message | Confirmation message indicating collaborator(s) were added. Data type: String |
| result.collaborators | List of the newly added collaborators with their presence data. Data type: Array of Objects "collaborators": [ { "sys_id": "String", "name": "String", "privacy_enabled": Boolean, "routine": {Object}, "exceptions": [Array] } ] |
| result.collaborators.sys_id | Sys_id of the collaborator's user record. Table: User \[sys_user\] Data type: String |
| result.collaborators.name | The display name of the collaborator as it appears in their sys_user record. Table: User \[sys_user\] Data type: String |
| result.collaborators.privacy_enabled | Boolean. Flag that indicates whether the collaborator has enabled privacy on their presence data. Valid values: * true: The collaborator's routine and exceptions are hidden. routine will be `null` and exceptions will be an empty array. * false: The collaborator's presence data is visible. {#wsd_presence-POST-collaborator__ul_w4x_k1q_bjc} Data type: Boolean |
| result.collaborators.routine | The collaborator's weekly in-office routine. Contains a Boolean flag for each day of the week indicating planned office attendance. Displays `true` when the collaborator plans to be in-office that day, and `false` when attendance isn't planned. Data type: Object "routine": { "monday": Boolean, "tuesday": Boolean, "wednesday": Boolean, "thursday": Boolean, "friday": Boolean, "saturday": Boolean, "sunday": Boolean } |
| result.collaborators.exceptions | The collaborator's one-time presence exceptions. Returns an empty array if `privacy_enabled` is `true`. Data type: Array of Objects "exceptions": [ { "sys_id": "String", "date": "String", "in_office": Boolean, "origin": "String", "location": "String" } ] |
| result.collaborators.exceptions.sys_id | Sys_id of the exception record. Table: Employee presence exceptions (sn_wsd_concierge_employee_presence_exception) Data type: String |
| result.collaborators.exceptions.date | Date this exception applies to. This is the date the user's routine is being overridden. Format: yyyy-MM-dd format Data type: String |
| result.collaborators.exceptions.in_office | Flag that indicates whether the user will be in the office on this date. This overrides whatever the weekly routine specifies for that day of the week. Valid values: * `true`: User will be in the office. * `false`: User won't be in the office {#wsd_presence-POST-collaborator__ul_ttw_2zp_bjc} Data type: Boolean |
| result.collaborators.exceptions.origin | Source that created the exception. Valid values: * `user`: Created manually by the employee. * `system`: Created automatically by the platform. * `manual`: Created by an admin or on behalf of the user. {#wsd_presence-POST-collaborator__ul_mzn_kzp_bjc} Data type: String |
| result.collaborators.exceptions.location | The name or identifier of the office location the user will be at on this date. Only relevant when `in_office` is `true`. May be an empty string when the user is remote. Data type: String |
[ ]

### cURL request

This example adds two users as collaborators by providing their sys_ids.

    curl "https://<instance>.service-now.com/api/sn_wsd_concierge/v1/presence/collaborator" \
    --request POST \
    --header "Accept: application/json" \
    --header "Content-Type: application/json" \
    --user "username:password" \
    --data '{
      "collaborator_ids": ["usr1a2b3c4d5e6", "usr7f8g9h0i1j2"]
    }'

Response body.

    {
      "result": {
        "message": "Collaborator(s) added successfully",
        "collaborators": [
          {
            "sys_id": "usr1a2b3c4d5e6", "name": "Jane Smith", "privacy_enabled": false,
            "routine": { "monday": true, "tuesday": true, "wednesday": false, "thursday": true, "friday": false, "saturday": false, "sunday": false },
            "exceptions": []
          },
          { "sys_id": "usr7f8g9h0i1j2", "name": "John Doe", "privacy_enabled": true, "routine": null, "exceptions": [] }
        ]
      }
    }

## WSD Presence - POST /api/sn_wsd_concierge/v1/presence/exception {#ariaid-title10}

Creates a one-time presence exception for the authenticated user on a specific date. Use this endpoint when a user plans to be in the office on a day they normally work remotely, or vice versa.
Exceptions override the user's weekly routine for that date.

### URL format

Versioned URL: /api/sn_wsd_concierge/{api_version}/presence/exception

Default URL: `/api/sn_wsd_concierge/presence/exception`

### Supported request parameters

{#wsd_presence-POST-exception__entry__2}{#wsd_presence-POST-exception__version-not_optional-RESTAPI}

| Name | Description |
|-|-|
| api_version | Optional. Version of the endpoint to access. For example, <kbd class="ph userinput">v1</kbd> or <kbd class="ph userinput">v2</kbd>. Only specify this value to use an endpoint version other than the latest. Data type: String |
[Table 49. Path parameters]

{#wsd_presence-POST-exception__entry__6}

| Name | Description |
|-|-|
| None |   |
[Table 50. Query parameters]

{#wsd_presence-POST-exception__entry__10}

| Name | Description |
|-|-|
| exception | Required. Exception object defining the one-time presence override. Data type: Object "exception": { "date": "String", "in_office": "Boolean", "location": "String", "origin": "String" } |
| exception.date | Date of the exception. Format: yyyy-MM-dd Data type: String |
| exception.in_office | Flag that indicates whether the user will be in the office on this date. Possible values: * `true`: User will be in the office. * `false`: User won't be in the office. {#wsd_presence-POST-exception__ul_uwq_vfq_bjc} Data type: Boolean |
| exception.location | Name or identifier of the office location for this exception. Data type: String |
| exception.origin | Source of the exception. Valid values: * `user`: Created manually by the employee. * `system`: Created automatically by the platform. * `manual`: Created by an admin or on behalf of the user. {#wsd_presence-POST-exception__ul_mzn_kzp_bjc} Data type: String |
[Table 51. Request body parameters (XML or JSON)]

### Headers {#wsd_presence-POST-exception__section_zlj_rj5_bjc}

The following request and response headers apply to this HTTP
action only, or apply to this action in a distinct way. For a list of general headers used
in the REST API, see [Supported REST API headers](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-POST-exception__table_amj_rj5_bjc__entry__2}

| Header | Description |
|-|-|
| Accept | Data format of the response body. Supported types: application/json, application/xml, or text/xml. |
| Authorization | Authentication credentials. Supports Basic authentication or session-based authentication. |
| Content-Type | Data format of the request body: application/json. |
[Table 52. Request headers]

{#wsd_presence-POST-exception__table_amj_rj5_bjc} {#wsd_presence-POST-exception__table_bmj_rj5_bjc__entry__2}

| Header | Description |
|-|-|
| Content-Type | Data format of the response body: application/json. |
[Table 53. Response headers]

{#wsd_presence-POST-exception__table_bmj_rj5_bjc}

### Status codes

The following status codes apply to this HTTP action. For a
list of possible status codes used in the REST API, see [REST API HTTP response
codes](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-POST-exception__table_djt_dk5_bjc__entry__2}{#wsd_presence-POST-exception__entry-200-status-code}{#wsd_presence-POST-exception__entry-500-status-code}

| Status code | Description |
|-|-|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad Request. Missing required field date or invalid date format. |
| 500 | Internal server error. An unexpected error occurred while processing the request. The response contains additional information about the error. |
[Table 54. Status codes]

{#wsd_presence-POST-exception__table_djt_dk5_bjc}

### Response body parameters (JSON or XML)

{#wsd_presence-POST-exception__entry__42}

| Name | Description |
|-|-|
| result | Object containing the result of the request. Data type: Object "result": { "message": "String", "result": {Object} } |
| result.message | Confirmation message indicating the exception was added. Data type: String |
| result.result | Object containing the created exception(s). Data type: Object "result": { "exceptions": [Array] } |
| result.exceptions | Array containing details about the created exception(s). Data type: Array of Objects "exceptions": [ { "date": "String", "location": "String", "in_office": Boolean, "origin": "String", "sys_id": "String" } ] |
| result.result.exceptions.date | Date this exception applies to, in yyyy-MM-dd format. This is the date the user's routine is being overridden. Data type: String |
| result.result.exceptions.in_office | Flag that indicates whether the user will be in the office on this date. This overrides whatever the weekly routine specifies for that day of the week. Valid values: * `true`: User will be in the office. * `false`: User won't be in the office {#wsd_presence-POST-exception__ul_ttw_2zp_bjc} Data type: Boolean |
| result.result.exceptions.location | The name or identifier of the office location the user will be at on this date. Only relevant when `in_office` is `true`. May be an empty string when the user is remote. Data type: String |
| result.result.exceptions.origin | Source that created the exception. Valid values: * `user`: Created manually by the employee. * `system`: Created automatically by the platform. * `manual`: Created by an admin or on behalf of the user. Data type: String |
| result.result.exceptions.sys_id | Sys_id of the exception record. Table: Employee presence exceptions (sn_wsd_concierge_employee_presence_exception) Data type: String |
[ ]

### cURL request

This example creates a presence exception for February 14, 2026, marking the user as in-office at Building A.

    curl "https://<instance>.service-now.com/api/sn_wsd_concierge/v1/presence/exception" \
    --request POST \
    --header "Accept: application/json" \
    --header "Content-Type: application/json" \
    --user "username:password" \
    --data '{
      "exception": {
        "date": "2026-02-14",
        "in_office": true,
        "location": "Building A - Floor 3",
        "origin": "user"
      }
    }'

Response body.

    {
      "result": {
        "message": "Exception added successfully",
        "result": {
          "exceptions": [
            {
              "sys_id": "a1b2c3d4e5f6g7h8",
              "date": "2026-02-14",
              "in_office": true,
              "origin": "user",
              "location": "Building A - Floor 3"
            }
          ]
        }
      }
    }

## WSD Presence - POST /api/sn_wsd_concierge/v1/presence/routine {#ariaid-title11}

Creates a new weekly in-office routine for the authenticated user. Use this endpoint when a user is setting up their presence routine for the first time.
All seven days of the week must be provided as Boolean values.

### URL format

Versioned URL: /api/sn_wsd_concierge/{api_version}/presence/routine

Default URL: /api/sn_wsd_concierge/presence/routine

### Supported request parameters

{#wsd_presence-POST-routine__entry__2}{#wsd_presence-POST-routine__version-not_optional-RESTAPI}

| Name | Description |
|-|-|
| api_version | Optional. Version of the endpoint to access. For example, <kbd class="ph userinput">v1</kbd> or <kbd class="ph userinput">v2</kbd>. Only specify this value to use an endpoint version other than the latest. Data type: String |
[Table 55. Path parameters]

{#wsd_presence-POST-routine__entry__6}

| Name | Description |
|-|-|
| None |   |
[Table 56. Query parameters]

{#wsd_presence-POST-routine__entry__10}

| Name | Description |
|-|-|
| routine | Required. Weekly in-office routine for the user. Contains a Boolean flag for each day of the week indicating planned office attendance. Displays `true` when the user plans to be in-office that day, and `false` when attendance isn't planned. All days are required. Data type: Object "routine": { "monday": "Boolean", "tuesday": "Boolean", "wednesday": "Boolean", "thursday": "Boolean", "friday": "Boolean", "saturday": "Boolean", "sunday": "Boolean" } |
[Table 57. Request body parameters (XML or JSON)]

### Headers {#wsd_presence-POST-routine__section_zlj_rj5_bjc}

The following request and response headers apply to this HTTP
action only, or apply to this action in a distinct way. For a list of general headers used
in the REST API, see [Supported REST API headers](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-POST-routine__table_amj_rj5_bjc__entry__2}

| Header | Description |
|-|-|
| Accept | Data format of the response body. Supported types: application/json, application/xml, or text/xml. |
| Authorization | Authentication credentials. Supports Basic authentication or session-based authentication. |
| Content-Type | Data format of the request body: application/json. |
[Table 58. Request headers]

{#wsd_presence-POST-routine__table_amj_rj5_bjc} {#wsd_presence-POST-routine__table_bmj_rj5_bjc__entry__2}

| Header | Description |
|-|-|
| Content-Type | Data format of the response body: application/json. |
[Table 59. Response headers]

{#wsd_presence-POST-routine__table_bmj_rj5_bjc}

### Status codes {#wsd_presence-POST-routine__section_wmh_pn5_bjc}

The following status codes apply to this HTTP action. For a
list of possible status codes used in the REST API, see [REST API HTTP response
codes](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-POST-routine__table_djt_dk5_bjc__entry__2}{#wsd_presence-POST-routine__entry-200-status-code}{#wsd_presence-POST-routine__entry-500-status-code}

| Status code | Description |
|-|-|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad Request. Missing required field(s) or invalid data type. All seven days must be provided as Boolean values. |
| 500 | Internal server error. An unexpected error occurred while processing the request. The response contains additional information about the error. |
[Table 60. Status codes]

{#wsd_presence-POST-routine__table_djt_dk5_bjc}

### Response body parameters (JSON or XML)

{#wsd_presence-POST-routine__entry__34}

| Name | Description |
|-|-|
| result | Object containing results of the request. Data type: Object "result": { "message": "String", "result": {Object} } |
| result.message | Confirmation message indicating the routine was created. Data type: String |
| result.result | Contains the created routine object with all seven days. Data type: Object "result": { "routine": {Object} } |
| result.routine | User's weekly in-office routine. Contains a Boolean flag for each day of the week indicating planned office attendance. Displays `true` when the user plans to be in-office that day, and `false` when attendance isn't planned. Data type: Object "routine": { "monday": "Boolean", "tuesday": "Boolean", "wednesday": "Boolean", "thursday": "Boolean", "friday": "Boolean", "saturday": "Boolean", "sunday": "Boolean" } |
[ ]

### cURL request

This example creates a weekly in-office routine for Monday through Thursday.

    curl "https://<instance>.service-now.com/api/sn_wsd_concierge/v1/presence/routine" \
    --request POST \
    --header "Accept: application/json" \
    --header "Content-Type: application/json" \
    --user "username:password" \
    --data '{
      "routine": {
        "monday": true, "tuesday": true, "wednesday": true,
        "thursday": true, "friday": false, "saturday": false, "sunday": false
      }
    }'

Response body.

    {
      "result": {
        "message": "Routine created successfully",
        "result": {
          "routine": {
            "monday": true, 
            "tuesday": true, 
            "wednesday": true,
            "thursday": true, 
            "friday": false, 
            "saturday": false,
            "sunday": false
          }
        }
      }
    }

## WSD Presence - PUT /api/sn_wsd_concierge/v1/presence/exception {#ariaid-title12}

Updates an existing presence exception by canceling it and creating a replacement. The original exception is identified by its sys_id. Use this endpoint when a user needs to change the details of a previously created
exception.
Because this endpoint cancels the original exception and creates a replacement, the returned `sys_id` differs from the one provided in the request. Update any stored references to the exception
`sys_id` after a successful PUT.

### URL format

Versioned URL: /api/sn_wsd_concierge/{api_version}/presence/exception

Default URL: /api/sn_wsd_concierge/presence/exception

### Supported request parameters

{#wsd_presence-PUT-exception__entry__2}{#wsd_presence-PUT-exception__version-not_optional-RESTAPI}

| Name | Description |
|-|-|
| api_version | Optional. Version of the endpoint to access. For example, <kbd class="ph userinput">v1</kbd> or <kbd class="ph userinput">v2</kbd>. Only specify this value to use an endpoint version other than the latest. Data type: String |
[Table 61. Path parameters]

{#wsd_presence-PUT-exception__entry__6}

| Name | Description |
|-|-|
| None |   |
[Table 62. Query parameters]

{#wsd_presence-PUT-exception__entry__10}

| Name | Description |
|-|-|
| exception | Required. Exception object containing the updated details. The sys_id and in_office fields are required. Data type: Object "exception": { "date": "String", "in_office": Boolean, "location": "String", "origin": "String", "sys_id": "String" } |
| exception.date | Date of the exception. Format: yyyy-MM-dd Data type: String |
| exception.in_office | Required. Flag that indicates whether the user will be in the office on this date. Possible values: * `true`: User will be in the office. * `false`: User won't be in the office. {#wsd_presence-PUT-exception__ul_uwq_vfq_bjc} Data type: Boolean |
| exception.location | Name or identifier of the office location for this exception. Data type: String |
| exception.origin | Source of the exception. Valid values: * `user`: Created manually by the employee. * `system`: Created automatically by the platform. * `manual`: Created by an admin or on behalf of the user. {#wsd_presence-PUT-exception__ul_mzn_kzp_bjc} Data type: String Default: user |
| exception.sys_id | Required. Sys_id of the existing exception to update. Table: Employee presence exceptions (sn_wsd_concierge_employee_presence_exception) Data type: String |
[Table 63. Request body parameters (XML or JSON)]

### Headers {#wsd_presence-PUT-exception__section_zlj_rj5_bjc}

The following request and response headers apply to this HTTP
action only, or apply to this action in a distinct way. For a list of general headers used
in the REST API, see [Supported REST API headers](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-PUT-exception__table_amj_rj5_bjc__entry__2}

| Header | Description |
|-|-|
| Accept | Data format of the response body. Supported types: application/json, application/xml, or text/xml. |
| Authorization | Authentication credentials. Supports Basic authentication or session-based authentication. |
| Content-Type | Data format of the request body: application/json. |
[Table 64. Request headers]

{#wsd_presence-PUT-exception__table_amj_rj5_bjc} {#wsd_presence-PUT-exception__table_bmj_rj5_bjc__entry__2}

| Header | Description |
|-|-|
| Content-Type | Data format of the response body: application/json. |
[Table 65. Response headers]

{#wsd_presence-PUT-exception__table_bmj_rj5_bjc}

### Status codes {#wsd_presence-PUT-exception__section_wmh_pn5_bjc}

The following status codes apply to this HTTP action. For a
list of possible status codes used in the REST API, see [REST API HTTP response
codes](https://servicenow-prod.fluidtopics.net/qh7RcF0RI6a~i9u3octdlg "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#wsd_presence-PUT-exception__table_djt_dk5_bjc__entry__2}{#wsd_presence-PUT-exception__entry-200-status-code}{#wsd_presence-PUT-exception__entry-500-status-code}

| Status code | Description |
|-|-|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad Request. Missing required fields sys_id or in_office. |
| 404 | Not Found. The specified exception wasn't found or the user doesn't have permission to modify it. |
| 500 | Internal server error. An unexpected error occurred while processing the request. The response contains additional information about the error. |
[Table 66. Status codes]

{#wsd_presence-PUT-exception__table_djt_dk5_bjc}

### Response body parameters (JSON or XML)

{#wsd_presence-PUT-exception__entry__46}

| Name | Description |
|-|-|
| result | Object containing results of the request. Data type: Object "result": { "message": "String", "result": {Object} } |
| result.message | Confirmation message indicating the exception was updated. Data type: String |
| result.result | Contains the updated exception(s). Data type: Object "result": { "exceptions": [Array] } |
| result.result.exceptions | List of presence exceptions. Data type: Array of Objects "exceptions": [ { "sys_id": "sys_id", "date": "String", "in_office": Boolean, "origin": "String", "location": "String" } ] |
| result.result.exceptions.sys_id | Sys_id of the exception record. Table: Employee presence exceptions (sn_wsd_concierge_employee_presence_exception) Data type: String |
| result.result.exceptions.date | Date this exception applies to, in yyyy-MM-dd format. This is the date the user's routine is being overridden. Data type: String |
| result.result.exceptions.in_office | Flag that indicates whether the user will be in the office on this date. This overrides whatever the weekly routine specifies for that day of the week. Valid values: * `true`: User will be in the office. * `false`: User won't be in the office {#wsd_presence-PUT-exception__ul_ttw_2zp_bjc} Data type: Boolean |
| result.result.exceptions.origin | Source that created the exception. Valid values: * `user`: Created manually by the employee. * `system`: Created automatically by the platform. * `manual`: Created by an admin or on behalf of the user. Data type: String |
| result.result.exceptions.location | The name or identifier of the office location the user will be at on this date. Only relevant when `in_office` is `true`. May be an empty string when the user is remote. Data type: String |
[ ]

### cURL request

This example updates an existing exception to change the user's status to remote (not in office) on the same date.

    curl "https://<instance>.service-now.com/api/sn_wsd_concierge/v1/presence/exception" \
    --request PUT \
    --header "Accept: application/json" \
    --header "Content-Type: application/json" \
    --user "username:password" \
    --data '{
      "exception": {
        "sys_id": "exc1a2b3c4d5e6",
        "in_office": false,
        "date": "2026-02-14",
        "location": "",
        "origin": "user"
      }
    }'

Response body.  
Note:  
Because this endpoint cancels the original exception and creates a replacement, the returned `sys_id` differs from the one provided in the request.

    {
      "result": {
        "message": "Exception updated successfully",
        "result": {
          "exceptions": [
            { "sys_id": "exc9k0l1m2n3o4", "date": "2026-02-14", "in_office": false, "origin": "user", "location": "" }
          ]
        }
      }
    }


