instruction
stringlengths 77
217
| input
stringlengths 50
1.19k
| output
stringlengths 104
270
|
---|---|---|
Provide a HTTP example that uses the GET /api/v2/assistants Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get all assistants. | ```GET /api/v2/assistants HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/assistants Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Create an Assistant. | ```POST /api/v2/assistants HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/assistants/queues Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get all queues assigned to any assistant. | ```GET /api/v2/assistants/queues HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the DELETE /api/v2/assistants/{assistantId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Delete an assistant. | ```DELETE /api/v2/assistants/{assistantId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/assistants/{assistantId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get an assistant. | ```GET /api/v2/assistants/{assistantId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the PATCH /api/v2/assistants/{assistantId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Update an assistant. | ```PATCH /api/v2/assistants/{assistantId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the DELETE /api/v2/assistants/{assistantId}/queues Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Disassociate the queues from an assistant for the given assistant ID and queue IDs. | ```DELETE /api/v2/assistants/{assistantId}/queues HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/assistants/{assistantId}/queues Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get all the queues associated with an assistant. | ```GET /api/v2/assistants/{assistantId}/queues HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the PATCH /api/v2/assistants/{assistantId}/queues Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Update Queues for an Assistant. | ```PATCH /api/v2/assistants/{assistantId}/queues HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the DELETE /api/v2/assistants/{assistantId}/queues/{queueId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Disassociate a queue from an assistant. | ```DELETE /api/v2/assistants/{assistantId}/queues/{queueId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/assistants/{assistantId}/queues/{queueId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get queue Information for an assistant. | ```GET /api/v2/assistants/{assistantId}/queues/{queueId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the PUT /api/v2/assistants/{assistantId}/queues/{queueId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Create a queue assistant association. | ```PUT /api/v2/assistants/{assistantId}/queues/{queueId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/assistants/{assistantId}/copilot Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get copilot configuration of an assistant. | ```GET /api/v2/assistants/{assistantId}/copilot HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the PUT /api/v2/assistants/{assistantId}/copilot Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Update agent copilot configuration | ```PUT /api/v2/assistants/{assistantId}/copilot HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the DELETE /api/v2/users/agentui/agents/autoanswer/{agentId}/settings Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Delete agent auto answer settings | ```DELETE /api/v2/users/agentui/agents/autoanswer/{agentId}/settings HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/users/agentui/agents/autoanswer/{agentId}/settings Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get agent auto answer settings | ```GET /api/v2/users/agentui/agents/autoanswer/{agentId}/settings HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the PATCH /api/v2/users/agentui/agents/autoanswer/{agentId}/settings Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Update agent auto answer settings | ```PATCH /api/v2/users/agentui/agents/autoanswer/{agentId}/settings HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the PUT /api/v2/users/agentui/agents/autoanswer/{agentId}/settings Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Set agent auto answer settings | ```PUT /api/v2/users/agentui/agents/autoanswer/{agentId}/settings HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the PATCH /api/v2/alerting/alerts/bulk Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Bulk alert updates | ```PATCH /api/v2/alerting/alerts/bulk HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/alerting/alerts/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Gets a paged list of alerts. The max page size is 50 | ```POST /api/v2/alerting/alerts/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the DELETE /api/v2/alerting/alerts/{alertId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Delete an alert | ```DELETE /api/v2/alerting/alerts/{alertId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/alerting/alerts/{alertId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get an alert | ```GET /api/v2/alerting/alerts/{alertId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the PATCH /api/v2/alerting/alerts/{alertId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Allows an entity to mute/snooze an alert or update the unread status of the alert. Snoozing an alert temporarily stop it from resending notifications to individualsas well as other services within Genesys Cloud for a given period. Muting an alert will only block the notifications to individuals. | ```PATCH /api/v2/alerting/alerts/{alertId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the PUT /api/v2/alerting/alerts/{alertId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Update an alert read status | ```PUT /api/v2/alerting/alerts/{alertId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/alerting/rules Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Create a Rule. | ```POST /api/v2/alerting/rules HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the PATCH /api/v2/alerting/rules/bulk Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Bulk update of notification lists | ```PATCH /api/v2/alerting/rules/bulk HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/alerting/rules/bulk/remove Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Bulk remove rules | ```POST /api/v2/alerting/rules/bulk/remove HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/alerting/rules/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get a paged list of rules. The max size of the page is 50 items. | ```POST /api/v2/alerting/rules/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the DELETE /api/v2/alerting/rules/{ruleId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Delete a rule. | ```DELETE /api/v2/alerting/rules/{ruleId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/alerting/rules/{ruleId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get a rule. | ```GET /api/v2/alerting/rules/{ruleId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the PUT /api/v2/alerting/rules/{ruleId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Update a rule | ```PUT /api/v2/alerting/rules/{ruleId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/actions/aggregates/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for action aggregates | ```POST /api/v2/analytics/actions/aggregates/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/agentcopilots/aggregates/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for agent copilot aggregates | ```POST /api/v2/analytics/agentcopilots/aggregates/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/analytics/botflows/{botFlowId}/divisions/reportingturns Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get Reporting Turns (division aware). Returns the reporting turns for the specified flow, filtered by the clients divisions and grouped by session, in reverse chronological order from the date the session was created, with the reporting turns from the most recent session appearing at the start of the list. For pagination, clients should keep sending requests using the value of 'nextUri' in the response, until it's no longer present, only then have all items have been returned. Note: resources returned by this endpoint are not persisted indefinitely, as they are deleted after approximately, but not before, 10 days. | ```GET /api/v2/analytics/botflows/{botFlowId}/divisions/reportingturns HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/analytics/botflows/{botFlowId}/sessions Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get Bot Flow Sessions. Returns the bot flow sessions in reverse chronological order from the date they were created. For pagination, clients should keep sending requests using the value of 'nextUri' in the response, until it's no longer present, only then have all items have been returned. Note: resources returned by this endpoint are not persisted indefinitely, as they are deleted after approximately, but not before, 10 days. | ```GET /api/v2/analytics/botflows/{botFlowId}/sessions HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/bots/aggregates/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for bot aggregates | ```POST /api/v2/analytics/bots/aggregates/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/conversations/activity/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for conversation activity observations | ```POST /api/v2/analytics/conversations/activity/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/conversations/aggregates/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for conversation aggregates | ```POST /api/v2/analytics/conversations/aggregates/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/analytics/conversations/details Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Gets multiple conversations by id | ```GET /api/v2/analytics/conversations/details HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/conversations/details/jobs Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for conversation details asynchronously | ```POST /api/v2/analytics/conversations/details/jobs HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/analytics/conversations/details/jobs/availability Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Lookup the datalake availability date and time | ```GET /api/v2/analytics/conversations/details/jobs/availability HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the DELETE /api/v2/analytics/conversations/details/jobs/{jobId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Delete/cancel an async details job | ```DELETE /api/v2/analytics/conversations/details/jobs/{jobId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/analytics/conversations/details/jobs/{jobId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get status for async query for conversation details | ```GET /api/v2/analytics/conversations/details/jobs/{jobId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/analytics/conversations/details/jobs/{jobId}/results Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Fetch a page of results for an async details job | ```GET /api/v2/analytics/conversations/details/jobs/{jobId}/results HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/conversations/details/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for conversation details | ```POST /api/v2/analytics/conversations/details/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/conversations/transcripts/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Search resources. | ```POST /api/v2/analytics/conversations/transcripts/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/analytics/conversations/{conversationId}/details Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get a conversation by id | ```GET /api/v2/analytics/conversations/{conversationId}/details HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/conversations/{conversationId}/details/properties Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Index conversation properties | ```POST /api/v2/analytics/conversations/{conversationId}/details/properties HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/analytics/dataretention/settings Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get analytics data retention setting | ```GET /api/v2/analytics/dataretention/settings HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the PUT /api/v2/analytics/dataretention/settings Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Update analytics data retention setting | ```PUT /api/v2/analytics/dataretention/settings HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/evaluations/aggregates/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for evaluation aggregates | ```POST /api/v2/analytics/evaluations/aggregates/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/flowexecutions/aggregates/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for flow execution aggregates | ```POST /api/v2/analytics/flowexecutions/aggregates/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/flows/activity/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for flow activity observations | ```POST /api/v2/analytics/flows/activity/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/flows/aggregates/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for flow aggregates | ```POST /api/v2/analytics/flows/aggregates/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/flows/observations/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for flow observations | ```POST /api/v2/analytics/flows/observations/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/journeys/aggregates/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for journey aggregates | ```POST /api/v2/analytics/journeys/aggregates/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/knowledge/aggregates/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for knowledge aggregates | ```POST /api/v2/analytics/knowledge/aggregates/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/queues/observations/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for queue observations | ```POST /api/v2/analytics/queues/observations/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/ratelimits/aggregates/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for limits rate limit aggregates. Data populated when limits reach 90% of the maximum. Not a source of truth for limits hit but a best effort estimate. The 'max' property can be used to determine estimated rate limit value hit. See https://developer.genesys.cloud/organization/organization/limits#available-limits for limits that are trackable (Operational Events Enabled). | ```POST /api/v2/analytics/ratelimits/aggregates/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/analytics/reporting/dashboards/users Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get dashboards summary for users in a org | ```GET /api/v2/analytics/reporting/dashboards/users HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/reporting/dashboards/users/bulk/remove Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Bulk delete dashboards owned by other user(s) | ```POST /api/v2/analytics/reporting/dashboards/users/bulk/remove HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/analytics/reporting/dashboards/users/{userId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get dashboards summary for a user | ```GET /api/v2/analytics/reporting/dashboards/users/{userId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/analytics/reporting/exports Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get all view export requests for a user | ```GET /api/v2/analytics/reporting/exports HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/reporting/exports Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Generate a view export request. This API creates a reporting export but the desired way to export analytics data is to use the analytics query APIs instead | ```POST /api/v2/analytics/reporting/exports HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/analytics/reporting/exports/metadata Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get all export metadata | ```GET /api/v2/analytics/reporting/exports/metadata HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/analytics/reporting/settings Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get AnalyticsReportingSettings for an organization | ```GET /api/v2/analytics/reporting/settings HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the PATCH /api/v2/analytics/reporting/settings Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Patch AnalyticsReportingSettings values for an organization | ```PATCH /api/v2/analytics/reporting/settings HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/reporting/settings/dashboards/bulk/remove Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Bulk remove dashboard configurations | ```POST /api/v2/analytics/reporting/settings/dashboards/bulk/remove HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/analytics/reporting/settings/dashboards/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get list of dashboard configurations | ```GET /api/v2/analytics/reporting/settings/dashboards/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/reporting/settings/dashboards/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query dashboard configurations | ```POST /api/v2/analytics/reporting/settings/dashboards/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/analytics/reporting/settings/users/{userId}/dashboards Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get list of dashboards for an user | ```GET /api/v2/analytics/reporting/settings/users/{userId}/dashboards HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/routing/activity/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for user activity observations | ```POST /api/v2/analytics/routing/activity/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/surveys/aggregates/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for survey aggregates | ```POST /api/v2/analytics/surveys/aggregates/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/teams/activity/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for team activity observations | ```POST /api/v2/analytics/teams/activity/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/transcripts/aggregates/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for transcript aggregates | ```POST /api/v2/analytics/transcripts/aggregates/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/users/activity/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for user activity observations | ```POST /api/v2/analytics/users/activity/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/users/aggregates/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for user aggregates | ```POST /api/v2/analytics/users/aggregates/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/users/details/jobs Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for user details asynchronously | ```POST /api/v2/analytics/users/details/jobs HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/analytics/users/details/jobs/availability Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Lookup the datalake availability date and time | ```GET /api/v2/analytics/users/details/jobs/availability HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the DELETE /api/v2/analytics/users/details/jobs/{jobId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Delete/cancel an async request | ```DELETE /api/v2/analytics/users/details/jobs/{jobId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/analytics/users/details/jobs/{jobId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get status for async query for user details | ```GET /api/v2/analytics/users/details/jobs/{jobId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/analytics/users/details/jobs/{jobId}/results Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Fetch a page of results for an async query | ```GET /api/v2/analytics/users/details/jobs/{jobId}/results HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/users/details/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for user details | ```POST /api/v2/analytics/users/details/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/analytics/users/observations/query Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Query for user observations | ```POST /api/v2/analytics/users/observations/query HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/architect/dependencytracking Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get Dependency Tracking objects that have a given display name | ```GET /api/v2/architect/dependencytracking HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/architect/dependencytracking/build Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get Dependency Tracking build status for an organization | ```GET /api/v2/architect/dependencytracking/build HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/architect/dependencytracking/build Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Rebuild Dependency Tracking data for an organization. Asynchronous. Notification topic: v2.architect.dependencytracking.build | ```POST /api/v2/architect/dependencytracking/build HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/architect/dependencytracking/consumedresources Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get resources that are consumed by a given Dependency Tracking object | ```GET /api/v2/architect/dependencytracking/consumedresources HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/architect/dependencytracking/consumingresources Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get resources that consume a given Dependency Tracking object | ```GET /api/v2/architect/dependencytracking/consumingresources HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/architect/dependencytracking/deletedresourceconsumers Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get Dependency Tracking objects that consume deleted resources | ```GET /api/v2/architect/dependencytracking/deletedresourceconsumers HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/architect/dependencytracking/object Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get a Dependency Tracking object | ```GET /api/v2/architect/dependencytracking/object HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/architect/dependencytracking/types Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get Dependency Tracking types. | ```GET /api/v2/architect/dependencytracking/types HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/architect/dependencytracking/types/{typeId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get a Dependency Tracking type. | ```GET /api/v2/architect/dependencytracking/types/{typeId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/architect/dependencytracking/updatedresourceconsumers Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get Dependency Tracking objects that depend on updated resources | ```GET /api/v2/architect/dependencytracking/updatedresourceconsumers HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/architect/emergencygroups Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get a list of emergency groups. | ```GET /api/v2/architect/emergencygroups HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the POST /api/v2/architect/emergencygroups Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Creates a new emergency group | ```POST /api/v2/architect/emergencygroups HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/architect/emergencygroups/divisionviews Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Get a pageable list of basic emergency group objects filterable by query parameters. This returns emergency groups consisting of name and division. If one or more IDs are specified, the search will fetch flow outcomes that match the given ID(s) and not use any additional supplied query parameters in the search. | ```GET /api/v2/architect/emergencygroups/divisionviews HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the DELETE /api/v2/architect/emergencygroups/{emergencyGroupId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Deletes a emergency group by ID | ```DELETE /api/v2/architect/emergencygroups/{emergencyGroupId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the GET /api/v2/architect/emergencygroups/{emergencyGroupId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Gets a emergency group by ID | ```GET /api/v2/architect/emergencygroups/{emergencyGroupId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Provide a HTTP example that uses the PUT /api/v2/architect/emergencygroups/{emergencyGroupId} Genesys Cloud HTTP SDK. | Genesys describes this as an API used to: Updates a emergency group by ID | ```PUT /api/v2/architect/emergencygroups/{emergencyGroupId} HTTP/1.1
Host: api.mypurecloud.com
Authorization: Bearer *******************
Content-Type: application/json``` |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.