diff --git a/dereferenced/deref-sailpoint-api.v3.json b/dereferenced/deref-sailpoint-api.v3.json index 4a6b3a4..8e6759a 100644 --- a/dereferenced/deref-sailpoint-api.v3.json +++ b/dereferenced/deref-sailpoint-api.v3.json @@ -196,6 +196,10 @@ { "name": "Work Items", "description": "Use this API to implement work item functionality. \nWith this functionality in place, users can manage their work items (tasks). \n\nWork items refer to the tasks users see in IdentityNow's Task Manager. \nThey can see the pending work items they need to complete, as well as the work items they have already completed. \nTask Manager lists the work items along with the involved sources, identities, accounts, and the timestamp when the work item was created. \nFor example, a user may see a pending 'Create an Account' work item for the identity Fred.Astaire in GitHub for Fred's GitHub account, fred-astaire-sp. \nOnce the user completes the work item, the work item will be listed with his or her other completed work items. \n\nTo complete work items, users can use their dashboards and select the 'My Tasks' widget. \nThe widget will list any work items they need to complete, and they can select the work item from the list to review its details. \nWhen they complete the work item, they can select 'Mark Complete' to add it to their list of completed work items. \n\nRefer to [Task Manager](https://documentation.sailpoint.com/saas/user-help/task_manager.html) for more information about work items, including the different types of work items users may need to complete.\n" + }, + { + "name": "Workflows", + "description": "Workflows allow administrators to create custom automation scripts directly within IdentityNow. These automation scripts respond to [event triggers](https://developer.sailpoint.com/idn/docs/event-triggers#how-to-get-started-with-event-triggers) and perform a series of actions to perform tasks that are either too cumbersome or not available in the IdentityNow UI. Workflows can be configured via a graphical user interface within IdentityNow, or by creating and uploading a JSON formatted script to the Workflow service. The Workflows API collection provides the necessary functionality to create, manage, and test your workflows via REST.\n" } ], "paths": { @@ -190623,6 +190627,9822 @@ } } }, + "/workflows": { + "get": { + "operationId": "listWorkflows", + "tags": [ + "Workflows" + ], + "summary": "List Workflows", + "description": "List all workflows in the tenant.", + "security": [ + { + "UserContextAuth": [ + "sp:workflow:read" + ] + } + ], + "responses": { + "200": { + "description": "List of workflows", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "allOf": [ + { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Workflow ID. This is a UUID generated upon creation.", + "example": "d201c5e9-d37b-4aff-af14-66414f39d569" + }, + "executionCount": { + "type": "integer", + "format": "int32", + "description": "The number of times this workflow has been executed.", + "example": 2 + }, + "failureCount": { + "type": "integer", + "format": "int32", + "description": "The number of times this workflow has failed during execution.", + "example": 0 + }, + "created": { + "type": "string", + "format": "date-time", + "description": "The date and time the workflow was created.", + "example": "2022-01-10T16:06:16.636381447Z" + }, + "creator": { + "type": "object", + "description": "Workflow creator's identity.", + "properties": { + "type": { + "type": "string", + "description": "Workflow creator's DTO type.", + "enum": [ + "IDENTITY" + ], + "example": "IDENTITY" + }, + "id": { + "type": "string", + "description": "Workflow creator's identity ID.", + "example": "2c7180a46faadee4016fb4e018c20642" + }, + "name": { + "type": "string", + "description": "Workflow creator's display name.", + "example": "Michael Michaels" + } + } + } + } + }, + { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The name of the workflow", + "example": "Send Email" + }, + "owner": { + "description": "The identity that owns the workflow. The owner's permissions in IDN will determine what actions the workflow is allowed to perform. Ownership can be changed by updating the owner in a PUT or PATCH request.", + "properties": { + "type": { + "type": "string", + "enum": [ + "IDENTITY" + ], + "example": "IDENTITY", + "description": "The type of object that is referenced" + }, + "id": { + "type": "string", + "description": "The unique ID of the object", + "example": "2c91808568c529c60168cca6f90c1313" + }, + "name": { + "type": "string", + "description": "The name of the object", + "example": "William Wilson" + } + } + }, + "description": { + "type": "string", + "description": "Description of what the workflow accomplishes", + "example": "Send an email to the identity who's attributes changed." + }, + "definition": { + "type": "object", + "description": "The map of steps that the workflow will execute.", + "properties": { + "start": { + "type": "string", + "description": "The name of the starting step.", + "example": "Send Email Test" + }, + "steps": { + "type": "object", + "description": "One or more step objects that comprise this workflow. Please see the Workflow documentation to see the JSON schema for each step type.", + "additionalProperties": true, + "example": { + "Send Email": { + "actionId": "sp:send-email", + "attributes": { + "body": "This is a test", + "from": "sailpoint@sailpoint.com", + "recipientId.$": "$.identity.id", + "subject": "test" + }, + "nextStep": "success", + "selectResult": null, + "type": "ACTION" + }, + "success": { + "type": "success" + } + } + } + } + }, + "enabled": { + "type": "boolean", + "description": "Enable or disable the workflow. Workflows cannot be created in an enabled state.", + "default": false, + "example": false + }, + "trigger": { + "type": "object", + "description": "The trigger that starts the workflow", + "required": [ + "type", + "attributes" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "EVENT", + "EXTERNAL", + "SCHEDULED" + ], + "example": "EVENT", + "description": "The trigger type" + }, + "attributes": { + "oneOf": [ + { + "title": "Event Trigger Attributes", + "type": "object", + "description": "Attributes related to an IdentityNow ETS event", + "required": [ + "id" + ], + "properties": { + "id": { + "type": "string", + "description": "The unique ID of the trigger", + "example": "idn:identity-attributes-changed" + }, + "filter.$": { + "type": "string", + "description": "JSON path expression that will limit which events the trigger will fire on", + "example": "$.changes[?(@.attribute == 'manager')]" + } + } + }, + { + "title": "External Trigger Attributes", + "type": "object", + "description": "Attributes related to an external trigger", + "required": [ + "name" + ], + "properties": { + "name": { + "type": "string", + "description": "A unique name for the external trigger", + "example": "search-and-notify" + }, + "description": { + "type": "string", + "description": "Additonal context about the external trigger", + "example": "Run a search and notify the results" + } + } + }, + { + "title": "Scheduled Trigger Attributes", + "type": "object", + "description": "Attributes related to a scheduled trigger", + "required": [ + "cronString" + ], + "properties": { + "cronString": { + "type": "string", + "description": "A valid CRON expression", + "externalDocs": { + "description": "CRON expression editor", + "url": "https://crontab.guru/" + }, + "example": "0 * */3 */5 *" + } + } + } + ], + "description": "Workflow Trigger Attributes." + } + } + } + } + } + ] + } + } + } + } + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + } + } + } + }, + "401": { + "description": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "error": { + "description": "A message describing the error", + "example": "JWT validation failed: JWT is expired" + } + } + } + } + } + }, + "403": { + "description": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + } + }, + "/workflows/{id}": { + "get": { + "operationId": "getWorkflow", + "tags": [ + "Workflows" + ], + "summary": "Get Workflow By Id", + "description": "Get a single workflow by id.", + "security": [ + { + "UserContextAuth": [ + "sp:workflow:read" + ] + } + ], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "Id of the workflow", + "required": true, + "style": "simple", + "explode": false, + "schema": { + "type": "string", + "example": "c17bea3a-574d-453c-9e04-4365fbf5af0b" + } + } + ], + "responses": { + "200": { + "description": "The workflow object", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Workflow ID. This is a UUID generated upon creation.", + "example": "d201c5e9-d37b-4aff-af14-66414f39d569" + }, + "executionCount": { + "type": "integer", + "format": "int32", + "description": "The number of times this workflow has been executed.", + "example": 2 + }, + "failureCount": { + "type": "integer", + "format": "int32", + "description": "The number of times this workflow has failed during execution.", + "example": 0 + }, + "created": { + "type": "string", + "format": "date-time", + "description": "The date and time the workflow was created.", + "example": "2022-01-10T16:06:16.636381447Z" + }, + "creator": { + "type": "object", + "description": "Workflow creator's identity.", + "properties": { + "type": { + "type": "string", + "description": "Workflow creator's DTO type.", + "enum": [ + "IDENTITY" + ], + "example": "IDENTITY" + }, + "id": { + "type": "string", + "description": "Workflow creator's identity ID.", + "example": "2c7180a46faadee4016fb4e018c20642" + }, + "name": { + "type": "string", + "description": "Workflow creator's display name.", + "example": "Michael Michaels" + } + } + } + } + }, + { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The name of the workflow", + "example": "Send Email" + }, + "owner": { + "description": "The identity that owns the workflow. The owner's permissions in IDN will determine what actions the workflow is allowed to perform. Ownership can be changed by updating the owner in a PUT or PATCH request.", + "properties": { + "type": { + "type": "string", + "enum": [ + "IDENTITY" + ], + "example": "IDENTITY", + "description": "The type of object that is referenced" + }, + "id": { + "type": "string", + "description": "The unique ID of the object", + "example": "2c91808568c529c60168cca6f90c1313" + }, + "name": { + "type": "string", + "description": "The name of the object", + "example": "William Wilson" + } + } + }, + "description": { + "type": "string", + "description": "Description of what the workflow accomplishes", + "example": "Send an email to the identity who's attributes changed." + }, + "definition": { + "type": "object", + "description": "The map of steps that the workflow will execute.", + "properties": { + "start": { + "type": "string", + "description": "The name of the starting step.", + "example": "Send Email Test" + }, + "steps": { + "type": "object", + "description": "One or more step objects that comprise this workflow. Please see the Workflow documentation to see the JSON schema for each step type.", + "additionalProperties": true, + "example": { + "Send Email": { + "actionId": "sp:send-email", + "attributes": { + "body": "This is a test", + "from": "sailpoint@sailpoint.com", + "recipientId.$": "$.identity.id", + "subject": "test" + }, + "nextStep": "success", + "selectResult": null, + "type": "ACTION" + }, + "success": { + "type": "success" + } + } + } + } + }, + "enabled": { + "type": "boolean", + "description": "Enable or disable the workflow. Workflows cannot be created in an enabled state.", + "default": false, + "example": false + }, + "trigger": { + "type": "object", + "description": "The trigger that starts the workflow", + "required": [ + "type", + "attributes" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "EVENT", + "EXTERNAL", + "SCHEDULED" + ], + "example": "EVENT", + "description": "The trigger type" + }, + "attributes": { + "oneOf": [ + { + "title": "Event Trigger Attributes", + "type": "object", + "description": "Attributes related to an IdentityNow ETS event", + "required": [ + "id" + ], + "properties": { + "id": { + "type": "string", + "description": "The unique ID of the trigger", + "example": "idn:identity-attributes-changed" + }, + "filter.$": { + "type": "string", + "description": "JSON path expression that will limit which events the trigger will fire on", + "example": "$.changes[?(@.attribute == 'manager')]" + } + } + }, + { + "title": "External Trigger Attributes", + "type": "object", + "description": "Attributes related to an external trigger", + "required": [ + "name" + ], + "properties": { + "name": { + "type": "string", + "description": "A unique name for the external trigger", + "example": "search-and-notify" + }, + "description": { + "type": "string", + "description": "Additonal context about the external trigger", + "example": "Run a search and notify the results" + } + } + }, + { + "title": "Scheduled Trigger Attributes", + "type": "object", + "description": "Attributes related to a scheduled trigger", + "required": [ + "cronString" + ], + "properties": { + "cronString": { + "type": "string", + "description": "A valid CRON expression", + "externalDocs": { + "description": "CRON expression editor", + "url": "https://crontab.guru/" + }, + "example": "0 * */3 */5 *" + } + } + } + ], + "description": "Workflow Trigger Attributes." + } + } + } + } + } + ] + } + } + } + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + } + } + } + }, + "401": { + "description": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "error": { + "description": "A message describing the error", + "example": "JWT validation failed: JWT is expired" + } + } + } + } + } + }, + "403": { + "description": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + }, + "put": { + "operationId": "putWorkflow", + "tags": [ + "Workflows" + ], + "summary": "Update Workflow", + "description": "Perform a full update of a workflow. The updated workflow object is returned in the response.", + "security": [ + { + "UserContextAuth": [ + "sp:workflow:manage" + ] + } + ], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "Id of the Workflow", + "required": true, + "style": "simple", + "explode": false, + "schema": { + "type": "string", + "example": "c17bea3a-574d-453c-9e04-4365fbf5af0b" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The name of the workflow", + "example": "Send Email" + }, + "owner": { + "description": "The identity that owns the workflow. The owner's permissions in IDN will determine what actions the workflow is allowed to perform. Ownership can be changed by updating the owner in a PUT or PATCH request.", + "properties": { + "type": { + "type": "string", + "enum": [ + "IDENTITY" + ], + "example": "IDENTITY", + "description": "The type of object that is referenced" + }, + "id": { + "type": "string", + "description": "The unique ID of the object", + "example": "2c91808568c529c60168cca6f90c1313" + }, + "name": { + "type": "string", + "description": "The name of the object", + "example": "William Wilson" + } + } + }, + "description": { + "type": "string", + "description": "Description of what the workflow accomplishes", + "example": "Send an email to the identity who's attributes changed." + }, + "definition": { + "type": "object", + "description": "The map of steps that the workflow will execute.", + "properties": { + "start": { + "type": "string", + "description": "The name of the starting step.", + "example": "Send Email Test" + }, + "steps": { + "type": "object", + "description": "One or more step objects that comprise this workflow. Please see the Workflow documentation to see the JSON schema for each step type.", + "additionalProperties": true, + "example": { + "Send Email": { + "actionId": "sp:send-email", + "attributes": { + "body": "This is a test", + "from": "sailpoint@sailpoint.com", + "recipientId.$": "$.identity.id", + "subject": "test" + }, + "nextStep": "success", + "selectResult": null, + "type": "ACTION" + }, + "success": { + "type": "success" + } + } + } + } + }, + "enabled": { + "type": "boolean", + "description": "Enable or disable the workflow. Workflows cannot be created in an enabled state.", + "default": false, + "example": false + }, + "trigger": { + "type": "object", + "description": "The trigger that starts the workflow", + "required": [ + "type", + "attributes" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "EVENT", + "EXTERNAL", + "SCHEDULED" + ], + "example": "EVENT", + "description": "The trigger type" + }, + "attributes": { + "oneOf": [ + { + "title": "Event Trigger Attributes", + "type": "object", + "description": "Attributes related to an IdentityNow ETS event", + "required": [ + "id" + ], + "properties": { + "id": { + "type": "string", + "description": "The unique ID of the trigger", + "example": "idn:identity-attributes-changed" + }, + "filter.$": { + "type": "string", + "description": "JSON path expression that will limit which events the trigger will fire on", + "example": "$.changes[?(@.attribute == 'manager')]" + } + } + }, + { + "title": "External Trigger Attributes", + "type": "object", + "description": "Attributes related to an external trigger", + "required": [ + "name" + ], + "properties": { + "name": { + "type": "string", + "description": "A unique name for the external trigger", + "example": "search-and-notify" + }, + "description": { + "type": "string", + "description": "Additonal context about the external trigger", + "example": "Run a search and notify the results" + } + } + }, + { + "title": "Scheduled Trigger Attributes", + "type": "object", + "description": "Attributes related to a scheduled trigger", + "required": [ + "cronString" + ], + "properties": { + "cronString": { + "type": "string", + "description": "A valid CRON expression", + "externalDocs": { + "description": "CRON expression editor", + "url": "https://crontab.guru/" + }, + "example": "0 * */3 */5 *" + } + } + } + ], + "description": "Workflow Trigger Attributes." + } + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "The Workflow object", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Workflow ID. This is a UUID generated upon creation.", + "example": "d201c5e9-d37b-4aff-af14-66414f39d569" + }, + "executionCount": { + "type": "integer", + "format": "int32", + "description": "The number of times this workflow has been executed.", + "example": 2 + }, + "failureCount": { + "type": "integer", + "format": "int32", + "description": "The number of times this workflow has failed during execution.", + "example": 0 + }, + "created": { + "type": "string", + "format": "date-time", + "description": "The date and time the workflow was created.", + "example": "2022-01-10T16:06:16.636381447Z" + }, + "creator": { + "type": "object", + "description": "Workflow creator's identity.", + "properties": { + "type": { + "type": "string", + "description": "Workflow creator's DTO type.", + "enum": [ + "IDENTITY" + ], + "example": "IDENTITY" + }, + "id": { + "type": "string", + "description": "Workflow creator's identity ID.", + "example": "2c7180a46faadee4016fb4e018c20642" + }, + "name": { + "type": "string", + "description": "Workflow creator's display name.", + "example": "Michael Michaels" + } + } + } + } + }, + { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The name of the workflow", + "example": "Send Email" + }, + "owner": { + "description": "The identity that owns the workflow. The owner's permissions in IDN will determine what actions the workflow is allowed to perform. Ownership can be changed by updating the owner in a PUT or PATCH request.", + "properties": { + "type": { + "type": "string", + "enum": [ + "IDENTITY" + ], + "example": "IDENTITY", + "description": "The type of object that is referenced" + }, + "id": { + "type": "string", + "description": "The unique ID of the object", + "example": "2c91808568c529c60168cca6f90c1313" + }, + "name": { + "type": "string", + "description": "The name of the object", + "example": "William Wilson" + } + } + }, + "description": { + "type": "string", + "description": "Description of what the workflow accomplishes", + "example": "Send an email to the identity who's attributes changed." + }, + "definition": { + "type": "object", + "description": "The map of steps that the workflow will execute.", + "properties": { + "start": { + "type": "string", + "description": "The name of the starting step.", + "example": "Send Email Test" + }, + "steps": { + "type": "object", + "description": "One or more step objects that comprise this workflow. Please see the Workflow documentation to see the JSON schema for each step type.", + "additionalProperties": true, + "example": { + "Send Email": { + "actionId": "sp:send-email", + "attributes": { + "body": "This is a test", + "from": "sailpoint@sailpoint.com", + "recipientId.$": "$.identity.id", + "subject": "test" + }, + "nextStep": "success", + "selectResult": null, + "type": "ACTION" + }, + "success": { + "type": "success" + } + } + } + } + }, + "enabled": { + "type": "boolean", + "description": "Enable or disable the workflow. Workflows cannot be created in an enabled state.", + "default": false, + "example": false + }, + "trigger": { + "type": "object", + "description": "The trigger that starts the workflow", + "required": [ + "type", + "attributes" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "EVENT", + "EXTERNAL", + "SCHEDULED" + ], + "example": "EVENT", + "description": "The trigger type" + }, + "attributes": { + "oneOf": [ + { + "title": "Event Trigger Attributes", + "type": "object", + "description": "Attributes related to an IdentityNow ETS event", + "required": [ + "id" + ], + "properties": { + "id": { + "type": "string", + "description": "The unique ID of the trigger", + "example": "idn:identity-attributes-changed" + }, + "filter.$": { + "type": "string", + "description": "JSON path expression that will limit which events the trigger will fire on", + "example": "$.changes[?(@.attribute == 'manager')]" + } + } + }, + { + "title": "External Trigger Attributes", + "type": "object", + "description": "Attributes related to an external trigger", + "required": [ + "name" + ], + "properties": { + "name": { + "type": "string", + "description": "A unique name for the external trigger", + "example": "search-and-notify" + }, + "description": { + "type": "string", + "description": "Additonal context about the external trigger", + "example": "Run a search and notify the results" + } + } + }, + { + "title": "Scheduled Trigger Attributes", + "type": "object", + "description": "Attributes related to a scheduled trigger", + "required": [ + "cronString" + ], + "properties": { + "cronString": { + "type": "string", + "description": "A valid CRON expression", + "externalDocs": { + "description": "CRON expression editor", + "url": "https://crontab.guru/" + }, + "example": "0 * */3 */5 *" + } + } + } + ], + "description": "Workflow Trigger Attributes." + } + } + } + } + } + ] + } + } + } + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + } + } + } + }, + "401": { + "description": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "error": { + "description": "A message describing the error", + "example": "JWT validation failed: JWT is expired" + } + } + } + } + } + }, + "403": { + "description": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + }, + "patch": { + "operationId": "patchWorkflow", + "tags": [ + "Workflows" + ], + "summary": "Patch Workflow", + "description": "Partially update an existing Workflow using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.", + "security": [ + { + "UserContextAuth": [ + "sp:workflow:manage" + ] + } + ], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "Id of the Workflow", + "required": true, + "style": "simple", + "explode": false, + "schema": { + "type": "string", + "example": "c17bea3a-574d-453c-9e04-4365fbf5af0b" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json-patch+json": { + "schema": { + "type": "array", + "items": { + "type": "object", + "description": "A JSONPatch Operation as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)", + "required": [ + "op", + "path" + ], + "properties": { + "op": { + "type": "string", + "description": "The operation to be performed", + "enum": [ + "add", + "remove", + "replace", + "move", + "copy", + "test" + ], + "example": "replace" + }, + "path": { + "type": "string", + "description": "A string JSON Pointer representing the target path to an element to be affected by the operation", + "example": "/description" + }, + "value": { + "oneOf": [ + { + "type": "string", + "example": "New description", + "title": "string" + }, + { + "type": "integer", + "example": 300, + "title": "integer" + }, + { + "type": "object", + "title": "object", + "example": { + "attributes": { + "name": "philip" + } + } + }, + { + "type": "array", + "title": "array", + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + }, + { + "type": "object" + } + ], + "example": [ + "001", + "002", + "003" + ] + } + } + ], + "description": "The value to be used for the operation, required for \"add\" and \"replace\" operations", + "example": "New description" + } + } + } + }, + "examples": { + "Update all patchable fields": { + "description": "Demonstrate how to update each patchable field in one PATCH request.", + "value": [ + { + "op": "replace", + "path": "/name", + "value": "Send Email" + }, + { + "op": "replace", + "path": "/owner", + "value": { + "type": "IDENTITY", + "id": "2c91808568c529c60168cca6f90c1313", + "name": "William Wilson" + } + }, + { + "op": "replace", + "path": "/description", + "value": "Send an email to the identity who's attributes changed." + }, + { + "op": "replace", + "path": "/enabled", + "value": false + }, + { + "op": "replace", + "path": "/definition", + "value": { + "start": "Send Email Test", + "steps": { + "Send Email": { + "actionId": "sp:send-email", + "attributes": { + "body": "This is a test", + "from": "sailpoint@sailpoint.com", + "recipientId.$": "$.identity.id", + "subject": "test" + }, + "nextStep": "success", + "selectResult": null, + "type": "action" + }, + "success": { + "type": "success" + } + } + } + }, + { + "op": "replace", + "path": "/trigger", + "value": { + "type": "EVENT", + "attributes": { + "id": "idn:identity-attributes-changed" + } + } + } + ] + } + } + } + } + }, + "responses": { + "200": { + "description": "The Workflow object", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Workflow ID. This is a UUID generated upon creation.", + "example": "d201c5e9-d37b-4aff-af14-66414f39d569" + }, + "executionCount": { + "type": "integer", + "format": "int32", + "description": "The number of times this workflow has been executed.", + "example": 2 + }, + "failureCount": { + "type": "integer", + "format": "int32", + "description": "The number of times this workflow has failed during execution.", + "example": 0 + }, + "created": { + "type": "string", + "format": "date-time", + "description": "The date and time the workflow was created.", + "example": "2022-01-10T16:06:16.636381447Z" + }, + "creator": { + "type": "object", + "description": "Workflow creator's identity.", + "properties": { + "type": { + "type": "string", + "description": "Workflow creator's DTO type.", + "enum": [ + "IDENTITY" + ], + "example": "IDENTITY" + }, + "id": { + "type": "string", + "description": "Workflow creator's identity ID.", + "example": "2c7180a46faadee4016fb4e018c20642" + }, + "name": { + "type": "string", + "description": "Workflow creator's display name.", + "example": "Michael Michaels" + } + } + } + } + }, + { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The name of the workflow", + "example": "Send Email" + }, + "owner": { + "description": "The identity that owns the workflow. The owner's permissions in IDN will determine what actions the workflow is allowed to perform. Ownership can be changed by updating the owner in a PUT or PATCH request.", + "properties": { + "type": { + "type": "string", + "enum": [ + "IDENTITY" + ], + "example": "IDENTITY", + "description": "The type of object that is referenced" + }, + "id": { + "type": "string", + "description": "The unique ID of the object", + "example": "2c91808568c529c60168cca6f90c1313" + }, + "name": { + "type": "string", + "description": "The name of the object", + "example": "William Wilson" + } + } + }, + "description": { + "type": "string", + "description": "Description of what the workflow accomplishes", + "example": "Send an email to the identity who's attributes changed." + }, + "definition": { + "type": "object", + "description": "The map of steps that the workflow will execute.", + "properties": { + "start": { + "type": "string", + "description": "The name of the starting step.", + "example": "Send Email Test" + }, + "steps": { + "type": "object", + "description": "One or more step objects that comprise this workflow. Please see the Workflow documentation to see the JSON schema for each step type.", + "additionalProperties": true, + "example": { + "Send Email": { + "actionId": "sp:send-email", + "attributes": { + "body": "This is a test", + "from": "sailpoint@sailpoint.com", + "recipientId.$": "$.identity.id", + "subject": "test" + }, + "nextStep": "success", + "selectResult": null, + "type": "ACTION" + }, + "success": { + "type": "success" + } + } + } + } + }, + "enabled": { + "type": "boolean", + "description": "Enable or disable the workflow. Workflows cannot be created in an enabled state.", + "default": false, + "example": false + }, + "trigger": { + "type": "object", + "description": "The trigger that starts the workflow", + "required": [ + "type", + "attributes" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "EVENT", + "EXTERNAL", + "SCHEDULED" + ], + "example": "EVENT", + "description": "The trigger type" + }, + "attributes": { + "oneOf": [ + { + "title": "Event Trigger Attributes", + "type": "object", + "description": "Attributes related to an IdentityNow ETS event", + "required": [ + "id" + ], + "properties": { + "id": { + "type": "string", + "description": "The unique ID of the trigger", + "example": "idn:identity-attributes-changed" + }, + "filter.$": { + "type": "string", + "description": "JSON path expression that will limit which events the trigger will fire on", + "example": "$.changes[?(@.attribute == 'manager')]" + } + } + }, + { + "title": "External Trigger Attributes", + "type": "object", + "description": "Attributes related to an external trigger", + "required": [ + "name" + ], + "properties": { + "name": { + "type": "string", + "description": "A unique name for the external trigger", + "example": "search-and-notify" + }, + "description": { + "type": "string", + "description": "Additonal context about the external trigger", + "example": "Run a search and notify the results" + } + } + }, + { + "title": "Scheduled Trigger Attributes", + "type": "object", + "description": "Attributes related to a scheduled trigger", + "required": [ + "cronString" + ], + "properties": { + "cronString": { + "type": "string", + "description": "A valid CRON expression", + "externalDocs": { + "description": "CRON expression editor", + "url": "https://crontab.guru/" + }, + "example": "0 * */3 */5 *" + } + } + } + ], + "description": "Workflow Trigger Attributes." + } + } + } + } + } + ] + } + } + } + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + } + } + } + }, + "401": { + "description": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "error": { + "description": "A message describing the error", + "example": "JWT validation failed: JWT is expired" + } + } + } + } + } + }, + "403": { + "description": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + }, + "delete": { + "operationId": "deleteWorkflow", + "tags": [ + "Workflows" + ], + "summary": "Delete Workflow By Id", + "description": "Delete a workflow. **Enabled workflows cannot be deleted**. They must first be disabled.", + "security": [ + { + "UserContextAuth": [ + "sp:workflow:manage" + ] + } + ], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "Id of the Workflow", + "required": true, + "style": "simple", + "explode": false, + "schema": { + "type": "string", + "example": "c17bea3a-574d-453c-9e04-4365fbf5af0b" + } + } + ], + "responses": { + "204": { + "description": "No content - indicates the request was successful but there is no content to be returned in the response." + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + } + } + } + }, + "401": { + "description": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "error": { + "description": "A message describing the error", + "example": "JWT validation failed: JWT is expired" + } + } + } + } + } + }, + "403": { + "description": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + }, + "post": { + "operationId": "createWorkflow", + "tags": [ + "Workflows" + ], + "summary": "Create Workflow", + "description": "Create a new workflow with the desired trigger and steps specified in the request body.", + "security": [ + { + "UserContextAuth": [ + "sp:workflow:manage" + ] + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "required": [ + "name", + "owner" + ] + }, + { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The name of the workflow", + "example": "Send Email" + }, + "owner": { + "description": "The identity that owns the workflow. The owner's permissions in IDN will determine what actions the workflow is allowed to perform. Ownership can be changed by updating the owner in a PUT or PATCH request.", + "properties": { + "type": { + "type": "string", + "enum": [ + "IDENTITY" + ], + "example": "IDENTITY", + "description": "The type of object that is referenced" + }, + "id": { + "type": "string", + "description": "The unique ID of the object", + "example": "2c91808568c529c60168cca6f90c1313" + }, + "name": { + "type": "string", + "description": "The name of the object", + "example": "William Wilson" + } + } + }, + "description": { + "type": "string", + "description": "Description of what the workflow accomplishes", + "example": "Send an email to the identity who's attributes changed." + }, + "definition": { + "type": "object", + "description": "The map of steps that the workflow will execute.", + "properties": { + "start": { + "type": "string", + "description": "The name of the starting step.", + "example": "Send Email Test" + }, + "steps": { + "type": "object", + "description": "One or more step objects that comprise this workflow. Please see the Workflow documentation to see the JSON schema for each step type.", + "additionalProperties": true, + "example": { + "Send Email": { + "actionId": "sp:send-email", + "attributes": { + "body": "This is a test", + "from": "sailpoint@sailpoint.com", + "recipientId.$": "$.identity.id", + "subject": "test" + }, + "nextStep": "success", + "selectResult": null, + "type": "ACTION" + }, + "success": { + "type": "success" + } + } + } + } + }, + "enabled": { + "type": "boolean", + "description": "Enable or disable the workflow. Workflows cannot be created in an enabled state.", + "default": false, + "example": false + }, + "trigger": { + "type": "object", + "description": "The trigger that starts the workflow", + "required": [ + "type", + "attributes" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "EVENT", + "EXTERNAL", + "SCHEDULED" + ], + "example": "EVENT", + "description": "The trigger type" + }, + "attributes": { + "oneOf": [ + { + "title": "Event Trigger Attributes", + "type": "object", + "description": "Attributes related to an IdentityNow ETS event", + "required": [ + "id" + ], + "properties": { + "id": { + "type": "string", + "description": "The unique ID of the trigger", + "example": "idn:identity-attributes-changed" + }, + "filter.$": { + "type": "string", + "description": "JSON path expression that will limit which events the trigger will fire on", + "example": "$.changes[?(@.attribute == 'manager')]" + } + } + }, + { + "title": "External Trigger Attributes", + "type": "object", + "description": "Attributes related to an external trigger", + "required": [ + "name" + ], + "properties": { + "name": { + "type": "string", + "description": "A unique name for the external trigger", + "example": "search-and-notify" + }, + "description": { + "type": "string", + "description": "Additonal context about the external trigger", + "example": "Run a search and notify the results" + } + } + }, + { + "title": "Scheduled Trigger Attributes", + "type": "object", + "description": "Attributes related to a scheduled trigger", + "required": [ + "cronString" + ], + "properties": { + "cronString": { + "type": "string", + "description": "A valid CRON expression", + "externalDocs": { + "description": "CRON expression editor", + "url": "https://crontab.guru/" + }, + "example": "0 * */3 */5 *" + } + } + } + ], + "description": "Workflow Trigger Attributes." + } + } + } + } + } + ] + }, + "examples": { + "Event Trigger": { + "description": "Workflow initiated by an event trigger", + "value": { + "name": "Send Email", + "owner": { + "type": "IDENTITY", + "id": "2c91808568c529c60168cca6f90c1313", + "name": "William Wilson" + }, + "description": "Send an email to the identity who's attributes changed.", + "definition": { + "start": "Send Email Test", + "steps": { + "Send Email": { + "actionId": "sp:send-email", + "attributes": { + "body": "This is a test", + "from": "sailpoint@sailpoint.com", + "recipientId.$": "$.identity.id", + "subject": "test" + }, + "nextStep": "success", + "selectResult": null, + "type": "action" + }, + "success": { + "type": "success" + } + } + }, + "enabled": false, + "trigger": { + "type": "EVENT", + "attributes": { + "id": "idn:identity-attributes-changed", + "filter": "$.changes[?(@.attribute == 'manager')]" + } + } + } + }, + "Scheduled Trigger": { + "description": "Workflow initiated by a scheduled trigger", + "value": { + "name": "Send Email", + "owner": { + "type": "IDENTITY", + "id": "2c91808568c529c60168cca6f90c1313", + "name": "William Wilson" + }, + "description": "Send an email to the identity who's attributes changed.", + "definition": { + "start": "Send Email Test", + "steps": { + "Send Email": { + "actionId": "sp:send-email", + "attributes": { + "body": "This is a test", + "from": "sailpoint@sailpoint.com", + "recipientId.$": "$.identity.id", + "subject": "test" + }, + "nextStep": "success", + "selectResult": null, + "type": "action" + }, + "success": { + "type": "success" + } + } + }, + "enabled": false, + "trigger": { + "type": "SCHEDULED", + "attributes": { + "cronString": "0 * */3 */5 *" + } + } + } + }, + "External Trigger": { + "description": "Workflow initiated by an external trigger", + "value": { + "name": "Send Email", + "owner": { + "type": "IDENTITY", + "id": "2c91808568c529c60168cca6f90c1313", + "name": "William Wilson" + }, + "description": "Send an email to the identity whose attributes changed.", + "definition": { + "start": "Send Email Test", + "steps": { + "Send Email": { + "actionId": "sp:send-email", + "attributes": { + "body": "This is a test", + "from": "sailpoint@sailpoint.com", + "recipientId.$": "$.identity.id", + "subject": "test" + }, + "nextStep": "success", + "selectResult": null, + "type": "action" + }, + "success": { + "type": "success" + } + } + }, + "enabled": false, + "trigger": { + "type": "EXTERNAL", + "attributes": { + "name": "search-and-notify", + "description": "Run a search and notify the results" + } + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "The Workflow object", + "content": { + "application/json": { + "schema": { + "allOf": [ + { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Workflow ID. This is a UUID generated upon creation.", + "example": "d201c5e9-d37b-4aff-af14-66414f39d569" + }, + "executionCount": { + "type": "integer", + "format": "int32", + "description": "The number of times this workflow has been executed.", + "example": 2 + }, + "failureCount": { + "type": "integer", + "format": "int32", + "description": "The number of times this workflow has failed during execution.", + "example": 0 + }, + "created": { + "type": "string", + "format": "date-time", + "description": "The date and time the workflow was created.", + "example": "2022-01-10T16:06:16.636381447Z" + }, + "creator": { + "type": "object", + "description": "Workflow creator's identity.", + "properties": { + "type": { + "type": "string", + "description": "Workflow creator's DTO type.", + "enum": [ + "IDENTITY" + ], + "example": "IDENTITY" + }, + "id": { + "type": "string", + "description": "Workflow creator's identity ID.", + "example": "2c7180a46faadee4016fb4e018c20642" + }, + "name": { + "type": "string", + "description": "Workflow creator's display name.", + "example": "Michael Michaels" + } + } + } + } + }, + { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The name of the workflow", + "example": "Send Email" + }, + "owner": { + "description": "The identity that owns the workflow. The owner's permissions in IDN will determine what actions the workflow is allowed to perform. Ownership can be changed by updating the owner in a PUT or PATCH request.", + "properties": { + "type": { + "type": "string", + "enum": [ + "IDENTITY" + ], + "example": "IDENTITY", + "description": "The type of object that is referenced" + }, + "id": { + "type": "string", + "description": "The unique ID of the object", + "example": "2c91808568c529c60168cca6f90c1313" + }, + "name": { + "type": "string", + "description": "The name of the object", + "example": "William Wilson" + } + } + }, + "description": { + "type": "string", + "description": "Description of what the workflow accomplishes", + "example": "Send an email to the identity who's attributes changed." + }, + "definition": { + "type": "object", + "description": "The map of steps that the workflow will execute.", + "properties": { + "start": { + "type": "string", + "description": "The name of the starting step.", + "example": "Send Email Test" + }, + "steps": { + "type": "object", + "description": "One or more step objects that comprise this workflow. Please see the Workflow documentation to see the JSON schema for each step type.", + "additionalProperties": true, + "example": { + "Send Email": { + "actionId": "sp:send-email", + "attributes": { + "body": "This is a test", + "from": "sailpoint@sailpoint.com", + "recipientId.$": "$.identity.id", + "subject": "test" + }, + "nextStep": "success", + "selectResult": null, + "type": "ACTION" + }, + "success": { + "type": "success" + } + } + } + } + }, + "enabled": { + "type": "boolean", + "description": "Enable or disable the workflow. Workflows cannot be created in an enabled state.", + "default": false, + "example": false + }, + "trigger": { + "type": "object", + "description": "The trigger that starts the workflow", + "required": [ + "type", + "attributes" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "EVENT", + "EXTERNAL", + "SCHEDULED" + ], + "example": "EVENT", + "description": "The trigger type" + }, + "attributes": { + "oneOf": [ + { + "title": "Event Trigger Attributes", + "type": "object", + "description": "Attributes related to an IdentityNow ETS event", + "required": [ + "id" + ], + "properties": { + "id": { + "type": "string", + "description": "The unique ID of the trigger", + "example": "idn:identity-attributes-changed" + }, + "filter.$": { + "type": "string", + "description": "JSON path expression that will limit which events the trigger will fire on", + "example": "$.changes[?(@.attribute == 'manager')]" + } + } + }, + { + "title": "External Trigger Attributes", + "type": "object", + "description": "Attributes related to an external trigger", + "required": [ + "name" + ], + "properties": { + "name": { + "type": "string", + "description": "A unique name for the external trigger", + "example": "search-and-notify" + }, + "description": { + "type": "string", + "description": "Additonal context about the external trigger", + "example": "Run a search and notify the results" + } + } + }, + { + "title": "Scheduled Trigger Attributes", + "type": "object", + "description": "Attributes related to a scheduled trigger", + "required": [ + "cronString" + ], + "properties": { + "cronString": { + "type": "string", + "description": "A valid CRON expression", + "externalDocs": { + "description": "CRON expression editor", + "url": "https://crontab.guru/" + }, + "example": "0 * */3 */5 *" + } + } + } + ], + "description": "Workflow Trigger Attributes." + } + } + } + } + } + ] + } + } + } + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + } + } + } + }, + "401": { + "description": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "error": { + "description": "A message describing the error", + "example": "JWT validation failed: JWT is expired" + } + } + } + } + } + }, + "403": { + "description": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + } + }, + "/workflows/{id}/test": { + "post": { + "operationId": "testWorkflow", + "tags": [ + "Workflows" + ], + "summary": "Test Workflow By Id", + "description": "Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/idn/docs/event-triggers/available) for an example input for the trigger that initiates this workflow.\nThis endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint.\n**This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**", + "security": [ + { + "UserContextAuth": [ + "sp:workflow-execute:external" + ] + } + ], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "Id of the workflow", + "required": true, + "style": "simple", + "explode": false, + "schema": { + "type": "string", + "example": "c17bea3a-574d-453c-9e04-4365fbf5af0b" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "input" + ], + "properties": { + "input": { + "type": "object", + "description": "The test input for the workflow." + } + } + }, + "examples": { + "Identity Attributes Changed": { + "description": "Identity Attributes Changed Trigger Input", + "value": { + "input": { + "identity": { + "id": "ee769173319b41d19ccec6cea52f237b", + "name": "john.doe", + "type": "IDENTITY" + }, + "changes": [ + { + "attribute": "department", + "oldValue": "sales", + "newValue": "marketing" + }, + { + "attribute": "manager", + "oldValue": { + "id": "ee769173319b41d19ccec6c235423237b", + "name": "nice.guy", + "type": "IDENTITY" + }, + "newValue": { + "id": "ee769173319b41d19ccec6c235423236c", + "name": "mean.guy", + "type": "IDENTITY" + } + }, + { + "attribute": "email", + "oldValue": "john.doe@hotmail.com", + "newValue": "john.doe@gmail.com" + } + ] + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "The Workflow object", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "workflowExecutionId": { + "type": "string", + "description": "The workflow execution id", + "example": "0e11cefa-96e7-4b67-90d0-065bc1da5753" + } + } + } + } + } + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + } + } + } + }, + "401": { + "description": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "error": { + "description": "A message describing the error", + "example": "JWT validation failed: JWT is expired" + } + } + } + } + } + }, + "403": { + "description": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + } + }, + "/workflows/{id}/executions": { + "get": { + "operationId": "listWorkflowExecutions", + "tags": [ + "Workflows" + ], + "summary": "List Workflow Executions", + "description": "This lists the executions for a given workflow. Workflow executions are available for up to 90 days before being archived. By default, you can get a maximum of 250 executions. To get executions past the first 250 records, you can do the following:\n1. Use the [Get Workflows](https://developer.sailpoint.com/idn/api/beta/list-workflows) endpoint to get your workflows.\n2. Get your workflow ID from the response.\n3. You can then do either of the following:\n\n - Filter to find relevant workflow executions.\n For example, you can filter for failed workflow executions: `GET /workflows/:workflowID/executions?filters=status eq \"Failed\"`\n\n - You can paginate through results with the `offset` parameter.\n For example, you can page through 50 executions per page and use that as a way to get to the records past the first 250.\n Refer to [Paginating Results](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results) for more information about the query parameters you can use to achieve pagination.", + "security": [ + { + "UserContextAuth": [ + "sp:workflow:read" + ] + } + ], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "Id of the workflow", + "required": true, + "style": "simple", + "explode": false, + "schema": { + "type": "string", + "example": "c17bea3a-574d-453c-9e04-4365fbf5af0b" + } + }, + { + "in": "query", + "name": "limit", + "description": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "required": false, + "example": 250, + "schema": { + "type": "integer", + "format": "int32", + "minimum": 0, + "maximum": 250, + "default": 250 + } + }, + { + "in": "query", + "name": "offset", + "description": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "required": false, + "example": 0, + "schema": { + "type": "integer", + "format": "int32", + "minimum": 0, + "default": 0 + } + }, + { + "in": "query", + "name": "count", + "description": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "required": false, + "example": true, + "schema": { + "type": "boolean", + "default": false + } + }, + { + "in": "query", + "name": "filters", + "schema": { + "type": "string" + }, + "example": "status eq \"Failed\"", + "description": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**startTime**: *eq, lt, le, gt, ge*\n\n**status**: *eq*", + "required": false + } + ], + "responses": { + "200": { + "description": "List of workflow executions for the given workflow", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "The workflow execution ID", + "example": "b393f4e2-4785-4d7f-ab27-3a6b8ded4c81" + }, + "workflowId": { + "type": "string", + "description": "The workflow ID", + "example": "d201c5d9-d37b-4a2f-af14-66414f39d568" + }, + "requestId": { + "type": "string", + "description": "This backend ID tracks a workflow request in the system. You can provide this ID in a customer support ticket for debugging purposes.", + "example": "41e12a74fa7b4a6a98ae47887b64acdb" + }, + "startTime": { + "type": "string", + "format": "date-time", + "description": "The date/time the workflow started", + "example": "2022-02-07T20:13:29.356648026Z" + }, + "closeTime": { + "type": "string", + "format": "date-time", + "description": "The date/time the workflow ended", + "example": "2022-02-07T20:13:31.682410165Z" + }, + "status": { + "description": "The workflow execution status", + "type": "string", + "enum": [ + "Completed", + "Failed", + "Canceled", + "Running" + ], + "example": "Completed" + } + } + } + } + } + } + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + } + } + } + }, + "401": { + "description": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "error": { + "description": "A message describing the error", + "example": "JWT validation failed: JWT is expired" + } + } + } + } + } + }, + "403": { + "description": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "404": { + "description": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "404": { + "summary": "An example of a 404 response object", + "value": { + "detailCode": "404 Not found", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server did not find a current representation for the target resource." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + } + }, + "/workflow-executions/{id}": { + "get": { + "operationId": "getWorkflowExecution", + "tags": [ + "Workflows" + ], + "summary": "Get a Workflow Execution", + "description": "Get a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a 404 Not Found.", + "security": [ + { + "UserContextAuth": [ + "sp:workflow:read" + ] + } + ], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "Id of the workflow execution", + "required": true, + "style": "simple", + "explode": false, + "schema": { + "type": "string", + "example": "c17bea3a-574d-453c-9e04-4365fbf5af0b" + } + } + ], + "responses": { + "200": { + "description": "The workflow execution", + "content": { + "application/json": { + "schema": { + "items": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "The workflow execution ID", + "example": "b393f4e2-4785-4d7f-ab27-3a6b8ded4c81" + }, + "workflowId": { + "type": "string", + "description": "The workflow ID", + "example": "d201c5d9-d37b-4a2f-af14-66414f39d568" + }, + "requestId": { + "type": "string", + "description": "This backend ID tracks a workflow request in the system. You can provide this ID in a customer support ticket for debugging purposes.", + "example": "41e12a74fa7b4a6a98ae47887b64acdb" + }, + "startTime": { + "type": "string", + "format": "date-time", + "description": "The date/time the workflow started", + "example": "2022-02-07T20:13:29.356648026Z" + }, + "closeTime": { + "type": "string", + "format": "date-time", + "description": "The date/time the workflow ended", + "example": "2022-02-07T20:13:31.682410165Z" + }, + "status": { + "description": "The workflow execution status", + "type": "string", + "enum": [ + "Completed", + "Failed", + "Canceled", + "Running" + ], + "example": "Completed" + } + } + } + } + } + } + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + } + } + } + }, + "401": { + "description": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "error": { + "description": "A message describing the error", + "example": "JWT validation failed: JWT is expired" + } + } + } + } + } + }, + "403": { + "description": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "404": { + "description": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "404": { + "summary": "An example of a 404 response object", + "value": { + "detailCode": "404 Not found", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server did not find a current representation for the target resource." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + } + }, + "/workflow-executions/{id}/history": { + "get": { + "operationId": "getWorkflowExecutionHistory", + "tags": [ + "Workflows" + ], + "summary": "Get Workflow Execution History", + "description": "Get a detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a 404 Not Found.", + "security": [ + { + "UserContextAuth": [ + "sp:workflow:read" + ] + } + ], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "Id of the workflow execution", + "required": true, + "style": "simple", + "explode": false, + "schema": { + "type": "string", + "example": "c17bea3a-574d-453c-9e04-4365fbf5af0b" + } + } + ], + "responses": { + "200": { + "description": "List of workflow execution events for the given workflow execution", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "object", + "properties": { + "type": { + "description": "The type of event", + "enum": [ + "WorkflowExecutionScheduled", + "WorkflowExecutionStarted", + "WorkflowExecutionCompleted", + "WorkflowExecutionFailed", + "WorkflowTaskScheduled", + "WorkflowTaskStarted", + "WorkflowTaskCompleted", + "WorkflowTaskFailed", + "ActivityTaskScheduled", + "ActivityTaskStarted", + "ActivityTaskCompleted", + "ActivityTaskFailed" + ], + "example": "WorkflowTaskScheduled" + }, + "timestamp": { + "type": "string", + "format": "date-time", + "description": "The date-time when the event occurred", + "example": "2022-02-07T20:13:31.640618296Z" + }, + "attributes": { + "type": "object", + "description": "Additional attributes associated with the event", + "example": {} + } + } + } + } + } + } + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + } + } + } + }, + "401": { + "description": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "error": { + "description": "A message describing the error", + "example": "JWT validation failed: JWT is expired" + } + } + } + } + } + }, + "403": { + "description": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "404": { + "description": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "404": { + "summary": "An example of a 404 response object", + "value": { + "detailCode": "404 Not found", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server did not find a current representation for the target resource." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + } + }, + "/workflow-executions/{id}/cancel": { + "post": { + "operationId": "cancelWorkflowExecution", + "tags": [ + "Workflows" + ], + "summary": "Cancel Workflow Execution by ID", + "description": "Use this API to cancel a running workflow execution.", + "security": [ + { + "UserContextAuth": [ + "sp:workflow-execute:external" + ] + } + ], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "The workflow execution ID", + "required": true, + "style": "simple", + "explode": false, + "schema": { + "type": "string", + "example": "c17bea3a-574d-453c-9e04-4365fbf5af0b" + } + } + ], + "responses": { + "204": { + "description": "No content - indicates the request was successful but there is no content to be returned in the response." + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + } + } + } + }, + "401": { + "description": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "error": { + "description": "A message describing the error", + "example": "JWT validation failed: JWT is expired" + } + } + } + } + } + }, + "403": { + "description": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "404": { + "description": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "404": { + "summary": "An example of a 404 response object", + "value": { + "detailCode": "404 Not found", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server did not find a current representation for the target resource." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + } + }, + "/workflow-library": { + "get": { + "operationId": "listCompleteWorkflowLibrary", + "tags": [ + "Workflows" + ], + "summary": "List Complete Workflow Library", + "description": "This lists all triggers, actions, and operators in the library", + "externalDocs": { + "description": "Additional documentation for workflows", + "url": "https://documentation.sailpoint.com/saas/help/workflows/workflow-steps.html" + }, + "parameters": [ + { + "in": "query", + "name": "limit", + "description": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "required": false, + "example": 250, + "schema": { + "type": "integer", + "format": "int32", + "minimum": 0, + "maximum": 250, + "default": 250 + } + }, + { + "in": "query", + "name": "offset", + "description": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "required": false, + "example": 0, + "schema": { + "type": "integer", + "format": "int32", + "minimum": 0, + "default": 0 + } + } + ], + "security": [ + { + "UserContextAuth": [ + "sp:workflow:read" + ] + } + ], + "responses": { + "200": { + "description": "List of workflow steps", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "anyOf": [ + { + "title": "Workflow Action", + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Action ID. This is a static namespaced ID for the action", + "example": "sp:create-campaign" + }, + "name": { + "type": "string", + "description": "Action Name", + "example": "Create Certification Campaign" + }, + "type": { + "type": "string", + "description": "Action type", + "example": "ACTION" + }, + "description": { + "type": "string", + "description": "Action Description", + "example": "Generates a certification campaign." + }, + "formFields": { + "type": "array", + "description": "One or more inputs that the action accepts", + "items": { + "type": "object", + "properties": { + "helpText": { + "type": "string", + "description": "Describes the form field in the UI", + "example": "The name to give to this certification campaign." + }, + "label": { + "type": "string", + "description": "A human readable name for this form field in the UI", + "example": "Campaign Name" + }, + "name": { + "type": "string", + "description": "The name of the input attribute", + "example": "name" + }, + "required": { + "type": "boolean", + "description": "Denotes if this field is a required attribute", + "example": false, + "default": false + }, + "type": { + "description": "The type of the form field", + "nullable": true, + "enum": [ + "text", + "textarea", + "boolean", + "email", + "url", + "number", + "json", + "checkbox", + "jsonpath", + "select", + "multiType", + "duration", + "toggle", + "identityPicker", + "governanceGroupPicker", + "string", + "object", + "array", + "secret", + "keyValuePairs", + "emailPicker", + "advancedToggle" + ], + "example": "text" + } + } + } + }, + "isDynamicSchema": { + "type": "boolean", + "description": "Determines whether the dynamic output schema is returned in place of the action's output schema. The dynamic schema lists non-static properties, like properties of a workflow form where each form has different fields. These will be provided dynamically based on available form fields.", + "example": false, + "default": false + }, + "outputSchema": { + "type": "object", + "description": "Defines the output schema, if any, that this action produces.", + "example": { + "definitions": {}, + "properties": { + "autoRevokeAllowed": { + "$id": "#sp:create-campaign/autoRevokeAllowed", + "default": true, + "examples": [ + false + ], + "title": "autoRevokeAllowed", + "type": "boolean" + }, + "deadline": { + "$id": "#sp:create-campaign/deadline", + "default": "", + "examples": [ + "2020-12-25T06:00:00.468Z" + ], + "format": "date-time", + "pattern": "^.*$", + "title": "deadline", + "type": "string" + }, + "description": { + "$id": "#sp:create-campaign/description", + "default": "", + "examples": [ + "A review of everyone's access by their manager." + ], + "pattern": "^.*$", + "title": "description", + "type": "string" + }, + "emailNotificationEnabled": { + "$id": "#sp:create-campaign/emailNotificationEnabled", + "default": true, + "examples": [ + false + ], + "title": "emailNotificationEnabled", + "type": "boolean" + }, + "filter": { + "$id": "#sp:create-campaign/filter", + "properties": { + "id": { + "$id": "#sp:create-campaign/filter/id", + "default": "", + "examples": [ + "e0adaae69852e8fe8b8a3d48e5ce757c" + ], + "pattern": "^.*$", + "title": "id", + "type": "string" + }, + "type": { + "$id": "#sp:create-campaign/filter/type", + "default": "", + "examples": [ + "CAMPAIGN_FILTER" + ], + "pattern": "^.*$", + "title": "type", + "type": "string" + } + }, + "title": "filter", + "type": "object" + }, + "id": { + "$id": "#sp:create-campaign/id", + "default": "", + "examples": [ + "2c918086719eec070171a7e3355a360a" + ], + "pattern": "^.*$", + "title": "id", + "type": "string" + }, + "name": { + "$id": "#sp:create-campaign/name", + "default": "", + "examples": [ + "Manager Review" + ], + "pattern": "^.*$", + "title": "name", + "type": "string" + }, + "recommendationsEnabled": { + "$id": "#sp:create-campaign/recommendationsEnabled", + "default": true, + "examples": [ + false + ], + "title": "recommendationEnabled", + "type": "boolean" + }, + "type": { + "$id": "#sp:create-campaign/type", + "default": "", + "examples": [ + "MANAGER" + ], + "pattern": "^.*$", + "title": "type", + "type": "string" + } + }, + "title": "sp:create-campaign", + "type": "object" + } + } + } + }, + { + "title": "Workflow Trigger", + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Trigger ID. This is a static namespaced ID for the trigger.", + "example": "idn:identity-attributes-changed" + }, + "type": { + "description": "Trigger type", + "enum": [ + "EVENT", + "SCHEDULED", + "EXTERNAL" + ], + "example": "EVENT" + }, + "name": { + "type": "string", + "description": "Trigger Name", + "example": "Identity Attributes Changed" + }, + "description": { + "type": "string", + "description": "Trigger Description", + "example": "One or more identity attributes changed." + }, + "isDynamicSchema": { + "type": "boolean", + "description": "Determines whether the dynamic output schema is returned in place of the action's output schema. The dynamic schema lists non-static properties, like properties of a workflow form where each form has different fields. These will be provided dynamically based on available form fields.", + "example": false, + "default": false + }, + "inputExample": { + "type": "object", + "description": "Example trigger payload if applicable", + "nullable": true, + "externalDocs": { + "description": "List of triggers and their input schemas", + "url": "https://developer.sailpoint.com/idn/docs/event-triggers/available" + }, + "example": { + "changes": [ + { + "attribute": "department", + "newValue": "marketing", + "oldValue": "sales" + }, + { + "attribute": "manager", + "newValue": { + "id": "ee769173319b41d19ccec6c235423236c", + "name": "mean.guy", + "type": "IDENTITY" + }, + "oldValue": { + "id": "ee769173319b41d19ccec6c235423237b", + "name": "nice.guy", + "type": "IDENTITY" + } + }, + { + "attribute": "email", + "newValue": "john.doe@gmail.com", + "oldValue": "john.doe@hotmail.com" + } + ], + "identity": { + "id": "ee769173319b41d19ccec6cea52f237b", + "name": "john.doe", + "type": "IDENTITY" + } + } + }, + "formFields": { + "type": "array", + "nullable": true, + "description": "One or more inputs that the trigger accepts", + "example": [], + "items": { + "type": "object", + "properties": { + "helpText": { + "type": "string", + "description": "Describes the form field in the UI", + "example": "The name to give to this certification campaign." + }, + "label": { + "type": "string", + "description": "A human readable name for this form field in the UI", + "example": "Campaign Name" + }, + "name": { + "type": "string", + "description": "The name of the input attribute", + "example": "name" + }, + "required": { + "type": "boolean", + "description": "Denotes if this field is a required attribute", + "example": false, + "default": false + }, + "type": { + "description": "The type of the form field", + "nullable": true, + "enum": [ + "text", + "textarea", + "boolean", + "email", + "url", + "number", + "json", + "checkbox", + "jsonpath", + "select", + "multiType", + "duration", + "toggle", + "identityPicker", + "governanceGroupPicker", + "string", + "object", + "array", + "secret", + "keyValuePairs", + "emailPicker", + "advancedToggle" + ], + "example": "text" + } + } + } + } + } + }, + { + "title": "Workflow Operator", + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Operator ID.", + "example": "sp:compare-boolean" + }, + "name": { + "type": "string", + "description": "Operator friendly name", + "example": "Compare Boolean Values" + }, + "type": { + "description": "Operator type", + "type": "string", + "example": "OPERATOR" + }, + "description": { + "type": "string", + "description": "Description of the operator", + "example": "Compare two boolean values and decide what happens based on the result." + }, + "formFields": { + "type": "array", + "description": "One or more inputs that the operator accepts", + "items": { + "type": "object", + "properties": { + "helpText": { + "type": "string", + "description": "Describes the form field in the UI", + "example": "The name to give to this certification campaign." + }, + "label": { + "type": "string", + "description": "A human readable name for this form field in the UI", + "example": "Campaign Name" + }, + "name": { + "type": "string", + "description": "The name of the input attribute", + "example": "name" + }, + "required": { + "type": "boolean", + "description": "Denotes if this field is a required attribute", + "example": false, + "default": false + }, + "type": { + "description": "The type of the form field", + "nullable": true, + "enum": [ + "text", + "textarea", + "boolean", + "email", + "url", + "number", + "json", + "checkbox", + "jsonpath", + "select", + "multiType", + "duration", + "toggle", + "identityPicker", + "governanceGroupPicker", + "string", + "object", + "array", + "secret", + "keyValuePairs", + "emailPicker", + "advancedToggle" + ], + "example": "text" + } + } + }, + "example": [ + { + "description": "Enter the JSONPath to a value from the input to compare to Variable B.", + "helpText": "", + "label": "Variable A", + "name": "variableA.$", + "required": true, + "type": "text" + }, + { + "helpText": "Select an operation.", + "label": "Operation", + "name": "operator", + "options": [ + { + "label": "Equals", + "value": "BooleanEquals" + } + ], + "required": true, + "type": "select" + }, + { + "description": "Enter the JSONPath to a value from the input to compare to Variable A.", + "helpText": "", + "label": "Variable B", + "name": "variableB.$", + "required": false, + "type": "text" + }, + { + "description": "Enter True or False.", + "helpText": "", + "label": "Variable B", + "name": "variableB", + "required": false, + "type": "text" + } + ] + } + } + } + ] + } + } + } + } + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + } + } + } + }, + "401": { + "description": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "error": { + "description": "A message describing the error", + "example": "JWT validation failed: JWT is expired" + } + } + } + } + } + }, + "403": { + "description": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + } + }, + "/workflow-library/actions": { + "get": { + "operationId": "listWorkflowLibraryActions", + "tags": [ + "Workflows" + ], + "summary": "List Workflow Library Actions", + "description": "This lists the workflow actions available to you.", + "externalDocs": { + "description": "Additional documentation for each action", + "url": "https://documentation.sailpoint.com/saas/help/workflows/workflow-steps.html#actions" + }, + "parameters": [ + { + "in": "query", + "name": "limit", + "description": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "required": false, + "example": 250, + "schema": { + "type": "integer", + "format": "int32", + "minimum": 0, + "maximum": 250, + "default": 250 + } + }, + { + "in": "query", + "name": "offset", + "description": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "required": false, + "example": 0, + "schema": { + "type": "integer", + "format": "int32", + "minimum": 0, + "default": 0 + } + }, + { + "in": "query", + "name": "filters", + "required": false, + "schema": { + "type": "string" + }, + "description": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq*", + "example": "id eq \"sp:create-campaign\"" + } + ], + "security": [ + { + "UserContextAuth": [ + "sp:workflow:read" + ] + } + ], + "responses": { + "200": { + "description": "List of workflow actions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Workflow Action", + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Action ID. This is a static namespaced ID for the action", + "example": "sp:create-campaign" + }, + "name": { + "type": "string", + "description": "Action Name", + "example": "Create Certification Campaign" + }, + "type": { + "type": "string", + "description": "Action type", + "example": "ACTION" + }, + "description": { + "type": "string", + "description": "Action Description", + "example": "Generates a certification campaign." + }, + "formFields": { + "type": "array", + "description": "One or more inputs that the action accepts", + "items": { + "type": "object", + "properties": { + "helpText": { + "type": "string", + "description": "Describes the form field in the UI", + "example": "The name to give to this certification campaign." + }, + "label": { + "type": "string", + "description": "A human readable name for this form field in the UI", + "example": "Campaign Name" + }, + "name": { + "type": "string", + "description": "The name of the input attribute", + "example": "name" + }, + "required": { + "type": "boolean", + "description": "Denotes if this field is a required attribute", + "example": false, + "default": false + }, + "type": { + "description": "The type of the form field", + "nullable": true, + "enum": [ + "text", + "textarea", + "boolean", + "email", + "url", + "number", + "json", + "checkbox", + "jsonpath", + "select", + "multiType", + "duration", + "toggle", + "identityPicker", + "governanceGroupPicker", + "string", + "object", + "array", + "secret", + "keyValuePairs", + "emailPicker", + "advancedToggle" + ], + "example": "text" + } + } + } + }, + "isDynamicSchema": { + "type": "boolean", + "description": "Determines whether the dynamic output schema is returned in place of the action's output schema. The dynamic schema lists non-static properties, like properties of a workflow form where each form has different fields. These will be provided dynamically based on available form fields.", + "example": false, + "default": false + }, + "outputSchema": { + "type": "object", + "description": "Defines the output schema, if any, that this action produces.", + "example": { + "definitions": {}, + "properties": { + "autoRevokeAllowed": { + "$id": "#sp:create-campaign/autoRevokeAllowed", + "default": true, + "examples": [ + false + ], + "title": "autoRevokeAllowed", + "type": "boolean" + }, + "deadline": { + "$id": "#sp:create-campaign/deadline", + "default": "", + "examples": [ + "2020-12-25T06:00:00.468Z" + ], + "format": "date-time", + "pattern": "^.*$", + "title": "deadline", + "type": "string" + }, + "description": { + "$id": "#sp:create-campaign/description", + "default": "", + "examples": [ + "A review of everyone's access by their manager." + ], + "pattern": "^.*$", + "title": "description", + "type": "string" + }, + "emailNotificationEnabled": { + "$id": "#sp:create-campaign/emailNotificationEnabled", + "default": true, + "examples": [ + false + ], + "title": "emailNotificationEnabled", + "type": "boolean" + }, + "filter": { + "$id": "#sp:create-campaign/filter", + "properties": { + "id": { + "$id": "#sp:create-campaign/filter/id", + "default": "", + "examples": [ + "e0adaae69852e8fe8b8a3d48e5ce757c" + ], + "pattern": "^.*$", + "title": "id", + "type": "string" + }, + "type": { + "$id": "#sp:create-campaign/filter/type", + "default": "", + "examples": [ + "CAMPAIGN_FILTER" + ], + "pattern": "^.*$", + "title": "type", + "type": "string" + } + }, + "title": "filter", + "type": "object" + }, + "id": { + "$id": "#sp:create-campaign/id", + "default": "", + "examples": [ + "2c918086719eec070171a7e3355a360a" + ], + "pattern": "^.*$", + "title": "id", + "type": "string" + }, + "name": { + "$id": "#sp:create-campaign/name", + "default": "", + "examples": [ + "Manager Review" + ], + "pattern": "^.*$", + "title": "name", + "type": "string" + }, + "recommendationsEnabled": { + "$id": "#sp:create-campaign/recommendationsEnabled", + "default": true, + "examples": [ + false + ], + "title": "recommendationEnabled", + "type": "boolean" + }, + "type": { + "$id": "#sp:create-campaign/type", + "default": "", + "examples": [ + "MANAGER" + ], + "pattern": "^.*$", + "title": "type", + "type": "string" + } + }, + "title": "sp:create-campaign", + "type": "object" + } + } + } + } + } + } + } + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + } + } + } + }, + "401": { + "description": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "error": { + "description": "A message describing the error", + "example": "JWT validation failed: JWT is expired" + } + } + } + } + } + }, + "403": { + "description": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + } + }, + "/workflow-library/triggers": { + "get": { + "operationId": "listWorkflowLibraryTriggers", + "tags": [ + "Workflows" + ], + "summary": "List Workflow Library Triggers", + "description": "This lists the workflow triggers available to you", + "externalDocs": { + "description": "Additional documentation for each trigger", + "url": "https://documentation.sailpoint.com/saas/help/workflows/workflow-steps.html#triggers" + }, + "parameters": [ + { + "in": "query", + "name": "limit", + "description": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "required": false, + "example": 250, + "schema": { + "type": "integer", + "format": "int32", + "minimum": 0, + "maximum": 250, + "default": 250 + } + }, + { + "in": "query", + "name": "offset", + "description": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "required": false, + "example": 0, + "schema": { + "type": "integer", + "format": "int32", + "minimum": 0, + "default": 0 + } + }, + { + "in": "query", + "name": "filters", + "required": false, + "schema": { + "type": "string" + }, + "description": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq*", + "example": "id eq \"idn:identity-attributes-changed\"" + } + ], + "security": [ + { + "UserContextAuth": [ + "sp:workflow:read" + ] + } + ], + "responses": { + "200": { + "description": "List of workflow triggers", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Workflow Trigger", + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Trigger ID. This is a static namespaced ID for the trigger.", + "example": "idn:identity-attributes-changed" + }, + "type": { + "description": "Trigger type", + "enum": [ + "EVENT", + "SCHEDULED", + "EXTERNAL" + ], + "example": "EVENT" + }, + "name": { + "type": "string", + "description": "Trigger Name", + "example": "Identity Attributes Changed" + }, + "description": { + "type": "string", + "description": "Trigger Description", + "example": "One or more identity attributes changed." + }, + "isDynamicSchema": { + "type": "boolean", + "description": "Determines whether the dynamic output schema is returned in place of the action's output schema. The dynamic schema lists non-static properties, like properties of a workflow form where each form has different fields. These will be provided dynamically based on available form fields.", + "example": false, + "default": false + }, + "inputExample": { + "type": "object", + "description": "Example trigger payload if applicable", + "nullable": true, + "externalDocs": { + "description": "List of triggers and their input schemas", + "url": "https://developer.sailpoint.com/idn/docs/event-triggers/available" + }, + "example": { + "changes": [ + { + "attribute": "department", + "newValue": "marketing", + "oldValue": "sales" + }, + { + "attribute": "manager", + "newValue": { + "id": "ee769173319b41d19ccec6c235423236c", + "name": "mean.guy", + "type": "IDENTITY" + }, + "oldValue": { + "id": "ee769173319b41d19ccec6c235423237b", + "name": "nice.guy", + "type": "IDENTITY" + } + }, + { + "attribute": "email", + "newValue": "john.doe@gmail.com", + "oldValue": "john.doe@hotmail.com" + } + ], + "identity": { + "id": "ee769173319b41d19ccec6cea52f237b", + "name": "john.doe", + "type": "IDENTITY" + } + } + }, + "formFields": { + "type": "array", + "nullable": true, + "description": "One or more inputs that the trigger accepts", + "example": [], + "items": { + "type": "object", + "properties": { + "helpText": { + "type": "string", + "description": "Describes the form field in the UI", + "example": "The name to give to this certification campaign." + }, + "label": { + "type": "string", + "description": "A human readable name for this form field in the UI", + "example": "Campaign Name" + }, + "name": { + "type": "string", + "description": "The name of the input attribute", + "example": "name" + }, + "required": { + "type": "boolean", + "description": "Denotes if this field is a required attribute", + "example": false, + "default": false + }, + "type": { + "description": "The type of the form field", + "nullable": true, + "enum": [ + "text", + "textarea", + "boolean", + "email", + "url", + "number", + "json", + "checkbox", + "jsonpath", + "select", + "multiType", + "duration", + "toggle", + "identityPicker", + "governanceGroupPicker", + "string", + "object", + "array", + "secret", + "keyValuePairs", + "emailPicker", + "advancedToggle" + ], + "example": "text" + } + } + } + } + } + } + } + } + } + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + } + } + } + }, + "401": { + "description": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "error": { + "description": "A message describing the error", + "example": "JWT validation failed: JWT is expired" + } + } + } + } + } + }, + "403": { + "description": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + } + }, + "/workflow-library/operators": { + "get": { + "operationId": "listWorkflowLibraryOperators", + "tags": [ + "Workflows" + ], + "summary": "List Workflow Library Operators", + "description": "This lists the workflow operators available to you", + "security": [ + { + "UserContextAuth": [ + "sp:workflow:read" + ] + } + ], + "responses": { + "200": { + "description": "List of workflow operators", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Workflow Operator", + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "Operator ID.", + "example": "sp:compare-boolean" + }, + "name": { + "type": "string", + "description": "Operator friendly name", + "example": "Compare Boolean Values" + }, + "type": { + "description": "Operator type", + "type": "string", + "example": "OPERATOR" + }, + "description": { + "type": "string", + "description": "Description of the operator", + "example": "Compare two boolean values and decide what happens based on the result." + }, + "formFields": { + "type": "array", + "description": "One or more inputs that the operator accepts", + "items": { + "type": "object", + "properties": { + "helpText": { + "type": "string", + "description": "Describes the form field in the UI", + "example": "The name to give to this certification campaign." + }, + "label": { + "type": "string", + "description": "A human readable name for this form field in the UI", + "example": "Campaign Name" + }, + "name": { + "type": "string", + "description": "The name of the input attribute", + "example": "name" + }, + "required": { + "type": "boolean", + "description": "Denotes if this field is a required attribute", + "example": false, + "default": false + }, + "type": { + "description": "The type of the form field", + "nullable": true, + "enum": [ + "text", + "textarea", + "boolean", + "email", + "url", + "number", + "json", + "checkbox", + "jsonpath", + "select", + "multiType", + "duration", + "toggle", + "identityPicker", + "governanceGroupPicker", + "string", + "object", + "array", + "secret", + "keyValuePairs", + "emailPicker", + "advancedToggle" + ], + "example": "text" + } + } + }, + "example": [ + { + "description": "Enter the JSONPath to a value from the input to compare to Variable B.", + "helpText": "", + "label": "Variable A", + "name": "variableA.$", + "required": true, + "type": "text" + }, + { + "helpText": "Select an operation.", + "label": "Operation", + "name": "operator", + "options": [ + { + "label": "Equals", + "value": "BooleanEquals" + } + ], + "required": true, + "type": "select" + }, + { + "description": "Enter the JSONPath to a value from the input to compare to Variable A.", + "helpText": "", + "label": "Variable B", + "name": "variableB.$", + "required": false, + "type": "text" + }, + { + "description": "Enter True or False.", + "helpText": "", + "label": "Variable B", + "name": "variableB", + "required": false, + "type": "text" + } + ] + } + } + } + } + } + } + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + } + } + } + }, + "401": { + "description": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "error": { + "description": "A message describing the error", + "example": "JWT validation failed: JWT is expired" + } + } + } + } + } + }, + "403": { + "description": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + } + }, + "/workflows/{id}/external/oauth-clients": { + "post": { + "operationId": "createWorkflowExternalTrigger", + "tags": [ + "Workflows" + ], + "summary": "Generate External Trigger OAuth Client", + "description": "Create OAuth client ID, client secret, and callback URL for use in an external trigger. External triggers will need this information to generate an access token to authenticate to the callback URL and submit a trigger payload that will initiate the workflow.", + "security": [ + { + "UserContextAuth": [ + "sp:workflow:manage" + ] + } + ], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "Id of the workflow", + "required": true, + "style": "simple", + "explode": false, + "schema": { + "type": "string", + "example": "c17bea3a-574d-453c-9e04-4365fbf5af0b" + } + } + ], + "responses": { + "200": { + "description": "The OAuth Client object", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "OAuth client ID for the trigger. This is a UUID generated upon creation.", + "example": "1a58c03a6bf64dc2876f6988c6e2c7b7" + }, + "secret": { + "type": "string", + "description": "OAuthClient secret.", + "example": "00cc24a7fe810fe06a7cb38bc168ae104d703c7abb296f9944dc68e69ddb578b" + }, + "url": { + "type": "string", + "description": "URL for the external trigger to invoke", + "example": "https://tenant.api.identitynow.com/beta/workflows/execute/external/c17bea3a-574d-453c-9e04-4365fbf5af0b" + } + } + } + } + } + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + } + } + } + }, + "401": { + "description": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "error": { + "description": "A message describing the error", + "example": "JWT validation failed: JWT is expired" + } + } + } + } + } + }, + "403": { + "description": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + } + }, + "/workflows/execute/external/{id}": { + "post": { + "operationId": "createExternalExecuteWorkflow", + "tags": [ + "Workflows" + ], + "summary": "Execute Workflow via External Trigger", + "description": "This endpoint allows a service outside of IdentityNow to initiate a workflow that uses the \"External Trigger\" step. The external service will invoke this endpoint with the input data it wants to send to the workflow in the body.", + "security": [ + { + "UserContextAuth": [ + "sp:workflow-execute:external" + ] + } + ], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "Id of the workflow", + "required": true, + "style": "simple", + "explode": false, + "schema": { + "type": "string", + "example": "c17bea3a-574d-453c-9e04-4365fbf5af0b" + } + } + ], + "requestBody": { + "required": false, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "input": { + "type": "object", + "description": "The input for the workflow", + "example": { + "customAttribute1": "value1", + "customAttribute2": "value2" + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "The Workflow object", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "workflowExecutionId": { + "type": "string", + "description": "The workflow execution id", + "example": "0e11cefa-96e7-4b67-90d0-065bc1da5753" + }, + "message": { + "type": "string", + "description": "An error message if any errors occurred", + "example": "Workflow was not executed externally. Check enabled flag on workflow definition" + } + } + } + } + } + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + } + } + } + }, + "401": { + "description": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "error": { + "description": "A message describing the error", + "example": "JWT validation failed: JWT is expired" + } + } + } + } + } + }, + "403": { + "description": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + } + }, + "/workflows/execute/external/{id}/test": { + "post": { + "operationId": "testExternalExecuteWorkflow", + "tags": [ + "Workflows" + ], + "summary": "Test Workflow via External Trigger", + "description": "Validate a workflow with an \"External Trigger\" can receive input. The response includes the input that the workflow received, which can be used to validate that the input is intact when it reaches the workflow.", + "security": [ + { + "UserContextAuth": [ + "sp:workflow-execute:external" + ] + } + ], + "parameters": [ + { + "name": "id", + "in": "path", + "description": "Id of the workflow", + "required": true, + "style": "simple", + "explode": false, + "schema": { + "type": "string", + "example": "c17bea3a-574d-453c-9e04-4365fbf5af0b" + } + } + ], + "requestBody": { + "required": false, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "input": { + "type": "object", + "description": "The test input for the workflow", + "example": { + "test": "hello world" + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Responds with the test input", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "payload": { + "type": "object", + "description": "The input that was received", + "example": { + "test": "hello world" + } + } + } + } + } + } + }, + "400": { + "description": "Client Error - Returned if the request body is invalid.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + } + } + } + }, + "401": { + "description": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "error": { + "description": "A message describing the error", + "example": "JWT validation failed: JWT is expired" + } + } + } + } + } + }, + "403": { + "description": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "403": { + "summary": "An example of a 403 response object", + "value": { + "detailCode": "403 Forbidden", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "The server understood the request but refuses to authorize it." + } + ] + } + } + } + } + } + }, + "429": { + "description": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "description": "A message describing the error", + "example": " Rate Limit Exceeded " + } + } + } + } + } + }, + "500": { + "description": "Internal Server Error - Returned if there is an unexpected error.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "detailCode": { + "type": "string", + "description": "Fine-grained error code providing more detail of the error.", + "example": "400.1 Bad Request Content" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + }, + "messages": { + "type": "array", + "description": "Generic localized reason for error", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + }, + "causes": { + "type": "array", + "description": "Plain-text descriptive reasons to provide additional detail to the text provided in the messages field", + "items": { + "type": "object", + "properties": { + "locale": { + "type": "string", + "description": "The locale for the message text, a BCP 47 language tag.", + "example": "en-US", + "nullable": true + }, + "localeOrigin": { + "type": "string", + "enum": [ + "DEFAULT", + "REQUEST", + null + ], + "description": "An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.", + "example": "DEFAULT", + "nullable": true + }, + "text": { + "type": "string", + "description": "Actual text of the error message in the indicated locale.", + "example": "The request was syntactically correct but its content is semantically invalid." + } + } + } + } + } + }, + "examples": { + "500": { + "summary": "An example of a 500 response object", + "value": { + "detailCode": "500.0 Internal Fault", + "trackingId": "b21b1f7ce4da4d639f2c62a57171b427", + "messages": [ + { + "locale": "en-US", + "localeOrigin": "DEFAULT", + "text": "An internal fault occurred." + } + ] + } + } + } + } + } + } + } + } + }, "/source-usages/{sourceId}/status": { "get": { "tags": [ diff --git a/dereferenced/deref-sailpoint-api.v3.yaml b/dereferenced/deref-sailpoint-api.v3.yaml index a87d3d0..cd33b4b 100644 --- a/dereferenced/deref-sailpoint-api.v3.yaml +++ b/dereferenced/deref-sailpoint-api.v3.yaml @@ -919,6 +919,9 @@ tags: When they complete the work item, they can select 'Mark Complete' to add it to their list of completed work items. Refer to [Task Manager](https://documentation.sailpoint.com/saas/user-help/task_manager.html) for more information about work items, including the different types of work items users may need to complete. + - name: Workflows + description: | + Workflows allow administrators to create custom automation scripts directly within IdentityNow. These automation scripts respond to [event triggers](https://developer.sailpoint.com/idn/docs/event-triggers#how-to-get-started-with-event-triggers) and perform a series of actions to perform tasks that are either too cumbersome or not available in the IdentityNow UI. Workflows can be configured via a graphical user interface within IdentityNow, or by creating and uploading a JSON formatted script to the Workflow service. The Workflows API collection provides the necessary functionality to create, manage, and test your workflows via REST. paths: /access-profiles: get: @@ -145487,6 +145490,7151 @@ paths: - locale: en-US localeOrigin: DEFAULT text: An internal fault occurred. + /workflows: + get: + operationId: listWorkflows + tags: + - Workflows + summary: List Workflows + description: List all workflows in the tenant. + security: + - UserContextAuth: + - 'sp:workflow:read' + responses: + '200': + description: List of workflows + content: + application/json: + schema: + type: array + items: + allOf: + - type: object + properties: + id: + type: string + description: Workflow ID. This is a UUID generated upon creation. + example: d201c5e9-d37b-4aff-af14-66414f39d569 + executionCount: + type: integer + format: int32 + description: The number of times this workflow has been executed. + example: 2 + failureCount: + type: integer + format: int32 + description: The number of times this workflow has failed during execution. + example: 0 + created: + type: string + format: date-time + description: The date and time the workflow was created. + example: '2022-01-10T16:06:16.636381447Z' + creator: + type: object + description: Workflow creator's identity. + properties: + type: + type: string + description: Workflow creator's DTO type. + enum: + - IDENTITY + example: IDENTITY + id: + type: string + description: Workflow creator's identity ID. + example: 2c7180a46faadee4016fb4e018c20642 + name: + type: string + description: Workflow creator's display name. + example: Michael Michaels + - type: object + properties: + name: + type: string + description: The name of the workflow + example: Send Email + owner: + description: The identity that owns the workflow. The owner's permissions in IDN will determine what actions the workflow is allowed to perform. Ownership can be changed by updating the owner in a PUT or PATCH request. + properties: + type: + type: string + enum: + - IDENTITY + example: IDENTITY + description: The type of object that is referenced + id: + type: string + description: The unique ID of the object + example: 2c91808568c529c60168cca6f90c1313 + name: + type: string + description: The name of the object + example: William Wilson + description: + type: string + description: Description of what the workflow accomplishes + example: Send an email to the identity who's attributes changed. + definition: + type: object + description: The map of steps that the workflow will execute. + properties: + start: + type: string + description: The name of the starting step. + example: Send Email Test + steps: + type: object + description: One or more step objects that comprise this workflow. Please see the Workflow documentation to see the JSON schema for each step type. + additionalProperties: true + example: + Send Email: + actionId: 'sp:send-email' + attributes: + body: This is a test + from: sailpoint@sailpoint.com + recipientId.$: $.identity.id + subject: test + nextStep: success + selectResult: null + type: ACTION + success: + type: success + enabled: + type: boolean + description: Enable or disable the workflow. Workflows cannot be created in an enabled state. + default: false + example: false + trigger: + type: object + description: The trigger that starts the workflow + required: + - type + - attributes + properties: + type: + type: string + enum: + - EVENT + - EXTERNAL + - SCHEDULED + example: EVENT + description: The trigger type + attributes: + oneOf: + - title: Event Trigger Attributes + type: object + description: Attributes related to an IdentityNow ETS event + required: + - id + properties: + id: + type: string + description: The unique ID of the trigger + example: 'idn:identity-attributes-changed' + filter.$: + type: string + description: JSON path expression that will limit which events the trigger will fire on + example: '$.changes[?(@.attribute == ''manager'')]' + - title: External Trigger Attributes + type: object + description: Attributes related to an external trigger + required: + - name + properties: + name: + type: string + description: A unique name for the external trigger + example: search-and-notify + description: + type: string + description: Additonal context about the external trigger + example: Run a search and notify the results + - title: Scheduled Trigger Attributes + type: object + description: Attributes related to a scheduled trigger + required: + - cronString + properties: + cronString: + type: string + description: A valid CRON expression + externalDocs: + description: CRON expression editor + url: 'https://crontab.guru/' + example: 0 * */3 */5 * + description: Workflow Trigger Attributes. + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + '/workflows/{id}': + get: + operationId: getWorkflow + tags: + - Workflows + summary: Get Workflow By Id + description: Get a single workflow by id. + security: + - UserContextAuth: + - 'sp:workflow:read' + parameters: + - name: id + in: path + description: Id of the workflow + required: true + style: simple + explode: false + schema: + type: string + example: c17bea3a-574d-453c-9e04-4365fbf5af0b + responses: + '200': + description: The workflow object + content: + application/json: + schema: + allOf: + - type: object + properties: + id: + type: string + description: Workflow ID. This is a UUID generated upon creation. + example: d201c5e9-d37b-4aff-af14-66414f39d569 + executionCount: + type: integer + format: int32 + description: The number of times this workflow has been executed. + example: 2 + failureCount: + type: integer + format: int32 + description: The number of times this workflow has failed during execution. + example: 0 + created: + type: string + format: date-time + description: The date and time the workflow was created. + example: '2022-01-10T16:06:16.636381447Z' + creator: + type: object + description: Workflow creator's identity. + properties: + type: + type: string + description: Workflow creator's DTO type. + enum: + - IDENTITY + example: IDENTITY + id: + type: string + description: Workflow creator's identity ID. + example: 2c7180a46faadee4016fb4e018c20642 + name: + type: string + description: Workflow creator's display name. + example: Michael Michaels + - type: object + properties: + name: + type: string + description: The name of the workflow + example: Send Email + owner: + description: The identity that owns the workflow. The owner's permissions in IDN will determine what actions the workflow is allowed to perform. Ownership can be changed by updating the owner in a PUT or PATCH request. + properties: + type: + type: string + enum: + - IDENTITY + example: IDENTITY + description: The type of object that is referenced + id: + type: string + description: The unique ID of the object + example: 2c91808568c529c60168cca6f90c1313 + name: + type: string + description: The name of the object + example: William Wilson + description: + type: string + description: Description of what the workflow accomplishes + example: Send an email to the identity who's attributes changed. + definition: + type: object + description: The map of steps that the workflow will execute. + properties: + start: + type: string + description: The name of the starting step. + example: Send Email Test + steps: + type: object + description: One or more step objects that comprise this workflow. Please see the Workflow documentation to see the JSON schema for each step type. + additionalProperties: true + example: + Send Email: + actionId: 'sp:send-email' + attributes: + body: This is a test + from: sailpoint@sailpoint.com + recipientId.$: $.identity.id + subject: test + nextStep: success + selectResult: null + type: ACTION + success: + type: success + enabled: + type: boolean + description: Enable or disable the workflow. Workflows cannot be created in an enabled state. + default: false + example: false + trigger: + type: object + description: The trigger that starts the workflow + required: + - type + - attributes + properties: + type: + type: string + enum: + - EVENT + - EXTERNAL + - SCHEDULED + example: EVENT + description: The trigger type + attributes: + oneOf: + - title: Event Trigger Attributes + type: object + description: Attributes related to an IdentityNow ETS event + required: + - id + properties: + id: + type: string + description: The unique ID of the trigger + example: 'idn:identity-attributes-changed' + filter.$: + type: string + description: JSON path expression that will limit which events the trigger will fire on + example: '$.changes[?(@.attribute == ''manager'')]' + - title: External Trigger Attributes + type: object + description: Attributes related to an external trigger + required: + - name + properties: + name: + type: string + description: A unique name for the external trigger + example: search-and-notify + description: + type: string + description: Additonal context about the external trigger + example: Run a search and notify the results + - title: Scheduled Trigger Attributes + type: object + description: Attributes related to a scheduled trigger + required: + - cronString + properties: + cronString: + type: string + description: A valid CRON expression + externalDocs: + description: CRON expression editor + url: 'https://crontab.guru/' + example: 0 * */3 */5 * + description: Workflow Trigger Attributes. + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + put: + operationId: putWorkflow + tags: + - Workflows + summary: Update Workflow + description: Perform a full update of a workflow. The updated workflow object is returned in the response. + security: + - UserContextAuth: + - 'sp:workflow:manage' + parameters: + - name: id + in: path + description: Id of the Workflow + required: true + style: simple + explode: false + schema: + type: string + example: c17bea3a-574d-453c-9e04-4365fbf5af0b + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + type: string + description: The name of the workflow + example: Send Email + owner: + description: The identity that owns the workflow. The owner's permissions in IDN will determine what actions the workflow is allowed to perform. Ownership can be changed by updating the owner in a PUT or PATCH request. + properties: + type: + type: string + enum: + - IDENTITY + example: IDENTITY + description: The type of object that is referenced + id: + type: string + description: The unique ID of the object + example: 2c91808568c529c60168cca6f90c1313 + name: + type: string + description: The name of the object + example: William Wilson + description: + type: string + description: Description of what the workflow accomplishes + example: Send an email to the identity who's attributes changed. + definition: + type: object + description: The map of steps that the workflow will execute. + properties: + start: + type: string + description: The name of the starting step. + example: Send Email Test + steps: + type: object + description: One or more step objects that comprise this workflow. Please see the Workflow documentation to see the JSON schema for each step type. + additionalProperties: true + example: + Send Email: + actionId: 'sp:send-email' + attributes: + body: This is a test + from: sailpoint@sailpoint.com + recipientId.$: $.identity.id + subject: test + nextStep: success + selectResult: null + type: ACTION + success: + type: success + enabled: + type: boolean + description: Enable or disable the workflow. Workflows cannot be created in an enabled state. + default: false + example: false + trigger: + type: object + description: The trigger that starts the workflow + required: + - type + - attributes + properties: + type: + type: string + enum: + - EVENT + - EXTERNAL + - SCHEDULED + example: EVENT + description: The trigger type + attributes: + oneOf: + - title: Event Trigger Attributes + type: object + description: Attributes related to an IdentityNow ETS event + required: + - id + properties: + id: + type: string + description: The unique ID of the trigger + example: 'idn:identity-attributes-changed' + filter.$: + type: string + description: JSON path expression that will limit which events the trigger will fire on + example: '$.changes[?(@.attribute == ''manager'')]' + - title: External Trigger Attributes + type: object + description: Attributes related to an external trigger + required: + - name + properties: + name: + type: string + description: A unique name for the external trigger + example: search-and-notify + description: + type: string + description: Additonal context about the external trigger + example: Run a search and notify the results + - title: Scheduled Trigger Attributes + type: object + description: Attributes related to a scheduled trigger + required: + - cronString + properties: + cronString: + type: string + description: A valid CRON expression + externalDocs: + description: CRON expression editor + url: 'https://crontab.guru/' + example: 0 * */3 */5 * + description: Workflow Trigger Attributes. + responses: + '200': + description: The Workflow object + content: + application/json: + schema: + allOf: + - type: object + properties: + id: + type: string + description: Workflow ID. This is a UUID generated upon creation. + example: d201c5e9-d37b-4aff-af14-66414f39d569 + executionCount: + type: integer + format: int32 + description: The number of times this workflow has been executed. + example: 2 + failureCount: + type: integer + format: int32 + description: The number of times this workflow has failed during execution. + example: 0 + created: + type: string + format: date-time + description: The date and time the workflow was created. + example: '2022-01-10T16:06:16.636381447Z' + creator: + type: object + description: Workflow creator's identity. + properties: + type: + type: string + description: Workflow creator's DTO type. + enum: + - IDENTITY + example: IDENTITY + id: + type: string + description: Workflow creator's identity ID. + example: 2c7180a46faadee4016fb4e018c20642 + name: + type: string + description: Workflow creator's display name. + example: Michael Michaels + - type: object + properties: + name: + type: string + description: The name of the workflow + example: Send Email + owner: + description: The identity that owns the workflow. The owner's permissions in IDN will determine what actions the workflow is allowed to perform. Ownership can be changed by updating the owner in a PUT or PATCH request. + properties: + type: + type: string + enum: + - IDENTITY + example: IDENTITY + description: The type of object that is referenced + id: + type: string + description: The unique ID of the object + example: 2c91808568c529c60168cca6f90c1313 + name: + type: string + description: The name of the object + example: William Wilson + description: + type: string + description: Description of what the workflow accomplishes + example: Send an email to the identity who's attributes changed. + definition: + type: object + description: The map of steps that the workflow will execute. + properties: + start: + type: string + description: The name of the starting step. + example: Send Email Test + steps: + type: object + description: One or more step objects that comprise this workflow. Please see the Workflow documentation to see the JSON schema for each step type. + additionalProperties: true + example: + Send Email: + actionId: 'sp:send-email' + attributes: + body: This is a test + from: sailpoint@sailpoint.com + recipientId.$: $.identity.id + subject: test + nextStep: success + selectResult: null + type: ACTION + success: + type: success + enabled: + type: boolean + description: Enable or disable the workflow. Workflows cannot be created in an enabled state. + default: false + example: false + trigger: + type: object + description: The trigger that starts the workflow + required: + - type + - attributes + properties: + type: + type: string + enum: + - EVENT + - EXTERNAL + - SCHEDULED + example: EVENT + description: The trigger type + attributes: + oneOf: + - title: Event Trigger Attributes + type: object + description: Attributes related to an IdentityNow ETS event + required: + - id + properties: + id: + type: string + description: The unique ID of the trigger + example: 'idn:identity-attributes-changed' + filter.$: + type: string + description: JSON path expression that will limit which events the trigger will fire on + example: '$.changes[?(@.attribute == ''manager'')]' + - title: External Trigger Attributes + type: object + description: Attributes related to an external trigger + required: + - name + properties: + name: + type: string + description: A unique name for the external trigger + example: search-and-notify + description: + type: string + description: Additonal context about the external trigger + example: Run a search and notify the results + - title: Scheduled Trigger Attributes + type: object + description: Attributes related to a scheduled trigger + required: + - cronString + properties: + cronString: + type: string + description: A valid CRON expression + externalDocs: + description: CRON expression editor + url: 'https://crontab.guru/' + example: 0 * */3 */5 * + description: Workflow Trigger Attributes. + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + patch: + operationId: patchWorkflow + tags: + - Workflows + summary: Patch Workflow + description: 'Partially update an existing Workflow using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.' + security: + - UserContextAuth: + - 'sp:workflow:manage' + parameters: + - name: id + in: path + description: Id of the Workflow + required: true + style: simple + explode: false + schema: + type: string + example: c17bea3a-574d-453c-9e04-4365fbf5af0b + requestBody: + required: true + content: + application/json-patch+json: + schema: + type: array + items: + type: object + description: 'A JSONPatch Operation as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)' + required: + - op + - path + properties: + op: + type: string + description: The operation to be performed + enum: + - add + - remove + - replace + - move + - copy + - test + example: replace + path: + type: string + description: A string JSON Pointer representing the target path to an element to be affected by the operation + example: /description + value: + oneOf: + - type: string + example: New description + title: string + - type: integer + example: 300 + title: integer + - type: object + title: object + example: + attributes: + name: philip + - type: array + title: array + items: + anyOf: + - type: string + - type: integer + - type: object + example: + - '001' + - '002' + - '003' + description: 'The value to be used for the operation, required for "add" and "replace" operations' + example: New description + examples: + Update all patchable fields: + description: Demonstrate how to update each patchable field in one PATCH request. + value: + - op: replace + path: /name + value: Send Email + - op: replace + path: /owner + value: + type: IDENTITY + id: 2c91808568c529c60168cca6f90c1313 + name: William Wilson + - op: replace + path: /description + value: Send an email to the identity who's attributes changed. + - op: replace + path: /enabled + value: false + - op: replace + path: /definition + value: + start: Send Email Test + steps: + Send Email: + actionId: 'sp:send-email' + attributes: + body: This is a test + from: sailpoint@sailpoint.com + recipientId.$: $.identity.id + subject: test + nextStep: success + selectResult: null + type: action + success: + type: success + - op: replace + path: /trigger + value: + type: EVENT + attributes: + id: 'idn:identity-attributes-changed' + responses: + '200': + description: The Workflow object + content: + application/json: + schema: + allOf: + - type: object + properties: + id: + type: string + description: Workflow ID. This is a UUID generated upon creation. + example: d201c5e9-d37b-4aff-af14-66414f39d569 + executionCount: + type: integer + format: int32 + description: The number of times this workflow has been executed. + example: 2 + failureCount: + type: integer + format: int32 + description: The number of times this workflow has failed during execution. + example: 0 + created: + type: string + format: date-time + description: The date and time the workflow was created. + example: '2022-01-10T16:06:16.636381447Z' + creator: + type: object + description: Workflow creator's identity. + properties: + type: + type: string + description: Workflow creator's DTO type. + enum: + - IDENTITY + example: IDENTITY + id: + type: string + description: Workflow creator's identity ID. + example: 2c7180a46faadee4016fb4e018c20642 + name: + type: string + description: Workflow creator's display name. + example: Michael Michaels + - type: object + properties: + name: + type: string + description: The name of the workflow + example: Send Email + owner: + description: The identity that owns the workflow. The owner's permissions in IDN will determine what actions the workflow is allowed to perform. Ownership can be changed by updating the owner in a PUT or PATCH request. + properties: + type: + type: string + enum: + - IDENTITY + example: IDENTITY + description: The type of object that is referenced + id: + type: string + description: The unique ID of the object + example: 2c91808568c529c60168cca6f90c1313 + name: + type: string + description: The name of the object + example: William Wilson + description: + type: string + description: Description of what the workflow accomplishes + example: Send an email to the identity who's attributes changed. + definition: + type: object + description: The map of steps that the workflow will execute. + properties: + start: + type: string + description: The name of the starting step. + example: Send Email Test + steps: + type: object + description: One or more step objects that comprise this workflow. Please see the Workflow documentation to see the JSON schema for each step type. + additionalProperties: true + example: + Send Email: + actionId: 'sp:send-email' + attributes: + body: This is a test + from: sailpoint@sailpoint.com + recipientId.$: $.identity.id + subject: test + nextStep: success + selectResult: null + type: ACTION + success: + type: success + enabled: + type: boolean + description: Enable or disable the workflow. Workflows cannot be created in an enabled state. + default: false + example: false + trigger: + type: object + description: The trigger that starts the workflow + required: + - type + - attributes + properties: + type: + type: string + enum: + - EVENT + - EXTERNAL + - SCHEDULED + example: EVENT + description: The trigger type + attributes: + oneOf: + - title: Event Trigger Attributes + type: object + description: Attributes related to an IdentityNow ETS event + required: + - id + properties: + id: + type: string + description: The unique ID of the trigger + example: 'idn:identity-attributes-changed' + filter.$: + type: string + description: JSON path expression that will limit which events the trigger will fire on + example: '$.changes[?(@.attribute == ''manager'')]' + - title: External Trigger Attributes + type: object + description: Attributes related to an external trigger + required: + - name + properties: + name: + type: string + description: A unique name for the external trigger + example: search-and-notify + description: + type: string + description: Additonal context about the external trigger + example: Run a search and notify the results + - title: Scheduled Trigger Attributes + type: object + description: Attributes related to a scheduled trigger + required: + - cronString + properties: + cronString: + type: string + description: A valid CRON expression + externalDocs: + description: CRON expression editor + url: 'https://crontab.guru/' + example: 0 * */3 */5 * + description: Workflow Trigger Attributes. + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + delete: + operationId: deleteWorkflow + tags: + - Workflows + summary: Delete Workflow By Id + description: Delete a workflow. **Enabled workflows cannot be deleted**. They must first be disabled. + security: + - UserContextAuth: + - 'sp:workflow:manage' + parameters: + - name: id + in: path + description: Id of the Workflow + required: true + style: simple + explode: false + schema: + type: string + example: c17bea3a-574d-453c-9e04-4365fbf5af0b + responses: + '204': + description: No content - indicates the request was successful but there is no content to be returned in the response. + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + post: + operationId: createWorkflow + tags: + - Workflows + summary: Create Workflow + description: Create a new workflow with the desired trigger and steps specified in the request body. + security: + - UserContextAuth: + - 'sp:workflow:manage' + requestBody: + required: true + content: + application/json: + schema: + allOf: + - required: + - name + - owner + - type: object + properties: + name: + type: string + description: The name of the workflow + example: Send Email + owner: + description: The identity that owns the workflow. The owner's permissions in IDN will determine what actions the workflow is allowed to perform. Ownership can be changed by updating the owner in a PUT or PATCH request. + properties: + type: + type: string + enum: + - IDENTITY + example: IDENTITY + description: The type of object that is referenced + id: + type: string + description: The unique ID of the object + example: 2c91808568c529c60168cca6f90c1313 + name: + type: string + description: The name of the object + example: William Wilson + description: + type: string + description: Description of what the workflow accomplishes + example: Send an email to the identity who's attributes changed. + definition: + type: object + description: The map of steps that the workflow will execute. + properties: + start: + type: string + description: The name of the starting step. + example: Send Email Test + steps: + type: object + description: One or more step objects that comprise this workflow. Please see the Workflow documentation to see the JSON schema for each step type. + additionalProperties: true + example: + Send Email: + actionId: 'sp:send-email' + attributes: + body: This is a test + from: sailpoint@sailpoint.com + recipientId.$: $.identity.id + subject: test + nextStep: success + selectResult: null + type: ACTION + success: + type: success + enabled: + type: boolean + description: Enable or disable the workflow. Workflows cannot be created in an enabled state. + default: false + example: false + trigger: + type: object + description: The trigger that starts the workflow + required: + - type + - attributes + properties: + type: + type: string + enum: + - EVENT + - EXTERNAL + - SCHEDULED + example: EVENT + description: The trigger type + attributes: + oneOf: + - title: Event Trigger Attributes + type: object + description: Attributes related to an IdentityNow ETS event + required: + - id + properties: + id: + type: string + description: The unique ID of the trigger + example: 'idn:identity-attributes-changed' + filter.$: + type: string + description: JSON path expression that will limit which events the trigger will fire on + example: '$.changes[?(@.attribute == ''manager'')]' + - title: External Trigger Attributes + type: object + description: Attributes related to an external trigger + required: + - name + properties: + name: + type: string + description: A unique name for the external trigger + example: search-and-notify + description: + type: string + description: Additonal context about the external trigger + example: Run a search and notify the results + - title: Scheduled Trigger Attributes + type: object + description: Attributes related to a scheduled trigger + required: + - cronString + properties: + cronString: + type: string + description: A valid CRON expression + externalDocs: + description: CRON expression editor + url: 'https://crontab.guru/' + example: 0 * */3 */5 * + description: Workflow Trigger Attributes. + examples: + Event Trigger: + description: Workflow initiated by an event trigger + value: + name: Send Email + owner: + type: IDENTITY + id: 2c91808568c529c60168cca6f90c1313 + name: William Wilson + description: Send an email to the identity who's attributes changed. + definition: + start: Send Email Test + steps: + Send Email: + actionId: 'sp:send-email' + attributes: + body: This is a test + from: sailpoint@sailpoint.com + recipientId.$: $.identity.id + subject: test + nextStep: success + selectResult: null + type: action + success: + type: success + enabled: false + trigger: + type: EVENT + attributes: + id: 'idn:identity-attributes-changed' + filter: '$.changes[?(@.attribute == ''manager'')]' + Scheduled Trigger: + description: Workflow initiated by a scheduled trigger + value: + name: Send Email + owner: + type: IDENTITY + id: 2c91808568c529c60168cca6f90c1313 + name: William Wilson + description: Send an email to the identity who's attributes changed. + definition: + start: Send Email Test + steps: + Send Email: + actionId: 'sp:send-email' + attributes: + body: This is a test + from: sailpoint@sailpoint.com + recipientId.$: $.identity.id + subject: test + nextStep: success + selectResult: null + type: action + success: + type: success + enabled: false + trigger: + type: SCHEDULED + attributes: + cronString: 0 * */3 */5 * + External Trigger: + description: Workflow initiated by an external trigger + value: + name: Send Email + owner: + type: IDENTITY + id: 2c91808568c529c60168cca6f90c1313 + name: William Wilson + description: Send an email to the identity whose attributes changed. + definition: + start: Send Email Test + steps: + Send Email: + actionId: 'sp:send-email' + attributes: + body: This is a test + from: sailpoint@sailpoint.com + recipientId.$: $.identity.id + subject: test + nextStep: success + selectResult: null + type: action + success: + type: success + enabled: false + trigger: + type: EXTERNAL + attributes: + name: search-and-notify + description: Run a search and notify the results + responses: + '200': + description: The Workflow object + content: + application/json: + schema: + allOf: + - type: object + properties: + id: + type: string + description: Workflow ID. This is a UUID generated upon creation. + example: d201c5e9-d37b-4aff-af14-66414f39d569 + executionCount: + type: integer + format: int32 + description: The number of times this workflow has been executed. + example: 2 + failureCount: + type: integer + format: int32 + description: The number of times this workflow has failed during execution. + example: 0 + created: + type: string + format: date-time + description: The date and time the workflow was created. + example: '2022-01-10T16:06:16.636381447Z' + creator: + type: object + description: Workflow creator's identity. + properties: + type: + type: string + description: Workflow creator's DTO type. + enum: + - IDENTITY + example: IDENTITY + id: + type: string + description: Workflow creator's identity ID. + example: 2c7180a46faadee4016fb4e018c20642 + name: + type: string + description: Workflow creator's display name. + example: Michael Michaels + - type: object + properties: + name: + type: string + description: The name of the workflow + example: Send Email + owner: + description: The identity that owns the workflow. The owner's permissions in IDN will determine what actions the workflow is allowed to perform. Ownership can be changed by updating the owner in a PUT or PATCH request. + properties: + type: + type: string + enum: + - IDENTITY + example: IDENTITY + description: The type of object that is referenced + id: + type: string + description: The unique ID of the object + example: 2c91808568c529c60168cca6f90c1313 + name: + type: string + description: The name of the object + example: William Wilson + description: + type: string + description: Description of what the workflow accomplishes + example: Send an email to the identity who's attributes changed. + definition: + type: object + description: The map of steps that the workflow will execute. + properties: + start: + type: string + description: The name of the starting step. + example: Send Email Test + steps: + type: object + description: One or more step objects that comprise this workflow. Please see the Workflow documentation to see the JSON schema for each step type. + additionalProperties: true + example: + Send Email: + actionId: 'sp:send-email' + attributes: + body: This is a test + from: sailpoint@sailpoint.com + recipientId.$: $.identity.id + subject: test + nextStep: success + selectResult: null + type: ACTION + success: + type: success + enabled: + type: boolean + description: Enable or disable the workflow. Workflows cannot be created in an enabled state. + default: false + example: false + trigger: + type: object + description: The trigger that starts the workflow + required: + - type + - attributes + properties: + type: + type: string + enum: + - EVENT + - EXTERNAL + - SCHEDULED + example: EVENT + description: The trigger type + attributes: + oneOf: + - title: Event Trigger Attributes + type: object + description: Attributes related to an IdentityNow ETS event + required: + - id + properties: + id: + type: string + description: The unique ID of the trigger + example: 'idn:identity-attributes-changed' + filter.$: + type: string + description: JSON path expression that will limit which events the trigger will fire on + example: '$.changes[?(@.attribute == ''manager'')]' + - title: External Trigger Attributes + type: object + description: Attributes related to an external trigger + required: + - name + properties: + name: + type: string + description: A unique name for the external trigger + example: search-and-notify + description: + type: string + description: Additonal context about the external trigger + example: Run a search and notify the results + - title: Scheduled Trigger Attributes + type: object + description: Attributes related to a scheduled trigger + required: + - cronString + properties: + cronString: + type: string + description: A valid CRON expression + externalDocs: + description: CRON expression editor + url: 'https://crontab.guru/' + example: 0 * */3 */5 * + description: Workflow Trigger Attributes. + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + '/workflows/{id}/test': + post: + operationId: testWorkflow + tags: + - Workflows + summary: Test Workflow By Id + description: |- + Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/idn/docs/event-triggers/available) for an example input for the trigger that initiates this workflow. + This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. + **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.** + security: + - UserContextAuth: + - 'sp:workflow-execute:external' + parameters: + - name: id + in: path + description: Id of the workflow + required: true + style: simple + explode: false + schema: + type: string + example: c17bea3a-574d-453c-9e04-4365fbf5af0b + requestBody: + required: true + content: + application/json: + schema: + type: object + required: + - input + properties: + input: + type: object + description: The test input for the workflow. + examples: + Identity Attributes Changed: + description: Identity Attributes Changed Trigger Input + value: + input: + identity: + id: ee769173319b41d19ccec6cea52f237b + name: john.doe + type: IDENTITY + changes: + - attribute: department + oldValue: sales + newValue: marketing + - attribute: manager + oldValue: + id: ee769173319b41d19ccec6c235423237b + name: nice.guy + type: IDENTITY + newValue: + id: ee769173319b41d19ccec6c235423236c + name: mean.guy + type: IDENTITY + - attribute: email + oldValue: john.doe@hotmail.com + newValue: john.doe@gmail.com + responses: + '200': + description: The Workflow object + content: + application/json: + schema: + type: object + properties: + workflowExecutionId: + type: string + description: The workflow execution id + example: 0e11cefa-96e7-4b67-90d0-065bc1da5753 + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + '/workflows/{id}/executions': + get: + operationId: listWorkflowExecutions + tags: + - Workflows + summary: List Workflow Executions + description: |- + This lists the executions for a given workflow. Workflow executions are available for up to 90 days before being archived. By default, you can get a maximum of 250 executions. To get executions past the first 250 records, you can do the following: + 1. Use the [Get Workflows](https://developer.sailpoint.com/idn/api/beta/list-workflows) endpoint to get your workflows. + 2. Get your workflow ID from the response. + 3. You can then do either of the following: + + - Filter to find relevant workflow executions. + For example, you can filter for failed workflow executions: `GET /workflows/:workflowID/executions?filters=status eq "Failed"` + + - You can paginate through results with the `offset` parameter. + For example, you can page through 50 executions per page and use that as a way to get to the records past the first 250. + Refer to [Paginating Results](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results) for more information about the query parameters you can use to achieve pagination. + security: + - UserContextAuth: + - 'sp:workflow:read' + parameters: + - name: id + in: path + description: Id of the workflow + required: true + style: simple + explode: false + schema: + type: string + example: c17bea3a-574d-453c-9e04-4365fbf5af0b + - in: query + name: limit + description: |- + Max number of results to return. + See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. + required: false + example: 250 + schema: + type: integer + format: int32 + minimum: 0 + maximum: 250 + default: 250 + - in: query + name: offset + description: |- + Offset into the full result set. Usually specified with *limit* to paginate through the results. + See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. + required: false + example: 0 + schema: + type: integer + format: int32 + minimum: 0 + default: 0 + - in: query + name: count + description: |- + If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. + + Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. + + See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. + required: false + example: true + schema: + type: boolean + default: false + - in: query + name: filters + schema: + type: string + example: status eq "Failed" + description: |- + Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) + + Filtering is supported for the following fields and operators: + + **startTime**: *eq, lt, le, gt, ge* + + **status**: *eq* + required: false + responses: + '200': + description: List of workflow executions for the given workflow + content: + application/json: + schema: + type: array + items: + type: object + properties: + id: + type: string + description: The workflow execution ID + example: b393f4e2-4785-4d7f-ab27-3a6b8ded4c81 + workflowId: + type: string + description: The workflow ID + example: d201c5d9-d37b-4a2f-af14-66414f39d568 + requestId: + type: string + description: This backend ID tracks a workflow request in the system. You can provide this ID in a customer support ticket for debugging purposes. + example: 41e12a74fa7b4a6a98ae47887b64acdb + startTime: + type: string + format: date-time + description: The date/time the workflow started + example: '2022-02-07T20:13:29.356648026Z' + closeTime: + type: string + format: date-time + description: The date/time the workflow ended + example: '2022-02-07T20:13:31.682410165Z' + status: + description: The workflow execution status + type: string + enum: + - Completed + - Failed + - Canceled + - Running + example: Completed + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '404': + description: Not Found - returned if the request URL refers to a resource or object that does not exist + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '404': + summary: An example of a 404 response object + value: + detailCode: 404 Not found + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server did not find a current representation for the target resource. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + '/workflow-executions/{id}': + get: + operationId: getWorkflowExecution + tags: + - Workflows + summary: Get a Workflow Execution + description: 'Get a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a 404 Not Found.' + security: + - UserContextAuth: + - 'sp:workflow:read' + parameters: + - name: id + in: path + description: Id of the workflow execution + required: true + style: simple + explode: false + schema: + type: string + example: c17bea3a-574d-453c-9e04-4365fbf5af0b + responses: + '200': + description: The workflow execution + content: + application/json: + schema: + items: + type: object + properties: + id: + type: string + description: The workflow execution ID + example: b393f4e2-4785-4d7f-ab27-3a6b8ded4c81 + workflowId: + type: string + description: The workflow ID + example: d201c5d9-d37b-4a2f-af14-66414f39d568 + requestId: + type: string + description: This backend ID tracks a workflow request in the system. You can provide this ID in a customer support ticket for debugging purposes. + example: 41e12a74fa7b4a6a98ae47887b64acdb + startTime: + type: string + format: date-time + description: The date/time the workflow started + example: '2022-02-07T20:13:29.356648026Z' + closeTime: + type: string + format: date-time + description: The date/time the workflow ended + example: '2022-02-07T20:13:31.682410165Z' + status: + description: The workflow execution status + type: string + enum: + - Completed + - Failed + - Canceled + - Running + example: Completed + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '404': + description: Not Found - returned if the request URL refers to a resource or object that does not exist + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '404': + summary: An example of a 404 response object + value: + detailCode: 404 Not found + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server did not find a current representation for the target resource. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + '/workflow-executions/{id}/history': + get: + operationId: getWorkflowExecutionHistory + tags: + - Workflows + summary: Get Workflow Execution History + description: 'Get a detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a 404 Not Found.' + security: + - UserContextAuth: + - 'sp:workflow:read' + parameters: + - name: id + in: path + description: Id of the workflow execution + required: true + style: simple + explode: false + schema: + type: string + example: c17bea3a-574d-453c-9e04-4365fbf5af0b + responses: + '200': + description: List of workflow execution events for the given workflow execution + content: + application/json: + schema: + type: array + items: + type: object + properties: + type: + description: The type of event + enum: + - WorkflowExecutionScheduled + - WorkflowExecutionStarted + - WorkflowExecutionCompleted + - WorkflowExecutionFailed + - WorkflowTaskScheduled + - WorkflowTaskStarted + - WorkflowTaskCompleted + - WorkflowTaskFailed + - ActivityTaskScheduled + - ActivityTaskStarted + - ActivityTaskCompleted + - ActivityTaskFailed + example: WorkflowTaskScheduled + timestamp: + type: string + format: date-time + description: The date-time when the event occurred + example: '2022-02-07T20:13:31.640618296Z' + attributes: + type: object + description: Additional attributes associated with the event + example: {} + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '404': + description: Not Found - returned if the request URL refers to a resource or object that does not exist + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '404': + summary: An example of a 404 response object + value: + detailCode: 404 Not found + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server did not find a current representation for the target resource. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + '/workflow-executions/{id}/cancel': + post: + operationId: cancelWorkflowExecution + tags: + - Workflows + summary: Cancel Workflow Execution by ID + description: Use this API to cancel a running workflow execution. + security: + - UserContextAuth: + - 'sp:workflow-execute:external' + parameters: + - name: id + in: path + description: The workflow execution ID + required: true + style: simple + explode: false + schema: + type: string + example: c17bea3a-574d-453c-9e04-4365fbf5af0b + responses: + '204': + description: No content - indicates the request was successful but there is no content to be returned in the response. + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '404': + description: Not Found - returned if the request URL refers to a resource or object that does not exist + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '404': + summary: An example of a 404 response object + value: + detailCode: 404 Not found + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server did not find a current representation for the target resource. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + /workflow-library: + get: + operationId: listCompleteWorkflowLibrary + tags: + - Workflows + summary: List Complete Workflow Library + description: 'This lists all triggers, actions, and operators in the library' + externalDocs: + description: Additional documentation for workflows + url: 'https://documentation.sailpoint.com/saas/help/workflows/workflow-steps.html' + parameters: + - in: query + name: limit + description: |- + Max number of results to return. + See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. + required: false + example: 250 + schema: + type: integer + format: int32 + minimum: 0 + maximum: 250 + default: 250 + - in: query + name: offset + description: |- + Offset into the full result set. Usually specified with *limit* to paginate through the results. + See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. + required: false + example: 0 + schema: + type: integer + format: int32 + minimum: 0 + default: 0 + security: + - UserContextAuth: + - 'sp:workflow:read' + responses: + '200': + description: List of workflow steps + content: + application/json: + schema: + type: array + items: + anyOf: + - title: Workflow Action + type: object + properties: + id: + type: string + description: Action ID. This is a static namespaced ID for the action + example: 'sp:create-campaign' + name: + type: string + description: Action Name + example: Create Certification Campaign + type: + type: string + description: Action type + example: ACTION + description: + type: string + description: Action Description + example: Generates a certification campaign. + formFields: + type: array + description: One or more inputs that the action accepts + items: + type: object + properties: + helpText: + type: string + description: Describes the form field in the UI + example: The name to give to this certification campaign. + label: + type: string + description: A human readable name for this form field in the UI + example: Campaign Name + name: + type: string + description: The name of the input attribute + example: name + required: + type: boolean + description: Denotes if this field is a required attribute + example: false + default: false + type: + description: The type of the form field + nullable: true + enum: + - text + - textarea + - boolean + - email + - url + - number + - json + - checkbox + - jsonpath + - select + - multiType + - duration + - toggle + - identityPicker + - governanceGroupPicker + - string + - object + - array + - secret + - keyValuePairs + - emailPicker + - advancedToggle + example: text + isDynamicSchema: + type: boolean + description: 'Determines whether the dynamic output schema is returned in place of the action''s output schema. The dynamic schema lists non-static properties, like properties of a workflow form where each form has different fields. These will be provided dynamically based on available form fields.' + example: false + default: false + outputSchema: + type: object + description: 'Defines the output schema, if any, that this action produces.' + example: + definitions: {} + properties: + autoRevokeAllowed: + $id: '#sp:create-campaign/autoRevokeAllowed' + default: true + examples: + - false + title: autoRevokeAllowed + type: boolean + deadline: + $id: '#sp:create-campaign/deadline' + default: '' + examples: + - '2020-12-25T06:00:00.468Z' + format: date-time + pattern: ^.*$ + title: deadline + type: string + description: + $id: '#sp:create-campaign/description' + default: '' + examples: + - A review of everyone's access by their manager. + pattern: ^.*$ + title: description + type: string + emailNotificationEnabled: + $id: '#sp:create-campaign/emailNotificationEnabled' + default: true + examples: + - false + title: emailNotificationEnabled + type: boolean + filter: + $id: '#sp:create-campaign/filter' + properties: + id: + $id: '#sp:create-campaign/filter/id' + default: '' + examples: + - e0adaae69852e8fe8b8a3d48e5ce757c + pattern: ^.*$ + title: id + type: string + type: + $id: '#sp:create-campaign/filter/type' + default: '' + examples: + - CAMPAIGN_FILTER + pattern: ^.*$ + title: type + type: string + title: filter + type: object + id: + $id: '#sp:create-campaign/id' + default: '' + examples: + - 2c918086719eec070171a7e3355a360a + pattern: ^.*$ + title: id + type: string + name: + $id: '#sp:create-campaign/name' + default: '' + examples: + - Manager Review + pattern: ^.*$ + title: name + type: string + recommendationsEnabled: + $id: '#sp:create-campaign/recommendationsEnabled' + default: true + examples: + - false + title: recommendationEnabled + type: boolean + type: + $id: '#sp:create-campaign/type' + default: '' + examples: + - MANAGER + pattern: ^.*$ + title: type + type: string + title: 'sp:create-campaign' + type: object + - title: Workflow Trigger + type: object + properties: + id: + type: string + description: Trigger ID. This is a static namespaced ID for the trigger. + example: 'idn:identity-attributes-changed' + type: + description: Trigger type + enum: + - EVENT + - SCHEDULED + - EXTERNAL + example: EVENT + name: + type: string + description: Trigger Name + example: Identity Attributes Changed + description: + type: string + description: Trigger Description + example: One or more identity attributes changed. + isDynamicSchema: + type: boolean + description: 'Determines whether the dynamic output schema is returned in place of the action''s output schema. The dynamic schema lists non-static properties, like properties of a workflow form where each form has different fields. These will be provided dynamically based on available form fields.' + example: false + default: false + inputExample: + type: object + description: Example trigger payload if applicable + nullable: true + externalDocs: + description: List of triggers and their input schemas + url: 'https://developer.sailpoint.com/idn/docs/event-triggers/available' + example: + changes: + - attribute: department + newValue: marketing + oldValue: sales + - attribute: manager + newValue: + id: ee769173319b41d19ccec6c235423236c + name: mean.guy + type: IDENTITY + oldValue: + id: ee769173319b41d19ccec6c235423237b + name: nice.guy + type: IDENTITY + - attribute: email + newValue: john.doe@gmail.com + oldValue: john.doe@hotmail.com + identity: + id: ee769173319b41d19ccec6cea52f237b + name: john.doe + type: IDENTITY + formFields: + type: array + nullable: true + description: One or more inputs that the trigger accepts + example: [] + items: + type: object + properties: + helpText: + type: string + description: Describes the form field in the UI + example: The name to give to this certification campaign. + label: + type: string + description: A human readable name for this form field in the UI + example: Campaign Name + name: + type: string + description: The name of the input attribute + example: name + required: + type: boolean + description: Denotes if this field is a required attribute + example: false + default: false + type: + description: The type of the form field + nullable: true + enum: + - text + - textarea + - boolean + - email + - url + - number + - json + - checkbox + - jsonpath + - select + - multiType + - duration + - toggle + - identityPicker + - governanceGroupPicker + - string + - object + - array + - secret + - keyValuePairs + - emailPicker + - advancedToggle + example: text + - title: Workflow Operator + type: object + properties: + id: + type: string + description: Operator ID. + example: 'sp:compare-boolean' + name: + type: string + description: Operator friendly name + example: Compare Boolean Values + type: + description: Operator type + type: string + example: OPERATOR + description: + type: string + description: Description of the operator + example: Compare two boolean values and decide what happens based on the result. + formFields: + type: array + description: One or more inputs that the operator accepts + items: + type: object + properties: + helpText: + type: string + description: Describes the form field in the UI + example: The name to give to this certification campaign. + label: + type: string + description: A human readable name for this form field in the UI + example: Campaign Name + name: + type: string + description: The name of the input attribute + example: name + required: + type: boolean + description: Denotes if this field is a required attribute + example: false + default: false + type: + description: The type of the form field + nullable: true + enum: + - text + - textarea + - boolean + - email + - url + - number + - json + - checkbox + - jsonpath + - select + - multiType + - duration + - toggle + - identityPicker + - governanceGroupPicker + - string + - object + - array + - secret + - keyValuePairs + - emailPicker + - advancedToggle + example: text + example: + - description: Enter the JSONPath to a value from the input to compare to Variable B. + helpText: '' + label: Variable A + name: variableA.$ + required: true + type: text + - helpText: Select an operation. + label: Operation + name: operator + options: + - label: Equals + value: BooleanEquals + required: true + type: select + - description: Enter the JSONPath to a value from the input to compare to Variable A. + helpText: '' + label: Variable B + name: variableB.$ + required: false + type: text + - description: Enter True or False. + helpText: '' + label: Variable B + name: variableB + required: false + type: text + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + /workflow-library/actions: + get: + operationId: listWorkflowLibraryActions + tags: + - Workflows + summary: List Workflow Library Actions + description: This lists the workflow actions available to you. + externalDocs: + description: Additional documentation for each action + url: 'https://documentation.sailpoint.com/saas/help/workflows/workflow-steps.html#actions' + parameters: + - in: query + name: limit + description: |- + Max number of results to return. + See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. + required: false + example: 250 + schema: + type: integer + format: int32 + minimum: 0 + maximum: 250 + default: 250 + - in: query + name: offset + description: |- + Offset into the full result set. Usually specified with *limit* to paginate through the results. + See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. + required: false + example: 0 + schema: + type: integer + format: int32 + minimum: 0 + default: 0 + - in: query + name: filters + required: false + schema: + type: string + description: |- + Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) + + Filtering is supported for the following fields and operators: + + **id**: *eq* + example: 'id eq "sp:create-campaign"' + security: + - UserContextAuth: + - 'sp:workflow:read' + responses: + '200': + description: List of workflow actions + content: + application/json: + schema: + type: array + items: + title: Workflow Action + type: object + properties: + id: + type: string + description: Action ID. This is a static namespaced ID for the action + example: 'sp:create-campaign' + name: + type: string + description: Action Name + example: Create Certification Campaign + type: + type: string + description: Action type + example: ACTION + description: + type: string + description: Action Description + example: Generates a certification campaign. + formFields: + type: array + description: One or more inputs that the action accepts + items: + type: object + properties: + helpText: + type: string + description: Describes the form field in the UI + example: The name to give to this certification campaign. + label: + type: string + description: A human readable name for this form field in the UI + example: Campaign Name + name: + type: string + description: The name of the input attribute + example: name + required: + type: boolean + description: Denotes if this field is a required attribute + example: false + default: false + type: + description: The type of the form field + nullable: true + enum: + - text + - textarea + - boolean + - email + - url + - number + - json + - checkbox + - jsonpath + - select + - multiType + - duration + - toggle + - identityPicker + - governanceGroupPicker + - string + - object + - array + - secret + - keyValuePairs + - emailPicker + - advancedToggle + example: text + isDynamicSchema: + type: boolean + description: 'Determines whether the dynamic output schema is returned in place of the action''s output schema. The dynamic schema lists non-static properties, like properties of a workflow form where each form has different fields. These will be provided dynamically based on available form fields.' + example: false + default: false + outputSchema: + type: object + description: 'Defines the output schema, if any, that this action produces.' + example: + definitions: {} + properties: + autoRevokeAllowed: + $id: '#sp:create-campaign/autoRevokeAllowed' + default: true + examples: + - false + title: autoRevokeAllowed + type: boolean + deadline: + $id: '#sp:create-campaign/deadline' + default: '' + examples: + - '2020-12-25T06:00:00.468Z' + format: date-time + pattern: ^.*$ + title: deadline + type: string + description: + $id: '#sp:create-campaign/description' + default: '' + examples: + - A review of everyone's access by their manager. + pattern: ^.*$ + title: description + type: string + emailNotificationEnabled: + $id: '#sp:create-campaign/emailNotificationEnabled' + default: true + examples: + - false + title: emailNotificationEnabled + type: boolean + filter: + $id: '#sp:create-campaign/filter' + properties: + id: + $id: '#sp:create-campaign/filter/id' + default: '' + examples: + - e0adaae69852e8fe8b8a3d48e5ce757c + pattern: ^.*$ + title: id + type: string + type: + $id: '#sp:create-campaign/filter/type' + default: '' + examples: + - CAMPAIGN_FILTER + pattern: ^.*$ + title: type + type: string + title: filter + type: object + id: + $id: '#sp:create-campaign/id' + default: '' + examples: + - 2c918086719eec070171a7e3355a360a + pattern: ^.*$ + title: id + type: string + name: + $id: '#sp:create-campaign/name' + default: '' + examples: + - Manager Review + pattern: ^.*$ + title: name + type: string + recommendationsEnabled: + $id: '#sp:create-campaign/recommendationsEnabled' + default: true + examples: + - false + title: recommendationEnabled + type: boolean + type: + $id: '#sp:create-campaign/type' + default: '' + examples: + - MANAGER + pattern: ^.*$ + title: type + type: string + title: 'sp:create-campaign' + type: object + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + /workflow-library/triggers: + get: + operationId: listWorkflowLibraryTriggers + tags: + - Workflows + summary: List Workflow Library Triggers + description: This lists the workflow triggers available to you + externalDocs: + description: Additional documentation for each trigger + url: 'https://documentation.sailpoint.com/saas/help/workflows/workflow-steps.html#triggers' + parameters: + - in: query + name: limit + description: |- + Max number of results to return. + See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. + required: false + example: 250 + schema: + type: integer + format: int32 + minimum: 0 + maximum: 250 + default: 250 + - in: query + name: offset + description: |- + Offset into the full result set. Usually specified with *limit* to paginate through the results. + See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. + required: false + example: 0 + schema: + type: integer + format: int32 + minimum: 0 + default: 0 + - in: query + name: filters + required: false + schema: + type: string + description: |- + Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) + + Filtering is supported for the following fields and operators: + + **id**: *eq* + example: 'id eq "idn:identity-attributes-changed"' + security: + - UserContextAuth: + - 'sp:workflow:read' + responses: + '200': + description: List of workflow triggers + content: + application/json: + schema: + type: array + items: + title: Workflow Trigger + type: object + properties: + id: + type: string + description: Trigger ID. This is a static namespaced ID for the trigger. + example: 'idn:identity-attributes-changed' + type: + description: Trigger type + enum: + - EVENT + - SCHEDULED + - EXTERNAL + example: EVENT + name: + type: string + description: Trigger Name + example: Identity Attributes Changed + description: + type: string + description: Trigger Description + example: One or more identity attributes changed. + isDynamicSchema: + type: boolean + description: 'Determines whether the dynamic output schema is returned in place of the action''s output schema. The dynamic schema lists non-static properties, like properties of a workflow form where each form has different fields. These will be provided dynamically based on available form fields.' + example: false + default: false + inputExample: + type: object + description: Example trigger payload if applicable + nullable: true + externalDocs: + description: List of triggers and their input schemas + url: 'https://developer.sailpoint.com/idn/docs/event-triggers/available' + example: + changes: + - attribute: department + newValue: marketing + oldValue: sales + - attribute: manager + newValue: + id: ee769173319b41d19ccec6c235423236c + name: mean.guy + type: IDENTITY + oldValue: + id: ee769173319b41d19ccec6c235423237b + name: nice.guy + type: IDENTITY + - attribute: email + newValue: john.doe@gmail.com + oldValue: john.doe@hotmail.com + identity: + id: ee769173319b41d19ccec6cea52f237b + name: john.doe + type: IDENTITY + formFields: + type: array + nullable: true + description: One or more inputs that the trigger accepts + example: [] + items: + type: object + properties: + helpText: + type: string + description: Describes the form field in the UI + example: The name to give to this certification campaign. + label: + type: string + description: A human readable name for this form field in the UI + example: Campaign Name + name: + type: string + description: The name of the input attribute + example: name + required: + type: boolean + description: Denotes if this field is a required attribute + example: false + default: false + type: + description: The type of the form field + nullable: true + enum: + - text + - textarea + - boolean + - email + - url + - number + - json + - checkbox + - jsonpath + - select + - multiType + - duration + - toggle + - identityPicker + - governanceGroupPicker + - string + - object + - array + - secret + - keyValuePairs + - emailPicker + - advancedToggle + example: text + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + /workflow-library/operators: + get: + operationId: listWorkflowLibraryOperators + tags: + - Workflows + summary: List Workflow Library Operators + description: This lists the workflow operators available to you + security: + - UserContextAuth: + - 'sp:workflow:read' + responses: + '200': + description: List of workflow operators + content: + application/json: + schema: + type: array + items: + title: Workflow Operator + type: object + properties: + id: + type: string + description: Operator ID. + example: 'sp:compare-boolean' + name: + type: string + description: Operator friendly name + example: Compare Boolean Values + type: + description: Operator type + type: string + example: OPERATOR + description: + type: string + description: Description of the operator + example: Compare two boolean values and decide what happens based on the result. + formFields: + type: array + description: One or more inputs that the operator accepts + items: + type: object + properties: + helpText: + type: string + description: Describes the form field in the UI + example: The name to give to this certification campaign. + label: + type: string + description: A human readable name for this form field in the UI + example: Campaign Name + name: + type: string + description: The name of the input attribute + example: name + required: + type: boolean + description: Denotes if this field is a required attribute + example: false + default: false + type: + description: The type of the form field + nullable: true + enum: + - text + - textarea + - boolean + - email + - url + - number + - json + - checkbox + - jsonpath + - select + - multiType + - duration + - toggle + - identityPicker + - governanceGroupPicker + - string + - object + - array + - secret + - keyValuePairs + - emailPicker + - advancedToggle + example: text + example: + - description: Enter the JSONPath to a value from the input to compare to Variable B. + helpText: '' + label: Variable A + name: variableA.$ + required: true + type: text + - helpText: Select an operation. + label: Operation + name: operator + options: + - label: Equals + value: BooleanEquals + required: true + type: select + - description: Enter the JSONPath to a value from the input to compare to Variable A. + helpText: '' + label: Variable B + name: variableB.$ + required: false + type: text + - description: Enter True or False. + helpText: '' + label: Variable B + name: variableB + required: false + type: text + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + '/workflows/{id}/external/oauth-clients': + post: + operationId: createWorkflowExternalTrigger + tags: + - Workflows + summary: Generate External Trigger OAuth Client + description: 'Create OAuth client ID, client secret, and callback URL for use in an external trigger. External triggers will need this information to generate an access token to authenticate to the callback URL and submit a trigger payload that will initiate the workflow.' + security: + - UserContextAuth: + - 'sp:workflow:manage' + parameters: + - name: id + in: path + description: Id of the workflow + required: true + style: simple + explode: false + schema: + type: string + example: c17bea3a-574d-453c-9e04-4365fbf5af0b + responses: + '200': + description: The OAuth Client object + content: + application/json: + schema: + type: object + properties: + id: + type: string + description: OAuth client ID for the trigger. This is a UUID generated upon creation. + example: 1a58c03a6bf64dc2876f6988c6e2c7b7 + secret: + type: string + description: OAuthClient secret. + example: 00cc24a7fe810fe06a7cb38bc168ae104d703c7abb296f9944dc68e69ddb578b + url: + type: string + description: URL for the external trigger to invoke + example: 'https://tenant.api.identitynow.com/beta/workflows/execute/external/c17bea3a-574d-453c-9e04-4365fbf5af0b' + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + '/workflows/execute/external/{id}': + post: + operationId: createExternalExecuteWorkflow + tags: + - Workflows + summary: Execute Workflow via External Trigger + description: This endpoint allows a service outside of IdentityNow to initiate a workflow that uses the "External Trigger" step. The external service will invoke this endpoint with the input data it wants to send to the workflow in the body. + security: + - UserContextAuth: + - 'sp:workflow-execute:external' + parameters: + - name: id + in: path + description: Id of the workflow + required: true + style: simple + explode: false + schema: + type: string + example: c17bea3a-574d-453c-9e04-4365fbf5af0b + requestBody: + required: false + content: + application/json: + schema: + type: object + properties: + input: + type: object + description: The input for the workflow + example: + customAttribute1: value1 + customAttribute2: value2 + responses: + '200': + description: The Workflow object + content: + application/json: + schema: + type: object + properties: + workflowExecutionId: + type: string + description: The workflow execution id + example: 0e11cefa-96e7-4b67-90d0-065bc1da5753 + message: + type: string + description: An error message if any errors occurred + example: Workflow was not executed externally. Check enabled flag on workflow definition + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. + '/workflows/execute/external/{id}/test': + post: + operationId: testExternalExecuteWorkflow + tags: + - Workflows + summary: Test Workflow via External Trigger + description: 'Validate a workflow with an "External Trigger" can receive input. The response includes the input that the workflow received, which can be used to validate that the input is intact when it reaches the workflow.' + security: + - UserContextAuth: + - 'sp:workflow-execute:external' + parameters: + - name: id + in: path + description: Id of the workflow + required: true + style: simple + explode: false + schema: + type: string + example: c17bea3a-574d-453c-9e04-4365fbf5af0b + requestBody: + required: false + content: + application/json: + schema: + type: object + properties: + input: + type: object + description: The test input for the workflow + example: + test: hello world + responses: + '200': + description: Responds with the test input + content: + application/json: + schema: + type: object + properties: + payload: + type: object + description: The input that was received + example: + test: hello world + '400': + description: Client Error - Returned if the request body is invalid. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + '401': + description: 'Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.' + content: + application/json: + schema: + type: object + properties: + error: + description: A message describing the error + example: 'JWT validation failed: JWT is expired' + '403': + description: 'Forbidden - Returned if the user you are running as, doesn''t have access to this end-point.' + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '403': + summary: An example of a 403 response object + value: + detailCode: 403 Forbidden + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: The server understood the request but refuses to authorize it. + '429': + description: Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. + content: + application/json: + schema: + type: object + properties: + message: + description: A message describing the error + example: ' Rate Limit Exceeded ' + '500': + description: Internal Server Error - Returned if there is an unexpected error. + content: + application/json: + schema: + type: object + properties: + detailCode: + type: string + description: Fine-grained error code providing more detail of the error. + example: 400.1 Bad Request Content + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + messages: + type: array + description: Generic localized reason for error + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + causes: + type: array + description: Plain-text descriptive reasons to provide additional detail to the text provided in the messages field + items: + type: object + properties: + locale: + type: string + description: 'The locale for the message text, a BCP 47 language tag.' + example: en-US + nullable: true + localeOrigin: + type: string + enum: + - DEFAULT + - REQUEST + - null + description: 'An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.' + example: DEFAULT + nullable: true + text: + type: string + description: Actual text of the error message in the indicated locale. + example: The request was syntactically correct but its content is semantically invalid. + examples: + '500': + summary: An example of a 500 response object + value: + detailCode: 500.0 Internal Fault + trackingId: b21b1f7ce4da4d639f2c62a57171b427 + messages: + - locale: en-US + localeOrigin: DEFAULT + text: An internal fault occurred. '/source-usages/{sourceId}/status': get: tags: diff --git a/postman/collections/sailpoint-api-beta.json b/postman/collections/sailpoint-api-beta.json index d7c0e26..73870a8 100644 --- a/postman/collections/sailpoint-api-beta.json +++ b/postman/collections/sailpoint-api-beta.json @@ -5,7 +5,7 @@ "description": "Use this API to implement and customize access profile functionality.\nWith this functionality in place, administrators can create access profiles and configure them for use throughout IdentityNow, enabling users to get the access they need quickly and securely.\n\nAccess profiles group entitlements, which represent access rights on sources.\n\nFor example, an Active Directory source in IdentityNow can have multiple entitlements: the first, 'Employees,' may represent the access all employees have at the organization, and a second, 'Developers,' may represent the access all developers have at the organization.\n\nAn administrator can then create a broader set of access in the form of an access profile, 'AD Developers' grouping the 'Employees' entitlement with the 'Developers' entitlement.\n\nWhen users only need Active Directory employee access, they can request access to the 'Employees' entitlement.\n\nWhen users need both Active Directory employee and developer access, they can request access to the 'AD Developers' access profile.\n\nAccess profiles are the most important units of access in IdentityNow. IdentityNow uses access profiles in many features, including the following:\n\n- Provisioning: When you use the Provisioning Service, lifecycle states and roles both grant access to users in the form of access profiles.\n\n- Certifications: You can approve or revoke access profiles in certification campaigns, just like entitlements.\n\n- Access Requests: You can assign access profiles to applications, and when a user requests access to the app associated with an access profile and someone approves the request, access is granted to both the application and its associated access profile.\n\n- Roles: You can group one or more access profiles into a role to quickly assign access items based on an identity's role.\n\nIn IdentityNow, administrators can use the Access drop-down menu and select Access Profiles to view, configure, and delete existing access profiles, as well as create new ones.\nAdministrators can enable and disable an access profile, and they can also make the following configurations:\n\n- Manage Entitlements: Manage the profile's access by adding and removing entitlements.\n\n- Access Requests: Configure access profiles to be requestable and establish an approval process for any requests that the access profile be granted or revoked.\nDo not configure an access profile to be requestable without first establishing a secure access request approval process for the access profile.\n\n- Multiple Account Options: Define the logic IdentityNow uses to provision access to an identity with multiple accounts on the source.\n\nRefer to [Managing Access Profiles](https://documentation.sailpoint.com/saas/help/access/access-profiles.html) for more information about access profiles.\n", "item": [ { - "id": "474ff671-bf08-45cf-bb26-2768163dd05b", + "id": "4ddc668d-8dc1-4eee-a7e6-c7a21593c758", "name": "List Access Profiles", "request": { "name": "List Access Profiles", @@ -107,7 +107,7 @@ }, "response": [ { - "id": "97ff75cc-e47b-40c4-8f7b-1d9474088887", + "id": "4378a0cb-8d67-4bbf-b4bd-04863f5171f8", "name": "List of Access Profiles", "originalRequest": { "url": { @@ -223,7 +223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30b33809-1977-49b8-a754-951dd8884a17", + "id": "2dd62f2e-44af-4543-b95a-2fe0183090db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -339,7 +339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6752d27-fa77-464e-aee0-e9576f01993b", + "id": "661cf3ad-83fe-43e4-8ee5-5d1f3171d623", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -455,7 +455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27d48ba6-cab5-42be-bbdd-527a75e34c09", + "id": "42887e86-d38d-42f6-8b49-33db5145df3b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -571,7 +571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4ec5e62-a24d-4ad5-85df-a990a2220860", + "id": "09d34cad-b1f7-43af-a66e-554dcdd11918", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -687,7 +687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10e9947f-090f-40fb-9c35-b2256fc561ad", + "id": "42b25f14-b1e1-4899-a72e-9099ab573927", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -809,7 +809,7 @@ } }, { - "id": "4fca8827-b177-494f-a78c-99dad6a7c4ef", + "id": "5f9583fe-ec2e-4015-994b-e5ad6e92237b", "name": "Create an Access Profile", "request": { "name": "Create an Access Profile", @@ -851,7 +851,7 @@ }, "response": [ { - "id": "ba8ea445-ce4e-4071-8407-257ae74ae98f", + "id": "8b0926ff-61e6-48fd-847e-fc9b788a2d28", "name": "Access Profile created", "originalRequest": { "url": { @@ -907,7 +907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5e88718-9ddf-41fb-a04a-e3822175df70", + "id": "af26fd9d-50b6-4f0e-95ae-03c176e9fc05", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -963,7 +963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0f796bc-70b9-4fce-b84a-cc7d867fb23b", + "id": "9040e8c8-60ce-4693-8456-8e96a07205b0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -1019,7 +1019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f9c7bd0-10c0-4045-b785-74a1b0733fab", + "id": "adb8ce38-8cca-4623-81d1-6e4d0e5bf712", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -1075,7 +1075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0ab5f41-4722-420d-9838-f97110a4073c", + "id": "53c47017-303a-43f8-888e-07b7a78e4545", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -1131,7 +1131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "241452be-bf78-4639-a35d-548f05bd296c", + "id": "f43fb493-8128-4c63-997d-094064a1c418", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1193,7 +1193,7 @@ } }, { - "id": "a3b26a73-fa73-49e2-8c51-4691fd17726b", + "id": "9533c370-a983-4856-b849-1371938be7f2", "name": "Get an Access Profile", "request": { "name": "Get an Access Profile", @@ -1234,7 +1234,7 @@ }, "response": [ { - "id": "f556468b-b2aa-4208-b14a-c81455a5dce5", + "id": "9a8d40a3-f958-4673-9522-ccc30c3b6814", "name": "An AccessProfile", "originalRequest": { "url": { @@ -1278,7 +1278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c9003fe-6b1e-4307-9b2f-294e494e454f", + "id": "02a3a600-0a76-45d2-942b-2eaa5fd234e5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1322,7 +1322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f812ead3-c839-46e0-b1ef-e149ea1699ca", + "id": "959e63b6-e433-4a7b-8c08-eb35580255f6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -1366,7 +1366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e03d1f89-a122-4903-9a1c-2d35e6b2d324", + "id": "1f3218c7-38cb-43ef-85a7-06c75f8054e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -1410,7 +1410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a8ff3a2-69c6-4a3a-99db-5959f0126845", + "id": "e682486a-75d8-4656-b991-253b1a02170a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -1454,7 +1454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74fc07bf-65e8-4ac0-8430-3d47fb13cfe6", + "id": "1fe6e34f-33b9-498b-acd2-4ffacc2cbe8b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1504,7 +1504,7 @@ } }, { - "id": "42d8c9dc-cc1b-42ae-88e5-60dfc5641f11", + "id": "50eb93d0-0460-4f83-8ae3-098528f851a1", "name": "Patch a specified Access Profile", "request": { "name": "Patch a specified Access Profile", @@ -1558,7 +1558,7 @@ }, "response": [ { - "id": "ffb4661c-0627-4742-a12b-696ecd933333", + "id": "ccf88e0c-0082-44ea-8d5d-399d1ce2babc", "name": "Add Entitlements", "originalRequest": { "url": { @@ -1615,7 +1615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a383595-feb5-4997-92b3-ca0c4adf33f0", + "id": "0a02a17b-c78f-44dd-90b3-84adfb37a2b6", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -1672,7 +1672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "376d3ba0-03ff-4ba7-a14c-204195af2863", + "id": "8375575b-ee1b-444b-96cb-f03400617c97", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -1729,7 +1729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a589ee4-4415-403b-822b-7363ae0699aa", + "id": "75cb4825-22ed-475f-8b1f-c9a27fb3b269", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -1786,7 +1786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99186626-32dc-471e-af75-773b52b4decc", + "id": "fe6a1d27-47d6-49a5-a6a0-1252816cf853", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -1843,7 +1843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "400ecdf9-6c4a-4a16-b6bb-0f9d208401bd", + "id": "050f33cd-03ca-4cc8-b7c4-dc72f3a95f8b", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -1900,7 +1900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc2e24cf-bfdb-48e1-ad21-69823c075d81", + "id": "660242e9-777e-4deb-a7fb-a5375d19173a", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -1957,7 +1957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d542e12d-04fd-459b-b2a9-1aa502b36030", + "id": "19b8eb53-3f65-4b06-bf61-d6b8a7f27951", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -2014,7 +2014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a5696bf-711c-4413-bd4e-1e645ab096ad", + "id": "79e2b9c6-0643-4e23-8389-03158f935d08", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2071,7 +2071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7b45ee5-8fd4-418f-8a08-5d2bbf5010c4", + "id": "a63c762e-89b0-43ff-a34c-15abc3a51847", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -2128,7 +2128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db287445-5e3a-486f-babf-eb01e8d1c391", + "id": "a8877530-3a31-4bbd-804c-eb2613dadb15", "name": "Add Entitlements", "originalRequest": { "url": { @@ -2185,7 +2185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acd870af-80c0-45d0-a1a4-dcbbea09f0db", + "id": "b516fef3-93c9-4aee-893f-f6d97cd63da8", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -2248,7 +2248,7 @@ } }, { - "id": "26220fc6-91bf-4270-92d7-de20a192f057", + "id": "969f4d3a-b4c4-4f07-b275-c03f88b1c2d0", "name": "Delete the specified Access Profile", "request": { "name": "Delete the specified Access Profile", @@ -2289,7 +2289,7 @@ }, "response": [ { - "id": "b60b5eec-c2d4-4fea-a12a-32a3a1b10060", + "id": "149bf679-d0ca-4e3d-b7ae-1c8919ca12c9", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -2323,7 +2323,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7ae78931-3ba5-4ca5-a7ef-e90e1e231ff1", + "id": "f8bd2113-5c0e-47b9-ad97-a893db904234", "name": "Returned when an access profile cannot be deleted as it's being used.", "originalRequest": { "url": { @@ -2367,7 +2367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6891e2d5-8f60-4fde-9f2b-f602be480aea", + "id": "f430ddac-2828-47a9-8a6f-99ecca41b044", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -2411,7 +2411,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a52a391a-1baa-41e2-be56-8141c6002166", + "id": "ddef209a-ed2e-4c14-a9ab-c0b321ad9b62", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -2455,7 +2455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa22daae-e8fb-47d2-bd62-46c1803a1dbf", + "id": "addced10-3e78-4f9e-b3dd-221e26130d10", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -2499,7 +2499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f2ecd68-ab96-4f58-b825-c839452b4abc", + "id": "3f3e5553-267e-427e-b012-55c00ecb13cb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2549,7 +2549,7 @@ } }, { - "id": "379b8e14-76c5-4406-8951-6857d7c3f307", + "id": "92620b28-b9a3-4ed1-aa2d-39965d3de561", "name": "Delete Access Profile(s)", "request": { "name": "Delete Access Profile(s)", @@ -2592,7 +2592,7 @@ }, "response": [ { - "id": "98ce9e58-1cad-450a-9850-11f8199d186d", + "id": "70943ba5-a2ae-403b-a42a-6770921cdc75", "name": "Returned only if **bestEffortOnly** is **false**, and one or more Access Profiles are in use.", "originalRequest": { "url": { @@ -2649,7 +2649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94c58c2a-0bf6-40cd-8fbd-48c7e6a5c1bb", + "id": "9b0a0411-8c4c-4236-a0a9-aeef7acffccc", "name": "Returned if at least one deletion will be performed.", "originalRequest": { "url": { @@ -2706,7 +2706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28b078d4-2b30-4ec2-8d69-63d1a820ab1c", + "id": "52b8572b-0e0a-484c-b50c-39a55f25ac5f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2763,7 +2763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74a38f48-780b-48e7-af71-c6acdc31ed15", + "id": "a34f3a0d-083b-4921-a46b-e93820863268", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -2820,7 +2820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c52f8b2-d692-4563-b741-becbb0cc637b", + "id": "afc30fc7-dc0d-43d1-a413-23924e515224", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -2877,7 +2877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84db91ea-0b78-4456-a967-648ad6a99927", + "id": "56d3eba0-cb17-4569-966c-6ba5c0053a25", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -2934,7 +2934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8569d16-fde9-47d9-9029-24f326c642fe", + "id": "f9bf7e7e-3072-4f48-a4e6-a4a449f7619e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2997,7 +2997,7 @@ } }, { - "id": "5130d19f-5400-4d18-8d8a-dfe81c2054bd", + "id": "c8d2ed9c-5a88-406a-93ad-f4e20d63b8c2", "name": "Update Access Profile(s) requestable field.", "request": { "name": "Update Access Profile(s) requestable field.", @@ -3040,7 +3040,7 @@ }, "response": [ { - "id": "13bd480f-c452-4844-8ec8-4170bd5c099e", + "id": "314543c3-f596-410f-9576-7f4a7cf8cf2f", "name": "List of updated and not updated Access Profiles.", "originalRequest": { "url": { @@ -3097,7 +3097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9045c973-4f19-44b8-b314-6f04db8579b1", + "id": "3d9a39b2-edcc-4dbc-8607-891186c5cf7a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -3154,7 +3154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d0563fd-5acc-4c2f-93fe-b074a4824414", + "id": "1063f497-f965-4524-8a34-3bb82b58d3b5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -3211,7 +3211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8630c1e-d47b-43d1-93fd-baa4201a02ad", + "id": "26469cb6-0dea-48ff-bc23-d6ff0b71a914", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -3268,7 +3268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7aaa507-cac6-41fd-85a1-eda1a9d38bb0", + "id": "c6673cf9-865d-4cd4-90cf-956ce5b06e23", "name": "Precondition Failed - Returned in response if API/Feature not enabled for an organization.", "originalRequest": { "url": { @@ -3325,7 +3325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c387fad-b8ba-4b6f-b1ca-8f7abc009a82", + "id": "b40ebbc4-0d8d-41ca-bbdb-3cacb93c0e41", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -3382,7 +3382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f54869ba-9bf8-406c-bb0e-aa8eade25116", + "id": "b7cd84df-1297-4c7f-9d79-db205430ed7b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -3445,7 +3445,7 @@ } }, { - "id": "b958f612-d583-4192-acb0-867088751f26", + "id": "3fbb7ba8-4033-421b-9d3d-57cd1e29e488", "name": "List Access Profile's Entitlements", "request": { "name": "List Access Profile's Entitlements", @@ -3533,7 +3533,7 @@ }, "response": [ { - "id": "8e8f7807-692e-4c68-b246-ff43bfb239bd", + "id": "25abe289-db95-4077-a242-87d89c93d2f4", "name": "List of Entitlements", "originalRequest": { "url": { @@ -3624,7 +3624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7c93655-8f87-4483-8e1c-cd3cae899bb5", + "id": "293a276b-a019-418f-b273-a59b6119bb55", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -3715,7 +3715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "855686cb-51c0-4432-a0dd-8318776d4f88", + "id": "8aaeed3f-2b8e-47a3-924f-46d0ab3927ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -3806,7 +3806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1948409-b889-418e-8300-25fa32b393e7", + "id": "8dd5ad52-e627-474d-ada0-d2a8b537c1a9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -3897,7 +3897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f57109d0-fdfc-491c-ac46-9f1d712f081d", + "id": "d9740b57-1d68-42af-84e0-2a7a7505ae25", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -3988,7 +3988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5acba2d8-90d7-4f40-8b75-8de601968364", + "id": "3733250a-cd2e-4a80-b86b-2405d1fb7055", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4091,7 +4091,7 @@ "description": "Use this API to implement and customize access request approval functionality.\nWith this functionality in place, administrators can delegate qualified users to review users' requests for access or managers' requests to revoke team members' access to applications, entitlements, or roles.\nThis enables more qualified users to review access requests and the others to spend their time on other tasks.\n\nIn IdentityNow, users can request access to applications, entitlements, and roles, and managers can request that team members' access be revoked.\nFor applications and entitlements, administrators can set access profiles to require approval from the access profile owner, the application owner, the source owner, the requesting user's manager, or a governance group for access to be granted or revoked.\nFor roles, administrators can also set roles to allow access requests and require approval from the role owner, the requesting user's manager, or a governance group for access to be granted or revoked.\nIf the administrator designates a governance group as the required approver, any governance group member can approve the requests.\n\nWhen a user submits an access request, IdentityNow sends the first required approver in the queue an email notification, based on the access request configuration's approval and reminder escalation configuration.\n\nIn Approvals in IdentityNow, required approvers can view pending access requests under the Requested tab and approve or deny them, or the approvers can reassign the requests to different reviewers for approval.\nIf the required approver approves the request and is the only reviewer required, IdentityNow grants or revokes access, based on the request.\nIf multiple reviewers are required, IdentityNow sends the request to the next reviewer in the queue, based on the access request configuration's approval reminder and escalation configuration.\nThe required approver can then view any completed access requests under the Reviewed tab.\n\nRefer to [Access Requests](https://documentation.sailpoint.com/saas/help/requests/index.html) for more information about access request approvals.\n", "item": [ { - "id": "a5af0f07-c0ce-42f9-9c5f-0ff990461c39", + "id": "175c960c-0791-481f-b818-041d08a12b12", "name": "Pending Access Request Approvals List", "request": { "name": "Pending Access Request Approvals List", @@ -4115,7 +4115,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -4151,7 +4151,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -4160,7 +4160,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -4176,7 +4176,7 @@ }, "response": [ { - "id": "b4ac3eeb-a68a-4a9d-865c-2d64e7a78d04", + "id": "a0a323d1-5c25-4ec3-b858-7659af81ff8d", "name": "List of Pending Approvals.", "originalRequest": { "url": { @@ -4195,7 +4195,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -4231,7 +4231,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -4240,7 +4240,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -4275,7 +4275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14b2cd2e-4886-456f-80e2-a6f7b622a573", + "id": "526aa7fa-053f-4101-90f5-548b98fb56fd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -4294,7 +4294,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -4330,7 +4330,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -4339,7 +4339,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -4374,7 +4374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "170a5227-eac7-426a-9610-e029cf1a3371", + "id": "c283977a-0414-49de-b092-b1afe2ba5ea2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -4393,7 +4393,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -4429,7 +4429,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -4438,7 +4438,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -4473,7 +4473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32d3766c-c844-476d-92ea-21a9a1a7e9c7", + "id": "6549c7ea-5535-4142-af56-39f29c7e5ccc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -4492,7 +4492,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -4528,7 +4528,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -4537,7 +4537,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -4572,7 +4572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbc5db05-7327-4a64-9a8c-7e9af7e8cd78", + "id": "33bf7c30-363e-49bb-b374-78fc227a5d3b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4591,7 +4591,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -4627,7 +4627,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -4636,7 +4636,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -4677,7 +4677,7 @@ } }, { - "id": "28f38b8e-4726-44c6-a866-abc0415e69a4", + "id": "241f4d33-ce52-4277-9e7c-f3ff552180d3", "name": "Completed Access Request Approvals List", "request": { "name": "Completed Access Request Approvals List", @@ -4701,7 +4701,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -4737,7 +4737,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -4746,7 +4746,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -4762,7 +4762,7 @@ }, "response": [ { - "id": "5de68fde-dcb8-4f83-b61b-6f4f39d611c5", + "id": "f21aebaa-1794-4ef2-9cb3-c7b10bc9e2e6", "name": "List of Completed Approvals.", "originalRequest": { "url": { @@ -4781,7 +4781,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -4817,7 +4817,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -4826,7 +4826,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -4856,12 +4856,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"2c938083633d259901633d25c68c00fa\",\n \"name\": \"Approval Name\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-07-25T20:22:28.104Z\",\n \"requestCreated\": \"2017-07-11T18:45:35.098Z\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n },\n \"requestedFor\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n }\n ],\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"requestedObject\": {\n \"id\": \"2c938083633d259901633d25c68c00fa\",\n \"name\": \"Object Name\",\n \"description\": \"Object Description\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"reviewerComment\": {\n \"comment\": \"This is a comment.\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Adam Kennedy\"\n },\n \"created\": \"2017-07-11T18:45:37.098Z\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": true,\n \"state\": \"APPROVED\",\n \"removeDate\": \"2020-07-11T00:00:00Z\",\n \"removeDateUpdateRequested\": true,\n \"currentRemoveDate\": \"2020-07-11T00:00:00Z\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"f73d16e9-a038-46c5-b217-1246e15fdbdd\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n }\n ]\n }\n },\n \"preApprovalTriggerResult\": {\n \"comment\": \"This request was autoapproved by our automated ETS subscriber\",\n \"decision\": \"APPROVED\",\n \"reviewer\": \"Automated AR Approval\",\n \"date\": \"2022-06-07T19:18:40.748Z\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"requestedAccounts\": \"ut reprehenderit\"\n },\n {\n \"id\": \"2c938083633d259901633d25c68c00fa\",\n \"name\": \"Approval Name\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-07-25T20:22:28.104Z\",\n \"requestCreated\": \"2017-07-11T18:45:35.098Z\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n },\n \"requestedFor\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n }\n ],\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"requestedObject\": {\n \"id\": \"2c938083633d259901633d25c68c00fa\",\n \"name\": \"Object Name\",\n \"description\": \"Object Description\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"reviewerComment\": {\n \"comment\": \"This is a comment.\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Adam Kennedy\"\n },\n \"created\": \"2017-07-11T18:45:37.098Z\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": true,\n \"state\": \"APPROVED\",\n \"removeDate\": \"2020-07-11T00:00:00Z\",\n \"removeDateUpdateRequested\": true,\n \"currentRemoveDate\": \"2020-07-11T00:00:00Z\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"f73d16e9-a038-46c5-b217-1246e15fdbdd\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n }\n ]\n }\n },\n \"preApprovalTriggerResult\": {\n \"comment\": \"This request was autoapproved by our automated ETS subscriber\",\n \"decision\": \"APPROVED\",\n \"reviewer\": \"Automated AR Approval\",\n \"date\": \"2022-06-07T19:18:40.748Z\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"requestedAccounts\": \"occaecat mollit non laboris\"\n }\n]", + "body": "[\n {\n \"id\": \"2c938083633d259901633d25c68c00fa\",\n \"name\": \"Approval Name\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-07-25T20:22:28.104Z\",\n \"requestCreated\": \"2017-07-11T18:45:35.098Z\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n },\n \"requestedFor\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n }\n ],\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"requestedObject\": {\n \"id\": \"2c938083633d259901633d25c68c00fa\",\n \"name\": \"Object Name\",\n \"description\": \"Object Description\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"reviewerComment\": {\n \"comment\": \"This is a comment.\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Adam Kennedy\"\n },\n \"created\": \"2017-07-11T18:45:37.098Z\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": true,\n \"state\": \"APPROVED\",\n \"removeDate\": \"2020-07-11T00:00:00Z\",\n \"removeDateUpdateRequested\": true,\n \"currentRemoveDate\": \"2020-07-11T00:00:00Z\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"f73d16e9-a038-46c5-b217-1246e15fdbdd\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n }\n ]\n }\n },\n \"preApprovalTriggerResult\": {\n \"comment\": \"This request was autoapproved by our automated ETS subscriber\",\n \"decision\": \"APPROVED\",\n \"reviewer\": \"Automated AR Approval\",\n \"date\": \"2022-06-07T19:18:40.748Z\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"requestedAccounts\": \"Excepteur dolore laboris culpa\"\n },\n {\n \"id\": \"2c938083633d259901633d25c68c00fa\",\n \"name\": \"Approval Name\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-07-25T20:22:28.104Z\",\n \"requestCreated\": \"2017-07-11T18:45:35.098Z\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n },\n \"requestedFor\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n }\n ],\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"requestedObject\": {\n \"id\": \"2c938083633d259901633d25c68c00fa\",\n \"name\": \"Object Name\",\n \"description\": \"Object Description\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"reviewerComment\": {\n \"comment\": \"This is a comment.\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Adam Kennedy\"\n },\n \"created\": \"2017-07-11T18:45:37.098Z\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": true,\n \"state\": \"APPROVED\",\n \"removeDate\": \"2020-07-11T00:00:00Z\",\n \"removeDateUpdateRequested\": true,\n \"currentRemoveDate\": \"2020-07-11T00:00:00Z\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"f73d16e9-a038-46c5-b217-1246e15fdbdd\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n }\n ]\n }\n },\n \"preApprovalTriggerResult\": {\n \"comment\": \"This request was autoapproved by our automated ETS subscriber\",\n \"decision\": \"APPROVED\",\n \"reviewer\": \"Automated AR Approval\",\n \"date\": \"2022-06-07T19:18:40.748Z\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"requestedAccounts\": \"dolore\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5df3264e-8b10-4319-ad50-bf54e2e88a31", + "id": "22252d3f-70ef-4812-b4c4-5b4ae9afd696", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -4880,7 +4880,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -4916,7 +4916,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -4925,7 +4925,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -4960,7 +4960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a070f5a-5493-4318-bd53-e9aad235e3ef", + "id": "4098f72b-fd90-444c-945e-fae1782e91e9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -4979,7 +4979,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -5015,7 +5015,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -5024,7 +5024,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -5059,7 +5059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74a45003-4b71-40bd-896b-4e7b4398ea53", + "id": "e401e007-508c-47a6-a78c-45cd235d1e53", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -5078,7 +5078,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -5114,7 +5114,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -5123,7 +5123,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -5158,7 +5158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff6a8f56-7f24-4656-80c1-2e8017804a39", + "id": "6345507e-ecc5-4dac-8a6c-febbe57a6a1e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5177,7 +5177,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -5213,7 +5213,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -5222,7 +5222,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -5263,7 +5263,7 @@ } }, { - "id": "1d9adc9c-4fe4-43da-abc1-8310f8209e2a", + "id": "3e228909-66ea-4ff2-8cbe-e777cc43a143", "name": "Approves an access request approval.", "request": { "name": "Approves an access request approval.", @@ -5318,7 +5318,7 @@ }, "response": [ { - "id": "362dddb5-ac89-413a-9399-6b61df724e04", + "id": "dc446a6f-bee1-4e0c-b2fd-185932a721c6", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -5376,7 +5376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73999077-b5de-4f65-8397-fa12e3097bf9", + "id": "e5ee003d-1de5-48d6-99ad-c53fc752cb46", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -5434,7 +5434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a52b4dd4-2873-4698-9d1f-f84957c71235", + "id": "c8ba77fb-f534-4429-a79d-c9e87911e919", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -5492,7 +5492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff37d7b3-5d44-418c-aaaf-2deb4ffa9c9d", + "id": "25a74941-66c6-45ac-b1c2-a3739ec37a6b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -5550,7 +5550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8479afef-f8e3-4e56-862f-21f86ddaf71e", + "id": "ccd98131-2d0f-4dc9-8eda-de96638d6885", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -5608,7 +5608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baf00e89-3486-43ea-8f67-4c7e05725d56", + "id": "f492c94f-6108-409b-bc91-93a5c6952488", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5672,7 +5672,7 @@ } }, { - "id": "7dc16358-562d-4a83-ac6b-03d29b7dcb3f", + "id": "9a746833-e14d-4c13-8f45-c90ded4a6216", "name": "Rejects an access request approval.", "request": { "name": "Rejects an access request approval.", @@ -5727,7 +5727,7 @@ }, "response": [ { - "id": "1b447492-067a-4349-bd9f-4ef2ac1b0068", + "id": "b3b85ae6-f690-486a-9b33-6512844730c6", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -5785,7 +5785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa260893-05c6-4ee4-9254-d1feaf425a20", + "id": "37fdfcc6-c92b-47a2-9551-98ad2202221a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5843,7 +5843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b4fe430-eeb1-42ef-ae23-09bbcb56b9e4", + "id": "9e2026df-8711-4299-8c1f-19069ba47c57", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -5901,7 +5901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6ee795a-d6cd-4ae3-a1cd-38e1a9850a50", + "id": "462ca48c-f26b-4f31-baea-e032895cbee8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -5959,7 +5959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a7a9dbe-c00d-49f3-886a-aaf376ade191", + "id": "8962cc80-66e9-4a89-8616-6185d3e0c3c0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -6017,7 +6017,7 @@ "_postman_previewlanguage": "json" }, { - "id": "632c5326-b0b5-4016-96de-7863f5c05acc", + "id": "f8babfae-f798-478c-90a2-0996114ffcd7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -6075,7 +6075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f66c79fc-c127-4bd2-8584-4066272d561a", + "id": "1a4a68e4-7e06-4053-aaeb-f8e213267daf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6139,7 +6139,7 @@ } }, { - "id": "c2d0610a-b538-4e1c-bc75-3a5f45648d1b", + "id": "30ae1f86-5f26-44ef-9772-3fbd67999d1e", "name": "Forwards an access request approval to a new owner.", "request": { "name": "Forwards an access request approval to a new owner.", @@ -6183,7 +6183,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"esse aliqua ullamco\",\n \"comment\": \"officia voluptate Excepteur\"\n}", + "raw": "{\n \"newOwnerId\": \"id veniam\",\n \"comment\": \"officia nisi eiusmod\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6194,7 +6194,7 @@ }, "response": [ { - "id": "ddc7acd7-5851-42b1-8419-684d026ddc33", + "id": "2cd8a585-ff91-4111-92f4-03e12f76e251", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -6230,7 +6230,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"esse aliqua ullamco\",\n \"comment\": \"officia voluptate Excepteur\"\n}", + "raw": "{\n \"newOwnerId\": \"id veniam\",\n \"comment\": \"officia nisi eiusmod\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6252,7 +6252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fad783fb-21bd-44e4-a402-98817a280a76", + "id": "afa88a07-b06e-46ab-aab8-c1f3e5f12e84", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -6288,7 +6288,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"esse aliqua ullamco\",\n \"comment\": \"officia voluptate Excepteur\"\n}", + "raw": "{\n \"newOwnerId\": \"id veniam\",\n \"comment\": \"officia nisi eiusmod\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6310,7 +6310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75fe98e9-690b-4798-baae-b344c24d57de", + "id": "705ea41f-d528-4f9e-8e13-db20f8ed597b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -6346,7 +6346,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"esse aliqua ullamco\",\n \"comment\": \"officia voluptate Excepteur\"\n}", + "raw": "{\n \"newOwnerId\": \"id veniam\",\n \"comment\": \"officia nisi eiusmod\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6368,7 +6368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34bfc1f6-7504-4a8b-bd08-396009ccfabb", + "id": "675a4715-08db-4377-ae0c-1e7c7216fce9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -6404,7 +6404,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"esse aliqua ullamco\",\n \"comment\": \"officia voluptate Excepteur\"\n}", + "raw": "{\n \"newOwnerId\": \"id veniam\",\n \"comment\": \"officia nisi eiusmod\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6426,7 +6426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f7bb57f-69fa-4d74-89e6-f9e41c229134", + "id": "a22ff9f3-6a17-4256-aace-5f9e95012020", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -6462,7 +6462,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"esse aliqua ullamco\",\n \"comment\": \"officia voluptate Excepteur\"\n}", + "raw": "{\n \"newOwnerId\": \"id veniam\",\n \"comment\": \"officia nisi eiusmod\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6484,7 +6484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11698433-fed4-4a9f-9285-7830a6378a52", + "id": "1028d8b2-3bd0-40dc-8300-4864bf868fb9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -6520,7 +6520,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"esse aliqua ullamco\",\n \"comment\": \"officia voluptate Excepteur\"\n}", + "raw": "{\n \"newOwnerId\": \"id veniam\",\n \"comment\": \"officia nisi eiusmod\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6542,7 +6542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5b4df58-76d1-43a4-8b95-eb1f31c64179", + "id": "26fb0474-636e-4adc-96c9-c7b18c26b4d5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6578,7 +6578,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"esse aliqua ullamco\",\n \"comment\": \"officia voluptate Excepteur\"\n}", + "raw": "{\n \"newOwnerId\": \"id veniam\",\n \"comment\": \"officia nisi eiusmod\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6606,7 +6606,7 @@ } }, { - "id": "1c054342-3f5e-4d09-90d7-2a97179fad8d", + "id": "e1042a09-ee7d-41c5-a7af-f53ab7af3b7a", "name": "Get the number of pending, approved and rejected access requests approvals", "request": { "name": "Get the number of pending, approved and rejected access requests approvals", @@ -6630,7 +6630,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -6639,7 +6639,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -6655,7 +6655,7 @@ }, "response": [ { - "id": "8b894596-c796-474b-82ec-6b2dd6e72c78", + "id": "ef96dfd3-9b0b-4815-968b-f90f44f9d2f1", "name": "Number of pending, approved, rejected access request approvals.", "originalRequest": { "url": { @@ -6674,7 +6674,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -6683,7 +6683,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -6713,12 +6713,12 @@ "value": "application/json" } ], - "body": "{\n \"pending\": -24991863,\n \"approved\": 65677628,\n \"rejected\": 47365134\n}", + "body": "{\n \"pending\": 60838023,\n \"approved\": -1267778,\n \"rejected\": -72779895\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "55b3fa86-2eab-4d9a-a175-5a845b55c21a", + "id": "0526e86d-dec0-4ca2-87bd-fe33fd5ce044", "name": "Client Error - Returned if the query parameter is invalid.", "originalRequest": { "url": { @@ -6737,7 +6737,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -6746,7 +6746,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -6781,7 +6781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c7afb0c-09dc-427e-ac8f-25f471c42741", + "id": "642b2ed1-f6cd-434f-be87-095baa78d41e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -6800,7 +6800,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -6809,7 +6809,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -6844,7 +6844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad40034c-d8f1-4506-be79-675d7fd154f2", + "id": "c2f45be5-45f8-4142-9e7b-bf8a3f5a7aba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -6863,7 +6863,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -6872,7 +6872,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -6907,7 +6907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb91d6c5-8fd4-4914-ac25-2b01e4f60056", + "id": "08c28707-a552-45f0-bed9-ad9c5c07d783", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -6926,7 +6926,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -6935,7 +6935,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -6970,7 +6970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99c12874-e106-440e-9adf-2e833dea35ad", + "id": "defa2df5-61bb-49a1-93b1-61b2c52c1934", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6989,7 +6989,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -6998,7 +6998,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -7045,7 +7045,7 @@ "description": "Use this API to implement and customize access request functionality.\nWith this functionality in place, users can request access to applications, entitlements, or roles, and managers can request that team members' access be revoked.\nThis allows users to get access to the tools they need quickly and securely, and it allows managers to take away access to those tools.\n\nIdentityNow's Access Request service allows end users to request access that requires approval before it can be granted to users and enables qualified users to review those requests and approve or deny them.\n\nIn the Request Center in IdentityNow, users can view available applications, roles, and entitlements and request access to them.\nIf the requested tools requires approval, the requests appear as 'Pending' under the My Requests tab until the required approver approves, rejects, or cancels them.\n\nUsers can use My Requests to track and/or cancel the requests.\n\nIn My Team on the IdentityNow Home, managers can submit requests to revoke their team members' access.\nThey can use the My Requests tab under Request Center to track and/or cancel the requests.\n\nRefer to [Requesting Access](https://documentation.sailpoint.com/saas/user-help/requests/requesting_access.html) for more information about access requests.\n", "item": [ { - "id": "c24e737c-8200-458f-affe-f589dca7a704", + "id": "1b01e3e4-49f0-4b9b-bbba-7bf189c90f0b", "name": "Submit an Access Request", "request": { "name": "Submit an Access Request", @@ -7087,7 +7087,7 @@ }, "response": [ { - "id": "c092d791-22af-4431-9ead-e1098c3da41d", + "id": "6b1f1a90-0bc8-4065-82db-a04671b343f1", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7143,7 +7143,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb0ac223-a712-4b2d-b834-83391a555724", + "id": "e9c72206-7cd7-4180-8851-9fe39853fff0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7199,7 +7199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b005694-83f1-47a5-93d1-f2a319a33efb", + "id": "051a33c4-152e-42a0-a424-d809c700df5e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -7255,7 +7255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89f9f994-3563-44b4-b511-57fc27dd19ec", + "id": "9d280f86-e987-4cdd-94f5-6551aae151ae", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -7311,7 +7311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fa0f74c-a4d1-4e5a-ad84-8fa589f72e00", + "id": "1cbf8eca-0a88-4f71-bad0-5ff96e6faed8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -7367,7 +7367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d58ff12-7c47-4aa7-905d-e46698f86d9c", + "id": "0bdcd8fe-05de-4e82-b13a-cc04daec5164", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7429,7 +7429,7 @@ } }, { - "id": "4734435e-f022-4f4f-9763-de64b872c1a4", + "id": "1934ced3-c860-4e67-bebf-aa6b08466e2a", "name": "Cancel Access Request", "request": { "name": "Cancel Access Request", @@ -7472,7 +7472,7 @@ }, "response": [ { - "id": "7d1c829d-2dfc-4436-904d-bf7520a2f793", + "id": "f3911a73-e25b-49d5-b437-361bc181f542", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7529,7 +7529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b05edf19-05e9-4e32-ad13-5a8b2882835e", + "id": "390c748d-0638-4749-8baf-e03ffd039e56", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7586,7 +7586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f3aab53-3120-4db0-819e-be64b1aa307d", + "id": "16a7d1d3-607c-401c-905a-a8421855a242", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -7643,7 +7643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7d167d0-cd41-49a4-b5c9-888975f4f697", + "id": "64506cb9-9f1d-4040-91a9-11aa4e2b5eb2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -7700,7 +7700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "528fafd9-5ead-40d3-9fc7-9019b48a92e4", + "id": "c3159072-62e4-45d4-a4f5-dd0f03835156", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -7757,7 +7757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdf543bf-2be0-4ba4-af14-74dae6e8c30d", + "id": "f809ae94-0ecd-47d1-a988-7d082af63b36", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -7814,7 +7814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a2102c0-4c12-4653-8438-208322c9230f", + "id": "5c124756-0f54-4a7b-88c3-f81f346c70e8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7877,7 +7877,7 @@ } }, { - "id": "2b3b6273-67a4-4d11-9d7b-241e6d8b47b5", + "id": "7fe36805-bfc2-4f21-8242-23deb1366d1b", "name": "Close Access Request", "request": { "name": "Close Access Request", @@ -7920,7 +7920,7 @@ }, "response": [ { - "id": "d395c11f-49ed-4f05-acdc-30fdfa5e9f2b", + "id": "27fc7e03-dab0-4788-a35c-aceed7d8111b", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7977,7 +7977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7049961-712b-425f-803f-4e9f85629176", + "id": "344bfbcb-e951-4de3-bbbd-a3fa44283d3e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8034,7 +8034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af218046-4a30-4636-84dd-25f09e5a17c1", + "id": "206c6598-7378-4ecc-be5a-f1488f3ccd52", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -8091,7 +8091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f43e6922-d493-40b5-8ebe-70b302812f7d", + "id": "4ebf59af-eac0-4a8d-a1aa-2b0520eb9023", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -8148,7 +8148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0eeb6c43-80cf-4960-b1aa-6cb1c8cac5df", + "id": "0b249515-d5ed-4df9-9114-acfd36576f62", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -8205,7 +8205,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e51c7708-71ec-4c45-b606-403530462e2d", + "id": "1c171f24-d499-4112-bac9-203c9c8cf88b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8268,7 +8268,7 @@ } }, { - "id": "2b60b375-496d-4625-bfa4-b1eedd09c700", + "id": "1d59e613-01a5-4ca9-95f5-1e8a7762342f", "name": "Get Access Request Configuration", "request": { "name": "Get Access Request Configuration", @@ -8297,7 +8297,7 @@ }, "response": [ { - "id": "3be29b69-d576-4000-a224-881ec09d2f93", + "id": "323f8d97-a838-4c85-a878-d01d0f79c5b4", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -8340,7 +8340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b0a769f-bd79-4a69-891e-65483af74f85", + "id": "fdfb788c-d64d-49fe-964f-c3f925289474", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8383,7 +8383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "206065ac-76b1-4a50-bb9c-9d02b947a2ff", + "id": "a7cf50a3-a667-44ba-993b-6e77a9c8a0f8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -8426,7 +8426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbd1bcea-60de-4a1a-bd62-6bae272548fd", + "id": "ac6a1e7f-407f-400b-979d-dca2e61baadc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -8469,7 +8469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d27ba64-0787-4ab5-ad4e-7d5ecc8a613a", + "id": "6dc81e97-5170-47eb-a94a-8cc1714447bb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -8512,7 +8512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce3784dd-f7b3-4d46-9c59-d1a5862b895d", + "id": "d962fbbf-63f7-4629-884d-b33793a3dc83", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8561,7 +8561,7 @@ } }, { - "id": "dc2318cb-c717-4dbc-853f-2130bfeb06e1", + "id": "2d476159-dc61-4f73-bd93-5b6298a55490", "name": "Update Access Request Configuration", "request": { "name": "Update Access Request Configuration", @@ -8603,7 +8603,7 @@ }, "response": [ { - "id": "097e77fe-924e-41fd-ae9a-503c19d6fb71", + "id": "8b8db3b0-9c23-4e63-a906-601454590247", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -8659,7 +8659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05024495-a566-4b6e-94d6-619b1d347d17", + "id": "08888ae3-0d60-42ce-81cf-fc64d7b1ff5d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8715,7 +8715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99e2f655-50f1-478d-9987-d06f3a4c8150", + "id": "ce810653-7692-4db2-93d4-30f30156ad5a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -8771,7 +8771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5907336f-71cf-4556-b256-68bfad683929", + "id": "f48f0874-4b81-4228-9f67-63c388daa413", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -8827,7 +8827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35996dc5-ad89-4d49-9247-2e6f8bf9e351", + "id": "2bbd3788-8528-4644-9c1a-2ee8c3c54ba1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -8883,7 +8883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08709cd3-bb79-457d-aa9b-5bbaf9f0b6b8", + "id": "889620ab-6bc4-4194-a301-752b201c8324", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8945,7 +8945,7 @@ } }, { - "id": "3bf9481c-d78f-4cd6-9678-8d5fe9fdb0e5", + "id": "e4c23b4d-bcbd-4aa5-878a-e769dc03bfcd", "name": "Access Request Status", "request": { "name": "Access Request Status", @@ -9056,7 +9056,7 @@ }, "response": [ { - "id": "eefd8978-8faa-44db-9689-e93c87cf6a86", + "id": "5f85e09a-c97b-4938-ba5f-08bda99568a2", "name": "List of requested item status.", "originalRequest": { "url": { @@ -9181,7 +9181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae56dd85-451c-41ca-b593-3fee3c0d9375", + "id": "895f0a86-3c75-44b7-850a-9835464ac053", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9306,7 +9306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35bb8794-6521-4b62-ab54-d80a1940094c", + "id": "96bc88b4-821d-4b37-9263-9eb444cc1c05", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -9431,7 +9431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea4682a5-b580-441d-bbc4-e1b34f4805d0", + "id": "b3fe06d6-4146-47f5-8202-87e5f0f8eb47", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -9556,7 +9556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bc04c92-9a69-485e-9996-c6945ae15d46", + "id": "02322d48-5451-4364-8ffb-f8aa2d5a473f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -9681,7 +9681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b6b0a43-7af8-49f1-9c58-afefe7431ad8", + "id": "681ec65c-af2f-4696-ae01-b13505bac71d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -9818,7 +9818,7 @@ "description": "Use this API to implement access request identity metrics functionality.\nWith this functionality in place, access request reviewers can see relevant details about the requested access item and associated source activity. \nThis allows reviewers to see how many of the identities who share a manager with the access requester have this same type of access and how many of them have had activity in the related source. \nThis additional context about whether the access has been granted before and how often it has been used can help those approving access requests make more informed decisions.\n", "item": [ { - "id": "ef53573e-72ae-4c04-95e1-53680cc97820", + "id": "62a9b02a-c4b3-468f-948a-c15b299c4baf", "name": "Return access request identity metrics", "request": { "name": "Return access request identity metrics", @@ -9883,7 +9883,7 @@ }, "response": [ { - "id": "700ad45b-a10f-4d58-9196-5ef106d01b53", + "id": "b1ed67b5-84c0-4950-b255-6e14b80152f7", "name": "Summary of the resource access and source activity for the direct reports of the provided manager.", "originalRequest": { "url": { @@ -9931,7 +9931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27e6dc1c-7d18-404e-bb1b-b53d572f7fcc", + "id": "f075350d-a4ca-4775-8643-ff771cde4724", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9979,7 +9979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da420401-e5be-4593-923b-e36867851b03", + "id": "caa62563-214c-4160-9c9a-c9775b415adf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10027,7 +10027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88451127-26be-40d8-9c76-f398e10a06ec", + "id": "87b63c2d-03e2-406a-8d14-29437f911fb8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10075,7 +10075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "323857ee-1686-4ee4-a6f9-e793468190c2", + "id": "99ca5d33-4a7e-4d28-bc57-b7a65ef0fd27", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10123,7 +10123,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdf1f52f-c821-4585-84cb-664cd1d90ad1", + "id": "bc942fe6-fbad-4a7e-8e61-47c8591919aa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10183,7 +10183,7 @@ "description": "Use this API to implement account activity tracking functionality.\nWith this functionality in place, users can track source account activity in IdentityNow, which greatly improves traceability in the system.\n\nAn account activity refers to a log of each action performed on a source account. This is useful for auditing the changes that occur on an account throughout its life.\nIn IdentityNow's Search, users can search for account activities and select the activity's row to get an overview of the activity's account action and view its progress, its involved sources, and its most basic metadata, such as the identity requesting the option and the recipient.\n\nAccount activity includes most actions IdentityNow completes on source accounts. Users can search in IdentityNow for the following account action types:\n\n- Access Request: These include any access requests the source account is involved in.\n\n- Account Attribute Updates: These include updates to a single attribute on an account on a source.\n\n- Account State Update: These include locking or unlocking actions on an account on a source.\n\n- Certification: These include actions removing an entitlement from an account on a source as a result of the entitlement's revocation during a certification.\n\n- Cloud Automated `Lifecyclestate`: These include automated lifecycle state changes that result in a source account's correlated identity being assigned to a different lifecycle state.\nIdentityNow replaces the `Lifecyclestate` variable with the name of the lifecycle state it has moved the account's identity to.\n\n- Identity Attribute Update: These include updates to a source account's correlated identity attributes as the result of a provisioning action.\nWhen you update an identity attribute that also updates an identity's lifecycle state, the cloud automated `Lifecyclestate` event also displays.\nAccount Activity does not include attribute updates that occur as a result of aggregation.\n\n- Identity Refresh: These include correlated identity refreshes that occur for an account on a source whenever the account's correlated identity profile gets a new role or updates.\nThese also include refreshes that occur whenever IdentityNow assigns an application to the account's correlated identity based on the application's being assigned to All Users From Source or Specific Users From Source.\n\n- Lifecycle State Refresh: These include the actions that took place when a lifecycle state changed. This event only occurs after a cloud automated `Lifecyclestate` change or a lifecycle state change.\n\n- Lifecycle State Change: These include the account activities that result from an identity's manual assignment to a null lifecycle state.\n\n- Password Change: These include password changes on sources.\n\nRefer to [Account Activity](https://documentation.sailpoint.com/saas/help/search/index.html#account-activity) for more information about account activities.\n", "item": [ { - "id": "096e1695-8d90-415b-baab-9ecb5e26772e", + "id": "92600843-c766-48ad-bf92-a3a06ff3de43", "name": "List Account Activities", "request": { "name": "List Account Activities", @@ -10206,7 +10206,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10215,7 +10215,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10224,7 +10224,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10233,7 +10233,7 @@ "type": "text/plain" }, "key": "type", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10269,7 +10269,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10278,7 +10278,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -10294,7 +10294,7 @@ }, "response": [ { - "id": "874137fa-7676-4ee5-94ae-ad1e73c6ef3d", + "id": "430ef649-3f91-4c72-95c4-c5dd4852009d", "name": "List of account activities", "originalRequest": { "url": { @@ -10312,7 +10312,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10321,7 +10321,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10330,7 +10330,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10339,7 +10339,7 @@ "type": "text/plain" }, "key": "type", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10375,7 +10375,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10384,7 +10384,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -10414,12 +10414,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"2c9180835d2e5168015d32f890ca1581\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"completionStatus\": \"SUCCESS\",\n \"type\": \"appRequest\",\n \"requesterIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"targetIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"errors\": [\n \"sailpoint.connector.ConnectorException: java.lang.InterruptedException: Timeout waiting for response to message 0 from client 57a4ab97-ab3f-4aef-9fe2-0eaf15c73d26 after 60 seconds.\"\n ],\n \"warnings\": null,\n \"items\": [\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n },\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n }\n ],\n \"executionStatus\": \"COMPLETED\",\n \"clientMetadata\": {\n \"nostrudd8_\": \"voluptate officia ex\",\n \"Lorem0\": \"non Lorem reprehenderit\"\n },\n \"cancelable\": false,\n \"cancelComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n }\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"2c9180835d2e5168015d32f890ca1581\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"completionStatus\": \"SUCCESS\",\n \"type\": \"appRequest\",\n \"requesterIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"targetIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"errors\": [\n \"sailpoint.connector.ConnectorException: java.lang.InterruptedException: Timeout waiting for response to message 0 from client 57a4ab97-ab3f-4aef-9fe2-0eaf15c73d26 after 60 seconds.\"\n ],\n \"warnings\": null,\n \"items\": [\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n },\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n }\n ],\n \"executionStatus\": \"COMPLETED\",\n \"clientMetadata\": {\n \"ut_d1\": \"in quis et\",\n \"sit_3a\": \"Excep\",\n \"ea_66\": \"pariatur dolore qui\"\n },\n \"cancelable\": false,\n \"cancelComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"2c9180835d2e5168015d32f890ca1581\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"completionStatus\": \"SUCCESS\",\n \"type\": \"appRequest\",\n \"requesterIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"targetIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"errors\": [\n \"sailpoint.connector.ConnectorException: java.lang.InterruptedException: Timeout waiting for response to message 0 from client 57a4ab97-ab3f-4aef-9fe2-0eaf15c73d26 after 60 seconds.\"\n ],\n \"warnings\": null,\n \"items\": [\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n },\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n }\n ],\n \"executionStatus\": \"COMPLETED\",\n \"clientMetadata\": {\n \"laboris8\": \"ea\",\n \"ad_9\": \"aliqui\",\n \"ut_8\": \"ad eu incididunt\"\n },\n \"cancelable\": true,\n \"cancelComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n }\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"2c9180835d2e5168015d32f890ca1581\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"completionStatus\": \"SUCCESS\",\n \"type\": \"appRequest\",\n \"requesterIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"targetIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"errors\": [\n \"sailpoint.connector.ConnectorException: java.lang.InterruptedException: Timeout waiting for response to message 0 from client 57a4ab97-ab3f-4aef-9fe2-0eaf15c73d26 after 60 seconds.\"\n ],\n \"warnings\": null,\n \"items\": [\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n },\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n }\n ],\n \"executionStatus\": \"COMPLETED\",\n \"clientMetadata\": {\n \"qui69\": \"cillum id anim nostrud Excepteur\",\n \"sed_ef\": \"consequat ea\"\n },\n \"cancelable\": true,\n \"cancelComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "04eba024-160c-4f13-a0ae-85a955bfa170", + "id": "84fce333-a120-4de6-afd4-23874dc4a764", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10437,7 +10437,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10446,7 +10446,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10455,7 +10455,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10464,7 +10464,7 @@ "type": "text/plain" }, "key": "type", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10500,7 +10500,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10509,7 +10509,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -10544,7 +10544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "610cc095-3a3e-4d05-b7fc-a48c8c767be7", + "id": "5745331c-2eab-4c5a-993b-9e9c9150947a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10562,7 +10562,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10571,7 +10571,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10580,7 +10580,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10589,7 +10589,7 @@ "type": "text/plain" }, "key": "type", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10625,7 +10625,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10634,7 +10634,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -10669,7 +10669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "653b29b6-871e-4a4e-b393-d9d8d1a65520", + "id": "a7cf2c1b-9512-4e30-bbff-8b295345cc49", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10687,7 +10687,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10696,7 +10696,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10705,7 +10705,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10714,7 +10714,7 @@ "type": "text/plain" }, "key": "type", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10750,7 +10750,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10759,7 +10759,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -10794,7 +10794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de56f3d7-56ae-4baf-893a-fd69323ea7ef", + "id": "be9093d2-3f25-49eb-8b4f-ade47d561b8d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10812,7 +10812,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10821,7 +10821,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10830,7 +10830,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10839,7 +10839,7 @@ "type": "text/plain" }, "key": "type", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10875,7 +10875,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10884,7 +10884,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -10919,7 +10919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "211c56dc-a8bd-44bb-9fec-100d0e87a380", + "id": "86c19a41-b49f-4d51-a5e7-1d9f60ce5006", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10937,7 +10937,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10946,7 +10946,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10955,7 +10955,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -10964,7 +10964,7 @@ "type": "text/plain" }, "key": "type", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -11000,7 +11000,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -11009,7 +11009,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -11050,7 +11050,7 @@ } }, { - "id": "d44e31a4-ac32-4bdf-a00b-6e7fe3755b77", + "id": "14ff4c18-175b-415d-9cf5-98ccef5a5059", "name": "Get Account Activity", "request": { "name": "Get Account Activity", @@ -11091,7 +11091,7 @@ }, "response": [ { - "id": "797c82d5-546b-4150-923e-704867e01b01", + "id": "7794ceac-0893-4cca-9b8f-8dbbd0af6954", "name": "An account activity object", "originalRequest": { "url": { @@ -11130,12 +11130,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"2c9180835d2e5168015d32f890ca1581\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"completionStatus\": \"SUCCESS\",\n \"type\": \"appRequest\",\n \"requesterIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"targetIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"errors\": [\n \"sailpoint.connector.ConnectorException: java.lang.InterruptedException: Timeout waiting for response to message 0 from client 57a4ab97-ab3f-4aef-9fe2-0eaf15c73d26 after 60 seconds.\"\n ],\n \"warnings\": null,\n \"items\": [\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n },\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n }\n ],\n \"executionStatus\": \"COMPLETED\",\n \"clientMetadata\": {\n \"amet560\": \"nostrud in\",\n \"laboris_40\": \"irure sint nisi deserunt labore\"\n },\n \"cancelable\": false,\n \"cancelComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n }\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"2c9180835d2e5168015d32f890ca1581\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"completionStatus\": \"SUCCESS\",\n \"type\": \"appRequest\",\n \"requesterIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"targetIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"errors\": [\n \"sailpoint.connector.ConnectorException: java.lang.InterruptedException: Timeout waiting for response to message 0 from client 57a4ab97-ab3f-4aef-9fe2-0eaf15c73d26 after 60 seconds.\"\n ],\n \"warnings\": null,\n \"items\": [\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n },\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n }\n ],\n \"executionStatus\": \"COMPLETED\",\n \"clientMetadata\": {\n \"commodo96\": \"dolore\",\n \"dolore_9\": \"in enim\"\n },\n \"cancelable\": true,\n \"cancelComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "80b4945a-90d0-4b48-8af7-7d875262f43e", + "id": "fc971d1b-6b9e-4feb-aff3-ef88090f1bb2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11179,7 +11179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7518c904-335c-4aff-9671-877326ff0241", + "id": "7f248b86-86df-4dca-9029-93dd3fb2de96", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11223,7 +11223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44645a27-b05c-4538-a1e7-b110ec47a9b1", + "id": "2ed899db-2b3f-4327-a6a1-9c21426582dc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11267,7 +11267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf21bcb7-550e-4a47-8f62-6cf5bdf8fa56", + "id": "c4adf3cc-4c23-4535-9f42-7923df353eac", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -11311,7 +11311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dba6bec7-32cf-43d6-866d-0f939bde32bf", + "id": "8a762663-4597-44a2-8e93-314bfab5c380", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11355,7 +11355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4729aa2e-58d2-4bc0-8d96-5a437749ff60", + "id": "d6146db6-bd91-4c85-982b-dce03d3d7d51", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11411,7 +11411,7 @@ "description": "Use this API to implement account aggregation progress tracking functionality.\nWith this functionality in place, administrators can view in-progress account aggregations, their statuses, and their relevant details.\n\nAn account aggregation refers to the process IdentityNow uses to gather and load account data from a source into IdentityNow.\n\nWhenever IdentityNow is in the process of aggregating a source, it adds an entry to the Aggregation Activity Log, along with its relevant details.\nTo view aggregation activity, administrators can select the Connections drop-down menu, select Sources, and select the relevant source, select its Import Data tab, and select Account Aggregation.\nIn Account Aggregation, administrators can view the account aggregations' statuses and details in the Account Activity Log.\n\nRefer to [Loading Account Data](https://documentation.sailpoint.com/saas/help/accounts/loading_data.html) for more information about account aggregations.\n", "item": [ { - "id": "c112208d-52d8-449e-ab74-e79cc8d3d0df", + "id": "b111dd59-8e75-48ec-a13f-5e257b949d57", "name": "In-progress Account Aggregation status", "request": { "name": "In-progress Account Aggregation status", @@ -11453,7 +11453,7 @@ }, "response": [ { - "id": "97c4fd42-8ebe-4224-bd46-7557aca7648e", + "id": "22801ef8-be56-4744-88ce-d817d7618ee9", "name": "An account aggregation status object", "originalRequest": { "url": { @@ -11498,7 +11498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c39a4bb-9a0d-4c38-b5df-1c65bf25ab43", + "id": "0265c0db-779d-42c7-bbc7-9fc79abfe763", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11543,7 +11543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "326f9a93-bf70-4acc-861d-3d094434041a", + "id": "f8965b95-20a1-4012-a450-67ee0343752c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11588,7 +11588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47cfc3ae-34e9-4a77-9c2a-4145259e6056", + "id": "bec42b9b-b969-4bb5-a98a-f8722d9f5f37", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -11633,7 +11633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8044bfa6-d16b-4b58-878b-79025f05edb5", + "id": "5b5351d9-4813-454b-9552-e934928f10bc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11678,7 +11678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0e7577c-94e7-4c9d-8fe4-082278cc616c", + "id": "940fe7ed-04e1-4cf6-a5f3-4265707d85bb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11735,7 +11735,7 @@ "description": "Use this API to implement account usage insight functionality.\nWith this functionality in place, administrators can gather information and insights about how their tenants' source accounts are being used.\nThis allows organizations to get the information they need to start optimizing and securing source account usage.\n", "item": [ { - "id": "a274ffc7-7131-44ee-94a3-7512699c9712", + "id": "b739d42d-0a43-4be0-8f57-c60048d61ce6", "name": "Returns account usage insights", "request": { "name": "Returns account usage insights", @@ -11814,7 +11814,7 @@ }, "response": [ { - "id": "955321f0-e800-44f3-bae2-51771bf8d1c2", + "id": "ea9feadf-be8b-4b14-a10a-70b8387b79af", "name": "Summary of account usage insights for past 12 months.", "originalRequest": { "url": { @@ -11896,7 +11896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc237103-0d0e-46da-a348-6c8fa2fa6c73", + "id": "398c3545-f276-49cd-aaba-d6d1c40490f8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11978,7 +11978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d692af2-c764-4d12-aa88-75b550c662b2", + "id": "5052568d-f744-41d7-b4cd-2a8df9323485", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12060,7 +12060,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3050cd38-0936-4b75-b266-663d5b9576a4", + "id": "70862eca-2b3c-45f0-bd2c-ad2daf8ca2a0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12142,7 +12142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95f248d4-04c6-4b4e-a642-5e853e76b0b0", + "id": "b3c633c0-d270-457e-9f16-796c2909fd31", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12224,7 +12224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3ad3656-0f0a-4a47-85f4-a7b4a6b02b21", + "id": "c2ec433e-eba1-42c5-9802-a12342fec081", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12318,7 +12318,7 @@ "description": "Use this API to implement and customize account functionality.\nWith this functionality in place, administrators can manage users' access across sources in IdentityNow.\n\nIn IdentityNow, an account refers to a user's account on a supported source.\nThis typically includes a unique identifier for the user, a unique password, a set of permissions associated with the source and a set of attributes. IdentityNow loads accounts through the creation of sources in IdentityNow.\n\nAdministrators can correlate users' identities with the users' accounts on the different sources they use.\nThis allows IdentityNow to govern the access of identities and all their correlated accounts securely and cohesively.\n\nTo view the accounts on a source and their correlated identities, administrators can use the Connections drop-down menu, select Sources, select the relevant source, and select its Account tab.\n\nTo view and edit source account statuses for an identity in IdentityNow, administrators can use the Identities drop-down menu, select Identity List, select the relevant identity, and select its Accounts tab.\nAdministrators can toggle an account's Actions to aggregate the account, enable/disable it, unlock it, or remove it from the identity.\n\nAccounts can have the following statuses:\n\n- Enabled: The account is enabled. The user can access it.\n\n- Disabled: The account is disabled, and the user cannot access it, but the identity is not disabled in IdentityNow. This can occur when an administrator disables the account or when the user's lifecycle state changes.\n\n- Locked: The account is locked. This may occur when someone has entered an incorrect password for the account too many times.\n\n- Pending: The account is currently updating. This status typically lasts seconds.\n\nAdministrators can select the source account to view its attributes, entitlements, and the last time the account's password was changed.\n\nRefer to [Managing User Accounts](https://documentation.sailpoint.com/saas/help/common/users/user_access.html#managing-user-accounts) for more information about accounts.\n", "item": [ { - "id": "343fd7b1-c365-4a63-835b-ce008952a16f", + "id": "d44ad7f3-84b9-4c89-b669-675ff6025d3e", "name": "Accounts List", "request": { "name": "Accounts List", @@ -12402,7 +12402,7 @@ }, "response": [ { - "id": "df040d06-78fe-42ce-a2cd-9d8e289fbba0", + "id": "bef3960c-e7e4-4c36-aafc-fdf3232a2e26", "name": "SlimAccounts", "originalRequest": { "url": { @@ -12500,7 +12500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42034a69-cc32-4a54-9ad9-5beba58ef4c7", + "id": "b3e4d400-bc6e-4e0f-a4bd-8deeff37834c", "name": "FullAccounts", "originalRequest": { "url": { @@ -12598,7 +12598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dd24788-de6b-48a1-a352-deee157c0bdf", + "id": "a58c6411-db7f-4bcb-b756-79442be99364", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12696,7 +12696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d2cb3bd-dc7e-409e-994f-54a996b6e706", + "id": "82cc2de5-bbd2-489f-9065-858319585cf6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12794,7 +12794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3ece9d3-63de-4252-a350-ea59aa05e40d", + "id": "597aa525-6610-4af3-b209-a4ef61ce5351", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12892,7 +12892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd57d461-aa53-44df-9223-17746b9fe639", + "id": "9e96d65a-f2a4-427d-9d96-8445848b05d8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12990,7 +12990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f709f292-58b1-4012-b65a-e55bf792cafa", + "id": "4e9e96c9-0fe4-42aa-9f84-e40a28a116c3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13094,7 +13094,7 @@ } }, { - "id": "f6f33657-5a6c-40bc-944a-99709cd0d136", + "id": "1f9ee725-1c2c-44e3-9508-6cf9b93588d5", "name": "Create Account", "request": { "name": "Create Account", @@ -13136,7 +13136,7 @@ }, "response": [ { - "id": "c08a9913-4301-415d-99a3-7731be8d8133", + "id": "7ab204c2-d1ea-4467-9fa1-e6dd6f88f9aa", "name": "Async task details", "originalRequest": { "url": { @@ -13192,7 +13192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4498bed-5fc5-465a-95f6-65694ce18110", + "id": "01ba5125-5b68-4888-a7ea-db4ff7fbafd3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13248,7 +13248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8498e3d0-1f2e-4982-b1d4-199af8778386", + "id": "00274005-8206-47d8-9a6a-c4f839beaa09", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13304,7 +13304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fb78454-913a-461b-9f0a-65f62b444871", + "id": "b808b431-2910-4944-9ee2-68d9e9a06a01", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13360,7 +13360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d39eafbd-1d48-4c11-ace8-7f348723eb49", + "id": "0925d808-400e-4e34-a982-a573e1671336", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13416,7 +13416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03a6d0cb-5e92-4df6-ba99-e0ced8992bae", + "id": "1a3340a9-a8de-4498-9e83-667c9e21dd67", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13478,7 +13478,7 @@ } }, { - "id": "ffdd79ec-1b04-4139-89fd-7aaa1e9d89bf", + "id": "2a7e0403-1c9a-4fad-a6e0-6f929f1530e7", "name": "Account Details", "request": { "name": "Account Details", @@ -13519,7 +13519,7 @@ }, "response": [ { - "id": "feaeb7f0-97db-4188-a70f-26d642dfe974", + "id": "c754f822-bd86-4f39-aeb9-755138092d7b", "name": "Account object.", "originalRequest": { "url": { @@ -13563,7 +13563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26ef9b6c-df82-42dd-9854-8e7a86f63714", + "id": "95f468ae-dbc0-4e4a-a8cf-ac15114702d9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13607,7 +13607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1f8cd01-1a60-430a-9352-1cac793a0549", + "id": "e832abde-c489-40bc-9539-39da86e8c5d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13651,7 +13651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfae9be7-3016-4ede-81ce-20f50d919da4", + "id": "f71b51e6-9b17-412c-b415-6ef766e3476e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13695,7 +13695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc64024d-881c-400f-9795-9df6f4303427", + "id": "4324e5fb-873d-4f46-93e9-8d9ca44aad4d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13739,7 +13739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0f73ae1-bf0e-4321-91ea-6859cd62ea99", + "id": "7af2e7f4-0b04-40e6-8bb6-82aaef81f8ab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13783,7 +13783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af97189d-e778-415a-a81b-42d0609079a8", + "id": "576de441-83f5-4b82-b602-70b2afb69cc2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13833,7 +13833,7 @@ } }, { - "id": "0ef94a42-8a62-4648-9339-6044c6532615", + "id": "22fe13be-26d3-45da-8b23-09555627f628", "name": "Update Account", "request": { "name": "Update Account", @@ -13887,7 +13887,7 @@ }, "response": [ { - "id": "a8f779ba-88bf-4e78-8a34-0a36bb9ad452", + "id": "7aef3c3f-99e3-40ed-b191-a2e3c4f4ef44", "name": "Accepted. Update request accepted and is in progress.", "originalRequest": { "url": { @@ -13944,7 +13944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "493e8083-9c79-400e-a214-82b8cb9a1e4a", + "id": "928b3bdc-2a76-4abc-b20b-c35db081e925", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14001,7 +14001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f790f1aa-ad23-4599-8653-8070e5c08a92", + "id": "c3601678-5121-4bdc-a21f-6bd5b7c120a4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14058,7 +14058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b25872ce-3ce6-47af-a41f-d57fef17d7cd", + "id": "664198ee-7ef0-4cf4-b42f-5f127ccb12ac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -14115,7 +14115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12755437-a31f-4b00-922a-c98b5790999a", + "id": "8bb68316-70a5-4d66-8469-fd7c4ceb67f1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -14172,7 +14172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0203b9d7-6a1e-4143-a428-b38221177920", + "id": "dc0b7b8d-5a1b-4a58-98c3-6b751f950557", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -14229,7 +14229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bd32d7e-3d22-4e8b-825b-a966f4a7b265", + "id": "81c8dbdc-7ecd-4b61-b41f-ea5b9c4e9aa0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14292,7 +14292,7 @@ } }, { - "id": "1f580ae4-07ec-45a5-b3bd-e845dbfe88d5", + "id": "0d9ce08f-aeaf-4eb8-a09f-610238296bf7", "name": "Update Account", "request": { "name": "Update Account", @@ -14346,7 +14346,7 @@ }, "response": [ { - "id": "23fdbadf-39d1-4645-a402-9743ec4aa69f", + "id": "e66bc5b6-f52e-424b-8946-0634bf0cf21f", "name": "Async task details.", "originalRequest": { "url": { @@ -14403,7 +14403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c334a9fa-cd22-4200-8b3b-7e98f69ea83d", + "id": "478dae79-0638-4a80-8c21-dafe9f1c09f5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14460,7 +14460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e6edb26-27ea-4b5d-8e9e-c1cd522ab289", + "id": "4d2bd2f7-f509-4993-a633-60b973802f29", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14517,7 +14517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2aa70f58-4e1e-4ec1-a9d8-93101409787d", + "id": "03cf0872-5f36-4eea-be8e-cabf7a4dc417", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -14574,7 +14574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7562055e-47ea-4cff-bb1a-1c1ffd85a397", + "id": "d7395bd4-da7a-45b1-8734-1ebf7b167bb7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -14631,7 +14631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9c6df20-6a68-406f-b1a8-69940eab9632", + "id": "34b60b30-2ae2-4c34-8998-7ea3ed52daba", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -14688,7 +14688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78b912a3-d912-46f3-b84f-b74a71e218c1", + "id": "1040587b-a887-4935-8eb6-d2aa5364aaf7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14751,7 +14751,7 @@ } }, { - "id": "8794223e-9fa2-4775-84aa-556e599814f0", + "id": "75bd7395-e6d2-4002-8a04-3cd5dabe17c6", "name": "Delete Account", "request": { "name": "Delete Account", @@ -14792,7 +14792,7 @@ }, "response": [ { - "id": "970643d8-b916-4071-b92b-413961aef505", + "id": "64d60c9f-c8a5-4ab2-8564-be4495c7b75f", "name": "Async task details.", "originalRequest": { "url": { @@ -14836,7 +14836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e975e6ca-dc4e-49a1-b5d3-088e8c038cd0", + "id": "f0f7115a-b2c5-404c-872b-742bea294bc2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14880,7 +14880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2617a56c-5c20-48c9-8cf7-3016f518c286", + "id": "e0caea41-0283-4325-aa9a-29143d9fb4a4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14924,7 +14924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3274f347-01e7-411f-b2ce-c0a98e06877a", + "id": "05e0747b-ec13-458a-8185-c7339246b395", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -14968,7 +14968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "393975b3-5687-4be4-8f84-547f06ee7ba6", + "id": "dd85dceb-61dc-4920-ab51-9aff2b0ae2c3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -15012,7 +15012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "824e2450-3353-4915-9688-afc673f9159d", + "id": "cedf866e-03f8-4a43-be50-e96a68cfd0c8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15056,7 +15056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3ff420e-fa72-4a23-b830-21720fedce31", + "id": "7e238c1e-8b78-49a3-89ef-03596d997042", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15106,7 +15106,7 @@ } }, { - "id": "bcfcb62b-1ba9-4f58-92a2-596ee61433f7", + "id": "7a52afd3-d490-42ea-85f4-9b386699c50a", "name": "Account Entitlements", "request": { "name": "Account Entitlements", @@ -15176,7 +15176,7 @@ }, "response": [ { - "id": "4add32d7-4908-406e-ae54-a9000b6c7b1a", + "id": "fcae0cc9-74ac-4fdb-b28a-5f6c5a3ea5d4", "name": "An array of account entitlements", "originalRequest": { "url": { @@ -15249,7 +15249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd43ea5f-e69e-4475-a85e-b47d517528d0", + "id": "bda9fa75-64bb-439b-a244-ab10a8782ec5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15322,7 +15322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "632086e7-a1cf-44e8-9f1a-525f2cc9691d", + "id": "16d5785a-10a9-42d8-82c0-c2cbe8981209", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15395,7 +15395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbdae830-cf7b-41ed-af60-cf736488b114", + "id": "2ce74692-e889-4e55-b8e4-8eae96efdc92", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15468,7 +15468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81075355-a3fd-4842-8b6c-1cebebff402c", + "id": "bf4df7e9-0b30-4320-aec5-1fdde1849028", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -15541,7 +15541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b780da6-0cf4-47f4-91b1-9eb15dfff911", + "id": "24818bd7-2432-4adc-b6b8-3ba4cafdaff5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15614,7 +15614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ec629ca-48e7-4082-b353-870e0df692c7", + "id": "abf3d434-726c-4bfb-8ff8-112fddb689fe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15693,7 +15693,7 @@ } }, { - "id": "183587d3-e5dd-49fa-8f2e-fda2ef2e1232", + "id": "bafdde29-18c2-457a-a62a-19f215c284ce", "name": "Reload Account", "request": { "name": "Reload Account", @@ -15735,7 +15735,7 @@ }, "response": [ { - "id": "858faa1c-41a1-457f-837e-6a8a38aee8ee", + "id": "93950292-6205-4e98-91d8-61246c4df6b5", "name": "Async task details", "originalRequest": { "url": { @@ -15780,7 +15780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4927306d-fa6d-450f-84d5-b39045e1975e", + "id": "eeb8cb9b-3f1a-4752-b228-5a7be2dee04c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15825,7 +15825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3625bf3-ac38-4276-8438-54903d79f7cf", + "id": "9106f703-d2ce-4e50-b8eb-3b6e488b3dbb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15870,7 +15870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ac69055-db46-4493-a88d-d814220f7251", + "id": "75b3b42a-25bf-4316-bc5a-5875cc0e81de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15915,7 +15915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41a3319b-6558-44b4-8222-c18b8be47406", + "id": "57179d62-23a1-490e-9407-58e5148de6ac", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -15960,7 +15960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4f73571-3ad8-486a-b146-814dbcdaf0d3", + "id": "de9a9224-5ba5-4ece-8975-7509b102e1b6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16005,7 +16005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59e2bfa3-4092-4c4d-bf89-490fcb856750", + "id": "41cc6b19-6ac1-4cc2-8382-0fe043d3007e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16056,7 +16056,7 @@ } }, { - "id": "5314c423-88b7-4efe-a8ca-aa0992f68227", + "id": "5bde6160-e99e-462e-8ec5-c869829f067e", "name": "Enable Account", "request": { "name": "Enable Account", @@ -16111,7 +16111,7 @@ }, "response": [ { - "id": "5c76a9e7-1074-4394-88ff-ec30e5e004d9", + "id": "b21940cb-447d-42a4-9023-0b972210e761", "name": "Async task details", "originalRequest": { "url": { @@ -16169,7 +16169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8089e1a-6c52-443b-9297-acf7d2c054e1", + "id": "9293ad27-834c-4832-a677-6d4053d7fb82", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16227,7 +16227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68eb0524-7908-459d-8779-8f4af3e95b9d", + "id": "d7d2e5d5-72fc-4d95-a0ec-2b67f27c4505", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16285,7 +16285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9bf9ed4-78a6-454f-8304-29fe016c8560", + "id": "8361b0e6-d0ef-494a-89e4-6841a5a29be3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16343,7 +16343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e616f941-f170-45af-aad1-a863246a3cf0", + "id": "3e862c19-0573-4d9f-85f7-21b2e0830ff6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16401,7 +16401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13142b70-ef50-4d91-ba88-77fa1eba87a7", + "id": "a04af36c-a443-4e68-9c59-16ddeecc7d4b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16459,7 +16459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18a0f6d8-c1b4-4a40-bc54-60b7fcdf6f70", + "id": "712df75d-d129-4855-80a8-d202c52e86d1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16523,7 +16523,7 @@ } }, { - "id": "fa81e487-9d9a-4d05-af5c-3395f095a0c6", + "id": "30ce47ab-ca7c-4384-bf34-bb1b298f1421", "name": "Disable Account", "request": { "name": "Disable Account", @@ -16578,7 +16578,7 @@ }, "response": [ { - "id": "0269d62d-0281-4ac0-b7ab-eeededd182fb", + "id": "9290c73e-c190-477c-a1e2-4d25d7cf26eb", "name": "Async task details", "originalRequest": { "url": { @@ -16636,7 +16636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb41ea8b-13e0-4ef3-8119-2f52da638657", + "id": "cc18ea5f-09fc-4267-8716-af6c1dd55523", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16694,7 +16694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12f9911a-5dff-4654-a5d7-37e6463a5e34", + "id": "b5852958-a086-4c9a-aa1e-986c6bfb16d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16752,7 +16752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63d78bfe-4d2e-43f0-b38e-d6b92d551181", + "id": "30fca547-8d27-418e-a5a2-b3a7ce18ecfe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16810,7 +16810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "761efb51-00df-4df4-a396-fd671d55c5fd", + "id": "25fb126a-f0c9-40cb-908e-f16ca5e768bf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16868,7 +16868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39d86638-4be5-47c9-a11f-112dd387f50b", + "id": "d92a7968-fff9-4a34-8dbf-8565707df83f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16926,7 +16926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb0eab49-9bb8-4e6a-b439-eabb4c55cb7d", + "id": "0564c0aa-7cef-4a26-b14b-1e192f25296a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16990,7 +16990,7 @@ } }, { - "id": "84d34688-4f1a-4c76-b7b6-4a5557b4becb", + "id": "439401b4-ee3d-4374-a0ab-44bc35fb73b6", "name": "Unlock Account", "request": { "name": "Unlock Account", @@ -17045,7 +17045,7 @@ }, "response": [ { - "id": "a13334ec-9a94-426d-968c-386ca3c11057", + "id": "fddf5862-b914-4bcd-8fd0-707043008c49", "name": "Async task details", "originalRequest": { "url": { @@ -17103,7 +17103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cde216c2-a1d8-40bd-898b-291f114c4f4c", + "id": "e45aaf53-f55c-42f8-9a6a-198cc72a20dc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17161,7 +17161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15a47df4-afe1-4a3c-a3a4-e354adfc2d35", + "id": "fc1ecc03-be64-4861-a270-0771300add62", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17219,7 +17219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d7f5379-1cb4-44f8-9cfe-937bb029d051", + "id": "6a75e4fd-fe6f-4121-b613-d88ea81d24a2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17277,7 +17277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecce914b-d6a8-43bd-8452-bb9d4813302c", + "id": "545e9a10-d865-4d83-a1fc-9c56728d1612", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -17335,7 +17335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1499978c-4a60-4926-8f24-8e1d8b8d0e51", + "id": "c5488022-7dde-42ac-b5b3-558107e912d1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17393,7 +17393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a90e0099-c3fc-43e0-977f-ad88b9b54304", + "id": "758a16f3-0db5-40f8-a914-035108445211", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17457,7 +17457,7 @@ } }, { - "id": "a9e4bd41-d315-4c33-b098-fd8cd060b0e5", + "id": "af00aa99-d07a-4e43-b739-9086a0e52a98", "name": "Enable IDN Account for Identity", "request": { "name": "Enable IDN Account for Identity", @@ -17499,7 +17499,7 @@ }, "response": [ { - "id": "125bbf98-b426-4ee5-8a23-7b57f4e0df00", + "id": "1aa5e0f2-5395-4d46-b57a-c53308a8872e", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -17544,7 +17544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db7600f3-387a-421a-83a6-f4371ad44299", + "id": "55a535e7-b6b6-4948-babc-ac7554086bcd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17589,7 +17589,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6103d125-4a3e-415e-a07c-951d1d1c8bf7", + "id": "b74566eb-7a3d-4c4d-88a6-de37f5a21def", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17634,7 +17634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85ddd25a-2a3e-460a-bd33-6bd850153322", + "id": "4e225e2b-e3b5-453e-b4b6-3edd19df20a3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17679,7 +17679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3949043-91c7-4af0-99d1-e4fd453b5689", + "id": "87c1ded3-77bb-4748-9c5d-f9af1c06082f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -17724,7 +17724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce928615-8baf-4e09-a973-3a31a8427466", + "id": "c7bec40f-cc7e-462c-b240-712e9a8a568b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17769,7 +17769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfdcb070-18d9-4b15-ba23-efa0793e60f4", + "id": "4ea62f30-dc1b-4013-9383-14f6fd4dcc70", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17820,7 +17820,7 @@ } }, { - "id": "40f63ca7-1d67-4723-8245-32a7abed9c37", + "id": "3c1cb5ff-b1d3-4205-a01e-8a1f8a7d74a9", "name": "Disable IDN Account for Identity", "request": { "name": "Disable IDN Account for Identity", @@ -17862,7 +17862,7 @@ }, "response": [ { - "id": "816b9d1c-d7fd-4786-9824-e67c91b4175c", + "id": "3e108c88-0f73-43e7-8538-f5d261ce5040", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -17907,7 +17907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "004a6364-7cef-4ab5-b2eb-6249b05eef22", + "id": "86d38226-964a-420f-9331-a999a087288f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17952,7 +17952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1a381ae-ea73-49bd-bd84-4c7646e5a4ea", + "id": "b4dba600-b15e-4c7a-b39f-04840448f7bf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17997,7 +17997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4f5e3a3-e29b-41f1-9751-e10917a48410", + "id": "30aba173-0484-4188-9377-0fbd518a2be8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18042,7 +18042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7b75b20-ed18-49ce-bc47-c7a073c3cc42", + "id": "e773e6a6-b40a-463e-8c33-e25194ad6d32", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18087,7 +18087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a4230f2-6acb-43a3-89f3-eda433b99c40", + "id": "550f8bd0-ec2a-4a40-a591-0b9c10341a49", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18132,7 +18132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec8d00e3-5410-4acb-9faa-4bd269411903", + "id": "d44ab25a-e6c5-46e6-abaf-7d9ea5354662", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18183,7 +18183,7 @@ } }, { - "id": "32115ab5-d389-41c8-a8b6-73d7812cdaa2", + "id": "fa66de8c-3321-4eb7-a6c4-cbb29792ae5c", "name": "Enable IDN Accounts for Identities", "request": { "name": "Enable IDN Accounts for Identities", @@ -18226,7 +18226,7 @@ }, "response": [ { - "id": "c01e6bf4-fb53-4b02-a4fe-80be8a233ea3", + "id": "86630e4f-119c-48de-8380-7809691a8ccc", "name": "Bulk response details.", "originalRequest": { "url": { @@ -18283,7 +18283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7301c147-1046-4ee9-b412-993fa9a2b71e", + "id": "9f5ff0c0-aeea-470b-8201-17c0c58ab21f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18340,7 +18340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bb9319f-5e29-4857-897a-f6c19d0cc5e9", + "id": "9615646f-50ae-4ebe-85cf-81b69a9c95a6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18397,7 +18397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5160ca5-536d-4c98-b3c2-0cdc90027f7f", + "id": "b16b6959-3f41-475c-826f-3ee5b2d042f1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18454,7 +18454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40c5904f-4fe4-49a0-a74d-f2e71a5b4791", + "id": "8f7e2a18-c1d2-45d7-ac12-cf8bd0b20d53", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18511,7 +18511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8262d5a8-49b9-427f-b1ff-c475f700332f", + "id": "cb692232-e488-4967-81e4-6c8c16fd1237", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18574,7 +18574,7 @@ } }, { - "id": "6b096221-f479-4fec-bd3b-39f3a7e57195", + "id": "e73f748c-4320-43f9-afe2-b6009e5c8ead", "name": "Disable IDN Accounts for Identities", "request": { "name": "Disable IDN Accounts for Identities", @@ -18617,7 +18617,7 @@ }, "response": [ { - "id": "d3d85246-cbd2-459d-9185-15fa50bfd76d", + "id": "02104cd7-2b77-4cdc-b80f-6008afbf7267", "name": "Bulk response details.", "originalRequest": { "url": { @@ -18674,7 +18674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75f87fc3-7938-421d-a646-7e9b091cfeaf", + "id": "2ffed106-7091-428d-b248-65b53036fec2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18731,7 +18731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3d6a473-e612-44a8-a57b-aabde0141c27", + "id": "43bce423-a5fb-4048-98d4-030d84c93e46", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18788,7 +18788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2068cae-3d8b-413e-87fb-5d02e577ae3b", + "id": "e456a3ae-bd4e-4c43-bcfa-a6db79e6b268", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18845,7 +18845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce50cc28-67c9-49c8-a249-062e13e4beb6", + "id": "a5146462-153b-4fc7-befd-0b3850db8f03", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18902,7 +18902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bead55d-bfe9-4e49-85f5-d256068d3777", + "id": "2585fa1c-b688-4425-8b5b-546199a8deb1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18971,7 +18971,7 @@ "description": "Use this API to implement certification campaign functionality.\nWith this functionality in place, administrators can create, customize, and manage certification campaigns for their organizations' use.\nCertification campaigns provide IdentityNow users with an interactive review process they can use to identify and verify access to systems.\nCampaigns help organizations reduce risk of inappropriate access and satisfy audit requirements.\n\nA certification refers to IdentityNow's mechanism for reviewing a user's access to entitlements (sets of permissions) and approving or removing that access.\nThese certifications serve as a way of showing that a user's access has been reviewed and approved.\nMultiple certifications by different reviewers are often required to approve a user's access.\nA set of multiple certifications is called a certification campaign.\n\nFor example, an organization may use a Manager Certification campaign as a way of showing that a user's access has been reviewed and approved by multiple managers.\nOnce this campaign has been completed, IdentityNow would provision all the access the user needs, nothing more.\n\nIdentityNow provides two simple campaign types users can create without using search queries, Manager and Source Owner campaigns:\n\nYou can create these types of campaigns without using any search queries in IdentityNow:\n\n- ManagerCampaign: IdentityNow provides this campaign type as a way to ensure that an identity's access is certified by their managers.\nYou only need to provide a name and description to create one.\n\n- Source Owner Campaign: IdentityNow provides this campaign type as a way to ensure that an identity's access to a source is certified by its source owners.\nYou only need to provide a name and description to create one.\nYou can specify the sources whose owners you want involved or just run it across all sources.\n\nFor more information about these campaign types, refer to [Starting a Manager or Source Owner Campaign](https://documentation.sailpoint.com/saas/help/certs/starting_campaign.html).\n\nOne useful way to create certification campaigns in IdentityNow is to use a specific search and then run a campaign on the results returned by that search.\nThis allows you to be much more specific about whom you are certifying in your campaigns and what access you are certifying in your campaigns.\nFor example, you can search for all identities who are managed by \"Amanda.Ross\" and also have the access to the \"Accounting\" role and then run a certification campaign based on that search to ensure that the returned identities are appropriately certified.\n\nYou can use IdentityNow search queries to create these types of campaigns:\n\n- Identities: Use this campaign type to review and revoke access items for specific identities.\nYou can either build a search query and create a campaign certifying all identities returned by that query, or you can search for individual identities and add those identities to the certification campaign.\n\n- Access Items: Use this campaign type to review and revoke a set of roles, access profiles, or entitlements from the identities that have them.\nYou can either build a search query and create a campaign certifying all access items returned by that query, or you can search for individual access items and add those items to the certification campaign.\n\n- Role Composition: Use this campaign type to review a role's composition, including its title, description, and membership criteria.\nYou can either build a search query and create a campaign certifying all roles returned by that query, or you can search for individual roles and add those roles to the certification campaign.\n\n- Uncorrelated Accounts: Use this campaign type to certify source accounts that aren't linked to an authoritative identity in IdentityNow.\nYou can use this campaign type to view all the uncorrelated accounts for a source and certify them.\n\nFor more information about search-based campaigns, refer to [Starting a Campaign from Search](https://documentation.sailpoint.com/saas/help/certs/starting_search_campaign.html).\n\nOnce you have generated your campaign, it becomes available for preview.\nAn administrator can review the campaign and make changes, or if it's ready and accurate, activate it.\n\nOnce the campaign is active, organization administrators or certification administrators can designate other IdentityNow users as certification reviewers.\nThose reviewers can view any of the certifications they either need to review (active) or have already reviewed (completed).\n\nWhen a certification campaign is in progress, certification reviewers see the listed active certifications whose involved identities they can review.\nReviewers can then make decisions to grant or revoke access, as well as reassign the ceritifcation to another reviewer. If the reviewer chooses this option, they must provide a reason for reassignment in the form of a comment.\n\nOnce a reviewer has made decisions on all the certification's involved access items, he or she must \"Sign Off\" to complete the review process.\nDoing so converts the certification into read-only status, preventing any further changes to the review decisions and deleting the work item (task) from the reviewer's list of work items.\n\nOnce all the reviewers have signed off, the certification campaign either completes or, if any reviewers decided to revoke access for any of the involved identities, it moves into a remediation phase.\nIn the remediation phase, identities' entitlements are altered to remove any entitlements marked for revocation.\nIn this situation, the certification campaign completes once all the remediation requests are completed.\n\nThe end of a certification campaign is determined by its deadline, its completion status, or by an administrator's decision.\n\nFor more information about certifications and certification campaigns, refer to [Certifications](https://documentation.sailpoint.com/saas/user-help/certifications.html).\n", "item": [ { - "id": "389ab1aa-a29a-4e0d-ade4-f1813c1556b3", + "id": "2e66d9ac-655b-4fd3-b2a8-2148e94dedf2", "name": "List Campaigns", "request": { "name": "List Campaigns", @@ -19055,7 +19055,7 @@ }, "response": [ { - "id": "c158418b-23a7-4236-9473-5fe750cd32e1", + "id": "e2e3c662-3c97-4a9d-8a2b-a2a7b5d9ba06", "name": "Slim Campaign", "originalRequest": { "url": { @@ -19153,7 +19153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b76e1aa-ab3b-43a6-8a52-17b9bf93e282", + "id": "18409076-2d22-4df3-ae63-a7e6ad8de43e", "name": "Full Campaign", "originalRequest": { "url": { @@ -19251,7 +19251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "603ab9a9-31c0-41c3-90e3-3e50dd54c9bc", + "id": "76dbf125-8733-4726-a305-63a6e77c94fa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19349,7 +19349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d48e511c-bdab-4092-9e48-cc1f87a51bf9", + "id": "5b56aebf-f034-4fa0-8969-768222c0ec22", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19447,7 +19447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc0f0b3a-c6af-44a5-bc91-55119b81fdf7", + "id": "a0806e80-6be8-433b-b1f7-f28b02ffced3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19545,7 +19545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52818729-97e9-4056-8452-79c406eb1b16", + "id": "422076fc-7cf1-4fb0-b608-023f876b6bac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19643,7 +19643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "802b439e-a76c-4f7f-8043-50115b671bd5", + "id": "09408678-6c85-4eb8-bc8b-819acf3ba800", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19747,7 +19747,7 @@ } }, { - "id": "f326bf70-ab1b-4739-8599-34e76c3f17ec", + "id": "6d48a878-ba21-415c-987f-600e051881d3", "name": "Create a campaign", "request": { "name": "Create a campaign", @@ -19789,7 +19789,7 @@ }, "response": [ { - "id": "5f983116-6039-480f-a301-92e50a4fa574", + "id": "70c1b295-c48d-4c9f-b6e9-57a43455d713", "name": "Manager", "originalRequest": { "url": { @@ -19845,7 +19845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0ea0317-4182-4315-9d9f-178b67b21d33", + "id": "40fbadca-424e-45c2-a0ef-ebce8478587b", "name": "Search", "originalRequest": { "url": { @@ -19901,7 +19901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "731017aa-a76a-4451-a126-f1b6ed70f38c", + "id": "c6339598-7567-47d9-8c4e-7306a4bb44fe", "name": "Source Owner", "originalRequest": { "url": { @@ -19957,7 +19957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ff66df1-c4a8-46e2-88c6-2e9bd51c838e", + "id": "6840cf58-48a6-4c94-85d4-662fc6b1c04b", "name": "Role Composition", "originalRequest": { "url": { @@ -20013,7 +20013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cac91cf-5a75-4ae6-8030-e5dcb3104310", + "id": "c86992e0-1df1-49ad-a1a2-1cc1a9db1413", "name": "Manager", "originalRequest": { "url": { @@ -20069,7 +20069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d06552b5-edfa-4934-9cdd-461581b91e62", + "id": "8ce8c728-bbff-4d2b-afe8-03e4c422165c", "name": "Manager", "originalRequest": { "url": { @@ -20125,7 +20125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8b602c2-cd49-49ff-a30e-f8e7f18a204c", + "id": "51c06365-4aa0-4fa5-9075-621290066eea", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -20181,7 +20181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8c7179f-2119-49a3-b2c3-15c17e401570", + "id": "5c00054b-8e53-48b7-bc9d-12c2072668e2", "name": "Manager", "originalRequest": { "url": { @@ -20237,7 +20237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f04406f-704f-4a7c-bcac-69aca228b93a", + "id": "3250fe0f-0e87-4d9f-b050-2b91446852d5", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -20299,7 +20299,7 @@ } }, { - "id": "7ac7f541-25eb-41e8-b00b-fdb764c75bd9", + "id": "35f6c86d-230c-4a99-a0c2-2cce5f90dd9f", "name": "Deletes Campaigns", "request": { "name": "Deletes Campaigns", @@ -20342,7 +20342,7 @@ }, "response": [ { - "id": "83683240-cd81-41e9-aa66-41902ca2e0a7", + "id": "b54f343b-b18c-4c9b-bc91-b29f676e315d", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -20399,7 +20399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ee61c54-0fe6-42ec-9cc2-b42dbce163b7", + "id": "5a7576a5-3f4b-429d-903f-969b98eff960", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20456,7 +20456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e40403a9-b597-4404-ad0b-a30a3f2e9111", + "id": "fe75faef-8868-4c36-9555-04fe0230a471", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20513,7 +20513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e8e7044-4c0d-4ea1-8ce6-c62cbc59be85", + "id": "a3e26aec-f417-4e7e-a7c8-f17e37b06ecc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20570,7 +20570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a87806ee-dbe8-41de-8535-a1bbef4235b3", + "id": "c08d6254-9f2f-4e3d-9c6e-f1a03f0ce54d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20627,7 +20627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f56b676b-4190-49d8-ae62-d3d3fff4c864", + "id": "5142fe92-8574-45cb-8481-ebe7f8460559", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20684,7 +20684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "641aab4e-1303-440a-957f-1cc73000b86b", + "id": "6ea56b48-85bd-4000-ae9c-6958e8dc5da3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20747,7 +20747,7 @@ } }, { - "id": "b771f486-ed79-4b78-ad03-e557c8e14399", + "id": "cf8414d2-75af-4f14-a0fa-4f7a2a4aa04d", "name": "Get a campaign", "request": { "name": "Get a campaign", @@ -20788,7 +20788,7 @@ }, "response": [ { - "id": "3cf81911-85d2-4d81-a833-876bdf8bdd39", + "id": "fa278efa-e9cd-447a-a94a-99eae34e9757", "name": "Manager", "originalRequest": { "url": { @@ -20832,7 +20832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cfde827-023e-4ab2-b143-61d2f2fc5b3c", + "id": "77bb2cc1-aab5-43d5-a0d8-122ee05cebf0", "name": "Search", "originalRequest": { "url": { @@ -20876,7 +20876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4773954e-ab37-4033-b72e-72bc1c9264a8", + "id": "76fbad63-a30b-403f-a556-b039b884c422", "name": "Source Owner", "originalRequest": { "url": { @@ -20920,7 +20920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df0e0fa6-8946-44be-9db2-b893d3524d63", + "id": "864c7ad0-d05f-421e-a0a9-e5a478e35fac", "name": "RoleComposition", "originalRequest": { "url": { @@ -20964,7 +20964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c6146db-c2fc-44a0-9f2b-f4c6018f9666", + "id": "7676edeb-d07e-44ad-9dd3-321f57584789", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21008,7 +21008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e4e3bd2-b01c-4ec0-afb2-f12932ef7b94", + "id": "f421ed2b-49e5-4180-8c68-9bc338d86fa1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21052,7 +21052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e67cef9-8f26-4840-ad37-bde5c10b5f47", + "id": "fb448826-3629-40b9-ba5d-017b532fbcb8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21096,7 +21096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88ad0167-c653-4ca8-9d2b-fb00d1e90f8e", + "id": "6d0a7a1e-0fc3-441a-a16b-8fa4a925e6bd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -21140,7 +21140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e1afd3d-0475-41f5-8297-ab4bfa046edd", + "id": "bf562650-715d-485c-8e01-f8d45279cfbd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21184,7 +21184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c9b46df-91a5-4e6b-839b-94153fe65ae3", + "id": "5e4495b6-566d-4b53-bf0b-15ae8fa3810a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21234,7 +21234,7 @@ } }, { - "id": "b07063b6-82f9-4682-9f1d-d7ccdbcd7fd3", + "id": "9286f156-3c8d-4952-845e-ff1248f3fc4b", "name": "Update a Campaign", "request": { "name": "Update a Campaign", @@ -21288,7 +21288,7 @@ }, "response": [ { - "id": "4e7f2af5-9a53-4a36-9817-93c65a5fe496", + "id": "368ba7e3-271b-4a68-b804-8a60d3c6ae11", "name": "Manager", "originalRequest": { "url": { @@ -21345,7 +21345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93a918f0-2c5a-4887-aa12-b13b586d7b1b", + "id": "9c97c136-a1f1-470a-b8a2-1cc5b7f544ba", "name": "Search", "originalRequest": { "url": { @@ -21402,7 +21402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "639f51b3-6e88-4603-8794-013888a333b4", + "id": "bef4eb07-8c4b-49ce-a487-3bf09e9d0be5", "name": "Source Owner", "originalRequest": { "url": { @@ -21459,7 +21459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2104d181-fc50-4b11-a07a-2bd911844e64", + "id": "46b438ac-a477-4a56-9d37-bfef5cbe230b", "name": "RoleComposition", "originalRequest": { "url": { @@ -21516,7 +21516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87b3c5c8-be08-4e65-9067-1ce1654f1d29", + "id": "199038be-a577-400c-b4c2-8480e78c9bac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21573,7 +21573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc0b9e84-b4f9-436e-a957-486137bfb3fa", + "id": "1d2af4ec-a4b6-4990-8199-f2fb37a0b626", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21630,7 +21630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f37cd3c5-cbf4-43b0-9eaf-fd762c0315e1", + "id": "c71de846-5f23-42b4-87d4-df7c375e9c0e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21687,7 +21687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ceefc123-c461-43fe-99d9-08f8e9502828", + "id": "9b9b8170-fa0b-4903-97eb-f6d8d5ce5426", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -21744,7 +21744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8b7ed91-4d59-4684-8bec-69fad4cac1c7", + "id": "738c9f64-a62a-4f1a-ad88-cd33781abf50", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21801,7 +21801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a1b52dd-94b5-4e63-bea6-d7d5baa17dbe", + "id": "31af7457-40e8-4003-8588-2cf6c6a2a252", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21864,7 +21864,7 @@ } }, { - "id": "be189c62-bcc7-4a6f-ad6d-1d243b396cea", + "id": "a96b77e3-18a7-42c9-b927-e3460edf89c6", "name": "Activate a Campaign", "request": { "name": "Activate a Campaign", @@ -21919,7 +21919,7 @@ }, "response": [ { - "id": "7143a666-44dd-4a88-a72e-066b950d54eb", + "id": "6dd9a849-e6ef-4dae-89b6-935a19ee60cb", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -21977,7 +21977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa392b90-60fe-4d02-9e9b-429e490a0326", + "id": "67867bea-b40f-4767-81fd-dc4985b91d29", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22035,7 +22035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7003ccec-126f-4c53-aa72-db9126529338", + "id": "f6683ff8-b756-408c-92a9-02ca631a5731", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22093,7 +22093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4570cebb-2e1d-45cf-9125-9398bf34c1e5", + "id": "978f478e-7fca-43c9-b648-a5fe9befcffa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22151,7 +22151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb66e6a2-1eab-4190-8693-30684a423260", + "id": "1f80221a-62bb-4c2d-9cc0-c356374c0159", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -22209,7 +22209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08a7af62-af3e-45ac-90b3-2ef246665bed", + "id": "559ac05e-6190-4157-983a-5842037279c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22267,7 +22267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48b1b332-d526-43ff-9b82-b12d686c84d8", + "id": "865361fe-a874-4249-80df-45fc328d45ba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22331,7 +22331,7 @@ } }, { - "id": "b4c26ac1-52e7-4894-86bd-ac9f93d29163", + "id": "0c306d3a-0a93-4f1b-bb41-8b32fd06e906", "name": "Complete a Campaign", "request": { "name": "Complete a Campaign", @@ -22386,7 +22386,7 @@ }, "response": [ { - "id": "e08c5e01-7e6c-4c03-b5d5-8bccd81554f7", + "id": "7dfbffd5-25f4-4582-b7b6-b8f15ddb4980", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -22444,7 +22444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "186fdc8c-d7cf-4c96-bafa-761434317160", + "id": "69abb5b6-832e-4750-99bc-f65cfc014f54", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22502,7 +22502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fd8dc7e-8e9e-49f1-a2fd-78049a72cbeb", + "id": "29a49ebe-793c-478c-8730-bf16a3d14710", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22560,7 +22560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2f4aca4-d91c-4497-b4cf-2da4debb6cb0", + "id": "8c68a24c-94a2-492f-874c-95644d151957", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22618,7 +22618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc7a5338-bccc-47ef-a20b-6e5e9910983b", + "id": "fe466a45-0bd1-4658-a0b7-c826c2c35aef", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -22676,7 +22676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30874ee7-4606-49b6-9efe-1228cefca35a", + "id": "a3e2fba6-e961-4779-a11a-3193d70605d3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22734,7 +22734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdd92ab6-039b-415b-baf7-09ddc0e6ca68", + "id": "62d098c0-4642-4c6e-99e9-d2ba90f79ef6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22798,7 +22798,7 @@ } }, { - "id": "e7577c61-8432-4981-b7a4-68f392019cd2", + "id": "84933b7a-bd25-4c92-ad04-8b1d6d6617c5", "name": "Run Campaign Remediation Scan", "request": { "name": "Run Campaign Remediation Scan", @@ -22840,7 +22840,7 @@ }, "response": [ { - "id": "24c2d856-c9f8-43c0-8b4b-d78b739c0d60", + "id": "053e1bd0-aeaf-42ef-8fb7-282ee9dbcf4f", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -22885,7 +22885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f83ed33-77b9-4263-92cc-f49549d71064", + "id": "1fa59637-d0f5-4406-9d16-1adf589d339a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22930,7 +22930,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23c52bdb-5d50-427b-9bd0-30634017ee22", + "id": "f8422a6f-dac4-4d68-9884-b450fa58c33f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22975,7 +22975,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af73ebcc-1de7-4523-8e0b-7298627a69e6", + "id": "3c6fec4a-5331-429c-9fe5-8cd8d6beda73", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23020,7 +23020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e643bb5-11e0-4322-a028-0d7b34525a00", + "id": "7aa66eff-1915-4f6e-afbf-7dc00f94bf55", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -23065,7 +23065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7349c505-9875-42fc-84d0-d078e4b7ca99", + "id": "840779b2-a6bc-4988-af67-680d7ba65fd3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23110,7 +23110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdfdc723-e5db-4a5a-bd81-5c89fa84d728", + "id": "db50113b-d228-4dcf-93af-9b2bd8cf005e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23161,7 +23161,7 @@ } }, { - "id": "e591cda2-3b62-4676-8142-cfc38dd0b011", + "id": "846718f6-f543-4f92-b79e-dae2fec7c9d4", "name": "Reassign Certifications", "request": { "name": "Reassign Certifications", @@ -23216,7 +23216,7 @@ }, "response": [ { - "id": "ce62059c-5bec-4404-a4d4-ebe7788d1c5d", + "id": "4f4f70ca-9427-4fdf-9b34-6e97d6ade4bf", "name": "The reassign task that has been submitted.", "originalRequest": { "url": { @@ -23274,7 +23274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81b18ecf-205b-4cf8-a9aa-c0467f499040", + "id": "1c983e21-4ca6-474e-a203-7fdd2331a3b7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23332,7 +23332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "580c3649-cbbc-44f6-9d0e-6a88bb742a27", + "id": "b48762f1-192f-4a6a-9187-581e905e2eb8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23390,7 +23390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d59a4b49-316f-4092-af9f-f7c387f25122", + "id": "0a7d0e0e-0a2e-4586-b125-b4dd80847128", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23448,7 +23448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9c10082-4574-45c8-8b56-cb51701a479a", + "id": "27212e7a-5b9d-4cbd-b424-4a9a3eed4b12", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -23506,7 +23506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ecbf5b1-bd24-48cf-bf98-d0b7a19405e5", + "id": "3774e302-d071-45f6-9f64-e05944ace6c9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23564,7 +23564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "726e71bf-ebd5-4e38-b052-425dd8e6d426", + "id": "73d6e940-152a-455f-874a-83fd0af392a6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23628,7 +23628,7 @@ } }, { - "id": "656c4469-b2a8-43f2-8842-567490835a41", + "id": "507c3265-1a19-47ed-b376-0df7bdf00b71", "name": "Get Campaign Reports", "request": { "name": "Get Campaign Reports", @@ -23670,7 +23670,7 @@ }, "response": [ { - "id": "b48ec7ca-f78a-40f2-8b3a-c2a135c96359", + "id": "af484d55-275e-4db7-9fbc-817009f8d66d", "name": "Array of campaign report objects.", "originalRequest": { "url": { @@ -23715,7 +23715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d108e82-2f6b-48f7-b126-a14c7c12a01e", + "id": "c986e82d-2d8f-4c08-94a3-7d16e75830f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23760,7 +23760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9de47239-99c5-4e3e-8b83-90d7d0a63509", + "id": "c83e1b77-16a8-4291-9f60-967d9a215532", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23805,7 +23805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5972240-0c26-4477-b7a3-48f7b0aa5303", + "id": "01274e3c-c382-4aa8-be29-6534f1d89403", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23850,7 +23850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "606e99a0-3807-4c31-aa26-d942199ae838", + "id": "bb53848c-35ac-4c1e-a6ad-86c6254bf043", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -23895,7 +23895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "666c926b-eac9-4dd6-a9e1-b753db1b0344", + "id": "2e549e22-148e-488c-b843-d2b2f65a1278", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23940,7 +23940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6ff2970-ed84-4365-ab90-3775c1492ca9", + "id": "610f85b5-9e59-4bef-9997-492dca029e8b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23991,7 +23991,7 @@ } }, { - "id": "5b585d37-4516-4374-a1d2-d8a4864796dc", + "id": "6076399a-1a34-49a5-89ea-5c537bdd18de", "name": "Run Campaign Report", "request": { "name": "Run Campaign Report", @@ -24044,7 +24044,7 @@ }, "response": [ { - "id": "1a5a823b-42f2-4d53-9a27-ca861bf70051", + "id": "716871a2-6328-41a9-a251-b182c7cb5c46", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -24090,7 +24090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "834aa9ee-d1ba-4f15-8acb-21ebd88fcaea", + "id": "5bf98f48-2f17-4c1c-9f84-708e1e0f626b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24136,7 +24136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5185fd14-7843-4cfd-9a35-b6276cf066c7", + "id": "ada0b70d-002d-48e7-9f00-4a8e17a69b71", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24182,7 +24182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4664fca-79ef-44c8-9b1a-0052bd336983", + "id": "ab9b4d79-80ea-48a5-8f09-c16c95f0e7ab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24228,7 +24228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d7c71f3-b9de-4420-badc-fcb14205afd4", + "id": "16912b8c-0ad5-4c8e-9056-53062e14ee31", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -24274,7 +24274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0524b6d-f5a1-4d3e-a5b4-d01dc7fff2ff", + "id": "aad9c20e-6ed3-4437-b042-28478401ff70", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24320,7 +24320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a9c4b1e-10e3-4ceb-ac3b-5bc99a8d7c8b", + "id": "7247d407-996c-47b5-bd9b-23cf38a2561d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24372,7 +24372,7 @@ } }, { - "id": "14d46001-528a-4131-9e4a-60c012967f91", + "id": "6ba4b9ee-d227-4c14-9917-28d82d629a01", "name": "Get Campaign Reports Configuration", "request": { "name": "Get Campaign Reports Configuration", @@ -24402,7 +24402,7 @@ }, "response": [ { - "id": "0107e3b7-39cd-4354-9de0-32945cc6064f", + "id": "f7ab07b4-02e9-424b-9098-65dcd23a9d5a", "name": "Campaign Report Configuration", "originalRequest": { "url": { @@ -24446,7 +24446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e822997-b050-4a68-b3ce-4ffb0d069949", + "id": "d6d8fef2-f5dc-433a-8725-f44070694e3b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24490,7 +24490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56a4e65f-7f77-4c60-8295-a4739aba3d6e", + "id": "ab09015f-c998-43b9-9806-1d6bc5da1d95", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24534,7 +24534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "817c9814-a6d9-4a34-a75b-8779850a7ce6", + "id": "bb22e663-bf06-4e9c-b116-e9fc4446cb39", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24578,7 +24578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a100d6f-2bb7-4a3a-9f8e-bbc173cb75a6", + "id": "08b62bb6-db14-4e9e-ae2a-0d3b8730bfc9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24622,7 +24622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6446c85b-2297-498e-a940-edb005e47232", + "id": "e7a5658d-6323-49b4-b069-36ad6f632eb5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24672,7 +24672,7 @@ } }, { - "id": "1ea64bfb-46f6-4f74-b30d-ad01f8834af4", + "id": "efb806aa-0863-4c35-9107-71b1779b221d", "name": "Set Campaign Reports Configuration", "request": { "name": "Set Campaign Reports Configuration", @@ -24715,7 +24715,7 @@ }, "response": [ { - "id": "a9de6896-e716-4ab3-a050-9f5b17c97b5a", + "id": "447a5d84-c833-4442-b874-76f3e53ac635", "name": "The persisted Campaign Report Configuration", "originalRequest": { "url": { @@ -24772,7 +24772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85e3c178-00c2-40ae-9482-43b07a5f5003", + "id": "44162936-331d-4572-a1e8-0e87b20f80bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24829,7 +24829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "273e9a0d-2963-444c-a56a-def482a3387d", + "id": "49975c85-c181-4d7e-bfcc-1a48820c1539", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24886,7 +24886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "975f07d9-caf2-48eb-ad85-f6b9021a6467", + "id": "02c55114-b5eb-4f1f-8da1-511995c2e435", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24943,7 +24943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87f1408a-dd72-4919-8421-19638b2236b6", + "id": "83ebaae0-c88d-411b-8986-8de660fc0c88", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25000,7 +25000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c770950-cd04-4254-81ab-71fd5c5b572e", + "id": "e0ac2403-4f76-4d48-a420-66fde3823815", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25063,7 +25063,7 @@ } }, { - "id": "db231818-450a-4ca7-b22c-0323601d4d1d", + "id": "fc152c0c-4a7f-4542-9f28-de520ddfb74b", "name": "List Campaign Templates", "request": { "name": "List Campaign Templates", @@ -25138,7 +25138,7 @@ }, "response": [ { - "id": "f9d5e98d-1c7d-4d7e-a622-59e1af404c00", + "id": "b15f5f7e-b80f-4733-8567-18ae7a430de3", "name": "List of campaign template objects", "originalRequest": { "url": { @@ -25227,7 +25227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3f9cc7a-4869-429b-80f6-40d9c327370a", + "id": "92e93a54-5819-44cc-b380-d37f8aaa1afc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25316,7 +25316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbee1257-42a5-4c34-afee-69f72b9f826a", + "id": "85f732b9-b59b-46a8-9401-31e3a39bab79", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25405,7 +25405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27e9d486-5f97-43b6-a592-e0f696b6a988", + "id": "c824a5be-91a1-43ef-bd19-f337ab3b1e7f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25494,7 +25494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da488e32-3576-44a0-9180-e42f678850b6", + "id": "381bda93-0378-4df6-a1f1-71c96c9fe844", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25583,7 +25583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd04997c-6117-4cb0-be84-40ac6c9b83ab", + "id": "9d007604-326f-4dd4-97e7-bce54e0e69ee", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25678,7 +25678,7 @@ } }, { - "id": "a80765fb-d530-4dc1-bbd1-2d031c4b3ad2", + "id": "a007af0f-17cc-426b-8be0-8ffda23055df", "name": "Create a Campaign Template", "request": { "name": "Create a Campaign Template", @@ -25720,7 +25720,7 @@ }, "response": [ { - "id": "c998dea1-c73c-45c7-b126-4331eb22f340", + "id": "71f0f9f7-d4cc-456e-83da-5f378f14b0b0", "name": "Manager", "originalRequest": { "url": { @@ -25776,7 +25776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "243af615-639d-4857-97c0-6f8b1cedd87e", + "id": "a0aef363-6795-497b-90d1-33720ca77896", "name": "Search", "originalRequest": { "url": { @@ -25832,7 +25832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d587a636-2f3e-4399-9d2f-0b35e075a49a", + "id": "66e536c1-5a8b-44c5-a352-c281e3a778ea", "name": "Source Owner", "originalRequest": { "url": { @@ -25888,7 +25888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "035f59ea-d07b-4d88-9532-7b67dbb0fdaa", + "id": "5d0f97bb-7715-46ea-9ca6-640f4ed8a572", "name": "RoleComposition", "originalRequest": { "url": { @@ -25944,7 +25944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad66ee85-ac5b-4be8-8203-17563a8cb498", + "id": "bf738ff1-ccd1-4ee7-8cdb-96a452ec8eac", "name": "Manager", "originalRequest": { "url": { @@ -26000,7 +26000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "369da852-3493-4033-b538-74cdd5939ab5", + "id": "8a21869d-4dcb-4594-babb-f83a8bb97e3e", "name": "Manager", "originalRequest": { "url": { @@ -26056,7 +26056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9aa91041-76c0-4a2a-9e32-c47f5dd8803f", + "id": "f03a2520-82a7-4afa-8773-0421346c85fe", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -26112,7 +26112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa21df62-2118-4b3a-bdb5-86bb5d024a58", + "id": "571647de-ab9e-4a60-8bb1-713bcab32674", "name": "Manager", "originalRequest": { "url": { @@ -26168,7 +26168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96b93395-af55-44dd-9b71-d2beb0e585c8", + "id": "bff32d6a-81ee-4b43-8a01-e8929420e2f6", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -26230,7 +26230,7 @@ } }, { - "id": "e11d36ae-26e8-448b-a628-f6932213e1cb", + "id": "bc306f3e-0f81-4d30-a1ff-dbd74cf66c9f", "name": "Get a Campaign Template", "request": { "name": "Get a Campaign Template", @@ -26271,7 +26271,7 @@ }, "response": [ { - "id": "bb7bfe96-cc27-4316-b71b-bd13a880e48c", + "id": "538c86a6-f0b6-4e79-904e-a6af3a219ab7", "name": "Manager", "originalRequest": { "url": { @@ -26315,7 +26315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cab11c00-ec81-47cb-8fd2-71a24e7a2345", + "id": "20c0609f-75d7-4155-b0a1-9ee67ac6a568", "name": "Search", "originalRequest": { "url": { @@ -26359,7 +26359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c880b48-d50e-4693-9f92-4d6c31019a2d", + "id": "701084aa-db09-47db-9bd9-d21a46e32cb5", "name": "Source Owner", "originalRequest": { "url": { @@ -26403,7 +26403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0c809fc-47a6-4b8b-a825-9cc84ab8464d", + "id": "21f89516-e7ac-468b-b932-f99054caacb3", "name": "RoleComposition", "originalRequest": { "url": { @@ -26447,7 +26447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f1e42a2-f21b-40f5-a1b2-6eeee2eed38c", + "id": "4105e44f-a849-4a2b-947a-fb615802b3c9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26491,7 +26491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a100c4ab-7765-45f0-b24d-dfa2ca280f5b", + "id": "e3661298-132e-4ef0-a17b-8803f40159e6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -26535,7 +26535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bea1f85-57bf-4bce-a058-2faf0eca1677", + "id": "b7a9c36c-135c-473b-85d1-5e19cb7a8242", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -26579,7 +26579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df1e7e10-516f-4d66-9831-5d1c4dafb50a", + "id": "49d179a1-9991-4865-a29b-f8cee8b7344b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -26623,7 +26623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fe022b8-3c9a-48ad-891e-cbe2fa029654", + "id": "ee01050b-8530-4ecf-a2d8-59f44d2b9026", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26667,7 +26667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad4d12f8-0b61-4b89-bb42-9aa1be26253a", + "id": "a4f352be-a8f7-4250-8122-ab99dd81456e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26717,7 +26717,7 @@ } }, { - "id": "5ef90a81-0b92-4089-bc23-a58f541ca45b", + "id": "c9ab2ac1-6b88-4d9b-a51f-ff83310979f6", "name": "Update a Campaign Template", "request": { "name": "Update a Campaign Template", @@ -26771,7 +26771,7 @@ }, "response": [ { - "id": "cf01e89a-bec3-44fe-bb35-69fa4b609680", + "id": "006ee008-731b-4efd-b857-3381ce99f721", "name": "Manager", "originalRequest": { "url": { @@ -26828,7 +26828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ed12765-04bd-466b-85cd-8186ea14af61", + "id": "4cd775b4-949e-4a46-8d4e-ddb68a208757", "name": "Search", "originalRequest": { "url": { @@ -26885,7 +26885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b188e8b1-0eca-438c-983a-232694467ea1", + "id": "ef9493d2-1517-4267-91e0-1697ff6d8831", "name": "Source Owner", "originalRequest": { "url": { @@ -26942,7 +26942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3ffd86c-e3ca-44fb-8846-c26ab2105a20", + "id": "ebd26983-9c4e-4b3c-96e2-7093b7c930f4", "name": "RoleComposition", "originalRequest": { "url": { @@ -26999,7 +26999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c975396-0efd-4873-a2b8-2e3c7d03bcd7", + "id": "fb70e1fd-7711-415d-8694-3f97edecd01c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27056,7 +27056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e08e203-92a2-4638-b2fd-b8485b66a07e", + "id": "90899154-6146-4f36-8572-04893f091f45", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27113,7 +27113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d9fc3b6-86d7-4078-a2c4-368f809c0163", + "id": "62eb44e2-ba36-468a-a40f-c0dfb50d82c0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -27170,7 +27170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79176003-4644-4e06-9a7b-363b8390f212", + "id": "e892e7c1-9275-4e11-8974-15dc729fff86", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -27227,7 +27227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33a3c3ee-cb4f-41d5-be8b-aaeda0f06212", + "id": "ed51e505-2ac1-4e4d-91ea-ae48f2ebc0f4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27284,7 +27284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ee47967-6ad4-4b46-aca8-b374b8386e06", + "id": "7e9a390c-483a-428b-afdd-b1208c176a69", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27347,7 +27347,7 @@ } }, { - "id": "d19bdd01-d536-48e7-96a8-c98fa8d8578f", + "id": "f2bfa5e4-cff2-4ab3-9b69-31452d0756ea", "name": "Delete a Campaign Template", "request": { "name": "Delete a Campaign Template", @@ -27388,7 +27388,7 @@ }, "response": [ { - "id": "d8b4c3e6-718d-41cb-920f-30b07222fe8c", + "id": "89582b90-7c2e-4e74-9b68-f48da8eeb343", "name": "The campaign template was successfully deleted.", "originalRequest": { "url": { @@ -27422,7 +27422,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b686af3c-f662-4d0d-847f-a3a11d39f88d", + "id": "4057db30-6402-4276-9f75-650db92eff98", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27466,7 +27466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81594bf9-c3d6-4096-b947-b6cc19b6933b", + "id": "60e9653f-c539-45c7-b56d-9d8e438daaea", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27510,7 +27510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edde4d5e-c38f-40bb-a3ca-d93832effeaa", + "id": "9c988a44-3bff-43bf-bd7c-e23f36c523c8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -27554,7 +27554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4757485-d76e-43e8-bd93-34fc76a97b85", + "id": "c3a5f92d-f90b-453d-b553-703226498bc0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -27598,7 +27598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06ad6ba5-42d4-4b88-b06c-73840f301dfc", + "id": "05dbc2dc-53b3-4716-af10-ac56b330dfee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27642,7 +27642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd7ff313-8f8d-427a-80db-5c0eead6409a", + "id": "41ccbefd-aecc-4ec9-a045-2d37d1ddcfba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27692,7 +27692,7 @@ } }, { - "id": "6306665d-dab5-494f-ba71-094ec01a7e68", + "id": "a131b1ce-7e5c-4cd5-b02c-0420b681b9d5", "name": "Generate a Campaign from Template", "request": { "name": "Generate a Campaign from Template", @@ -27734,7 +27734,7 @@ }, "response": [ { - "id": "42c0f6b9-b7db-40c6-8532-c25cba624d5a", + "id": "adf0599b-f6ce-4a8e-a395-5b53d69520f8", "name": "Indicates a campaign was successfully generated from this template, and returns a reference to the new campaign.", "originalRequest": { "url": { @@ -27779,7 +27779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2167bfd1-201c-4263-82e1-d0b05bc4ab2a", + "id": "09d69dfa-0529-42d8-819d-389b67c8700a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27824,7 +27824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff472a4e-4963-4e7c-9e84-f1545833cf82", + "id": "356aa7de-a04e-46fe-9e51-330f9f00f453", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27869,7 +27869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ed63058-a1bd-42b2-9aa8-a651b4c59fa6", + "id": "15cd5b0f-e0fe-48b3-b12a-616a24439cb0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -27914,7 +27914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "697270c1-37c1-475c-8a96-7bbd37c64eeb", + "id": "759779e8-4c91-44c9-96dc-f80bfd8338c4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27959,7 +27959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "993a3896-bf59-419a-b7a8-173979be0883", + "id": "184b33a2-02a6-4554-ba01-bba38fe104fa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28010,7 +28010,7 @@ } }, { - "id": "1c6dfada-ac71-4b7c-af58-5435a4aee17e", + "id": "6b727fde-67f0-4351-afc8-5fb376d38393", "name": "Gets a Campaign Template's Schedule", "request": { "name": "Gets a Campaign Template's Schedule", @@ -28052,7 +28052,7 @@ }, "response": [ { - "id": "fd43f8ee-9c66-4950-aa87-460ddfbda5b7", + "id": "a9a367b4-885c-41fd-ae6d-73f7d8399608", "name": "The current schedule for the campaign template. See the PUT endpoint documentation for more examples.", "originalRequest": { "url": { @@ -28097,7 +28097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b99b0d40-7f6e-4db5-b3db-a4fcb61a5c8c", + "id": "ffc13ea8-b350-4969-ace0-add89e730388", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28142,7 +28142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "257080a9-af25-4e77-b742-819c8a70b6a5", + "id": "7b7813b6-3410-40ad-993c-480ce6e8b6ed", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28187,7 +28187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9fea810-ccf6-442b-a151-6d6f1582e807", + "id": "087e0585-c799-49d8-89d9-13ca1fbe2c53", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28232,7 +28232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3357863f-d089-4b02-b0e9-a919693cd7d3", + "id": "828b9674-14db-43d8-9ff8-e139ce49a692", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28277,7 +28277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e354c93-d358-4ccb-b4f7-481b34c7b77b", + "id": "1de08de8-611e-4b13-ab3f-0db2962a6b3f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28322,7 +28322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d38a0b3c-f5c1-4049-a4d4-e6923b46eb85", + "id": "a864c240-b7a9-47e4-8129-ef10cd2c8ef9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28373,7 +28373,7 @@ } }, { - "id": "877e308d-5b7b-4716-9ff1-1af83465c5d1", + "id": "1948d877-d8e7-4177-880b-f511822142cb", "name": "Sets a Campaign Template's Schedule", "request": { "name": "Sets a Campaign Template's Schedule", @@ -28428,7 +28428,7 @@ }, "response": [ { - "id": "2b8ccc3d-e173-4558-8cf5-63fdeedc89d0", + "id": "91d08a73-b66a-445a-b877-e0244f6afe73", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -28476,7 +28476,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5e50463f-42e5-4873-94c6-4f6e00f7b2eb", + "id": "1958b1c1-c3eb-4b38-b985-e0de1be7c8a7", "name": "Monthly", "originalRequest": { "url": { @@ -28534,7 +28534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48c361c4-ff2f-4cf1-bf14-7910940383f9", + "id": "1704f16f-26df-4aff-8244-9e276f1351bc", "name": "Once a year", "originalRequest": { "url": { @@ -28592,7 +28592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d3a303f-36fe-412a-8b32-3313cd7709cf", + "id": "06622aae-1474-49e7-b40d-99a5495e468c", "name": "Quarterly", "originalRequest": { "url": { @@ -28650,7 +28650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a03da9c-6086-421a-98de-0f9889fc5c6b", + "id": "f16d98e7-f417-423b-9efb-51bc011ae4bd", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -28708,7 +28708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17a53285-9b72-40db-88ed-0be448b2990b", + "id": "54a1bb16-c773-4b6b-9814-8da189309294", "name": "On a Specific Date", "originalRequest": { "url": { @@ -28766,7 +28766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d77236c8-877e-4ea2-ba67-0f076ee8597c", + "id": "465a7e31-155a-42d7-ad4b-7b642cea7d42", "name": "Once a year", "originalRequest": { "url": { @@ -28824,7 +28824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a0d9c07-8ffb-44b4-a535-62f6a0d2a19b", + "id": "9e76e968-8df8-4cc4-8722-acb3f2971063", "name": "Quarterly", "originalRequest": { "url": { @@ -28882,7 +28882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98ca8631-3475-491c-916b-6f9baceda76b", + "id": "1f7ad6aa-d358-4c8e-b9d7-cc4a43f09ab8", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -28940,7 +28940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5b8389b-0172-4c0e-a987-c2ac474cc1c8", + "id": "0515f6b8-a908-4e8c-bdda-8fe00c4f7cc6", "name": "On a Specific Date", "originalRequest": { "url": { @@ -28998,7 +28998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a846bde5-1fa1-4056-89ae-6e2a1ce4141c", + "id": "1ac3b39a-cbbc-4683-8053-9f5d88916ad3", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -29056,7 +29056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42b5497b-cc32-4968-8f33-8b19918ed9ff", + "id": "504f9133-a679-402a-955f-53585ff13218", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -29114,7 +29114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ab85346-86fd-4fcb-be2e-bb139c5d1afc", + "id": "9a3f3419-0eb0-4904-bfc4-f5ac75882f74", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29172,7 +29172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5fd0b66-56ea-45fa-9f57-d10a8afa40ed", + "id": "737bfd2c-ba20-45d4-97ea-af648e455eba", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -29230,7 +29230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2abcbd1d-1e1e-48ec-a8f6-082f5a404e8b", + "id": "2d8a84e3-5c40-481b-a01d-0d394253a75c", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29288,7 +29288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7695b909-fb38-4a2a-96ca-74ede7348cbc", + "id": "85181a9d-84ac-4cf6-ab36-5667492fe0a2", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29346,7 +29346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "188fd088-8b71-47ed-b655-2bdbc960204e", + "id": "da3a3a43-564e-418c-8dc8-0267b61dbc5c", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -29410,7 +29410,7 @@ } }, { - "id": "6ce4dbdf-c3e1-4796-a8b6-5698a32d07eb", + "id": "ca966589-34c1-40a5-9c13-7196dddfaa2c", "name": "Deletes a Campaign Template's Schedule", "request": { "name": "Deletes a Campaign Template's Schedule", @@ -29452,7 +29452,7 @@ }, "response": [ { - "id": "8ab52e8c-cd43-46a3-bfc9-4300af33667a", + "id": "8526fedd-fc23-4b8f-9ab8-8fb8c0dd2cdb", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -29487,7 +29487,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1107d70a-e633-455a-875c-b012ed277c9a", + "id": "e16e18b8-e5ed-40ab-be64-063ff10a63d1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29532,7 +29532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc4ee0c3-3742-4de6-a750-d4162fff6fce", + "id": "ae825736-180b-4fbd-8e5a-3d8787990224", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29577,7 +29577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b70e5a0a-ff1d-4e18-a87a-0c1e4461e156", + "id": "058f4623-24b5-4016-b1b9-99e69840e3b0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29622,7 +29622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f0417c8-d547-4680-8472-60c1e72de3a5", + "id": "1ba2f7a9-958b-4d23-8b38-34564f954b39", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -29667,7 +29667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cede4314-39f1-4c3c-8101-6512e69adddd", + "id": "3f24c1f5-19df-42b7-af4b-f4a1ea201cfe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29712,7 +29712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35aaff11-a813-4385-a464-5f0bd3489471", + "id": "56615342-cae5-4de5-b861-059778267cea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29769,7 +29769,7 @@ "description": "Use this API to implement certification functionality.\nThis API provides specific functionality that improves an organization's ability to manage its certification process.\n\nA certification refers to IdentityNow's mechanism for reviewing a user's access to entitlements (sets of permissions) and approving or removing that access.\nThese certifications serve as a way of showing that a user's access has been reviewed and approved.\nMultiple certifications by different reviewers are often required to approve a user's access.\nA set of multiple certifications is called a certification campaign.\n\nFor example, an organization may use a Manager Certification as a way of showing that a user's access has been reviewed and approved by their manager, or if the certification is part of a campaign, that the user's access has been reviewed and approved by multiple managers.\nOnce this certification has been completed, IdentityNow would provision all the access the user needs, nothing more.\n\nThis API enables administrators and reviewers to get useful information about certifications at a high level, such as the reviewers involved, and at a more granular level, such as the permissions affected by changes to entitlements within those certifications.\nIt also provides the useful ability to reassign identities and items within certifications to other reviewers, rather than [reassigning the entire certifications themselves](https://developer.sailpoint.com/idn/api/beta/submit-reassign-certs-async/).\n", "item": [ { - "id": "f8a286ac-b017-4b41-876b-ef5b13610fec", + "id": "32776cb8-ba80-4238-bc8f-502b1e0356aa", "name": "Reassign Certifications Asynchronously", "request": { "name": "Reassign Certifications Asynchronously", @@ -29824,7 +29824,7 @@ }, "response": [ { - "id": "860de4b6-a3d6-4d78-95af-02cf7e778d53", + "id": "f51234ad-2136-4905-af82-4d218123838e", "name": "A certification task object for the reassignment which can be queried for status.", "originalRequest": { "url": { @@ -29877,12 +29877,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\"\n}", + "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"QUEUED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "447cec5e-7dc0-4c67-ab4f-4fbf03f36445", + "id": "a4276d80-8d06-456d-9719-119e41d8f708", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29940,7 +29940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa6cb831-d352-4c96-87d5-497ff0ef9e3e", + "id": "e941eaef-73d0-44e3-9e18-9f620ae1e822", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29998,7 +29998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "748f3d75-18e0-4bc3-83a1-28229d7c8739", + "id": "c57b14b7-693d-418a-bcb3-0a51943d5313", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30056,7 +30056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9762cc3a-20a1-420a-80c9-4650eb7b36f0", + "id": "1d2d29f1-0a05-4915-be56-55a318bec19b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30114,7 +30114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "187e86cf-eaa3-4aca-bb77-19bfe50743c6", + "id": "86ae5e7f-4741-46bf-907d-09aec57e3931", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30172,7 +30172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef3899b6-5e6d-4ef0-b1ea-494e704bcb9c", + "id": "67eabc3c-8b59-4a99-b042-cb62a1be524a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30236,7 +30236,7 @@ } }, { - "id": "a63dff43-eb56-4401-8531-1afaf4b89742", + "id": "e0008607-c611-4575-9b43-429355484e7d", "name": "Certification Task Status", "request": { "name": "Certification Task Status", @@ -30258,7 +30258,7 @@ "variable": [ { "type": "any", - "value": "in aute elit ullamco", + "value": "magna dolore deserunt", "key": "id", "disabled": true, "description": { @@ -30268,7 +30268,7 @@ }, { "type": "any", - "value": "in aute elit ullamco", + "value": "magna dolore deserunt", "key": "taskId", "disabled": true, "description": { @@ -30289,7 +30289,7 @@ }, "response": [ { - "id": "242963da-759f-4d31-80a4-da2180670577", + "id": "7c7fef79-940f-47f6-8225-9c9d0887a86f", "name": "A certification task object.", "originalRequest": { "url": { @@ -30330,12 +30330,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\"\n}", + "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"QUEUED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6ec69a50-f64c-40a8-8e70-3019abe2d8b3", + "id": "18e3aa89-cb85-4125-a8c8-488e5556287b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30381,7 +30381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9b18429-f0fe-41e8-a023-397bee1902f4", + "id": "858567b9-0300-498b-8d32-e30f77ad0b15", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30427,7 +30427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff3abd35-26ba-4ea6-8d15-92e9c69ee90d", + "id": "75cb113a-cf1b-4a67-ad74-b7fa0df2dc34", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30473,7 +30473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8964f0b0-4f18-405c-b1a0-a5fc34d265d8", + "id": "c813e547-7bf6-49de-a589-9ee0c251aac0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30519,7 +30519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f5675ca-59c8-463b-a862-a176372a0ea8", + "id": "72280227-4dbf-4ac0-9a35-ad31e1fec3b4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30565,7 +30565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4401bb1c-6bdf-4046-ba3d-866e62790081", + "id": "759194d5-c3fe-44ed-8095-d73feb1496e1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30617,7 +30617,7 @@ } }, { - "id": "dd889986-72e6-4b65-9878-60fd8e2be65f", + "id": "a83bec8d-b20b-4676-8a88-ec3449d84533", "name": "Pending Certification Tasks", "request": { "name": "Pending Certification Tasks", @@ -30638,7 +30638,7 @@ "variable": [ { "type": "any", - "value": "in aute elit ullamco", + "value": "magna dolore deserunt", "key": "id", "disabled": true, "description": { @@ -30659,7 +30659,7 @@ }, "response": [ { - "id": "a5704847-5b05-4a13-a7ee-4903038195b8", + "id": "7344c238-ee4f-45a0-af7f-c1b0a8164c9e", "name": "A list of pending (`QUEUED` or `IN_PROGRESS`) certification task objects.", "originalRequest": { "url": { @@ -30699,12 +30699,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"QUEUED\"\n },\n {\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"ERROR\"\n }\n]", + "body": "[\n {\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"IN_PROGRESS\"\n },\n {\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "44823de3-65c2-43dd-b905-d0d5d53145f1", + "id": "32397ff2-75ae-43ca-89f8-cab4eabad56b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30749,7 +30749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f9bd201-c310-4fa0-8f83-dea36f4aae94", + "id": "e45ea5b2-e338-424f-8201-352ec1cbe1fd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30794,7 +30794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "193e4d25-9b40-446b-82c6-552f8d072eaa", + "id": "3f1ec4c7-1083-45b6-8191-7a40b147729b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30839,7 +30839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aad85e77-189b-4d96-9b10-1dd6252cb4a3", + "id": "8094e8e0-fe4d-42de-aefc-c3d7c96a7e60", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30884,7 +30884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ba582d4-06c3-4c94-8139-ad8d0303f878", + "id": "3052d3a2-73d4-403b-aa0d-15916eea6205", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30929,7 +30929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6982ca1c-d464-4a4f-8256-f6ac6d258009", + "id": "8269dfaf-5144-4f3e-b6ae-0264d171fafe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30980,7 +30980,7 @@ } }, { - "id": "0c8b6f15-b136-435a-b68a-1898a1c5836f", + "id": "784ebb6a-aec5-4b3e-9af4-041f7ff4b944", "name": "Permissions for Entitlement Certification Item", "request": { "name": "Permissions for Entitlement Certification Item", @@ -31071,7 +31071,7 @@ }, "response": [ { - "id": "93e60b63-75f9-4c6b-924c-31b4bfa1ea0d", + "id": "31b1048d-9a19-4fac-b59d-cb7b6ee92204", "name": "A list of permissions associated with the given itemId", "originalRequest": { "url": { @@ -31155,7 +31155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0dbb1c62-2d50-41e2-a8d6-4ed8247ff3cf", + "id": "07c251cd-537e-483c-88dc-458a397f3e17", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31239,7 +31239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffeb2dfc-4a38-4324-a5dd-c3d2d9d4a0e4", + "id": "b2574579-4fa2-4869-b9b6-2626c77a2961", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31323,7 +31323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72e12c93-0a29-4fc7-bfb7-daa24e386557", + "id": "a0bdd7d8-9318-4b27-9983-5410742c8a49", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31407,7 +31407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "079974db-a043-4ee7-beae-c31d69a671bb", + "id": "937dddc7-f0aa-401e-ad71-dcbb57947761", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -31491,7 +31491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b996c126-0170-411f-81f0-6d25facac1e4", + "id": "b14fe0dd-327f-422b-8db0-a919d5e349b5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31575,7 +31575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fa9950a-938a-4753-b161-ab8edfed225d", + "id": "3ffe14b4-251c-44dd-bd06-673e569abab0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31665,7 +31665,7 @@ } }, { - "id": "d649ba49-b60f-47ac-a525-e441f101868d", + "id": "7f0fa790-c6c7-4219-8943-db0cac6c3221", "name": "List of Reviewers for certification", "request": { "name": "List of Reviewers for certification", @@ -31753,7 +31753,7 @@ }, "response": [ { - "id": "998b7471-da01-4e14-aaf7-38035d726e44", + "id": "ce90c0eb-3e9f-4650-9bd7-de4ac896f6d5", "name": "A list of reviewers", "originalRequest": { "url": { @@ -31844,7 +31844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efc65541-0919-4c20-9e58-1629067b4e9b", + "id": "1eacab35-695e-4530-9947-be1201bfaaaf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31935,7 +31935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2d3a6e2-3458-469c-bcf8-af0e25f24f09", + "id": "75d5dc1a-d51b-4a40-b9a4-534cf463da36", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32026,7 +32026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4389ffca-33ad-4533-9c0d-5ebdc24dd1ba", + "id": "b79e329d-2faa-4062-8e1c-e95c48a994b2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32117,7 +32117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a575e126-8044-4659-b850-4df1d56adf6d", + "id": "50aeb178-81b4-4fd1-8eaf-7f8f9285e8c7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -32208,7 +32208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e13ea1d3-3fe2-45db-806e-2f2ea210e26d", + "id": "ab3bd2fc-7e28-4d8f-a777-0042cefd3d82", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32299,7 +32299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff0703b8-8918-4c2c-9404-cb228f7fc294", + "id": "6f4f559b-6d38-4c64-9772-3d984320c610", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32402,7 +32402,7 @@ "description": "", "item": [ { - "id": "2309fe1d-7d7f-4312-b2e5-36cf3f1077ba", + "id": "d2a3ed99-0090-48b8-98e3-55220d3333a6", "name": "List Connector Rules", "request": { "name": "List Connector Rules", @@ -32431,7 +32431,7 @@ }, "response": [ { - "id": "46d2d0d6-5c92-492f-90f2-38f53368ef7a", + "id": "84c367d1-751a-4b92-97b1-13106c85a44e", "name": "A list of connector rules", "originalRequest": { "url": { @@ -32474,7 +32474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e4662e4-5120-46cf-8e0f-bb960b981925", + "id": "240c730e-3b23-4892-b70e-298f066cf3d0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32517,7 +32517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a83a6cdf-7adf-4376-a683-0373d900634c", + "id": "b7ec8773-730f-467a-8664-1c1d1ceb5969", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32560,7 +32560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b5963b0-0199-4cf7-810c-e6e5a396ac00", + "id": "18d5bd73-53f6-4fd3-9daa-a87c91f4a6b6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32603,7 +32603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d84f47c-835c-4cf2-bf46-39eca788d91d", + "id": "4fcee8d6-0c0a-4c43-bf27-202ebe0de92f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32646,7 +32646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddc55207-220c-4243-893a-9e7b1cfa1d1a", + "id": "e6552a32-2df0-42ff-a2d1-23d391c8f7fd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32695,7 +32695,7 @@ } }, { - "id": "5359c58f-527a-4d88-9170-c7b000632ca6", + "id": "78f81977-eca6-4d81-9604-1166796c483a", "name": "Create Connector Rule", "request": { "name": "Create Connector Rule", @@ -32737,7 +32737,7 @@ }, "response": [ { - "id": "2d0e1a06-2626-437b-98d3-dd8bb25e8dde", + "id": "249c4428-9cd4-44dc-bdec-f3e4cf151362", "name": "The created connector rule", "originalRequest": { "url": { @@ -32793,7 +32793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4300ab2d-e815-4e73-9c19-ec025626dba5", + "id": "09ad39e8-04b9-47dc-ab09-dededcf2e3b5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32849,7 +32849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf1bc3ab-af95-4a14-a2f4-6277d386a597", + "id": "fcc928d2-e9f3-4ea1-836e-703a27279ec3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32905,7 +32905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecd08cdc-b667-435a-bf40-a8fecd8b9ffe", + "id": "4985afad-0a1d-4375-a719-5a7d373016bb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32961,7 +32961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f200a2af-9515-41bd-bb58-efd70119e45a", + "id": "1ecc42a0-1adb-4e5c-8707-a088d5ce7310", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33017,7 +33017,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23a16977-f7d8-49eb-beeb-a60afc502896", + "id": "85a0ec4a-d8ba-4eac-a769-5e0318b469e8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33079,7 +33079,7 @@ } }, { - "id": "9a0caddb-8feb-4107-8ea2-af0eb8e98087", + "id": "9d7dd0ab-5862-4215-b337-959a8ac6c2aa", "name": "Connector-Rule by ID", "request": { "name": "Connector-Rule by ID", @@ -33120,7 +33120,7 @@ }, "response": [ { - "id": "449a2cfa-28d3-4f00-87b9-ce3475f37d23", + "id": "9ed3a826-5be6-4b0e-aee1-ea2198fcbb07", "name": "Connector rule with the given ID", "originalRequest": { "url": { @@ -33164,7 +33164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e1bdab6-0589-444d-9173-468d8c0682cc", + "id": "db8b9213-a734-4131-acd0-99389395ac37", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -33208,7 +33208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29f0c89a-72a1-4df6-92d2-73bc48d3b9aa", + "id": "03ac76d7-839c-4b79-b4ef-a6fa3a9d26ae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -33252,7 +33252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0aa2b91a-0e79-4b4c-8eaa-038eaa01acf1", + "id": "124b5ac7-c543-4902-a6a8-7696e06c5648", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -33296,7 +33296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d90534d-cafa-4e48-9372-3fa7002d67cf", + "id": "053fd1b2-fd56-450b-8bbd-fc7f6f351417", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -33340,7 +33340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd729241-b722-48ab-850a-34e8b7a9b3d5", + "id": "3f031bed-5dc7-4f1c-a46d-839fb10ff43e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33384,7 +33384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6251f5f-3d7c-485f-adf5-02997ded802d", + "id": "7d3d0634-5e1e-41e6-a502-18761cfa6cab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33434,7 +33434,7 @@ } }, { - "id": "13910757-14c0-4588-bf05-c3286c087c9f", + "id": "073e2662-afa1-4d85-87a5-ef9966349b55", "name": "Update a Connector Rule", "request": { "name": "Update a Connector Rule", @@ -33488,7 +33488,7 @@ }, "response": [ { - "id": "8d42a00e-c9bf-4e1a-b04e-f235c4bd4b67", + "id": "659890fb-804c-4cdf-bd50-27885d6e5c32", "name": "The updated connector rule", "originalRequest": { "url": { @@ -33545,7 +33545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95744442-3ff6-4245-bb78-fd838f21be0a", + "id": "4a8f6b8d-130d-4b7a-b7df-5268ebd08fd0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -33602,7 +33602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91ea9004-e44f-4b52-81d1-1622e917ea18", + "id": "3308a08f-f8f3-485a-a2ec-567eb60371bc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -33659,7 +33659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe7c172f-053c-438e-b0ba-be6dfebff039", + "id": "9a674693-3fe1-4c82-8c02-3770431b95ce", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -33716,7 +33716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bedba8b7-856b-444a-b05f-8491ca56a0ed", + "id": "093f200a-14f3-426f-ba68-65f53cec979c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -33773,7 +33773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "418fa7aa-914b-4fa6-87bc-12d2b9fca90c", + "id": "52d320be-2148-46dd-bb87-4ad53993040c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33830,7 +33830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6db6b82-f17e-4ee2-8d9e-a4b9f81ea33a", + "id": "e35abfce-a9bd-4d52-bd9c-b61b32dbb97a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33893,7 +33893,7 @@ } }, { - "id": "1246e2c6-c2e7-40fa-b57e-aedf8c413966", + "id": "9df78b61-5401-44d8-901f-b0bee61cb6ed", "name": "Delete a Connector-Rule", "request": { "name": "Delete a Connector-Rule", @@ -33934,7 +33934,7 @@ }, "response": [ { - "id": "7ea1badd-025e-4e72-95d0-8e505d64fe8b", + "id": "1425a63d-0dca-4ef1-9dae-2c3db604f5e3", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -33968,7 +33968,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a045ac7a-d99c-4133-8772-797b19768d6b", + "id": "3fbd296e-7321-4936-b2d4-99809aa1b84c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34012,7 +34012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74a83741-868c-4a02-82ed-53468a0ab266", + "id": "0c275305-0a56-402c-b084-b67024110da3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34056,7 +34056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b481d6ba-b20f-4dbe-9ec7-fa5e87124c60", + "id": "5df7fd95-380c-43fa-96e6-a51d2e526e93", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34100,7 +34100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f445ba0-7a29-4ce2-80ed-c2d6ad1b9380", + "id": "f4b6d58e-83ee-4992-b44d-b5f3e2df0fa6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -34144,7 +34144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc78c6e7-0222-4a1a-b45a-863e87bd3b86", + "id": "4080e9fd-0a20-4564-880f-bd62e6ee71de", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -34188,7 +34188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c5dc70c-86a4-40a3-b01f-0c6f70b14a8c", + "id": "7b360911-7e5e-4338-a638-34227b700943", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34238,7 +34238,7 @@ } }, { - "id": "293f0189-077e-42c2-9cdb-6de4a1fb4135", + "id": "6d286af8-a905-4016-8f03-6f5aaf2927c8", "name": "Validate Connector Rule", "request": { "name": "Validate Connector Rule", @@ -34281,7 +34281,7 @@ }, "response": [ { - "id": "b6ad96bb-2f2a-4b88-9219-72264537717f", + "id": "53659882-65d9-4534-929f-8d1914a69cb0", "name": "The status of the code's eligibility as a connector rule", "originalRequest": { "url": { @@ -34338,7 +34338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35f5a4ea-5aec-4db0-8dbf-9c4cdb46b7cb", + "id": "7949b8ae-3941-425e-8288-261d8f7ec468", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34395,7 +34395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4e35a87-08fb-4bf8-b246-549f28695dac", + "id": "a24b16fa-80f6-47c9-ae37-5178a566733d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34452,7 +34452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1e83f27-305e-494e-a684-f2298a82579f", + "id": "dff5f587-6452-4d17-9410-6d8b25a5572d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34509,7 +34509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35d68a44-953c-4ff8-b57c-892153d5fff8", + "id": "a2018390-60d1-4083-8d46-66d34c4d53f3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -34566,7 +34566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "953dc7a2-c009-4822-a301-8790eca524a6", + "id": "9bac6cfc-9acf-450e-b011-e5f26865c5b2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34635,7 +34635,7 @@ "description": "Use this API to implement connector functionality.\nWith this functionality in place, administrators can view available connectors.\n\nConnectors are the bridges IdentityNow uses to communicate with and aggregate data from sources.\nFor example, if it is necessary to set up a connection between IdentityNow and the Active Directory source, a connector can bridge the two and enable IdentityNow to synchronize data between the systems.\nThis ensures account entitlements and states are correct throughout the organization.\n\nIn IdentityNow, administrators can use the Connections drop-down menu and select Sources to view the available source connectors.\n\nRefer to [IdentityNow Connectors](https://documentation.sailpoint.com/connectors/identitynow/landingpages/help/landingpages/identitynow_connectivity_landing.html) for more information about the connectors available in IdentityNow.\n\nRefer to [SaaS Connectivity](https://developer.sailpoint.com/idn/docs/saas-connectivity) for more information about the SaaS custom connectors that do not need VAs (virtual appliances) to communicate with their sources.\n\nRefer to [Managing Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html) for more information about using connectors in IdentityNow.\n", "item": [ { - "id": "8a43f243-d556-4e41-962f-b93571a45837", + "id": "3f37657f-335f-40a9-ab89-c6a2dc5a0a42", "name": "Gets connector list", "request": { "name": "Gets connector list", @@ -34710,7 +34710,7 @@ }, "response": [ { - "id": "4c080cfd-c427-45a5-83c5-23a2e5731321", + "id": "387909d7-9d07-42e2-9091-d28b5beae9aa", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -34799,7 +34799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be0234a5-4a5b-4b71-8f6b-a4ecf1e91276", + "id": "aee3a40d-5f67-4c53-96a3-acd74daadb73", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34888,7 +34888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4222a8b5-4322-4281-b56c-04211fc609cd", + "id": "c43e2bf0-895b-43b7-a255-4d1ca9ec875b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34977,7 +34977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9d0ae36-5911-4cd9-a20a-90c8881557be", + "id": "688e9fa4-4ea5-4ef9-a17d-c03a8582b133", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -35066,7 +35066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fd2cd64-ef31-4f92-a95c-7504dcd4fa89", + "id": "63cc5bdb-70f8-4426-99f4-ba9287c40b9f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -35155,7 +35155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b6f06e1-3d5b-4937-b89c-220e3623c6ca", + "id": "f79b837d-b4b7-49b3-952e-8785298461c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -35244,7 +35244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30c487fb-c78b-4f5a-bc63-1668b01d8139", + "id": "0a9a4e99-10e8-4d15-9e50-a69f0628f2be", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35345,7 +35345,7 @@ "description": "Use this API to build and manage custom forms.\nWith this functionality in place, administrators can create and view form definitions and form instances.\n\nForms are composed of sections and fields. Sections split the form into logical groups of fields and fields are the data collection points within the form. Configure conditions to modify elements of the form as the responder provides input. Create form inputs to pass information from a calling feature, like a workflow, to your form.\n\nForms can be used within workflows as an action or as a trigger. The Form Action allows you to assign a form as a step in a running workflow, suspending the workflow until the form is submitted or times out, and the workflow resumes. The Form Submitted Trigger initiates a workflow when a form is submitted. The trigger can be configured to initiate on submission of a full form, a form element with any value, or a form element with a particular value.\n\nRefer to [Forms](https://documentation.sailpoint.com/saas/help/forms/index.html) for more information about using forms in IdentityNow.\n", "item": [ { - "id": "a9cbcc17-9838-4050-948e-b39881738056", + "id": "939771dd-0453-400a-a11e-d628cf506a19", "name": "Export form definitions by tenant.", "request": { "name": "Export form definitions by tenant.", @@ -35411,7 +35411,7 @@ }, "response": [ { - "id": "d3a50b5c-4151-4b6d-b8ba-c69340030f43", + "id": "93a49bc9-ba18-4aae-b00a-41bec7261865", "name": "Returns a list of form definitions by tenant", "originalRequest": { "url": { @@ -35486,12 +35486,12 @@ "value": "application/json" } ], - "body": "{\n \"count\": 1,\n \"results\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"voluptate veniam dolor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sunt\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ut elit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"culpa quis tempor\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sit commodo\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"culpa ad irure aliquip aliqua\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Excepteu\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"id enim sed\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n }\n ]\n}", + "body": "{\n \"count\": 1,\n \"results\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"et eiusmod irure sint cupidatat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"velit voluptate\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ad aliquip enim sit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"esse tempor\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"amet do\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliqua occaecat irure Ut\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"esse cupidatat non\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ut commodo et voluptate officia\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a8a1539a-c23b-4373-a52a-2f59db2fe5f4", + "id": "0903c3bc-e3a8-4ce9-9465-417d2324fe8f", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -35566,12 +35566,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6f6bb839-7b3b-4a6d-8b53-da0f0b4683b1", + "id": "59801306-05f3-4dc7-beae-7d4d9652d05a", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -35646,12 +35646,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "17a2d50c-627b-49ed-bbbe-f00b499121a3", + "id": "f143bb02-5abe-4e8c-92e9-4caf1a869980", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -35726,12 +35726,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0802d650-8dc7-4e75-b93f-576ad7c335b2", + "id": "cb9edd26-689c-4305-8c87-4e00456aedc7", "name": "Too many requests", "originalRequest": { "url": { @@ -35811,7 +35811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af386bd4-6a92-446a-9e95-1899e1ebc549", + "id": "5ea488b2-1d8e-439e-9f25-b025afac3d74", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -35886,7 +35886,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -35897,7 +35897,7 @@ } }, { - "id": "65cdaecc-0925-4c3f-a71e-b4e2a4d3337d", + "id": "67b81ceb-012e-4246-a2de-ce77fc173646", "name": "Creates a form definition.", "request": { "name": "Creates a form definition.", @@ -35936,7 +35936,7 @@ }, "response": [ { - "id": "7d29ffee-f76a-417e-b663-7e3a662c296a", + "id": "95210c11-cbb8-4c62-9338-84f6491492c7", "name": "Returns a new form definition", "originalRequest": { "url": { @@ -35987,12 +35987,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"anim\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"amet Duis Ut qui\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"qui amet ipsum proident pariatur\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in ullamco\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", + "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"veniam exercitation commodo consequat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolor cillum deserunt sunt\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"esse velit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sint elit minim\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f51483fa-ce64-4ac0-b556-90be099175e5", + "id": "e6edc00d-6654-49d6-a6ca-f59dc3c6ea44", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -36043,12 +36043,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "29685501-cf19-401d-abda-f9283a7197dd", + "id": "8ae32f2f-ec1a-49a3-8d87-b0b1ea861033", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -36099,12 +36099,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d437daad-b9ec-49d7-969c-f5cc0d16887f", + "id": "2d99b534-0666-439f-9d95-d8debb693e14", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -36155,12 +36155,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c027c19f-0115-47bc-812b-5459d44d6bf5", + "id": "8d4d9132-768b-4df0-9219-e3d407f4a14b", "name": "Too many requests", "originalRequest": { "url": { @@ -36216,7 +36216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c53f9997-4794-4f87-988c-2fb550381f70", + "id": "0fd4e9ce-23bf-4357-8535-ecf7062a6b5c", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -36267,7 +36267,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -36278,7 +36278,7 @@ } }, { - "id": "3cfd38d1-4c6f-4261-906a-88dc755c0695", + "id": "667dee0d-ba41-4b6f-9361-f34124eada1d", "name": "Return a form definition.", "request": { "name": "Return a form definition.", @@ -36319,7 +36319,7 @@ }, "response": [ { - "id": "b8057000-8442-4011-9fe4-4dc57902c0cd", + "id": "5fd2c1e8-45ad-4c82-bac5-deabb26ba50a", "name": "Returns a form definition", "originalRequest": { "url": { @@ -36358,12 +36358,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"anim\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"amet Duis Ut qui\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"qui amet ipsum proident pariatur\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in ullamco\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", + "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"veniam exercitation commodo consequat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolor cillum deserunt sunt\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"esse velit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sint elit minim\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b0ff7302-ca5b-499f-b6da-f30718417fb9", + "id": "399cffad-1399-45d0-b8a1-c9dfe961551d", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -36402,12 +36402,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b33cadb0-c206-49ce-a996-d649bf2ecad0", + "id": "93b765f7-b8b0-44b4-9ca4-6f4a83c5e351", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -36446,12 +36446,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3f6d92af-8a0c-4e02-ad95-5483165c3c0b", + "id": "7b4f6198-6e7d-4ceb-8339-59ba779e9f4d", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -36490,12 +36490,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f0baa824-ba93-47ac-9fa6-b153766a7467", + "id": "5f89ea69-c52f-4e37-9e99-82b6067cf3ca", "name": "An error with the item not found", "originalRequest": { "url": { @@ -36534,12 +36534,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e80e71d5-4f6f-4722-b60c-fe185475a97a", + "id": "bd7e49a9-bc8c-4f6e-a355-6c2cc4a62653", "name": "Too many requests", "originalRequest": { "url": { @@ -36583,7 +36583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33c87a23-098b-418a-b305-03cfb28cb9f7", + "id": "e9b46f9f-5560-457b-8d67-1178b4b84cfb", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -36622,7 +36622,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -36633,7 +36633,7 @@ } }, { - "id": "4e1058c0-7ff2-4c07-bfd3-7a512cad79b4", + "id": "429c98a4-1bea-447b-9968-e6a5ae0e35f7", "name": "Deletes a form definition.", "request": { "name": "Deletes a form definition.", @@ -36674,7 +36674,7 @@ }, "response": [ { - "id": "3ca9733b-4f55-45aa-83ef-771d9ddd7930", + "id": "90268302-3ebd-4167-acdb-c4148a3e0602", "name": "Returns an empty body", "originalRequest": { "url": { @@ -36718,7 +36718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f4918cb-abc9-4174-88e5-13893f92adf3", + "id": "44a19ae4-d7b6-41d4-b958-f398e6172003", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -36757,12 +36757,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cb700ea4-8d84-4730-82dc-52735cede04d", + "id": "0206dd98-2c34-431c-9a91-818261a03600", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -36801,12 +36801,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "889df17a-6eb0-446e-a3c8-bce99c84449d", + "id": "4dc42070-593e-430e-8180-d62ed8974300", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -36845,12 +36845,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3c9d0a52-dca2-43c3-913b-dc1d50e6c169", + "id": "dee8db96-c070-4db2-879b-5a9d5d011f17", "name": "An error with the item not found", "originalRequest": { "url": { @@ -36889,12 +36889,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f2fcf762-6263-40b0-b370-fbb648dbf52a", + "id": "208b959f-8a1c-4419-9e58-1b4a66f2362b", "name": "Too many requests", "originalRequest": { "url": { @@ -36938,7 +36938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e88683e8-e4ba-4a4a-8ae1-615969bb243d", + "id": "39c6ed1f-39b5-4b46-b174-b4c51dfb8bbf", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -36977,7 +36977,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -36988,7 +36988,7 @@ } }, { - "id": "4ea63e5f-3f2b-45a9-8ce2-9342444befec", + "id": "66a3d102-f941-4409-be3a-eca85ca98249", "name": "Patch a form definition.", "request": { "name": "Patch a form definition.", @@ -37042,7 +37042,7 @@ }, "response": [ { - "id": "2b358791-e1dd-46b2-b8b7-d0310cda33ca", + "id": "3cdf42f7-5a57-451f-89d7-d775397f554a", "name": "Returns the form definition updated", "originalRequest": { "url": { @@ -37094,12 +37094,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"anim\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"amet Duis Ut qui\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"qui amet ipsum proident pariatur\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in ullamco\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", + "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"veniam exercitation commodo consequat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolor cillum deserunt sunt\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"esse velit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sint elit minim\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "264f7d02-a381-4946-8033-51360384906f", + "id": "27b154d8-f9cf-454a-b807-b41019efd9ff", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -37151,12 +37151,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c56d72b5-e0d9-434c-b521-d44563168210", + "id": "24ac6610-7b7f-4284-9e6d-d11c638c0e16", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -37208,12 +37208,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ffaf9e0e-a536-4e95-b35f-42555fe7004f", + "id": "72258d92-f754-40f0-9662-1440e03f88bb", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -37265,12 +37265,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3a930ad6-7b5c-48bd-ba42-761183e8b9c3", + "id": "dba7361a-f819-432b-8725-65678d0ed91a", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -37322,12 +37322,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d4522b38-d27d-4485-a6c0-499e93ca7d13", + "id": "1603d061-97b5-4cf6-b369-e041c056ef94", "name": "Too many requests", "originalRequest": { "url": { @@ -37384,7 +37384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c4bd50c-7d10-403c-be75-92e1529d428b", + "id": "a14244a7-6865-4d1f-b2e7-228d57218084", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -37436,7 +37436,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -37447,7 +37447,7 @@ } }, { - "id": "8dfd7a91-3c1c-4f6e-b0b0-83536bbe48fb", + "id": "cee6d567-7481-49e1-aa74-8043219a0354", "name": "Preview form definition data source.", "request": { "name": "Preview form definition data source.", @@ -37527,7 +37527,7 @@ }, "response": [ { - "id": "b92a68b2-b96d-438f-8cb4-e200583ee41b", + "id": "f38191b5-0b0a-4c24-b8f5-4ff3f6cd9143", "name": "Returns a preview of a form definition data source", "originalRequest": { "url": { @@ -37613,7 +37613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "512130d4-aee3-4724-9304-e574fe0b9d54", + "id": "b345778b-a1c9-477c-a660-46fef000bbbc", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -37694,12 +37694,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "76805e6a-7a85-42d1-92f4-930df772aaf0", + "id": "d21281d5-fcb0-41e9-bc27-393edce87285", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -37780,12 +37780,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7fad9810-0664-4128-9802-8150ecd0e9f8", + "id": "ed70e920-e142-449b-be7f-7844e38bc73a", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -37866,12 +37866,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "32be7e0e-3a36-483f-b5db-876f14d0f3f1", + "id": "08121dee-cbe0-46ca-a029-9d7b6de9a806", "name": "An error with the item not found", "originalRequest": { "url": { @@ -37952,12 +37952,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5a6be8f7-05fa-4ca5-ae43-a86063e45c92", + "id": "de99c0d8-3bfd-4b75-92db-ca8cb280ff56", "name": "Too many requests", "originalRequest": { "url": { @@ -38043,7 +38043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "857e1f97-5e3d-4229-bc7f-27dd7b9d236c", + "id": "7ea89a93-c9e4-4f5e-abcb-0655a95d184f", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -38124,7 +38124,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -38135,7 +38135,7 @@ } }, { - "id": "a3818081-f1d9-4db0-95e3-ba58168fbc17", + "id": "d3fd9308-da44-46d4-94e3-210e13372e05", "name": "List form definitions by tenant.", "request": { "name": "List form definitions by tenant.", @@ -38202,7 +38202,7 @@ }, "response": [ { - "id": "7b33e95b-9a34-4ed2-bf44-6a5f54fdbdf9", + "id": "5300f4dc-371d-44b3-94ac-7e4443714bac", "name": "Returns a list of form definition objects by tenant used by SP-Config", "originalRequest": { "url": { @@ -38278,12 +38278,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ea eiusmod cillum\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ipsum no\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ea deserunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"fugiat in\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"elit dolor laboris\",\n \"version\": 58177739\n },\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Excepteur quis\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nisi dolor sunt\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"do sint non\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"proident\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"occaecat sint cupidatat\",\n \"version\": 86088393\n }\n]", + "body": "[\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"eiusmod aliqua dolore\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sint nostrud ullamco quis\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Excepteur aliqua tempor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ut deserunt sed ipsum\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"cillum consequat a\",\n \"version\": -99916863\n },\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"est dolor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ullamco\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"reprehenderi\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"minim eu pariatur proident exercitation\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"deserunt amet ut magna\",\n \"version\": 62978061\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "845bd909-a8d2-4b55-a206-cfcda762f819", + "id": "545e4683-365a-490a-8728-3a2c1b5300e9", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -38359,12 +38359,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "631bb345-3838-4b05-9ea6-0273910e6f10", + "id": "afd7f937-9a2a-4836-9e21-38003de705fa", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -38440,12 +38440,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ebe26822-2d2d-4b96-9b2b-4a44bcfde87b", + "id": "034516f5-2a54-4c66-addf-4f1a69e564a7", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -38521,12 +38521,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d6887ed2-2a1d-4f56-86d6-40a7615fe54e", + "id": "21d495a0-2e58-4fee-ba5b-2924cce2fd8e", "name": "Too many requests", "originalRequest": { "url": { @@ -38607,7 +38607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e087aca2-996b-4dfe-9446-c353ef879262", + "id": "39c2bd88-cd73-4ab4-a047-bc583b81dc4d", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -38683,7 +38683,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -38694,7 +38694,7 @@ } }, { - "id": "02f8a73c-570a-40c4-bd6d-38e9b6b02f55", + "id": "7efb6b88-e880-42da-82e4-c734faf27b49", "name": "Generate JSON Schema dynamically.", "request": { "name": "Generate JSON Schema dynamically.", @@ -38734,7 +38734,7 @@ }, "response": [ { - "id": "cb4eea39-043a-4864-873a-5a8932621e29", + "id": "cb8a0efd-98df-4dec-bfa2-98f29e2733ef", "name": "Returns a form elements dynamic schema", "originalRequest": { "url": { @@ -38791,7 +38791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db428966-10e8-4a5d-aef5-fd3930b89148", + "id": "ac52edc8-df27-467f-aaeb-e8ff467a9e73", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -38843,12 +38843,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fab7616a-3ace-40df-a7cb-9209fa4667f9", + "id": "8076d6bc-3452-481f-8885-db435cc3fa08", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -38900,12 +38900,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a5f9d87f-c48a-48b6-ab3f-e937f759aecd", + "id": "81a6e5eb-a75a-4b31-8a90-195befab627c", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -38957,12 +38957,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9d37f22b-18b2-4a9b-aefa-d9a22e5bc385", + "id": "930f83db-8ea4-4637-92fb-2f07a7f1753a", "name": "An error with the item not found", "originalRequest": { "url": { @@ -39014,12 +39014,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1d2b9ee3-3b9e-4640-816a-4978b5f19e5e", + "id": "f43c190f-0676-4686-aa98-73d70c5351f3", "name": "Too many requests", "originalRequest": { "url": { @@ -39076,7 +39076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d61bb8c-31d3-48c0-8a3f-e1d52500e71c", + "id": "9a35893f-1f63-47df-a642-1ca908d369b3", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -39128,7 +39128,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -39139,7 +39139,7 @@ } }, { - "id": "638e9016-322f-44e1-a1e5-e0aa31d9480c", + "id": "a3646fda-9ebd-46a1-80c6-03d8927e41bf", "name": "Import form definitions from export.", "request": { "name": "Import form definitions from export.", @@ -39179,7 +39179,7 @@ }, "response": [ { - "id": "6305290b-e2b0-4a76-960e-822429e31b53", + "id": "e8646790-07e3-4de6-8d4d-0dceff96fafb", "name": "Returns statuses of those form definition objects imported", "originalRequest": { "url": { @@ -39231,12 +39231,12 @@ "value": "application/json" } ], - "body": "{\n \"errors\": [\n {\n \"detail\": {\n \"in_e\": {},\n \"deserunte\": {}\n },\n \"key\": \"sit laboris laborum d\",\n \"text\": \"tempor velit\"\n },\n {\n \"detail\": {\n \"incididuntd06\": {},\n \"commodo6b7\": {},\n \"sint9\": {},\n \"Excepteur_97\": {},\n \"nostrud7\": {}\n },\n \"key\": \"dolore ea\",\n \"text\": \"Exc\"\n }\n ],\n \"importedObjects\": [\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliquip irure officia qui\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in ullamco\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"esse deserunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"eiusmod\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"in reprehenderit\",\n \"version\": -29495445\n },\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in esse cillum aliqua dolor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"incididunt commodo reprehenderit mi\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"cillum ut nostrud\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"cillum\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"aliqua occaecat\",\n \"version\": 66121399\n }\n ],\n \"infos\": [\n {\n \"detail\": {\n \"ex_1d\": {},\n \"elit206\": {},\n \"occaecat_b\": {}\n },\n \"key\": \"exercitation Ut enim ad incididunt\",\n \"text\": \"ea deserunt ut\"\n },\n {\n \"detail\": {\n \"ad_b1\": {},\n \"enim_ee\": {}\n },\n \"key\": \"officia id deserunt culpa\",\n \"text\": \"in\"\n }\n ],\n \"warnings\": [\n {\n \"detail\": {\n \"ullamco_33a\": {},\n \"do899\": {},\n \"Lorem26\": {},\n \"non_1\": {}\n },\n \"key\": \"eu ea in Ut\",\n \"text\": \"sunt aute officia fugiat\"\n },\n {\n \"detail\": {\n \"nulladf\": {}\n },\n \"key\": \"deserunt \",\n \"text\": \"occaecat consequat\"\n }\n ]\n}", + "body": "{\n \"errors\": [\n {\n \"detail\": {\n \"id_42\": {},\n \"laborum_\": {}\n },\n \"key\": \"incididunt nisi in\",\n \"text\": \"cupidatat pariatur dolor consectetur\"\n },\n {\n \"detail\": {\n \"cillum4\": {}\n },\n \"key\": \"veniam quis amet\",\n \"text\": \"aute in minim consectetur eu\"\n }\n ],\n \"importedObjects\": [\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"laboris tempor ut\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"cupidatat\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"velit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Excepteur Ut incididunt non\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"aute velit exercitation\",\n \"version\": -57428579\n },\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"do eiusmod ut Duis labore\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consequat temp\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"elit ut\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ea cillum\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"in \",\n \"version\": 53291809\n }\n ],\n \"infos\": [\n {\n \"detail\": {\n \"tempor6\": {},\n \"Duis_6a\": {}\n },\n \"key\": \"laboris eu\",\n \"text\": \"ut laboris\"\n },\n {\n \"detail\": {\n \"eu__7\": {},\n \"non_9\": {},\n \"deserunt_4\": {}\n },\n \"key\": \"est consequat proident cupidatat consectetur\",\n \"text\": \"occaecat deserunt dolor\"\n }\n ],\n \"warnings\": [\n {\n \"detail\": {\n \"cillum_51\": {}\n },\n \"key\": \"pariatur nisi laboris nulla\",\n \"text\": \"ut dolor proident\"\n },\n {\n \"detail\": {\n \"sint0e\": {},\n \"proident_1\": {}\n },\n \"key\": \"consectetur labore\",\n \"text\": \"des\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1e2817ec-c080-427c-9210-85e0b07fc48b", + "id": "74a2964f-bd2d-4236-ae14-132a3cca6820", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -39288,12 +39288,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "db9db778-b03c-4bb1-86bf-efdf4d9f788e", + "id": "6110dfc4-c3c5-4efb-949c-99051fa0e99f", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -39345,12 +39345,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fc756bd6-8b5f-4501-b9b4-c92cb1572d53", + "id": "e7dd0abc-7e6c-4c1f-82ac-3ef87390e1da", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -39402,12 +39402,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4fe7d0c5-540d-4ae5-8093-238601355bce", + "id": "a2262b5b-5bad-4fb4-a4f5-68f031f491b0", "name": "Too many requests", "originalRequest": { "url": { @@ -39464,7 +39464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad839a50-db76-4d63-9e92-dd0f74c6c4fb", + "id": "8999d513-6189-4b55-ac99-a3bbaef2199b", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -39516,7 +39516,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -39527,7 +39527,7 @@ } }, { - "id": "6731ba75-615d-4367-a737-dfd8eccf9ad6", + "id": "6d558130-583b-4e40-9622-f6c4e7bf634f", "name": "Upload new form definition file.", "request": { "name": "Upload new form definition file.", @@ -39578,7 +39578,7 @@ "type": "text/plain" }, "key": "file", - "value": "ex sint officia", + "value": "Ut cillum", "type": "text", "contentType": "image/png, image/jpeg" } @@ -39587,7 +39587,7 @@ }, "response": [ { - "id": "02239eeb-aca0-4eec-8c0e-fde60f334d1a", + "id": "0f11bf3d-1d49-4c95-ad5a-6de55aaa13eb", "name": "Returns a new form definition file", "originalRequest": { "url": { @@ -39630,7 +39630,7 @@ "type": "text/plain" }, "key": "file", - "value": "ex sint officia", + "value": "Ut cillum", "type": "text", "contentType": "image/png, image/jpeg" } @@ -39650,7 +39650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75671633-fed3-4f72-bfcc-4f1e469bf4a9", + "id": "48d574f2-fe73-4d08-b6eb-f4b84a5b0755", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -39693,7 +39693,7 @@ "type": "text/plain" }, "key": "file", - "value": "ex sint officia", + "value": "Ut cillum", "type": "text", "contentType": "image/png, image/jpeg" } @@ -39708,12 +39708,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "92ee89ad-74b4-4672-92fb-82a48f297ad9", + "id": "0ce42df0-85ba-4a5c-bc92-52d2f5603f17", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -39756,7 +39756,7 @@ "type": "text/plain" }, "key": "file", - "value": "ex sint officia", + "value": "Ut cillum", "type": "text", "contentType": "image/png, image/jpeg" } @@ -39771,12 +39771,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8a41f6da-5c60-471f-80ce-ad01e0d45441", + "id": "12d1a4b1-97ee-4166-8319-04c8a05cbf43", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -39819,7 +39819,7 @@ "type": "text/plain" }, "key": "file", - "value": "ex sint officia", + "value": "Ut cillum", "type": "text", "contentType": "image/png, image/jpeg" } @@ -39834,12 +39834,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3337fddd-3166-41ae-beaf-c1689a440204", + "id": "c6e1342c-b343-4d6c-8570-b8b28b51c99e", "name": "An error with the item not found", "originalRequest": { "url": { @@ -39882,7 +39882,7 @@ "type": "text/plain" }, "key": "file", - "value": "ex sint officia", + "value": "Ut cillum", "type": "text", "contentType": "image/png, image/jpeg" } @@ -39897,12 +39897,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1a39891f-4089-4877-a607-f8dbf18108b0", + "id": "c2378cf0-642f-43c2-b348-63a6cc18fec5", "name": "An error with payload size too large", "originalRequest": { "url": { @@ -39945,7 +39945,7 @@ "type": "text/plain" }, "key": "file", - "value": "ex sint officia", + "value": "Ut cillum", "type": "text", "contentType": "image/png, image/jpeg" } @@ -39960,12 +39960,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4a15fa22-f5f0-40bf-8e93-307f2e99c10e", + "id": "7ef1a862-9d17-4df8-a672-576d87a139e6", "name": "An error with unsupported media type", "originalRequest": { "url": { @@ -40008,7 +40008,7 @@ "type": "text/plain" }, "key": "file", - "value": "ex sint officia", + "value": "Ut cillum", "type": "text", "contentType": "image/png, image/jpeg" } @@ -40023,12 +40023,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4c8ba457-f2d9-4b41-a4b7-311427785660", + "id": "ccf4767e-df0f-4bed-b0a2-7a9158d52504", "name": "Too many requests", "originalRequest": { "url": { @@ -40071,7 +40071,7 @@ "type": "text/plain" }, "key": "file", - "value": "ex sint officia", + "value": "Ut cillum", "type": "text", "contentType": "image/png, image/jpeg" } @@ -40091,7 +40091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e2e19f0-bfb2-42eb-9d09-885389664952", + "id": "1ae0104f-9ac7-4eb0-9cc5-9505eb8015a6", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -40134,7 +40134,7 @@ "type": "text/plain" }, "key": "file", - "value": "ex sint officia", + "value": "Ut cillum", "type": "text", "contentType": "image/png, image/jpeg" } @@ -40149,12 +40149,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b8252867-339d-437b-815b-2a968cdc4687", + "id": "de8d0e73-ad01-4f6f-ba03-b944aaf2aa0a", "name": "An external service is not available", "originalRequest": { "url": { @@ -40197,7 +40197,7 @@ "type": "text/plain" }, "key": "file", - "value": "ex sint officia", + "value": "Ut cillum", "type": "text", "contentType": "image/png, image/jpeg" } @@ -40212,7 +40212,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -40223,7 +40223,7 @@ } }, { - "id": "88dfe4a9-1cd4-402e-8129-7dfdb5d6680c", + "id": "52a6d39c-e5ed-491a-825f-f84f2b391971", "name": "Download definition file by fileId.", "request": { "name": "Download definition file by fileId.", @@ -40273,7 +40273,7 @@ }, "response": [ { - "id": "430c5b93-9dcc-4ead-9102-8fd8c046f758", + "id": "df9271d3-2631-48ba-8570-2c9f228083c8", "name": "Returns a file that is referred to by fileID and associated with the formDefinitionID", "originalRequest": { "url": { @@ -40314,12 +40314,12 @@ "value": "application/json" } ], - "body": "in aute elit ullamco", + "body": "magna dolore deserunt", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "de1d463f-c869-4f0c-99e7-ac33f85f6410", + "id": "defb8e4a-7cff-4f38-ade5-31dc20f75b84", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -40360,12 +40360,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "70f76679-82b5-4c65-a701-5d08652d372b", + "id": "54e78c98-38d7-4e97-8ef4-1ad500418aad", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -40406,12 +40406,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4aa0e366-f792-4845-9ddb-c8c2a3b5cbb1", + "id": "1b6b5745-85f0-4a79-b7e1-7c4d56e8e6e0", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -40452,12 +40452,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "090359c6-fdd9-4909-95b8-0ac5c8d6a9ac", + "id": "a38abbd3-bc79-44be-8378-50d53bb27bea", "name": "An error with the item not found", "originalRequest": { "url": { @@ -40498,12 +40498,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e4ecf0af-a950-4611-b92b-f90a93a9080d", + "id": "6dd1fc4d-b884-4d98-b4e0-73a63560915a", "name": "Too many requests", "originalRequest": { "url": { @@ -40549,7 +40549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf741e0c-345e-4b31-af85-c5cde4a943ac", + "id": "220ec458-52e4-4430-b8da-770d0b14aca0", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -40590,12 +40590,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eef88308-efbe-434e-bdfc-1325c6ff475b", + "id": "25dc23e6-2f70-45c6-839b-c42f82b5a55e", "name": "An external service is not available", "originalRequest": { "url": { @@ -40636,7 +40636,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -40647,7 +40647,7 @@ } }, { - "id": "8620a005-78d8-4fde-a7b4-be57bcd18884", + "id": "91348300-09d9-413a-8e9b-ecff2cbadedd", "name": "List form instances by tenant.", "request": { "name": "List form instances by tenant.", @@ -40676,7 +40676,7 @@ }, "response": [ { - "id": "f909506f-c545-4048-902d-553ca7c1be8d", + "id": "c9cbf099-2003-406a-bc1a-e6836898abbc", "name": "Returns a list of form instances by tenant", "originalRequest": { "url": { @@ -40714,12 +40714,12 @@ "value": "application/json" } ], - "body": "{\n \"count\": 1,\n \"results\": [\n {\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Ut\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aute id consectetur ea\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Excepteur consequat do\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"velit eu commodo\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n },\n {\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in sint Ut dolor eiusmod\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolor magna et Excepteur occaecat\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"do ut\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n }\n ]\n}", + "body": "{\n \"count\": 1,\n \"results\": [\n {\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"magna nulla\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliquip in fugiat consectetur\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"est tempor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"laborum ut\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n },\n {\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sint ullamco\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"mollit esse id aliqua\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"occaecat ipsum\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"a\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2b795eb4-5618-4ba6-9daa-7c3173097fc3", + "id": "6278098d-f984-4a90-a450-4a969f38ca3d", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -40757,12 +40757,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7546218f-45af-47af-a128-d230d78dac42", + "id": "f285ef84-31ed-4549-9f36-d0542f9b5809", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -40800,12 +40800,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "41e5a402-386d-4c1f-a6c5-26d96c2f212e", + "id": "7c2fbb23-7abf-4b7c-a125-76899dceb485", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -40843,12 +40843,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "22667776-9879-4cd7-9c4f-ef9a5cad8fe8", + "id": "3eba1b52-29c8-41ae-81a9-92c28c506183", "name": "Too many requests", "originalRequest": { "url": { @@ -40891,7 +40891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b27d1df-e1ff-40dc-ab40-6a2e08e42eae", + "id": "6de6bb1a-2ed2-46b5-a49b-99192af174f1", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -40929,7 +40929,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -40940,7 +40940,7 @@ } }, { - "id": "2a004a2e-8f8d-4eb4-be1a-dd9612791a0f", + "id": "c46c00e8-c6a5-46eb-867f-c175ca88b17a", "name": "Creates a form instance.", "request": { "name": "Creates a form instance.", @@ -40979,7 +40979,7 @@ }, "response": [ { - "id": "7f993bf9-dd8e-4946-8c37-054da2ba1460", + "id": "ba5520f4-cef5-4a65-b154-4c8498402eb0", "name": "Returns a new form instance", "originalRequest": { "url": { @@ -41030,12 +41030,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"adipisicing et\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in est fugiat eu\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consectetur fugiat Lorem veniam Excepteur\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ut quis\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n}", + "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sunt amet i\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ad officia dolor\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nostrud in\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ea dolor\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c4e82ab6-f7f1-43b5-a991-47bf6be36600", + "id": "2f15a5f1-3c28-42a6-a4c2-26b7fedf62a8", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -41086,12 +41086,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6b9432ef-1df9-43eb-91a6-a1c110562e2a", + "id": "6d22e946-5b26-421a-8e39-8f375189c49a", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -41142,12 +41142,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "da626b80-41d6-4dcd-b64d-d6b9b331083a", + "id": "00a73544-02ce-4646-8950-99a2231c5986", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -41198,12 +41198,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "35395f93-c069-40c0-8bdc-8027bf6373f3", + "id": "17533159-1257-4e23-9aa1-dc92a1f4242a", "name": "Too many requests", "originalRequest": { "url": { @@ -41259,7 +41259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cd749c1-6caf-4e37-a7b1-a4b3a0284de2", + "id": "9ad1be74-93d2-4eec-bdce-90675a891390", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -41310,7 +41310,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -41321,7 +41321,7 @@ } }, { - "id": "79dac7f9-50d2-48cf-9186-a8a1633d09e2", + "id": "58c75cb5-26e7-4832-afff-780def22a43c", "name": "Returns a form instance.", "request": { "name": "Returns a form instance.", @@ -41362,7 +41362,7 @@ }, "response": [ { - "id": "49ec0700-a8d5-4570-8a2e-9c366aa5e6ce", + "id": "cafa8d57-c0e6-42db-a1ff-db5090676e71", "name": "Returns a form instance by its key", "originalRequest": { "url": { @@ -41401,12 +41401,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"adipisicing et\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in est fugiat eu\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consectetur fugiat Lorem veniam Excepteur\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ut quis\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n}", + "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sunt amet i\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ad officia dolor\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nostrud in\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ea dolor\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5725b57b-2c19-4ded-8810-d3018aa7c26d", + "id": "3f00f7b2-4b82-4596-9c66-b099073be05d", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -41445,12 +41445,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "52a7d823-445b-4271-ba3f-cac4119f6156", + "id": "bc4df8d0-e845-4342-bd14-bb084e4d75c6", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -41489,12 +41489,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4c0d7081-3427-4f83-8838-99654fb68923", + "id": "25d32b86-c0a2-4587-b3ca-c86b4e206026", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -41533,12 +41533,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9d82b7af-8689-4e82-9cce-64902ec05594", + "id": "3adb79d1-7250-4f1c-a0e3-a093565a35ac", "name": "An error with the item not found", "originalRequest": { "url": { @@ -41577,12 +41577,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "94ca8b2f-1553-40b0-b960-bb40022714a8", + "id": "f07ccd21-f0f8-4370-8cf9-8fcc80a9d03c", "name": "Too many requests", "originalRequest": { "url": { @@ -41626,7 +41626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74b18f0e-0386-44b4-acc2-063d9d9f8dbb", + "id": "c09ebeec-0efe-4666-85ac-6a5b4d325189", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -41665,7 +41665,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -41676,7 +41676,7 @@ } }, { - "id": "461c5be3-b75c-41ff-ac68-f8eab3c33d6f", + "id": "56737fec-b808-4594-a798-4f4627604d85", "name": "Patch a form instance.", "request": { "name": "Patch a form instance.", @@ -41730,7 +41730,7 @@ }, "response": [ { - "id": "1c52a196-0868-40f8-97c5-b5ed4cca83b2", + "id": "46bf9b3d-5722-4eee-95c9-97dc2e3f2eb9", "name": "Returns the form instance updated", "originalRequest": { "url": { @@ -41782,12 +41782,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"adipisicing et\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in est fugiat eu\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consectetur fugiat Lorem veniam Excepteur\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ut quis\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n}", + "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sunt amet i\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ad officia dolor\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nostrud in\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ea dolor\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "11c73d82-2d20-4a34-b902-d1527dd5bf9b", + "id": "2d53f3a0-6626-49ca-90e1-b49e63bed82d", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -41839,12 +41839,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f188407c-f8f2-4578-ab73-f0e609b1cf9b", + "id": "b200fb62-f63c-4b5b-88a6-f00284f62028", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -41896,12 +41896,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4ea94b41-e0d4-44a5-82e1-62d016033bf2", + "id": "ad7809bf-e7c5-49d1-bb9c-e27b827777fa", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -41953,12 +41953,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "00bb8671-54d7-4379-b24f-8cc57d333d44", + "id": "fdd66440-3638-4ed0-9f71-d77436972e07", "name": "An error with the item not found", "originalRequest": { "url": { @@ -42010,12 +42010,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c556a19-923a-4b7c-bb38-aa96b58af3f2", + "id": "1f990ccf-2c42-4a11-a608-d892316106bc", "name": "An error with the request property conflicts with stored", "originalRequest": { "url": { @@ -42067,12 +42067,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "72ed4ae3-cc9b-43f9-87c4-87b818d51fb2", + "id": "85dba7f9-2c22-400f-b0f3-aa1333a22c9c", "name": "Too many requests", "originalRequest": { "url": { @@ -42129,7 +42129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc702ed4-dac4-483d-8b06-405be28568e7", + "id": "0f2a4cf9-8f0f-4a69-b907-eb12a96f5410", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -42181,7 +42181,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -42192,7 +42192,7 @@ } }, { - "id": "0350c23a-361b-435b-bfcc-9977ce5536fc", + "id": "3bce42a9-55e4-49b7-bf43-0b0cd4e518ab", "name": "Retrieves dynamic data by element.", "request": { "name": "Retrieves dynamic data by element.", @@ -42264,7 +42264,7 @@ }, "response": [ { - "id": "155bdea5-dc3a-47c8-b358-65c05c182c48", + "id": "93adddb7-d222-4ac9-9df4-e643b885b96f", "name": "Retrieves dynamic data to aid in correctly completing a valid form by form element ID from data source configuration", "originalRequest": { "url": { @@ -42329,7 +42329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dd4f654-efa5-49a8-bc8d-9202eaab3b02", + "id": "b2f09ce9-84d0-452c-9ef1-734bcf462496", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -42389,12 +42389,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "11dfb510-ec4c-4117-b477-e65a86fe028b", + "id": "2f3598de-d0e9-491a-94ce-dbfad12384a2", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -42454,12 +42454,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fff0e54c-67d3-4e9a-b3d6-808c4d2d681e", + "id": "0471b4eb-8248-449a-b0c4-c0385b04d155", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -42519,12 +42519,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9cc40514-27f4-48bd-afcb-102ca04139df", + "id": "deb1de85-eddb-440a-b19c-914c6c99176a", "name": "An error with the item not found", "originalRequest": { "url": { @@ -42584,12 +42584,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ab0f668c-a32d-4837-aa14-07d76c63f2f1", + "id": "2874b978-4301-4f83-88d6-cb688a76a0ec", "name": "Too many requests", "originalRequest": { "url": { @@ -42654,7 +42654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95873e4b-48b1-44bf-bc4a-50ffc3ac1a14", + "id": "5d4e2ecf-1ddc-420e-86ba-9ee53846fdd7", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -42714,7 +42714,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -42725,7 +42725,7 @@ } }, { - "id": "2161ba6c-ae4d-4aad-81d9-5b2760778a89", + "id": "117c346d-ce0c-48bb-9bcd-9ff1827dc757", "name": "Download instance file by fileId.", "request": { "name": "Download instance file by fileId.", @@ -42775,7 +42775,7 @@ }, "response": [ { - "id": "a401f02f-ac70-47c8-bcec-001bf2e6068d", + "id": "0b4cb267-1a88-4beb-89c2-7cb5f67dddbd", "name": "Returns a file that is referred to by fileID and associated with the formInstanceID", "originalRequest": { "url": { @@ -42816,12 +42816,12 @@ "value": "application/json" } ], - "body": "in aute elit ullamco", + "body": "magna dolore deserunt", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "062c0352-c1d9-486c-8270-7818b11fd7f5", + "id": "8dc95eea-518d-44f7-b064-83dfadd390b5", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -42862,12 +42862,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fb0a58d0-21c4-4ac8-905b-cf8d28d30600", + "id": "308f5006-e7d3-4d0f-85e6-a29a86c98e7d", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -42908,12 +42908,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e1c82d33-c1e7-476a-a11d-e53e772950d4", + "id": "86028496-c3f5-43be-bc69-e20540b6705e", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -42954,12 +42954,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eb502dc6-4e32-4403-9bca-7f839aa21b6f", + "id": "73cad8a1-b157-461f-b613-e8590de27384", "name": "An error with the item not found", "originalRequest": { "url": { @@ -43000,12 +43000,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4f5770fa-09c1-4f06-b109-909302fabd8f", + "id": "9bb123c3-f6cb-4bd0-83dd-28c59165e207", "name": "Too many requests", "originalRequest": { "url": { @@ -43051,7 +43051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6298fdef-e3bc-4561-92f2-1636ad426a7e", + "id": "c82b18d0-21b5-465e-ac60-299fb66b3f81", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -43092,12 +43092,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7402b124-1605-43f8-8872-e309d7c0f901", + "id": "b9226943-181e-4087-b337-035e2cebb907", "name": "An external service is not available", "originalRequest": { "url": { @@ -43138,7 +43138,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -43149,7 +43149,7 @@ } }, { - "id": "9eae4142-5399-4c22-9c4b-cc24d4ad412b", + "id": "5ae2afb1-3303-446a-9688-7f86068e62c6", "name": "List predefined select options.", "request": { "name": "List predefined select options.", @@ -43179,7 +43179,7 @@ }, "response": [ { - "id": "8aee5648-41c2-43fe-a125-a645014c1a95", + "id": "542476db-b8d1-48bd-b94f-83fc43a55fa8", "name": "Returns a list of available predefined select options", "originalRequest": { "url": { @@ -43223,7 +43223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bffabfb-1eab-42c1-abd4-4f81c1999bfc", + "id": "ce04f6cf-194f-4701-9fb2-75398d170a0a", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -43262,12 +43262,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "930b3efd-7e5c-4df9-97f3-ba2a4d1d62b4", + "id": "9ec75493-0b79-46be-a872-5db32bdcbb08", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -43306,12 +43306,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c2f4054b-1320-4320-a15c-1168c2436f37", + "id": "0b275287-6e03-4d24-a5f4-51aac8f77340", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -43350,12 +43350,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cf8262ea-3fc9-4f91-943e-d2976f073527", + "id": "e00b839f-be05-470f-a151-398a4d38f86f", "name": "Too many requests", "originalRequest": { "url": { @@ -43399,7 +43399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3da57129-49b0-4795-9750-aeb5dc708d87", + "id": "b5ffd6e1-afd8-4abb-a08e-feb37e4768ca", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -43438,7 +43438,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"Excepteur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 90561958,\n \"trackingId\": \"ut culpa\"\n}", + "body": "{\n \"detailCode\": \"sed elit \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -94920304,\n \"trackingId\": \"anim culpa Ut incididunt\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -43455,7 +43455,7 @@ "description": "Use this API to implement custom password instruction functionality.\nWith this functionality in place, administrators can create custom password instructions to help users reset their passwords, change them, unlock their accounts, or recover their usernames.\nThis allows administrators to emphasize password policies or provide organization-specific instructions.\n\nAdministrators must first use [Update Password Org Config](https://developer.sailpoint.com/idn/api/beta/put-password-org-config) to set `customInstructionsEnabled` to `true`.\n\nOnce they have enabled custom instructions, they can use [Create Custom Password Instructions](https://developer.sailpoint.com/idn/api/beta/create-custom-password-instructions) to create custom page content for the specific pageId they select.\n\nFor example, an administrator can use the pageId forget-username:user-email to set the custom text for the case when users forget their usernames and must enter their emails.\n\nRefer to [Creating Custom Instruction Text](https://documentation.sailpoint.com/saas/help/pwd/pwd_reset.html#creating-custom-instruction-text) for more information about creating custom password instructions.\n", "item": [ { - "id": "e03d2074-ad92-4cb9-b0df-cca9eb8dc0e6", + "id": "b8464efb-81c3-446a-95ed-93d8a39424a1", "name": "Create Custom Password Instructions", "request": { "name": "Create Custom Password Instructions", @@ -43497,7 +43497,7 @@ }, "response": [ { - "id": "1367b083-29df-4816-ae1e-eaf8400bc414", + "id": "1863007a-863d-4d62-9fdf-194f05853ec5", "name": "Reference to the custom password instructions.", "originalRequest": { "url": { @@ -43553,7 +43553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "983b2db3-1528-48cf-9d3e-a4b5e6300ab2", + "id": "a2350ca8-7bcf-4def-8e28-6b9400caaea6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43609,7 +43609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d1af94a-2f60-4953-87a4-5c2aefb503fd", + "id": "9c3acbad-8d84-4bc4-9188-cfab13e6a088", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43665,7 +43665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f75ae5f4-745d-4647-a348-a81c0bc89ff9", + "id": "17d7975a-1a4a-4b04-9ff0-598922a9f32c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43727,7 +43727,7 @@ } }, { - "id": "051f99cb-96fb-4e22-8b85-a8c492568d60", + "id": "55b11c89-c200-49fe-95bf-8f611135c5d1", "name": "Get Custom Password Instructions by Page ID", "request": { "name": "Get Custom Password Instructions by Page ID", @@ -43751,7 +43751,7 @@ "type": "text/plain" }, "key": "locale", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [ @@ -43778,7 +43778,7 @@ }, "response": [ { - "id": "0d1b9cbf-47b4-49e2-9f3e-2b6a008d8f80", + "id": "9ffaad39-dbd9-4ca3-9dd7-64bda9fd9083", "name": "Reference to the custom password instructions.", "originalRequest": { "url": { @@ -43797,7 +43797,7 @@ "type": "text/plain" }, "key": "locale", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -43832,7 +43832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b4c9c40-e24a-4f35-a350-90bbf11068d9", + "id": "a7c1c4ec-d6c6-4d58-9a56-ffa58c85015a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43851,7 +43851,7 @@ "type": "text/plain" }, "key": "locale", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -43886,7 +43886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "179b81b2-8c80-49cf-998d-49fbd09620b5", + "id": "d8d0d9ed-25ec-479a-a731-2a7e264f514e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43905,7 +43905,7 @@ "type": "text/plain" }, "key": "locale", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -43940,7 +43940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5034576a-41d1-405b-871b-4fbdd15a2294", + "id": "4a9fe784-c934-439b-b68f-7786cd648d56", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -43959,7 +43959,7 @@ "type": "text/plain" }, "key": "locale", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -43994,7 +43994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ba0b4b8-2376-416f-a12b-6cdda802c3ab", + "id": "d9f068d8-7133-4891-adb3-1bd5a3f009d6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44013,7 +44013,7 @@ "type": "text/plain" }, "key": "locale", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -44054,7 +44054,7 @@ } }, { - "id": "494e24d3-d212-48db-9494-d54fcedbaab3", + "id": "79dd7d75-c990-4e5f-9070-0c308cb90cd8", "name": "Delete Custom Password Instructions by page ID", "request": { "name": "Delete Custom Password Instructions by page ID", @@ -44078,7 +44078,7 @@ "type": "text/plain" }, "key": "locale", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [ @@ -44105,7 +44105,7 @@ }, "response": [ { - "id": "b93ab134-8c9a-42ea-a8a0-3ca4e816d448", + "id": "d5fa810c-be9c-45d4-8466-1bee1baee2e0", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -44124,7 +44124,7 @@ "type": "text/plain" }, "key": "locale", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -44149,7 +44149,7 @@ "_postman_previewlanguage": "text" }, { - "id": "65d23a31-2db4-45a5-aaef-385945c6ae61", + "id": "516bb7aa-7319-4eb4-8d50-f260766acf34", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44168,7 +44168,7 @@ "type": "text/plain" }, "key": "locale", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -44203,7 +44203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d82e95e-f610-4e99-b036-de3e1b000575", + "id": "067623b0-7d4f-40bc-bb5a-7977dc232fd0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44222,7 +44222,7 @@ "type": "text/plain" }, "key": "locale", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -44257,7 +44257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a808d76-a4b8-4000-95ae-40d737474634", + "id": "54f6b39e-b3ea-43ac-8a29-2c0d41055538", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44276,7 +44276,7 @@ "type": "text/plain" }, "key": "locale", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -44311,7 +44311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c33ef215-d6bd-48ee-873a-265c6ad040f5", + "id": "38c6706b-9d97-48c5-a5db-a15f0f480a81", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44330,7 +44330,7 @@ "type": "text/plain" }, "key": "locale", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -44377,7 +44377,7 @@ "description": "Use this API to implement and customize entitlement functionality.\nWith this functionality in place, administrators can view entitlements and configure them for use throughout IdentityNow in certifications, access profiles, and roles.\nAdministrators in IdentityNow can then grant users access to the entitlements or configure them so users themselves can request access to the entitlements whenever they need them.\nWith a good approval process, this entitlement functionality allows users to gain the specific access they need on sources quickly and securely.\n\nEntitlements represent access rights on sources.\nEntitlements are the most granular form of access in IdentityNow.\nEntitlements are often grouped into access profiles, and access profiles themselves are often grouped into roles, the broadest form of access in IdentityNow.\n\nFor example, an Active Directory source in IdentityNow can have multiple entitlements: the first, 'Employees,' may represent the access all employees have at the organization, and a second, 'Developers,' may represent the access all developers have at the organization.\n\nAn administrator can then create a broader set of access in the form of an access profile, 'AD Developers' grouping the 'Employees' entitlement with the 'Developers' entitlement.\n\nAn administrator can then create an even broader set of access in the form of a role grouping the 'AD Developers' access profile with another profile, 'GitHub Developers,' grouping entitlements for the GitHub source.\n\nWhen users only need Active Directory employee access, they can request access to the 'Employees' entitlement.\n\nWhen users need both Active Directory employee and developer access, they can request access to the 'AD Developers' access profile.\n\nWhen users need both the 'AD Developers' access profile and the 'GitHub Developers' access profile, they can request access to the role grouping both.\n\nAdministrators often use roles and access profiles within those roles to manage access so that users can gain access more quickly, but the hierarchy of access all starts with entitlements.\n\nAnywhere entitlements appear, you can select them to find more information about the following:\n\n- Cloud Access Details: These provide details about the cloud access entitlements on cloud-enabled sources.\n\n- Permissions: Permissions represent individual units of read/write/admin access to a system.\n\n- Relationships: These list each entitlement's parent and child relationships.\n\n- Type: This is the entitlement's type. Some sources support multiple types, each with a different attribute schema.\n\nIdentityNow uses entitlements in many features, including the following:\n\n- Certifications: Entitlements can be revoked from an identity that no longer needs them.\n\n- Roles: Roles can group access profiles which themselves group entitlements. You can grant and revoke access on a broad level with roles. Role membership criteria can grant roles to identities based on whether they have certain entitlements or attributes.\n\n- Access Profiles: Access profiles group entitlements.\nThey are the most important units of access in IdentityNow.\nIdentityNow uses them in provisioning, certifications, and access requests, and administrators can configure them to grant very broad or very granular access.\n\nYou cannot delete entitlements directly from IdentityNow.\nEntitlements are deleted based on their inclusion in aggregations.\n\nRefer to [Deleting Entitlements](https://documentation.sailpoint.com/saas/help/access/entitlements.html#deleting-entitlements) more information about deleting entitlements.\n\nRefer to [Entitlements](https://documentation.sailpoint.com/saas/help/access/entitlements.html) for more information about entitlements.\n", "item": [ { - "id": "f887c75f-3c00-44cf-8e23-7e8827578749", + "id": "5a805c2c-00a6-4198-9c8a-8f1a52bedad6", "name": "Gets a list of entitlements.", "request": { "name": "Gets a list of entitlements.", @@ -44488,7 +44488,7 @@ }, "response": [ { - "id": "22787701-20c7-43ac-a7b9-47a26ea131eb", + "id": "5d6b62b1-1f8d-4d00-b5bc-d9c6cadd3215", "name": "List of entitlements", "originalRequest": { "url": { @@ -44613,7 +44613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58d22375-bb5d-4972-95bd-c5889be7b25b", + "id": "6e753ba2-6c8d-4262-9d2c-7d262b2b46f2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44738,7 +44738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "687420b8-7079-4971-8b2f-7236b28ea7f7", + "id": "8f3e4223-84dc-4206-995d-e8bc7874e09e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44863,7 +44863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "788b304c-ca05-4ba6-8a0f-c3fd3fff15a2", + "id": "46f4eb99-12c5-4c92-8128-5fa9e0c3ea3b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44988,7 +44988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "731291d9-d3cb-4d14-b367-e6df0f07bae3", + "id": "7d1022a4-0c67-4b37-b601-db5fae9fb4a6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45113,7 +45113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "519aa680-368d-4dea-bd91-4adf75314e28", + "id": "5edec1fa-ed0d-49e2-9247-9e21b5b4df53", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45244,7 +45244,7 @@ } }, { - "id": "c103fd6e-d6da-41e2-9621-d1c10b82eafb", + "id": "15d88c11-29ba-45f9-a54b-638d790b647f", "name": "Get an entitlement", "request": { "name": "Get an entitlement", @@ -45285,7 +45285,7 @@ }, "response": [ { - "id": "0ad3b88c-5032-4110-bc7f-28df3503285e", + "id": "61f03382-c766-4f39-ae8e-090026fff2ff", "name": "An entitlement", "originalRequest": { "url": { @@ -45329,7 +45329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6ddf606-9ce4-4659-917b-e8e8f34220fe", + "id": "070000a3-560f-4b68-b836-a960cf9857a9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45373,7 +45373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e634a77-61ea-48e4-9d2d-30b169b39152", + "id": "8877ee53-055d-4dee-a26e-1f2a7e464859", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45417,7 +45417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e6d5cf6-a17a-4afa-9e59-98f4758025d6", + "id": "db3b9096-b736-466b-8a69-884e808b373e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45461,7 +45461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "333829f6-a4d4-46fd-85b8-616bffd05b43", + "id": "8f67d441-3f3d-45ed-b203-acf6df1d334a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -45505,7 +45505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f4218c9-c24b-49e9-9161-f26fa7d6fbcb", + "id": "3da6cb48-1179-4889-92ab-f86abc6a1948", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45549,7 +45549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a24228b-69b9-4e8e-82f3-72142599c599", + "id": "31f12dd9-7590-443a-ab02-ad05b9f965bf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45599,7 +45599,7 @@ } }, { - "id": "abf4ff7a-b206-4fb1-81ab-ff8b96c9e11a", + "id": "ca8194d8-7851-4529-9d9d-d86431e19521", "name": "Patch an entitlement", "request": { "name": "Patch an entitlement", @@ -45653,7 +45653,7 @@ }, "response": [ { - "id": "4c16c9a2-91c4-4354-9539-704b0445ea9b", + "id": "09b191a5-e838-40a8-9605-db93f1d5e7c1", "name": "Make an entitlement requestable and privileged in one call", "originalRequest": { "url": { @@ -45710,7 +45710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f91b95c6-77d6-447a-b936-3d0d18a94d6e", + "id": "3b17f27e-5640-4854-b3e8-59f04059fc8f", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -45767,7 +45767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65ab888b-6422-4645-b34a-25207c3fef27", + "id": "0339bb1b-1234-41cb-b7a9-825c622b5481", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -45824,7 +45824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "781bcd81-751b-4499-9373-79a558fa64ab", + "id": "c8ed203e-601f-48de-8da8-879c19c9caf1", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -45881,7 +45881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0aeacb1c-3c67-4287-a154-8d59948da324", + "id": "828f3a89-c3e3-4f9e-af10-d552ecb2c04a", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -45938,7 +45938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4271110b-7d9e-44e5-9186-b39c9359e506", + "id": "d710c638-1df5-472f-9577-8539912f96a5", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -45995,7 +45995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd10be39-768f-4976-99fe-5e71b308277d", + "id": "fbf3e9cb-1b30-4f4f-891c-fd2adc7105f7", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -46052,7 +46052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "985552e3-df2c-499b-915d-ec8f06dc4d64", + "id": "a762608b-4186-49a8-b7e8-3476b12895f0", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -46109,7 +46109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ecdac84-d5a7-4660-825b-244993a74888", + "id": "26319b8b-afc4-40bb-8cc5-212100afef0f", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -46166,7 +46166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c4e0e2d-986d-426a-ac38-73533ba6f9e8", + "id": "9551547b-ef1e-4e82-911b-5a6b5e4200aa", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -46223,7 +46223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbcd5d79-daed-46b5-9feb-eb7e1360a2d3", + "id": "a2c93c72-8191-48dc-8d73-ac69683cc777", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -46280,7 +46280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad907d88-9d06-48a1-8146-ed769142be50", + "id": "a2dc2039-e8db-4b95-b792-1f79eb64ad15", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -46337,7 +46337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46c9a214-f337-4208-921e-8393f47acebe", + "id": "89bd2fdd-c94d-487c-ad61-fde97d4a7581", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -46394,7 +46394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "370803c1-859c-448e-af58-87d0e23f4dd3", + "id": "21d53e17-b7da-4155-9033-b4ab375bc108", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -46451,7 +46451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bb43b2f-1719-4afa-9511-9caea3cb4195", + "id": "e50ef87a-aeb8-478d-9c4d-7d314fa8e6c5", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -46508,7 +46508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b2051db-6ab0-47a6-84bf-ce058bc06748", + "id": "804b35b9-d81b-4030-bfc5-4eb52a4fa966", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -46565,7 +46565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de63f6e8-5e30-4902-a7d0-4b8a65cd6c0b", + "id": "7a85916b-d3ef-48fc-a149-4a7ccf040e0b", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -46622,7 +46622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6872915e-ffdb-48a4-8ebc-ceff2bcaac5b", + "id": "90966560-b345-4cb8-803b-5d47a4695468", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -46679,7 +46679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33534c51-3abe-4860-80ad-5756a7cf282e", + "id": "ee1a0817-6930-4da6-b353-299d50da23a4", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -46736,7 +46736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fb2406a-005f-4b9e-a323-62783f669bb3", + "id": "aa5c15fa-2d37-4dc0-8155-717fed608fd4", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -46793,7 +46793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c74aa656-a126-4f6a-bc85-45006b6f3223", + "id": "1da68e3d-0ccc-471a-a411-311cedc4775f", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -46850,7 +46850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89b5d3f1-bd6f-4fcd-8e2d-7a20a15393f1", + "id": "6d1c6d95-fb46-4a88-ae3e-1acd27bc001a", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -46907,7 +46907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef2d46e5-891f-4cc4-8b1f-4a9614ded060", + "id": "f427b93e-15a7-4742-9361-c31247f40b5a", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -46964,7 +46964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab085ef1-9302-46e6-8897-8f7585f6bfd2", + "id": "dbbf6ea5-2396-4586-827a-7a3862527ea7", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -47021,7 +47021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95d03a18-eff4-4d4b-8043-a84327ab0c32", + "id": "6a676575-09fc-4fe4-9143-ffd73ad668a3", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -47078,7 +47078,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ca89416-80f5-42c3-bf96-adfb4ceceb43", + "id": "3d7d0101-83ce-430b-8972-ef54c4fa5e19", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -47135,7 +47135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2400bbe0-2fcb-42e1-9dc1-d485da2fe72c", + "id": "f54eba63-9b3d-4a10-beb1-9f41390e2997", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -47192,7 +47192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "067cacdb-e471-4497-8245-2966aa0f8505", + "id": "7cb1dd10-4941-44a4-be99-62129c9947f8", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -47255,7 +47255,7 @@ } }, { - "id": "e9c5f29f-334e-486d-a1fe-f67dc18c4965", + "id": "61d6c237-56aa-4913-9a82-f7246c8b556b", "name": "List of entitlements parents", "request": { "name": "List of entitlements parents", @@ -47343,7 +47343,7 @@ }, "response": [ { - "id": "7c2c786b-dffc-49bf-b9b8-ac734f38b3cb", + "id": "69a503d7-1687-4612-92da-166061680614", "name": "List of entitlements parents from an entitlement", "originalRequest": { "url": { @@ -47434,7 +47434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3d2b24e-cc1d-44b2-a2d9-f1070b1906ba", + "id": "cc6a3d48-2c7c-49b5-b87a-c1c184fde936", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47525,7 +47525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ddb3507-1c07-4f34-9edf-f42fb3ea995e", + "id": "d4b0e305-eaf5-423b-a68c-10f6dd440fb5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47616,7 +47616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49b2f05b-495e-4ee2-8719-b371af160a24", + "id": "e0744b53-a65c-4c1b-a557-90dc93383de8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47707,7 +47707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27904f14-04a1-47d4-9a84-fab33fbe2a90", + "id": "fea0a639-44e8-4f1c-bfff-c6cb402ab39f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -47798,7 +47798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86b05446-6f70-46d7-9293-66d2592e2b3c", + "id": "d423f104-56b6-4c35-b47d-628101795fc9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47889,7 +47889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba57f6df-93e9-4a2f-93ef-ff669fb6722f", + "id": "ae92b807-8a15-4682-a68c-0697ad464d41", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47986,7 +47986,7 @@ } }, { - "id": "c30e5d54-99c1-4513-aea1-bc7c655cb3f1", + "id": "c1c2f288-daae-4657-987a-f5957fc7d109", "name": "List of entitlements children", "request": { "name": "List of entitlements children", @@ -48074,7 +48074,7 @@ }, "response": [ { - "id": "fd03338e-9ac9-4707-b8a1-eaaf789e575d", + "id": "3fd7bf7b-2746-4615-b9cf-ed1e04d1726d", "name": "List of entitlements children from an entitlement", "originalRequest": { "url": { @@ -48165,7 +48165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c8796fa-29ba-4d30-bd96-41ca1951dd39", + "id": "9c9e7505-e0a4-4a7b-bfd1-332ecedfb9d3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48256,7 +48256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16a6fc53-e7c1-450f-8760-f7203ae8aa1b", + "id": "5243ee06-2ae8-4ab5-9ca9-9bfc8fefb7e7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48347,7 +48347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cfe5393-cce7-44f1-b09e-c8bb91031962", + "id": "78c9b513-b6df-4ce0-a4a4-4858ae671178", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48438,7 +48438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33d49953-78cf-4a85-8f1d-e7f753b7d4e8", + "id": "b74764d6-21f7-4356-be0e-a0df44af8224", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -48529,7 +48529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6753f22d-bf6d-4b3c-935b-c8ddb54c91a2", + "id": "d22cee95-8dc0-4716-ae73-aa2110bd8601", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48620,7 +48620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "353e7fe6-4164-440a-8ed6-9491bc316975", + "id": "1eb4e70b-af85-4414-828f-7c953349925c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48717,7 +48717,7 @@ } }, { - "id": "c8cd6d43-9420-4965-ab56-07b04bcba453", + "id": "51c3d1cb-7179-49e5-9810-44f241bd6d8c", "name": "Bulk update an entitlement list", "request": { "name": "Bulk update an entitlement list", @@ -48760,7 +48760,7 @@ }, "response": [ { - "id": "317ccb71-756a-4509-8695-c7fc4a8f25a1", + "id": "7b98839e-d2b0-4a0c-bdd5-e125907d9293", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -48807,7 +48807,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6cb98975-5d20-4f08-bdbb-4f44fd125212", + "id": "2aa230e5-7046-4f1b-a305-1de635a1c637", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48864,7 +48864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf686c69-4329-4ff7-b5ec-920fb5994e5d", + "id": "2f2421fe-5d88-4072-ae3b-eb31c1d15796", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48921,7 +48921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "471829b1-b990-4354-aade-ebd5c169809e", + "id": "3cf51fff-3751-4b8b-83bb-62a7229d1593", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48978,7 +48978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "138ecb08-5a80-4431-94ab-b8b161250ba0", + "id": "b20be3ca-29e4-408b-bdad-3ff71a60b9c5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49035,7 +49035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5d0ef6f-e37f-437e-bbb4-4b69ee97183d", + "id": "bd853f5d-a3cf-4252-afae-0e501b30fb93", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49098,7 +49098,7 @@ } }, { - "id": "9a3921f3-09fd-4b0f-93b3-9613bb97196e", + "id": "3c1083e2-fe56-429b-bdd0-c9212070e862", "name": "Get Entitlement Request Config", "request": { "name": "Get Entitlement Request Config", @@ -49140,7 +49140,7 @@ }, "response": [ { - "id": "6eea5e0d-bcc8-404c-bcc4-3bfca5abe1f8", + "id": "2151aa4e-46e4-4518-a1db-c264c4c94843", "name": "An Entitlement Request Config", "originalRequest": { "url": { @@ -49185,7 +49185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc288581-6b68-48d8-980e-f3de8953067f", + "id": "d9a1ca42-2793-408f-8936-4174f17bbbd0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49230,7 +49230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9aa7fc54-902f-47f9-8645-125c01543631", + "id": "19ea6985-99a7-4128-a696-69035743a433", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49275,7 +49275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2cffa89-6d78-422d-9fe7-3eeb0db73ccf", + "id": "96802f18-58fc-415d-a982-0c3469d17a22", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49320,7 +49320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03f15388-359e-48a6-af76-16984d7f7441", + "id": "d015d38a-dfad-4075-8360-5cbe8f6c778e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -49365,7 +49365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9fb480b-fb78-4916-809a-a6b3757dba62", + "id": "4e8f407b-869d-4385-8172-023405fdd6c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49410,7 +49410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1133af13-67d8-4167-bd79-08954b954030", + "id": "d37ea521-c1cc-4398-95ee-3a594a303c5c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49461,7 +49461,7 @@ } }, { - "id": "a780d746-4879-4946-a505-85aa8bd5eec5", + "id": "a7866443-9bbe-430a-9007-d6210fd5b768", "name": "Replace Entitlement Request Config", "request": { "name": "Replace Entitlement Request Config", @@ -49516,7 +49516,7 @@ }, "response": [ { - "id": "b6b4df96-bbba-40c7-825e-2b935e594710", + "id": "ce985ca1-e90b-492a-9147-2f20411fcd25", "name": "Responds with the entitlement request config as updated.", "originalRequest": { "url": { @@ -49574,7 +49574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a5b62a3-1831-4b08-ac13-649c695d268d", + "id": "460a47a2-b033-4a39-9eef-bb829ef8deeb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49632,7 +49632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "795ff6fd-8250-40f4-a840-020a4af9d927", + "id": "14b8d011-ac87-414e-88fd-5594bc6d5816", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49690,7 +49690,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2eca8f5b-d26f-4b8d-a35c-125216fb19d1", + "id": "6f1c5b3d-1893-4f89-ba80-ef53327b09bc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49748,7 +49748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1cfa59f-a6a8-4336-9f83-6166b0613758", + "id": "a3ccb8f9-0860-4715-be89-dc207d2cf57b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -49806,7 +49806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed289d4a-adf5-4703-8c9a-2e669e72d2ee", + "id": "f616efa6-e1d8-48d6-99be-0257ba3a8957", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49864,7 +49864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e8006e5-b502-4b5b-a12c-100c2b36ec9d", + "id": "ffd60a43-cf0e-4ee1-8f81-a6efee32d46b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49934,7 +49934,7 @@ "description": "Use this API to implement and customize Governance Group functionality. With this functionality in place, administrators can create Governance Groups and configure them for use throughout IdentityNow.\n\nA governance group is a group of users that can make governance decisions about access. If your organization has the Access Request or Certifications service, you can configure governance groups to review access requests or certifications. A governance group can determine whether specific access is appropriate for a user.\n\nRefer to [Creating and Managing Governance Groups](https://documentation.sailpoint.com/saas/help/common/users/governance_groups.html) for more information about how to build Governance Groups in the visual builder in the IdentityNow UI.\n", "item": [ { - "id": "c9dba8b1-dd70-4f04-8c9e-80cae16494d8", + "id": "1de25cf2-ba1d-4e34-a774-6b543a28b2a8", "name": "List Governance Groups", "request": { "name": "List Governance Groups", @@ -50009,7 +50009,7 @@ }, "response": [ { - "id": "6d56b5f8-5757-4b60-993f-f56f7ddf5c40", + "id": "59acab6c-90f4-49e7-b0d3-54426b06eda1", "name": "List of Governance Groups", "originalRequest": { "url": { @@ -50098,7 +50098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34814cee-a700-4df8-ae21-a1fbeebcb654", + "id": "88ad579d-462e-49b7-93f1-34b9b8cb1350", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50187,7 +50187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c47bf9fd-9db6-4759-87eb-35e4767c85a5", + "id": "166ba5dd-9fd0-457f-9832-ecfb2f2155bc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50276,7 +50276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff578d9b-927a-4cdf-8404-f63d30572a4c", + "id": "ad45f436-f01c-44af-b4c0-fa0ea1641765", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50365,7 +50365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca3781bc-732d-4143-b3d1-44fe8671e122", + "id": "ad7b6c4a-683c-47e0-b128-ad1890aef8d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50454,7 +50454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f727eb6-1a8d-4e42-aa08-2cfddddf920a", + "id": "be14235e-faa8-4190-8ad7-73fbb26fc962", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50549,7 +50549,7 @@ } }, { - "id": "b83bb8b1-732f-4dd8-9907-08ed65fdb8ce", + "id": "b687b5d4-22b0-42be-a9f6-2fa8cb1fb9fb", "name": "Create a new Governance Group.", "request": { "name": "Create a new Governance Group.", @@ -50591,7 +50591,7 @@ }, "response": [ { - "id": "348cfd4f-38e1-4f2c-ac33-e80dd03f0bf8", + "id": "f8b9b5ed-b997-46d6-a15f-f8dd0ffd9904", "name": "Governance Group object created.", "originalRequest": { "url": { @@ -50647,7 +50647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76e4bb95-4a39-42af-9d5d-6621df0ee0c9", + "id": "22b4a512-1461-42e4-9df5-5f16756a4963", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50703,7 +50703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a6914f7-ee6b-400f-be98-5c65f57a28ad", + "id": "fb8f9b58-6900-4b73-a5fe-e94d2afcc937", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50759,7 +50759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "874fd184-8164-4e5c-b98d-4d4c94b96e71", + "id": "324d2345-0bad-4c0e-a4f0-235030a7220f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50815,7 +50815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc3143d9-d77b-45be-8fa8-280627feb8f4", + "id": "d6fd68a0-4fe1-4cda-afd1-5c2eab32f05e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50871,7 +50871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "573de907-d0fe-487d-bc21-f362bebf938b", + "id": "97006e07-114d-4506-9633-1d2bdb90da47", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50933,7 +50933,7 @@ } }, { - "id": "a4f1fb65-65b8-4391-b603-5a32e1c0e8f4", + "id": "9401ab5a-db66-4e5f-9b64-b353d491b760", "name": "Get Governance Group by Id", "request": { "name": "Get Governance Group by Id", @@ -50974,7 +50974,7 @@ }, "response": [ { - "id": "a95205fc-a877-4b8c-a959-e4f8fef9ba4f", + "id": "a31550e8-ec83-4586-91c4-56282779477e", "name": "A Governance Group", "originalRequest": { "url": { @@ -51018,7 +51018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c646a6e7-acb7-4971-abea-3b838f159e21", + "id": "55cd526e-bf35-41a5-ae2e-a7775ef6aa25", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51062,7 +51062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "152ad0c5-30fe-442f-854c-c6fb18c1818a", + "id": "44909ed3-ffc0-4cee-9bf3-6c06a454f969", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51106,7 +51106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cc3aa97-2e9f-41c6-aed5-2903ea426040", + "id": "c537bdc9-2cfa-4d36-88f9-3f3654a62f59", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51150,7 +51150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75de8987-1d1a-4e8a-bf2c-ae14504d057b", + "id": "2684a365-b822-4278-a584-4b4cabc2909b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51194,7 +51194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "211b2581-535f-457d-b763-db2a34d1123a", + "id": "7da70c3b-60b8-4842-b0fc-a8216a22dfb4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51244,7 +51244,7 @@ } }, { - "id": "83d58790-b3ea-4020-bc5b-93140c4511ba", + "id": "793292c0-1b1e-4349-ba8c-b9c8b9af3580", "name": "Delete a Governance Group", "request": { "name": "Delete a Governance Group", @@ -51285,7 +51285,7 @@ }, "response": [ { - "id": "8754da75-2b3c-4993-99ed-f141f11a50b6", + "id": "529efbc1-0d9e-40e5-a584-28bea557fa5d", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -51319,7 +51319,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b83d9441-5462-47aa-85f9-380a00d8f0d1", + "id": "71a2730e-872c-48b4-bc41-69271ae0fec2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51363,7 +51363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4917ec7b-a7c2-4153-b3b6-2d47ced34bc4", + "id": "2214cdb2-7f1f-461f-b1ad-24abfc71f8a7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51407,7 +51407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5dd2126d-6c38-4cd1-9a0b-e45d4308f04a", + "id": "4068671a-3442-4b2a-8549-9e56e8610086", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51451,7 +51451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4f3ecf3-d159-4af6-8429-9dd6139bcdc6", + "id": "cbc560e5-5279-42ec-bf78-3953ee09a72f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51495,7 +51495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cc39393-db27-4c81-bcc0-2458d8628cca", + "id": "739a93fd-aad8-4e53-b0b9-0cf15d4264ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51545,7 +51545,7 @@ } }, { - "id": "c76a1bf1-f9b9-4ef4-bbea-bcbde6281b89", + "id": "8b2441f2-0547-4f81-ab97-87d7a355d322", "name": "Patch a Governance Group", "request": { "name": "Patch a Governance Group", @@ -51599,7 +51599,7 @@ }, "response": [ { - "id": "6c8a1300-fb9e-4a04-bb78-fa45b5d0e5f2", + "id": "5bdc9a5b-4b72-42f0-8b3a-6c5dd4f4a890", "name": "A Governance Group.", "originalRequest": { "url": { @@ -51656,7 +51656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be6daa20-8632-47a6-8d1a-ed959761e5d2", + "id": "fb9a4938-1bd8-442f-8bb7-1ba4e0fd736d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51713,7 +51713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de5c7b4b-3c83-4713-a819-b97b7a241386", + "id": "9d77b441-b909-4560-88cf-db28c54ae379", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51770,7 +51770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "659ff7de-b6da-483e-a139-8084a245907e", + "id": "9a018e4c-98b4-47ac-8be9-31b397035b9e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51827,7 +51827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e6ebe7e-44ad-47e5-8216-63369f4cfa60", + "id": "752d0c7e-83b3-4676-a7f3-0451b76ded76", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51884,7 +51884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5eccf2a5-c42c-4877-ba54-c91989817244", + "id": "82bddda0-dce6-40f9-b64e-f52263ca1f6c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51947,7 +51947,7 @@ } }, { - "id": "4a865d88-b1cf-4946-8eda-e6a95f30d6c4", + "id": "e68b7a53-8711-406a-a95f-b97771ed6d6a", "name": "Delete Governance Group(s)", "request": { "name": "Delete Governance Group(s)", @@ -51990,7 +51990,7 @@ }, "response": [ { - "id": "d69b3d56-8c88-43b8-9758-4da3d0448d3d", + "id": "c49c337a-c9e4-4ad3-b6b8-1997239ed2b1", "name": "Governance Group bulk delete response.", "originalRequest": { "url": { @@ -52047,7 +52047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2931c9c0-a2c8-46c1-9690-605dd577dd03", + "id": "96dc2132-8559-4b9c-b3ff-d51009ba470a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52104,7 +52104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e890761-2534-48f8-b210-d80e61784dc0", + "id": "3af7b97b-7715-4575-9ff7-cc56a8276e5d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52161,7 +52161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02034d10-6f42-4296-b933-4d9f041bf8e7", + "id": "9f999df3-27b7-4229-9a06-eda21009c1c3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52218,7 +52218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c2fac8d-62a8-49ea-8d79-5ce7875acae7", + "id": "5efc0972-de7d-4460-8c5c-61eed8d5dd41", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52275,7 +52275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e5188b4-c924-4e31-aa57-1f11a61733d5", + "id": "15392ca5-a588-43cb-ab95-ab6130dd8cce", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52338,7 +52338,7 @@ } }, { - "id": "e37c9bb0-976b-4604-9441-d49e88ebaebe", + "id": "43351f46-8fda-4546-a088-588fb25ac60d", "name": "List connections for Governance Group", "request": { "name": "List connections for Governance Group", @@ -52417,7 +52417,7 @@ }, "response": [ { - "id": "af4bf60a-7f86-4dd4-b084-d07e8513eba2", + "id": "30a33587-deeb-43f9-83a7-24bf1c91d62c", "name": "List all connections associated with a Governance Group.", "originalRequest": { "url": { @@ -52499,7 +52499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0660a0a-7599-4844-8a8e-1722fdccaafa", + "id": "ba60c0a1-dff1-45c6-8be2-82fe3e3f878d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52581,7 +52581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03766344-16b4-4b5e-8498-702feee54949", + "id": "c38fd2d5-442e-4838-9f2c-6f932cc7e8f6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52663,7 +52663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef6deee9-6e7b-4e40-b9e8-f955f0a7f684", + "id": "5375c751-8928-4239-91b1-21d928aaedae", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52745,7 +52745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88989604-8918-4073-a3ab-03d6400743a8", + "id": "90d1111e-f9e9-4df9-b465-cd66b67a06f2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52827,7 +52827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97188c65-5052-48dc-90cb-f4e223f550d8", + "id": "3998fb59-a176-4648-adb1-36b422be293f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52915,7 +52915,7 @@ } }, { - "id": "adde06b8-a1f1-4a0b-86f0-ef5e13cc0ca8", + "id": "679c94b3-6a98-4305-bef2-06deb76301b0", "name": "List Governance Group Members", "request": { "name": "List Governance Group Members", @@ -52994,7 +52994,7 @@ }, "response": [ { - "id": "4da9cd7c-6da3-42ad-acf4-9e0b6eaaff1e", + "id": "f3cd8223-7cf2-432f-a04a-3f05868b3a32", "name": "List all members associated with a Governance Group.", "originalRequest": { "url": { @@ -53076,7 +53076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8aa2d890-da62-49ba-96bb-e8c3d77c08ef", + "id": "dc2352c1-5402-4f8b-8d2d-6792ff6845af", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53158,7 +53158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1537cb32-da26-4cf3-bb13-63c8356236e8", + "id": "eb714ba2-5d5f-4a27-a096-9ba6e7225da0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53240,7 +53240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15b0b0f4-8f35-4631-b751-5a7af3525890", + "id": "3e2283d0-b824-4c3d-b1cd-cb427932871a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53322,7 +53322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80ca4961-2a87-4fdb-8e60-9767318e7bd3", + "id": "50c3d80b-e135-4ca8-97f4-73544029bc4c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53404,7 +53404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24ed18b5-c158-4a32-a698-931681d662bd", + "id": "5d2f74e4-d4fd-41f1-bd92-8754b0131b78", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53492,7 +53492,7 @@ } }, { - "id": "85580553-4bab-484b-abe2-6aed6f25682b", + "id": "dd200bc7-a1c4-405d-9bc0-9c9a5e663c52", "name": "Add members to Governance Group", "request": { "name": "Add members to Governance Group", @@ -53548,7 +53548,7 @@ }, "response": [ { - "id": "16946929-912d-434e-934a-83cb7e466493", + "id": "14c8ca56-5cb7-4014-88ba-d9c3081b58ca", "name": "List of added and not added identities into Governance Group members list.", "originalRequest": { "url": { @@ -53607,7 +53607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f39cf956-9e05-44a8-96c0-9a3c79aa0bf3", + "id": "e3a269c7-20f3-400a-912d-ca96b766a3bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53666,7 +53666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "486d009a-c67a-4ba9-963d-f0e073914308", + "id": "c14711e0-c1b5-4ec1-a032-d15769271a31", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53725,7 +53725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "431c16a3-a39b-4db4-a94c-3e4e45315e6c", + "id": "588a5716-21ea-4415-9ca9-45528a7838c9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53784,7 +53784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50759616-c962-4672-baa4-e002eaa9d059", + "id": "10fce746-fbc9-4c02-9d5c-b750672ce333", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53843,7 +53843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8358ba9-b716-41dd-8a9b-ae498cf69cee", + "id": "d891529b-6f77-4c42-88dc-dd8bdb30240d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53908,7 +53908,7 @@ } }, { - "id": "8f2a0332-66ef-4c30-9d18-7475ead52d78", + "id": "1b32e687-7ff0-42e3-be78-e79a914280dc", "name": "Remove members from Governance Group", "request": { "name": "Remove members from Governance Group", @@ -53964,7 +53964,7 @@ }, "response": [ { - "id": "68e55ceb-87a6-466d-a06c-826d1f0ef70e", + "id": "abe16508-84eb-468a-a0d9-e6ba98b2a97d", "name": "List of deleted and not deleted identities from Governance Group members list.", "originalRequest": { "url": { @@ -54023,7 +54023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20809785-94c8-467e-aace-50a7940824ad", + "id": "04c13424-0c43-4487-b9bf-b81731a2b1a8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54082,7 +54082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c55da7a-6b32-4d71-952e-c0f7edb1d1c6", + "id": "b4c89e84-bf22-464f-bea6-e564101d246b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54141,7 +54141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7da1a768-bd47-44b4-a229-eb3e8579f3f0", + "id": "907e7072-30fa-472c-9df5-4770e39fd9ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54200,7 +54200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf34156b-0708-4816-8dd9-27fce6f5defc", + "id": "062779b9-1bb5-478e-ba77-4536a68056e3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54259,7 +54259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c140e6b3-0c9f-4ebe-9e46-08d3aac07025", + "id": "c47b234a-e5fe-46c4-ad59-c2cbb1db7c5b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54330,7 +54330,7 @@ "description": "", "item": [ { - "id": "b81a5300-5e84-44df-93fd-c545158d8cb8", + "id": "a556bbc9-cb9f-4a37-be18-23903ab69566", "name": "Get Message catalogs", "request": { "name": "Get Message catalogs", @@ -54371,7 +54371,7 @@ }, "response": [ { - "id": "19587d68-b1fa-42fe-8901-536b6b778efb", + "id": "734f5a37-5d71-4073-999e-7913bd4dfb19", "name": "The message catalogs based on the request headers", "originalRequest": { "url": { @@ -54415,7 +54415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b54b969c-272f-43e1-8145-f9e4d187b612", + "id": "e2cb8f29-cc60-43b6-bd8d-bb1c3c281691", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54459,7 +54459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "141bb75f-9768-40d0-b7d6-b4fce1606d63", + "id": "f1f91938-2333-4a3b-8197-addd5c7d7791", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54503,7 +54503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da5274b8-2ffd-409b-860f-ee162b30b3c8", + "id": "a3eb5331-4325-4285-b12e-19470ea31b8c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54547,7 +54547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "175cdca9-228a-42d5-b0dc-08e971283236", + "id": "53a3977a-3dab-4598-ba87-ae3bc1c4e812", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54591,7 +54591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22eef3db-5ede-423c-9ce1-773d2c8d3666", + "id": "8da20194-d1b1-4c3b-8b01-d6028a6740f3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54647,7 +54647,7 @@ "description": "", "item": [ { - "id": "8df12618-6919-40b1-b190-d065d5e54324", + "id": "6e854a34-f792-48e5-a74b-e68686c78846", "name": "Identity Access Request Recommendations", "request": { "name": "Identity Access Request Recommendations", @@ -54724,7 +54724,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -54740,7 +54740,7 @@ }, "response": [ { - "id": "29c41c6f-dae8-4f34-aee6-c701c01c5a28", + "id": "7acf9100-8e15-432e-aaca-fe99869b09eb", "name": "List of access request recommendations for the identityId", "originalRequest": { "url": { @@ -54812,7 +54812,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -54847,7 +54847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "525feb48-d32c-41ef-8606-ced66c19f022", + "id": "43a1c6cf-d206-4b1e-a385-f95faea8c669", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54919,7 +54919,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -54954,7 +54954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6097fa0-3672-4bc5-8227-b461af4a2acb", + "id": "6b6fda88-2388-4e6f-8d3a-9121b40ba085", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55026,7 +55026,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -55061,7 +55061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f811a0a-2a1e-4391-bb86-c0adeac8190b", + "id": "90a7175b-2b6e-4c03-92bf-b5ac92ceb6d6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55133,7 +55133,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -55168,7 +55168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b53f1aa4-c8f0-418c-97ce-3dc690db9bde", + "id": "8be33a53-67e9-4a33-8877-a76d58d492a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55240,7 +55240,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -55275,7 +55275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5453cf1f-aad5-4ff2-9a23-3aef5b60e4bb", + "id": "bb6744de-a012-4490-9de1-a01636ea0a07", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55347,7 +55347,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -55388,7 +55388,7 @@ } }, { - "id": "4a7e5e54-00c6-4984-966b-94236fef3d8c", + "id": "76a5d64d-c794-42e5-8a92-b7d11fe023ba", "name": "Notification of Ignored Access Request Recommendations", "request": { "name": "Notification of Ignored Access Request Recommendations", @@ -55431,7 +55431,7 @@ }, "response": [ { - "id": "4742879b-23e0-4286-96a6-543e9265c77e", + "id": "58b7a9e4-ae26-455d-87cb-84a8d32bf71c", "name": "Recommendation successfully stored as ignored.", "originalRequest": { "url": { @@ -55488,7 +55488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e53d91eb-193d-4649-b616-ce6520547b7e", + "id": "dc282e8c-6b59-4840-8aae-878c29f17543", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55545,7 +55545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd848be5-650a-49e6-83dc-a85b00fb13c6", + "id": "62e90372-12bb-40b7-bc8a-9a98c6bbfdb4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55602,7 +55602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eef3ccf6-f7d3-42e9-85a5-caa0d0624ace", + "id": "f67e595b-eac5-470d-ba5d-81411d0da63b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55659,7 +55659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb0a7072-bbd4-4fad-986f-3327b34522d0", + "id": "79225e8a-7312-4126-a8c6-23825801f1e3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55716,7 +55716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3215c5c0-e00c-413f-a1cd-7c036f2e5123", + "id": "057d1c27-804f-4240-85a1-1cbb9cb96100", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55779,7 +55779,7 @@ } }, { - "id": "1dfbf0c6-ffff-4ca4-aaa3-26bf6f25f824", + "id": "6e37e078-3383-4122-ba50-3319acc1b570", "name": "List of Ignored Access Request Recommendations", "request": { "name": "List of Ignored Access Request Recommendations", @@ -55855,7 +55855,7 @@ }, "response": [ { - "id": "70177d9f-419d-4aa6-b9de-c58472dffd3b", + "id": "df0b3581-d3c1-43d2-9ebe-88268d31fa4e", "name": "Returns list of ignored access request recommendations.", "originalRequest": { "url": { @@ -55945,7 +55945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3516d884-8297-419f-99ef-6bcb1f10c95d", + "id": "c71c8e18-62df-47f2-a285-08fff7aa0a18", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56035,7 +56035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d23cadc5-38a3-4213-b743-c7553c9b32fc", + "id": "e12cc83e-17c0-4d8c-aba7-1f3b43e98ca4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56125,7 +56125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec337417-ace1-4df1-9357-4811f02636a6", + "id": "54475b3b-4131-4d71-b1d0-4ddfae434395", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56215,7 +56215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c96cf420-ca46-40c1-9be6-347478aa2a2e", + "id": "d87c8476-bc14-401e-8a6e-be299c51bba4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56305,7 +56305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22a1a026-925e-4ecd-a5f7-19465ac51da7", + "id": "87d12168-28a3-457e-9e26-1aa82edf6687", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56401,7 +56401,7 @@ } }, { - "id": "4456eb15-d079-4913-b36b-04105cff60bf", + "id": "dba8c218-a8e5-4ca8-9460-d6bfdf70760e", "name": "Notification of Requested Access Request Recommendations", "request": { "name": "Notification of Requested Access Request Recommendations", @@ -56444,7 +56444,7 @@ }, "response": [ { - "id": "ada995e6-c7a4-4e9e-ac25-f0328adf539d", + "id": "770f11ac-b36a-48a7-8063-3ac6e1ccf885", "name": "Notification successfully acknowledged.", "originalRequest": { "url": { @@ -56501,7 +56501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "beed90e1-a9a3-4924-a543-cbd8bf70822c", + "id": "fa6d7372-36b7-4672-8e34-292c1f71457e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56558,7 +56558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cb505f2-fcfb-42b5-aab5-b0369c2f47b5", + "id": "5953e964-748d-4bd0-8be0-c6c85f13da08", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56615,7 +56615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3be20e73-90d9-4e4c-9b6b-74beaa9c2785", + "id": "18ba113b-c9fb-48b0-935c-e6732bccff51", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56672,7 +56672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96ab2383-32cc-44bc-a1a9-c8cd09144943", + "id": "97ae2613-0d70-47d2-9db0-d37b51065697", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56729,7 +56729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dce6d6ad-e30a-4836-b369-f46a6a4f574a", + "id": "13c5319a-83ff-4a84-841d-4ac4394f9982", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56792,7 +56792,7 @@ } }, { - "id": "66e01ef1-be90-4325-97a1-c197a5e6f3de", + "id": "0eb07d0e-c2e9-454b-b925-bf156081f817", "name": "List of Requested Access Request Recommendations", "request": { "name": "List of Requested Access Request Recommendations", @@ -56852,7 +56852,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -56868,7 +56868,7 @@ }, "response": [ { - "id": "4d77cf5e-c277-4541-bee0-e0c18e234f44", + "id": "65c91af8-5fd7-4d3e-a9f8-9e57ed6163a4", "name": "Returns the list of requested access request recommendations.", "originalRequest": { "url": { @@ -56923,7 +56923,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -56958,7 +56958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af1032a9-d10b-4232-bb51-4563bdccefeb", + "id": "56fbd9ca-365c-41d2-948c-4855b18de9dc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57013,7 +57013,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -57048,7 +57048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6dcbea30-078c-401f-8329-bde04ec5fd46", + "id": "2f2e9d4f-4154-41da-99b1-c6956750171d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57103,7 +57103,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -57138,7 +57138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f6211ad-96c7-4e7c-aaf8-4a3f1f5a6134", + "id": "d6b20284-0e87-421f-8291-4ad91ecfa2e0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57193,7 +57193,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -57228,7 +57228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b62eb35-813c-4092-9607-86ac8e41f185", + "id": "52966fb0-dfed-417a-a16d-78b1c3ef301c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57283,7 +57283,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -57318,7 +57318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9e4fdc4-4230-46fe-a6c4-f2133701e83a", + "id": "90083c37-57af-4ab9-a859-744970d30e79", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57373,7 +57373,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -57414,7 +57414,7 @@ } }, { - "id": "af07e977-4a4e-48a6-947b-e1b2a3d1ee56", + "id": "b8d25409-b0fe-4695-a151-37547b8114ef", "name": "Notification of Viewed Access Request Recommendations", "request": { "name": "Notification of Viewed Access Request Recommendations", @@ -57457,7 +57457,7 @@ }, "response": [ { - "id": "de61c800-5920-4fb5-ae36-bf40d3b23a87", + "id": "cd3436f8-614a-4736-91e1-5bc42f8d2e0c", "name": "Recommendation successfully stored as viewed.", "originalRequest": { "url": { @@ -57514,7 +57514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a4ec8f8-ed2c-4ad9-8241-587df367c18d", + "id": "9b7bb1b8-b0bb-42aa-8c46-cad6efd87a38", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57571,7 +57571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8308c5ae-e285-477b-81f7-4eb174308b76", + "id": "659f65af-a467-43bf-957e-f818d73cbb06", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57628,7 +57628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c3fa014-64a8-4106-b60e-8f3578d1c002", + "id": "7e7244a6-0669-443d-827f-7c3f6f0c5cf2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57685,7 +57685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5508578f-0c76-4a55-818e-95b780154e69", + "id": "0cbeb14c-d595-4384-9082-d53b9d87a571", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57742,7 +57742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61379c2b-d718-41ac-92f3-d1cd7202d5fa", + "id": "0c271d3f-2eb8-4f8e-a25e-2d2f2ca2b529", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57805,7 +57805,7 @@ } }, { - "id": "e1c7fbf6-bf01-4b9d-8976-16a97dcca953", + "id": "b884dca4-d4d5-4a51-a708-00f6d6a76a9f", "name": "List of Viewed Access Request Recommendations", "request": { "name": "List of Viewed Access Request Recommendations", @@ -57865,7 +57865,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -57881,7 +57881,7 @@ }, "response": [ { - "id": "5c179a04-bd89-43a0-9abd-146b345c3500", + "id": "a9f42726-56b5-4b65-b5b2-185f89e182ad", "name": "Returns list of viewed access request recommendations.", "originalRequest": { "url": { @@ -57936,7 +57936,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -57971,7 +57971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1d9e8ab-f137-49c8-826b-a269d2ded4f6", + "id": "5ddee44d-b2a1-4753-96f3-206364b037b8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58026,7 +58026,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -58061,7 +58061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84645332-7b07-457a-98af-d77d6ad53e31", + "id": "a51371b4-4257-4c3b-9d3e-f47a63184324", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58116,7 +58116,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -58151,7 +58151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ab592a8-375f-4464-a0fc-98029d3d76f7", + "id": "06986a76-85c0-4d80-a73d-5e471ac041cb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58206,7 +58206,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -58241,7 +58241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ba003c4-c4a0-4354-80ca-06a5d6457e4a", + "id": "7f389372-78e4-4410-b5a1-a779d959f2c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58296,7 +58296,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -58331,7 +58331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0caccc9-920b-4a6d-96e0-16ab4273624c", + "id": "5b2cd942-b80e-469a-add0-1f0f979a83a7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58386,7 +58386,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -58427,7 +58427,7 @@ } }, { - "id": "7fe30787-3e14-49fe-b061-74f97d47785d", + "id": "51e5674d-e2db-499d-aa54-4765dbf1b422", "name": "Notification of Viewed Access Request Recommendations in Bulk", "request": { "name": "Notification of Viewed Access Request Recommendations in Bulk", @@ -58471,7 +58471,7 @@ }, "response": [ { - "id": "29fd7c51-2747-4fd0-b303-922f0d8c2cc1", + "id": "d8602e7a-93b1-4dd9-aa53-e39d6687e2d7", "name": "Recommendations successfully stored as viewed.", "originalRequest": { "url": { @@ -58529,7 +58529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "563ee937-7ba7-48fb-8c9c-6f2ef530f80f", + "id": "09af9806-404e-44d5-962a-a20dfbc908a4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58587,7 +58587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05765af1-c3d3-4210-a0fe-7ba650522b6b", + "id": "792d0b5a-b3fa-4a20-b378-19bde7e17bb9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58645,7 +58645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c1a0af7-f7da-48d4-890f-efa8a65b1754", + "id": "b76f187e-0376-4039-afe7-498fe68574ba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58703,7 +58703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b0036c7-a470-4a0d-bebf-0181e2f9cdc3", + "id": "6bdc9484-8b88-4fee-852a-ac3dc1c26d76", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58761,7 +58761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fba4c5b2-876f-45ff-9461-fd1dd9acdbc1", + "id": "caf41573-cbda-41bc-bc45-34bc2d71c643", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58831,7 +58831,7 @@ "description": "", "item": [ { - "id": "759f1b8c-b73f-41ae-86b4-1e7400bb5ad1", + "id": "cd01abaf-ebcb-40f2-b1b5-931731a62cf5", "name": "Get a paginated list of common access", "request": { "name": "Get a paginated list of common access", @@ -58906,7 +58906,7 @@ }, "response": [ { - "id": "84814644-20a2-49ef-bad4-1c3595a08ecf", + "id": "b6ca5195-bb8f-4bad-b7f2-19abd55f3702", "name": "Succeeded. Returns a list of common access for a customer.", "originalRequest": { "url": { @@ -58990,12 +58990,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"nulla reprehenderit eiusmod velit\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"in anim elit cillum nostrud\",\n \"description\": \"aute Lorem dolore ullamc\",\n \"ownerName\": \"in id ea adipisicing\",\n \"ownerId\": \"in est Excepteur laboris\"\n },\n \"status\": \"in aliqui\",\n \"lastUpdated\": \"1960-01-06T13:07:13.739Z\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"2014-12-27T22:28:20.442Z\",\n \"createdByUser\": false\n },\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"cillum dolore \",\n \"type\": \"ROLE\",\n \"name\": \"minim\",\n \"description\": \"Lorem dolore Ut\",\n \"ownerName\": \"nostrud sint occaecat\",\n \"ownerId\": \"et qui eiusmod\"\n },\n \"status\": \"magna ut minim\",\n \"lastUpdated\": \"1971-12-26T17:26:40.021Z\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"1951-08-08T00:13:42.437Z\",\n \"createdByUser\": false\n }\n]", + "body": "[\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"occaecat et\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"irure\",\n \"description\": \"minim nostrud veniam eiusmod\",\n \"ownerName\": \"exercitation mollit eu in et\",\n \"ownerId\": \"incididunt aliqua aute\"\n },\n \"status\": \"dolor id ex\",\n \"lastUpdated\": \"2010-02-05T01:54:06.667Z\",\n \"reviewedByUser\": true,\n \"lastReviewed\": \"1944-10-05T09:19:59.360Z\",\n \"createdByUser\": false\n },\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"ipsum aute\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"ex dolore cupidatat enim\",\n \"description\": \"ex dolore incididunt\",\n \"ownerName\": \"reprehenderit quis laboris\",\n \"ownerId\": \"Ut irure dolore\"\n },\n \"status\": \"laboris\",\n \"lastUpdated\": \"1947-01-27T16:53:01.005Z\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"1970-04-01T20:59:10.200Z\",\n \"createdByUser\": false\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8935167d-d2ab-4851-a732-dea522d1bb04", + "id": "359f3374-e5f0-42f4-bbfe-bd9d76c5bae2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59084,7 +59084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2511a1dc-e8d6-4e9d-80e5-0c0dc47469aa", + "id": "b81a72e5-1cb2-4f97-9a45-fbf446cc138c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59173,7 +59173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08ab8d62-9010-426e-b272-55f65fd0358d", + "id": "87e73fd6-b33c-4f24-bd8d-76c5e24d65ac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59262,7 +59262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdae7850-ba14-4dd0-a257-a28607895c29", + "id": "97354311-4845-48f4-a076-af7110241d3c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59357,7 +59357,7 @@ } }, { - "id": "1680d73d-52e1-48cd-9213-d7123ef39027", + "id": "b1dd9fe8-4f8e-458e-87be-e62a4a1d467a", "name": "Create common access items", "request": { "name": "Create common access items", @@ -59388,7 +59388,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"occaecat enim\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"nisi voluptate in\",\n \"description\": \"tempor occaecat\",\n \"ownerName\": \"enim Duis cupidatat proident\",\n \"ownerId\": \"sed in Duis eu\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"exercitation\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"veniam Excepteur\",\n \"description\": \"cupidatat quis non esse\",\n \"ownerName\": \"velit quis\",\n \"ownerId\": \"cillum dolore qui\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -59399,7 +59399,7 @@ }, "response": [ { - "id": "034e6323-91c7-41f5-8b0b-f4f7dfbc2369", + "id": "f981f18b-c621-4125-95ba-d65fec237d6c", "name": "Returns details of the common access classification request.", "originalRequest": { "url": { @@ -59433,7 +59433,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"occaecat enim\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"nisi voluptate in\",\n \"description\": \"tempor occaecat\",\n \"ownerName\": \"enim Duis cupidatat proident\",\n \"ownerId\": \"sed in Duis eu\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"exercitation\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"veniam Excepteur\",\n \"description\": \"cupidatat quis non esse\",\n \"ownerName\": \"velit quis\",\n \"ownerId\": \"cillum dolore qui\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -59450,12 +59450,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"dolore quis ea Lorem\",\n \"access\": {\n \"id\": \"aliqua eu\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"reprehenderit aliqua velit qui eu\",\n \"description\": \"esse laboris pariatur\",\n \"ownerName\": \"e\",\n \"ownerId\": \"eu conse\"\n },\n \"status\": \"DENIED\",\n \"lastUpdated\": \"incididunt\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"proident in laboris laborum\",\n \"createdByUser\": \"nisi ad\"\n}", + "body": "{\n \"id\": \"sint deserunt in nulla\",\n \"access\": {\n \"id\": \"labore Duis\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"in eu nulla ullamco\",\n \"description\": \"Lorem minim dolor nostrud\",\n \"ownerName\": \"cillum ipsum pariatur aliqua ullamco\",\n \"ownerId\": \"irure quis E\"\n },\n \"status\": \"CONFIRMED\",\n \"lastUpdated\": \"cupidatat sint elit\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"dolor do\",\n \"createdByUser\": \"enim mollit\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e9bccb2f-049e-4d98-bdf9-b8de75099844", + "id": "e576a54b-11c0-4136-b5bb-929972f43530", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59489,7 +59489,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"occaecat enim\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"nisi voluptate in\",\n \"description\": \"tempor occaecat\",\n \"ownerName\": \"enim Duis cupidatat proident\",\n \"ownerId\": \"sed in Duis eu\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"exercitation\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"veniam Excepteur\",\n \"description\": \"cupidatat quis non esse\",\n \"ownerName\": \"velit quis\",\n \"ownerId\": \"cillum dolore qui\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -59511,7 +59511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3634176c-c35b-4cf7-ba16-1ae12745af20", + "id": "5f88a888-0670-49ff-b6a4-ba62e454d298", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59545,7 +59545,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"occaecat enim\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"nisi voluptate in\",\n \"description\": \"tempor occaecat\",\n \"ownerName\": \"enim Duis cupidatat proident\",\n \"ownerId\": \"sed in Duis eu\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"exercitation\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"veniam Excepteur\",\n \"description\": \"cupidatat quis non esse\",\n \"ownerName\": \"velit quis\",\n \"ownerId\": \"cillum dolore qui\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -59567,7 +59567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "491ff9e3-8585-4bb4-aadc-ccd9d9025680", + "id": "25028fe1-9ed8-4b28-8aae-0c50bafe3900", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59601,7 +59601,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"occaecat enim\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"nisi voluptate in\",\n \"description\": \"tempor occaecat\",\n \"ownerName\": \"enim Duis cupidatat proident\",\n \"ownerId\": \"sed in Duis eu\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"exercitation\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"veniam Excepteur\",\n \"description\": \"cupidatat quis non esse\",\n \"ownerName\": \"velit quis\",\n \"ownerId\": \"cillum dolore qui\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -59623,7 +59623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cef874e9-232d-40b3-87d8-917869a227c2", + "id": "503aea80-adc9-478a-b429-b6bab346b667", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59657,7 +59657,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"occaecat enim\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"nisi voluptate in\",\n \"description\": \"tempor occaecat\",\n \"ownerName\": \"enim Duis cupidatat proident\",\n \"ownerId\": \"sed in Duis eu\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"exercitation\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"veniam Excepteur\",\n \"description\": \"cupidatat quis non esse\",\n \"ownerName\": \"velit quis\",\n \"ownerId\": \"cillum dolore qui\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -59679,7 +59679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bb1a04e-5cd1-40c1-8585-3f769dfb622b", + "id": "717c8079-fd38-409a-b3d5-d3ccb1c858b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59713,7 +59713,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"occaecat enim\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"nisi voluptate in\",\n \"description\": \"tempor occaecat\",\n \"ownerName\": \"enim Duis cupidatat proident\",\n \"ownerId\": \"sed in Duis eu\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"exercitation\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"veniam Excepteur\",\n \"description\": \"cupidatat quis non esse\",\n \"ownerName\": \"velit quis\",\n \"ownerId\": \"cillum dolore qui\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -59741,7 +59741,7 @@ } }, { - "id": "9efaed62-5570-4837-9ec4-c77d65d953e8", + "id": "63684122-d3f5-4301-ae66-7a0b53f0e040", "name": "Bulk update common access status", "request": { "name": "Bulk update common access status", @@ -59773,7 +59773,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:e74bf368-b508-ac98-cd45-c7f33a5b7a84\",\n \"649798cb-c6e6-d9b2-a264-6245d5e799eb\"\n ],\n \"deniedIds\": [\n \"d373ef0c-6742-3318-f942-85f95e44a39f\",\n \"urn:uuid:e279b365-742e-57bf-e712-79b46541edbf\"\n ]\n },\n {\n \"confirmedIds\": [\n \"c9d42ebd-8fc5-4861-9a6f-f4ed6be82c7f\",\n \"88cb9a07-a6d2-aef4-236c-43aa6ea6fe56\"\n ],\n \"deniedIds\": [\n \"urn:uuid:773c288d-3bfb-149a-4e3f-faa8d9bf9502\",\n \"a8af115b-8927-79c0-d55d-bc2b2755bf65\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"d64b52bc-b611-0b5d-437b-94b2f01b7b2a\",\n \"urn:uuid:b438f6e6-df6d-ff9a-cecb-68e8fb6d4926\"\n ],\n \"deniedIds\": [\n \"3cf6ef40-2985-2079-38d5-a72861b7b433\",\n \"7b2f8f64-8937-9321-f657-8b13fed258b5\"\n ]\n },\n {\n \"confirmedIds\": [\n \"32e267ea-b0fe-89ac-9901-9b36f95a9c60\",\n \"3cc84124-ab1a-bebc-df24-f80850c40776\"\n ],\n \"deniedIds\": [\n \"af30ac20-f549-09fc-9b64-73c4d27465fb\",\n \"798b3066-13ea-c98e-9193-9d909a4628be\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -59784,7 +59784,7 @@ }, "response": [ { - "id": "e5d72c97-33ea-49a0-ae14-7cb1761c784a", + "id": "771d1b3b-9855-49b9-a02c-07d4b18ecb85", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -59819,7 +59819,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:e74bf368-b508-ac98-cd45-c7f33a5b7a84\",\n \"649798cb-c6e6-d9b2-a264-6245d5e799eb\"\n ],\n \"deniedIds\": [\n \"d373ef0c-6742-3318-f942-85f95e44a39f\",\n \"urn:uuid:e279b365-742e-57bf-e712-79b46541edbf\"\n ]\n },\n {\n \"confirmedIds\": [\n \"c9d42ebd-8fc5-4861-9a6f-f4ed6be82c7f\",\n \"88cb9a07-a6d2-aef4-236c-43aa6ea6fe56\"\n ],\n \"deniedIds\": [\n \"urn:uuid:773c288d-3bfb-149a-4e3f-faa8d9bf9502\",\n \"a8af115b-8927-79c0-d55d-bc2b2755bf65\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"d64b52bc-b611-0b5d-437b-94b2f01b7b2a\",\n \"urn:uuid:b438f6e6-df6d-ff9a-cecb-68e8fb6d4926\"\n ],\n \"deniedIds\": [\n \"3cf6ef40-2985-2079-38d5-a72861b7b433\",\n \"7b2f8f64-8937-9321-f657-8b13fed258b5\"\n ]\n },\n {\n \"confirmedIds\": [\n \"32e267ea-b0fe-89ac-9901-9b36f95a9c60\",\n \"3cc84124-ab1a-bebc-df24-f80850c40776\"\n ],\n \"deniedIds\": [\n \"af30ac20-f549-09fc-9b64-73c4d27465fb\",\n \"798b3066-13ea-c98e-9193-9d909a4628be\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -59841,7 +59841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9df85bd-c847-4416-a630-74db5f9cc1d2", + "id": "f45053c9-0f1b-4813-b575-c6e2305d8a61", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59876,7 +59876,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:e74bf368-b508-ac98-cd45-c7f33a5b7a84\",\n \"649798cb-c6e6-d9b2-a264-6245d5e799eb\"\n ],\n \"deniedIds\": [\n \"d373ef0c-6742-3318-f942-85f95e44a39f\",\n \"urn:uuid:e279b365-742e-57bf-e712-79b46541edbf\"\n ]\n },\n {\n \"confirmedIds\": [\n \"c9d42ebd-8fc5-4861-9a6f-f4ed6be82c7f\",\n \"88cb9a07-a6d2-aef4-236c-43aa6ea6fe56\"\n ],\n \"deniedIds\": [\n \"urn:uuid:773c288d-3bfb-149a-4e3f-faa8d9bf9502\",\n \"a8af115b-8927-79c0-d55d-bc2b2755bf65\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"d64b52bc-b611-0b5d-437b-94b2f01b7b2a\",\n \"urn:uuid:b438f6e6-df6d-ff9a-cecb-68e8fb6d4926\"\n ],\n \"deniedIds\": [\n \"3cf6ef40-2985-2079-38d5-a72861b7b433\",\n \"7b2f8f64-8937-9321-f657-8b13fed258b5\"\n ]\n },\n {\n \"confirmedIds\": [\n \"32e267ea-b0fe-89ac-9901-9b36f95a9c60\",\n \"3cc84124-ab1a-bebc-df24-f80850c40776\"\n ],\n \"deniedIds\": [\n \"af30ac20-f549-09fc-9b64-73c4d27465fb\",\n \"798b3066-13ea-c98e-9193-9d909a4628be\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -59898,7 +59898,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e9a0a7c-83a0-4307-8ee2-c7ca1a788077", + "id": "a61f4431-fe12-4411-bf06-4e7abc0ef357", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59933,7 +59933,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:e74bf368-b508-ac98-cd45-c7f33a5b7a84\",\n \"649798cb-c6e6-d9b2-a264-6245d5e799eb\"\n ],\n \"deniedIds\": [\n \"d373ef0c-6742-3318-f942-85f95e44a39f\",\n \"urn:uuid:e279b365-742e-57bf-e712-79b46541edbf\"\n ]\n },\n {\n \"confirmedIds\": [\n \"c9d42ebd-8fc5-4861-9a6f-f4ed6be82c7f\",\n \"88cb9a07-a6d2-aef4-236c-43aa6ea6fe56\"\n ],\n \"deniedIds\": [\n \"urn:uuid:773c288d-3bfb-149a-4e3f-faa8d9bf9502\",\n \"a8af115b-8927-79c0-d55d-bc2b2755bf65\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"d64b52bc-b611-0b5d-437b-94b2f01b7b2a\",\n \"urn:uuid:b438f6e6-df6d-ff9a-cecb-68e8fb6d4926\"\n ],\n \"deniedIds\": [\n \"3cf6ef40-2985-2079-38d5-a72861b7b433\",\n \"7b2f8f64-8937-9321-f657-8b13fed258b5\"\n ]\n },\n {\n \"confirmedIds\": [\n \"32e267ea-b0fe-89ac-9901-9b36f95a9c60\",\n \"3cc84124-ab1a-bebc-df24-f80850c40776\"\n ],\n \"deniedIds\": [\n \"af30ac20-f549-09fc-9b64-73c4d27465fb\",\n \"798b3066-13ea-c98e-9193-9d909a4628be\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -59955,7 +59955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab0df819-a3f8-4912-98fd-1398d3270570", + "id": "0abe1bfa-210f-478b-bc61-e5a3b1b62eb7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59990,7 +59990,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:e74bf368-b508-ac98-cd45-c7f33a5b7a84\",\n \"649798cb-c6e6-d9b2-a264-6245d5e799eb\"\n ],\n \"deniedIds\": [\n \"d373ef0c-6742-3318-f942-85f95e44a39f\",\n \"urn:uuid:e279b365-742e-57bf-e712-79b46541edbf\"\n ]\n },\n {\n \"confirmedIds\": [\n \"c9d42ebd-8fc5-4861-9a6f-f4ed6be82c7f\",\n \"88cb9a07-a6d2-aef4-236c-43aa6ea6fe56\"\n ],\n \"deniedIds\": [\n \"urn:uuid:773c288d-3bfb-149a-4e3f-faa8d9bf9502\",\n \"a8af115b-8927-79c0-d55d-bc2b2755bf65\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"d64b52bc-b611-0b5d-437b-94b2f01b7b2a\",\n \"urn:uuid:b438f6e6-df6d-ff9a-cecb-68e8fb6d4926\"\n ],\n \"deniedIds\": [\n \"3cf6ef40-2985-2079-38d5-a72861b7b433\",\n \"7b2f8f64-8937-9321-f657-8b13fed258b5\"\n ]\n },\n {\n \"confirmedIds\": [\n \"32e267ea-b0fe-89ac-9901-9b36f95a9c60\",\n \"3cc84124-ab1a-bebc-df24-f80850c40776\"\n ],\n \"deniedIds\": [\n \"af30ac20-f549-09fc-9b64-73c4d27465fb\",\n \"798b3066-13ea-c98e-9193-9d909a4628be\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -60012,7 +60012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f050734f-4e26-40bf-80ef-99dbc97c7e16", + "id": "53645683-aeff-4a49-8522-38b006a6bbdd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60047,7 +60047,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:e74bf368-b508-ac98-cd45-c7f33a5b7a84\",\n \"649798cb-c6e6-d9b2-a264-6245d5e799eb\"\n ],\n \"deniedIds\": [\n \"d373ef0c-6742-3318-f942-85f95e44a39f\",\n \"urn:uuid:e279b365-742e-57bf-e712-79b46541edbf\"\n ]\n },\n {\n \"confirmedIds\": [\n \"c9d42ebd-8fc5-4861-9a6f-f4ed6be82c7f\",\n \"88cb9a07-a6d2-aef4-236c-43aa6ea6fe56\"\n ],\n \"deniedIds\": [\n \"urn:uuid:773c288d-3bfb-149a-4e3f-faa8d9bf9502\",\n \"a8af115b-8927-79c0-d55d-bc2b2755bf65\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"d64b52bc-b611-0b5d-437b-94b2f01b7b2a\",\n \"urn:uuid:b438f6e6-df6d-ff9a-cecb-68e8fb6d4926\"\n ],\n \"deniedIds\": [\n \"3cf6ef40-2985-2079-38d5-a72861b7b433\",\n \"7b2f8f64-8937-9321-f657-8b13fed258b5\"\n ]\n },\n {\n \"confirmedIds\": [\n \"32e267ea-b0fe-89ac-9901-9b36f95a9c60\",\n \"3cc84124-ab1a-bebc-df24-f80850c40776\"\n ],\n \"deniedIds\": [\n \"af30ac20-f549-09fc-9b64-73c4d27465fb\",\n \"798b3066-13ea-c98e-9193-9d909a4628be\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -60069,7 +60069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f676d13-6761-4d0e-aa45-3740c6fa6e7f", + "id": "f9549231-6de7-4ba7-9d72-ee11da68cfa8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60104,7 +60104,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:e74bf368-b508-ac98-cd45-c7f33a5b7a84\",\n \"649798cb-c6e6-d9b2-a264-6245d5e799eb\"\n ],\n \"deniedIds\": [\n \"d373ef0c-6742-3318-f942-85f95e44a39f\",\n \"urn:uuid:e279b365-742e-57bf-e712-79b46541edbf\"\n ]\n },\n {\n \"confirmedIds\": [\n \"c9d42ebd-8fc5-4861-9a6f-f4ed6be82c7f\",\n \"88cb9a07-a6d2-aef4-236c-43aa6ea6fe56\"\n ],\n \"deniedIds\": [\n \"urn:uuid:773c288d-3bfb-149a-4e3f-faa8d9bf9502\",\n \"a8af115b-8927-79c0-d55d-bc2b2755bf65\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"d64b52bc-b611-0b5d-437b-94b2f01b7b2a\",\n \"urn:uuid:b438f6e6-df6d-ff9a-cecb-68e8fb6d4926\"\n ],\n \"deniedIds\": [\n \"3cf6ef40-2985-2079-38d5-a72861b7b433\",\n \"7b2f8f64-8937-9321-f657-8b13fed258b5\"\n ]\n },\n {\n \"confirmedIds\": [\n \"32e267ea-b0fe-89ac-9901-9b36f95a9c60\",\n \"3cc84124-ab1a-bebc-df24-f80850c40776\"\n ],\n \"deniedIds\": [\n \"af30ac20-f549-09fc-9b64-73c4d27465fb\",\n \"798b3066-13ea-c98e-9193-9d909a4628be\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -60138,7 +60138,7 @@ "description": "", "item": [ { - "id": "d9cb9cf5-43d8-4e94-ab66-351d58bab89d", + "id": "4b48f9e8-902e-4445-9acd-bb98000db811", "name": "IAI Identity Outliers Summary", "request": { "name": "IAI Identity Outliers Summary", @@ -60179,7 +60179,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -60213,7 +60213,7 @@ }, "response": [ { - "id": "ba5448b9-7054-49a5-a464-ee213782c069", + "id": "f5f73178-da81-4077-afc9-2eeb418e3a2e", "name": "Succeeded. Returns list of objects. Each object is a summary to give high level statistics/counts of outliers", "originalRequest": { "url": { @@ -60249,7 +60249,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -60303,7 +60303,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "-75667500" + "value": "73044692" } ], "body": "[\n {\n \"type\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"2021-05-01T18:40:35.772Z\",\n \"totalOutliers\": 50,\n \"totalIdentities\": 5000,\n \"totalIgnored\": 0\n },\n {\n \"type\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"2021-05-01T18:40:35.772Z\",\n \"totalOutliers\": 50,\n \"totalIdentities\": 5000,\n \"totalIgnored\": 0\n }\n]", @@ -60311,7 +60311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13d57ff4-0b03-4121-bf71-3d6b0a40a331", + "id": "bece7a0f-5b35-4b9d-a059-554e2f89d8a6", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -60347,7 +60347,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -60400,7 +60400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32938cb1-9cee-429d-bf30-6fcf5fc6edfa", + "id": "c718c54e-b71a-418f-9940-48e8ec97e25c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60436,7 +60436,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -60489,7 +60489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5729d092-3de0-475b-83dd-9df2f58ac358", + "id": "9bf94f4b-c7ee-47a9-bfd0-5b2fed75cb8f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60525,7 +60525,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -60578,7 +60578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acb8a798-09ec-4ae7-b2cb-926a5b481ab1", + "id": "d1b68381-fbaa-41c0-918d-05e96c7ba4e4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60614,7 +60614,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -60667,7 +60667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3cacd15-2cbb-45a1-927d-f0390d6a6485", + "id": "1c9d76ca-e6f7-4190-92c9-9cfabbf82ad7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60703,7 +60703,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -60756,7 +60756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0708621-dd21-4c32-861c-2c65baf16726", + "id": "fd913bea-2153-43b0-8c30-a7419b29ff4e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60792,7 +60792,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -60851,7 +60851,7 @@ } }, { - "id": "e050b993-7b6f-4547-8fd1-3e93ef63452c", + "id": "249692cd-993c-4515-8c14-bccff5359935", "name": "IAI Identity Outliers Latest Summary", "request": { "name": "IAI Identity Outliers Latest Summary", @@ -60875,7 +60875,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -60891,7 +60891,7 @@ }, "response": [ { - "id": "06c1d00f-4185-455b-b909-e12f4daf67fb", + "id": "24ff3194-3af2-46fb-bef0-56d1fd48cb72", "name": "Succeeded. Returns list of objects. Each object is a summary to give high level statistics/counts of outliers", "originalRequest": { "url": { @@ -60910,7 +60910,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -60945,7 +60945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ea3d6ed-5a5d-4324-9cc8-d5ab390d3109", + "id": "16634904-a3ad-4c02-a005-a6bb26d6acc7", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -60964,7 +60964,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -60999,7 +60999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac64603f-b251-4b1d-999b-1589cc9b7804", + "id": "5d3d01da-7945-41dd-aded-0f5b34726ea8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61018,7 +61018,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -61053,7 +61053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3306da0e-4b3d-4de0-a76a-a6254791636d", + "id": "e66d90da-1278-47d6-8640-15cdbeed9ea0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61072,7 +61072,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -61107,7 +61107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0262661-c28e-4d5e-85c2-94a061417b1a", + "id": "09e9ec03-8d5e-44f3-b945-26355ac70bdb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61126,7 +61126,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -61161,7 +61161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a694c96f-9db8-424a-83fe-801b406be801", + "id": "b6787ede-4b54-4810-8caf-1713e793f3e3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61180,7 +61180,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -61215,7 +61215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c07ffa06-f13e-47b1-ac75-b166412b1f7e", + "id": "888684c8-4623-44d2-852e-4ffa49b8dba0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61234,7 +61234,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -61275,7 +61275,7 @@ } }, { - "id": "01d57ca3-7f7f-4762-943b-5f6c3435ea11", + "id": "820eedac-83d1-4b51-9ce3-24e315285918", "name": "IAI Get Identity Outliers", "request": { "name": "IAI Get Identity Outliers", @@ -61359,7 +61359,7 @@ }, "response": [ { - "id": "daf746d0-4849-4ef3-96a5-75ca42e9bd74", + "id": "7dbc2b52-35c8-4b15-abdf-f477fcdc0f64", "name": "Succeeded. Returns list of objects. Each object contains information about outliers", "originalRequest": { "url": { @@ -61458,7 +61458,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "-75667500" + "value": "73044692" } ], "body": "[\n {\n \"id\": \"5be33d3e-c54d-4ed7-af73-2380543e8283\",\n \"identityId\": \"5be33d3e-c54d-4ed7-af73-2380543e8283\",\n \"type\": \"LOW_SIMILARITY\",\n \"firstDetectionDate\": \"2021-05-01T18:40:35.772Z\",\n \"latestDetectionDate\": \"2021-05-03T18:40:35.772Z\",\n \"ignored\": false,\n \"attributes\": {\n \"displayName\": \"John Smith\",\n \"jobTitle\": \"Software Engineer\",\n \"department\": \"Engineering\"\n },\n \"score\": 0.92,\n \"unignoreType\": \"MANUAL\",\n \"unignoreDate\": \"2021-06-01T18:40:35.772Z\",\n \"ignoreDate\": \"2021-06-01T18:40:35.772Z\"\n },\n {\n \"id\": \"5be33d3e-c54d-4ed7-af73-2380543e8283\",\n \"identityId\": \"5be33d3e-c54d-4ed7-af73-2380543e8283\",\n \"type\": \"LOW_SIMILARITY\",\n \"firstDetectionDate\": \"2021-05-01T18:40:35.772Z\",\n \"latestDetectionDate\": \"2021-05-03T18:40:35.772Z\",\n \"ignored\": false,\n \"attributes\": {\n \"displayName\": \"John Smith\",\n \"jobTitle\": \"Software Engineer\",\n \"department\": \"Engineering\"\n },\n \"score\": 0.92,\n \"unignoreType\": \"MANUAL\",\n \"unignoreDate\": \"2021-06-01T18:40:35.772Z\",\n \"ignoreDate\": \"2021-06-01T18:40:35.772Z\"\n }\n]", @@ -61466,7 +61466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be3b1d47-5bba-429a-8da9-9852ab6dfbe7", + "id": "9f8522b3-2acc-4950-a01e-84b576d841bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61564,7 +61564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fc97b54-9dc5-49a5-9cc1-97bb97acdee6", + "id": "92a65bc5-7548-4943-9327-6e90c92cccda", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61662,7 +61662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3756add9-549c-463d-b192-0e7b10e870f2", + "id": "fbd87f8e-d9fb-43b0-a819-7e3136db7bb9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61760,7 +61760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f48ca13a-6b58-4a99-9df7-2d8f009e766e", + "id": "3c5d991e-2e9f-43b9-b851-bb19583bdd5f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61858,7 +61858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fac308f8-2e0c-4cfc-97a1-c947243f1e8a", + "id": "49efb5e6-2845-4684-a99f-72c5e6e0028b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61962,7 +61962,7 @@ } }, { - "id": "ea45c54f-e0f8-43af-992e-0cc7949b1f01", + "id": "86bf96e0-4173-495d-8094-171ec12a3dcf", "name": "Get identity outlier's contibuting features", "request": { "name": "Get identity outlier's contibuting features", @@ -62050,7 +62050,7 @@ }, "response": [ { - "id": "27b03e3d-3402-471f-a6cd-ba191d24a0ae", + "id": "34fb8c34-6f9c-4beb-8ff4-736abee8c838", "name": "Succeeded. Returns list of objects. Each object contains a feature and metadata about that feature", "originalRequest": { "url": { @@ -62142,7 +62142,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "-75667500" + "value": "73044692" }, { "disabled": true, @@ -62151,15 +62151,15 @@ "type": "text/plain" }, "key": "accept-language", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], - "body": "[\n {\n \"id\": \"66e38828-5017-47af-92ff-9844871352c5\",\n \"name\": \"entitlement_count\",\n \"valueType\": \"INTEGER\",\n \"value\": 0.7414606914916311,\n \"importance\": -0.15,\n \"displayName\": \"Number of entitlements\",\n \"description\": \"The total number of entitlements belonging to an identity\",\n \"translationMessages\": {\n \"displayName\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n },\n \"description\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n }\n },\n {\n \"id\": \"66e38828-5017-47af-92ff-9844871352c5\",\n \"name\": \"entitlement_count\",\n \"valueType\": \"INTEGER\",\n \"value\": 0.1931162104587112,\n \"importance\": -0.15,\n \"displayName\": \"Number of entitlements\",\n \"description\": \"The total number of entitlements belonging to an identity\",\n \"translationMessages\": {\n \"displayName\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n },\n \"description\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"66e38828-5017-47af-92ff-9844871352c5\",\n \"name\": \"entitlement_count\",\n \"valueType\": \"INTEGER\",\n \"value\": 0.14893718964757774,\n \"importance\": -0.15,\n \"displayName\": \"Number of entitlements\",\n \"description\": \"The total number of entitlements belonging to an identity\",\n \"translationMessages\": {\n \"displayName\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n },\n \"description\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n }\n },\n {\n \"id\": \"66e38828-5017-47af-92ff-9844871352c5\",\n \"name\": \"entitlement_count\",\n \"valueType\": \"INTEGER\",\n \"value\": 0.003114993250650011,\n \"importance\": -0.15,\n \"displayName\": \"Number of entitlements\",\n \"description\": \"The total number of entitlements belonging to an identity\",\n \"translationMessages\": {\n \"displayName\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n },\n \"description\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "25d27560-b3b8-4150-8f9e-322715548e76", + "id": "ed8f40b3-9342-48ca-a542-6ec89a53326a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62250,7 +62250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "205d8d7b-8e2f-453f-897a-912fac212dff", + "id": "cec97f26-d06c-4f55-b67c-093d47d0f6c1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62341,7 +62341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15c4fb27-10ac-4dd0-bf62-3828e8f41af1", + "id": "5b115f76-190b-4333-bca5-5b8b94d4abbb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62432,7 +62432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c65f4564-e61e-4b82-87f1-e2dcafeb3125", + "id": "49e47d6b-208b-42b9-816a-0205c555c001", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -62523,7 +62523,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5886d1bc-c72d-4c9a-a22c-b0b1fdcea624", + "id": "91d3bc75-8d9b-497c-8545-5345844c342b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -62614,7 +62614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1262d7dd-3ee0-458d-8f2e-7e1ed16c68ec", + "id": "6753c3ff-2a45-49d2-88c3-cd845656538a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62711,7 +62711,7 @@ } }, { - "id": "6c4ffbbc-0463-49ea-8a7a-fe9cd03cbfb6", + "id": "9d02ff63-38e7-430b-8279-2e28f6b55704", "name": "Gets a list of access items associated with each identity outlier contributing feature", "request": { "name": "Gets a list of access items associated with each identity outlier contributing feature", @@ -62811,7 +62811,7 @@ }, "response": [ { - "id": "0906f4dc-eaa4-4714-8d7c-f1e9be203b9f", + "id": "3a557221-15c6-418f-bfee-dfe81e50d6b9", "name": "The list of access items.", "originalRequest": { "url": { @@ -62904,7 +62904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "971e8c51-0208-4436-9d68-adde8d0aa2e9", + "id": "6127f1c7-2827-4639-b65f-c8cb4a7882e7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62997,7 +62997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "572dd40e-4f0c-484b-88aa-edfbb33c2549", + "id": "d5549012-3b88-47c9-9611-9ebd540197b1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63090,7 +63090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ea62872-f802-4d30-9490-ea0f402c6d63", + "id": "ed6ece49-f355-4fd7-b754-2a0e14e9460f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63183,7 +63183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc55a35c-8abe-4b78-8d73-39c8b7a26633", + "id": "a842e55a-2ab7-4416-8d05-d3246c3b9c1d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -63276,7 +63276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8497b685-183b-4576-bc04-dc8e18d74f5f", + "id": "0e17dfda-cc42-4af5-b967-32dc2e284990", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63369,7 +63369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a168746e-e845-4b5a-b659-fddd9c57dc47", + "id": "a7f0e38d-9994-4152-8d4f-f0eba5abc7ce", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63468,7 +63468,7 @@ } }, { - "id": "fd5b094d-43e0-4b26-9650-1993795a1b54", + "id": "22f8c5a7-214e-4b6b-8f78-71a79541e7e6", "name": "IAI Identity Outliers Ignore", "request": { "name": "IAI Identity Outliers Ignore", @@ -63511,7 +63511,7 @@ }, "response": [ { - "id": "00db0690-6426-421a-85da-2bb81c11f75a", + "id": "92cb7944-a717-45c0-bae6-2297990dc6aa", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -63558,7 +63558,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d06b0777-3601-4433-ae93-c58871f9fe66", + "id": "c6f78741-b607-4a5d-9b2d-84a28f5359e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63615,7 +63615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84f4a2df-157e-410e-ae0b-3ef30c155d24", + "id": "d5e1c139-b078-4f66-b7c6-30a0958b6589", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63672,7 +63672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bed882cb-d2bc-48fb-a191-d2ceee2f5b1f", + "id": "59f9d6ce-afe9-4bce-ab51-1ad0b0ca80c6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63729,7 +63729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73a8902c-bd0f-4e3a-8f21-5468ed7e643e", + "id": "b247628c-a2a4-4eff-813a-3db675803eed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63786,7 +63786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f93a90a-40fa-4a47-b1c1-bf1174f87d55", + "id": "2b3f037e-88c8-4193-bd77-ff9850909d80", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63849,7 +63849,7 @@ } }, { - "id": "1eede33e-fc05-4f27-8829-427aff30a289", + "id": "1c203d1a-756e-40ff-9d1f-f533a83a1896", "name": "IAI Identity Outliers Unignore", "request": { "name": "IAI Identity Outliers Unignore", @@ -63892,7 +63892,7 @@ }, "response": [ { - "id": "227cce4a-0e3b-4fbe-8e49-3ed488365a99", + "id": "4b94b741-f3bd-4dfb-abea-c015fe82b9f9", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -63939,7 +63939,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d995abaf-2cdb-459c-97f7-9f40751ddc48", + "id": "9f9e8dfb-bb1a-4c8a-8523-e2fcf6de0db1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63996,7 +63996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "642ec50f-ad1e-4693-bfb5-b1a78ed4e24b", + "id": "d3b36a17-c9a0-48f3-9902-6f289399fb65", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64053,7 +64053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3c1598f-88d0-4395-92bf-b8936ae8c022", + "id": "9f84a0ee-3ec3-4c97-91e0-00c290b7dd8d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64110,7 +64110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efc12ff9-20e6-42d7-9209-102c8b68542e", + "id": "0f89937a-34e8-45a5-a59b-47ab9a11b29a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64167,7 +64167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c369f53-123a-419d-a9ec-d022b93af65d", + "id": "dcac64be-ff4c-49d2-a463-bf461137d159", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64230,7 +64230,7 @@ } }, { - "id": "3bcaa630-e21f-4852-96ab-e9277d6300ec", + "id": "423274e2-449f-49ee-a47d-3ac37ad1d098", "name": "IAI Identity Outliers Export", "request": { "name": "IAI Identity Outliers Export", @@ -64254,7 +64254,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -64270,7 +64270,7 @@ }, "response": [ { - "id": "ab7036c1-679e-4d24-9a59-f3916aea91df", + "id": "847a4abc-9643-44a9-815b-8631146a98c0", "name": "Succeeded. Returns zip of 2 CSVs to download. 1 CSV for ignored outliers and 1 for non-ignored outliers", "originalRequest": { "url": { @@ -64289,7 +64289,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -64319,12 +64319,12 @@ "value": "application/zip" } ], - "body": "in aute elit ullamco", + "body": "magna dolore deserunt", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "7aa4e1ae-21e8-4987-b94a-738b8dc7e37c", + "id": "51859390-43c6-418f-91b8-16f0e633d3e8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64343,7 +64343,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -64378,7 +64378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "471a7834-7847-432d-941b-35d16cc8dc90", + "id": "3a2409da-4324-4fb2-b614-ee4cea61850b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64397,7 +64397,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -64432,7 +64432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9547328-4b72-4746-976c-196cbc412165", + "id": "69cf11b6-6c54-4635-ad66-e0bed3df0303", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64451,7 +64451,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -64486,7 +64486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3fe6f00-70e7-4104-88e8-17ee562f9d02", + "id": "c3f48019-333b-45c9-a976-d1cfd37ad2fa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64505,7 +64505,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -64540,7 +64540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9261dc51-ce8f-4f67-91aa-37563270b97d", + "id": "9ea88a84-a971-4639-ac73-2b0599eeed45", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64559,7 +64559,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -64600,7 +64600,7 @@ } }, { - "id": "2ac175ee-c4f3-4cdc-ae11-6a8b0146493a", + "id": "b0995f1b-0915-4876-affc-ff9fb0631d27", "name": "Get identity outlier contibuting feature summary", "request": { "name": "Get identity outlier contibuting feature summary", @@ -64641,7 +64641,7 @@ }, "response": [ { - "id": "101d24bb-18a0-49b2-ab1d-604b59b3617e", + "id": "c35c77cb-8a74-4e15-a3f0-b24bf26f21d5", "name": "Succeeded. Returns selected contributing feature summary for an outlier", "originalRequest": { "url": { @@ -64686,15 +64686,15 @@ "type": "text/plain" }, "key": "accept-language", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], - "body": "{\n \"contributingFeatureName\": \"Rare Access\",\n \"identityOutlierDisplayName\": \"John Smith\",\n \"outlierFeatureDisplayValues\": [\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"Excepteur\",\n \"valueType\": \"INTEGER\"\n },\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"proident Excepteur pariatur anim id\",\n \"valueType\": \"INTEGER\"\n }\n ],\n \"featureDefinition\": \"Identity total number of entitlements\",\n \"featureExplanation\": \"An identity that has too much rare access has a higher change of becoming a security threat due to the unique access they possess\",\n \"peerDisplayName\": \"Mary Jane\",\n \"peerIdentityId\": \"9f9d5d53ad0e48fba7352f6da9f1b8gbg\",\n \"accessItemReference\": {\n \"displayName\": \"All Rare Entitlements\",\n \"searchPlaceholder\": \"Search by name or description\"\n }\n}", + "body": "{\n \"contributingFeatureName\": \"Rare Access\",\n \"identityOutlierDisplayName\": \"John Smith\",\n \"outlierFeatureDisplayValues\": [\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"consequat\",\n \"valueType\": \"INTEGER\"\n },\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"consequat Ut veniam in minim\",\n \"valueType\": \"INTEGER\"\n }\n ],\n \"featureDefinition\": \"Identity total number of entitlements\",\n \"featureExplanation\": \"An identity that has too much rare access has a higher change of becoming a security threat due to the unique access they possess\",\n \"peerDisplayName\": \"Mary Jane\",\n \"peerIdentityId\": \"9f9d5d53ad0e48fba7352f6da9f1b8gbg\",\n \"accessItemReference\": {\n \"displayName\": \"All Rare Entitlements\",\n \"searchPlaceholder\": \"Search by name or description\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "97ca93a7-b2f1-454f-9abf-dba948c3fb1b", + "id": "9e4d5e35-e5b4-4ad9-9f9d-8812dff227bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64738,7 +64738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f647308-7f2d-4005-90dc-2f697e512e22", + "id": "00a032cd-c855-4877-a5ac-340603c49446", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64782,7 +64782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f12be90-ca17-4043-ac54-3784b8667d83", + "id": "3ffdcc27-5c5c-422e-b06f-81b8221d7b40", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64826,7 +64826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c75b54f-6fa9-4dbc-8eee-86c2f2c6d1ed", + "id": "5476d29e-46d3-4083-b760-ad91a813248c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -64870,7 +64870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfa2f896-4782-47bc-a82e-3f38912b7a06", + "id": "a31a8dc6-57ac-4ed1-98d8-16f2983188c7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64914,7 +64914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dbeeeb2-31ea-4a3b-b9c1-90ef1ab9ee31", + "id": "8fcb3a3f-b199-4cfb-8afd-23bdbb0d8b4b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64970,7 +64970,7 @@ "description": "", "item": [ { - "id": "5cd398a5-5bcd-4664-b964-5404aa52d7c2", + "id": "dd9010b7-abca-4f3e-9841-7da6884e38df", "name": "Identity Outliers List", "request": { "name": "Identity Outliers List", @@ -65040,7 +65040,7 @@ }, "response": [ { - "id": "00ddfafd-e3a3-4235-b65a-2c321fbd23ee", + "id": "4ecef7a7-a50e-487e-8924-142bd29bf1c4", "name": "List of identities that are not included in peer groups.", "originalRequest": { "url": { @@ -65108,12 +65108,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"ea\",\n \"type\": \"laborum occaecat\",\n \"peer_group_id\": \"do aliquip nulla\",\n \"attributes\": {\n \"commodo5_2\": {},\n \"ametd\": {},\n \"in_7\": {}\n }\n },\n {\n \"id\": \"magna aliqua consequat qui est\",\n \"type\": \"sit ullamco\",\n \"peer_group_id\": \"sunt Lorem Duis dolor\",\n \"attributes\": {\n \"ut_86\": {},\n \"veniam4a\": {},\n \"in_aa\": {}\n }\n }\n]", + "body": "[\n {\n \"id\": \"ullamco consequat Duis\",\n \"type\": \"cupidatat non culpa ea ut\",\n \"peer_group_id\": \"aute irure ad\",\n \"attributes\": {\n \"id__d6\": {},\n \"amet_f_a\": {}\n }\n },\n {\n \"id\": \"do\",\n \"type\": \"nostrud id\",\n \"peer_group_id\": \"culpa id deserunt aliquip proident\",\n \"attributes\": {\n \"qui_c5\": {}\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "206b403a-dc8a-45f8-8cef-4a8bcb5b30bd", + "id": "954e5976-8f10-4cf9-bd2b-bea09db52e66", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65186,7 +65186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c89d90e-6d42-48d7-89ea-0852bc757e13", + "id": "615f273e-cf70-4828-bcde-e3a6f424384d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65259,7 +65259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18122655-0751-47bb-92e2-9a5b6cf691d0", + "id": "ecabe924-fbc5-4b31-bd7f-4f3d8f006fd9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65332,7 +65332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19ccd1c9-111b-427e-a8b3-451c78163a14", + "id": "ccfea4bf-a697-4583-9628-f807c1b53b6a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65405,7 +65405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fa6dd56-4807-4e93-a530-90bb3e4f99fa", + "id": "ca6772c5-4908-422c-92a9-deb78b4cf441", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65490,7 +65490,7 @@ "description": "", "item": [ { - "id": "ff044572-3386-4f5d-ba09-b455e8cebd5f", + "id": "4e6fca0d-8d3a-4c24-9063-da14ea5fa350", "name": "Returns a Recommendation Based on Object", "request": { "name": "Returns a Recommendation Based on Object", @@ -65533,7 +65533,7 @@ }, "response": [ { - "id": "9cead9bc-11cc-4d36-ad08-d57cecfd1f3b", + "id": "8a1ea06a-946c-4120-8769-36a38b98358a", "name": "The recommendations for a customer", "originalRequest": { "url": { @@ -65585,12 +65585,12 @@ "value": "application/json" } ], - "body": "{\n \"response\": [\n {\n \"request\": {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n \"recommendation\": \"YES\",\n \"interpretations\": [\n \"75% of identities with the same department have this access. This information had a high impact on the overall score.\",\n \"67% of identities with the same peer group have this access. This information had a low impact on the overall score.\",\n \"42% of identities with the same location have this access. This information had a low impact on the overall score.\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"2c91808457d8f3ab0157e3e62cb4213c\",\n \"entitlementId\": \"2c91809050db617d0150e0bf3215385e\",\n \"recommendation\": \"YES\",\n \"overallWeightedScore\": 75763806.6301786,\n \"featureWeightedScores\": {\n \"aute_27\": 38347383.12972915\n },\n \"threshold\": 78375162.65347898,\n \"identityAttributes\": {\n \"dolore8\": {\n \"value\": \"adipisicing culpa\"\n },\n \"tempor659\": {\n \"value\": \"voluptate et\"\n },\n \"consectetur4\": {\n \"value\": \"laborum in deserunt velit\"\n },\n \"cupidatat__8d\": {\n \"value\": \"laborum mollit voluptate adipisicin\"\n }\n },\n \"featureValues\": {\n \"feature\": \"department\",\n \"numerator\": 14,\n \"denominator\": 14\n }\n }\n },\n {\n \"request\": {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n \"recommendation\": \"YES\",\n \"interpretations\": [\n \"75% of identities with the same department have this access. This information had a high impact on the overall score.\",\n \"67% of identities with the same peer group have this access. This information had a low impact on the overall score.\",\n \"42% of identities with the same location have this access. This information had a low impact on the overall score.\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"2c91808457d8f3ab0157e3e62cb4213c\",\n \"entitlementId\": \"2c91809050db617d0150e0bf3215385e\",\n \"recommendation\": \"YES\",\n \"overallWeightedScore\": 13768449.109233767,\n \"featureWeightedScores\": {\n \"dolore_6b\": -42187877.34299747,\n \"ad_6\": -21923344.751310125,\n \"mollit8d8\": 77367371.0559344,\n \"fugiat10\": -45625981.28547193\n },\n \"threshold\": 22033083.399127707,\n \"identityAttributes\": {\n \"officia__\": {\n \"value\": \"do cillum in\"\n }\n },\n \"featureValues\": {\n \"feature\": \"department\",\n \"numerator\": 14,\n \"denominator\": 14\n }\n }\n }\n ]\n}", + "body": "{\n \"response\": [\n {\n \"request\": {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n \"recommendation\": \"YES\",\n \"interpretations\": [\n \"75% of identities with the same department have this access. This information had a high impact on the overall score.\",\n \"67% of identities with the same peer group have this access. This information had a low impact on the overall score.\",\n \"42% of identities with the same location have this access. This information had a low impact on the overall score.\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"2c91808457d8f3ab0157e3e62cb4213c\",\n \"entitlementId\": \"2c91809050db617d0150e0bf3215385e\",\n \"recommendation\": \"YES\",\n \"overallWeightedScore\": 74627001.85166052,\n \"featureWeightedScores\": {\n \"tempor_2\": -21047063.76120116,\n \"dolor_d4f\": -89294694.59979518\n },\n \"threshold\": 93641066.06952265,\n \"identityAttributes\": {\n \"est_4\": {\n \"value\": \"quis nulla consequat ut\"\n }\n },\n \"featureValues\": {\n \"feature\": \"department\",\n \"numerator\": 14,\n \"denominator\": 14\n }\n }\n },\n {\n \"request\": {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n \"recommendation\": \"YES\",\n \"interpretations\": [\n \"75% of identities with the same department have this access. This information had a high impact on the overall score.\",\n \"67% of identities with the same peer group have this access. This information had a low impact on the overall score.\",\n \"42% of identities with the same location have this access. This information had a low impact on the overall score.\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"2c91808457d8f3ab0157e3e62cb4213c\",\n \"entitlementId\": \"2c91809050db617d0150e0bf3215385e\",\n \"recommendation\": \"YES\",\n \"overallWeightedScore\": -53526027.04049363,\n \"featureWeightedScores\": {\n \"adipisicing_9\": -82741341.0578992\n },\n \"threshold\": 31608921.753100947,\n \"identityAttributes\": {\n \"in_d03\": {\n \"value\": \"tempor qui in aliqua commodo\"\n }\n },\n \"featureValues\": {\n \"feature\": \"department\",\n \"numerator\": 14,\n \"denominator\": 14\n }\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d600e13b-d1c5-4e45-9474-080e2ef98220", + "id": "d80596b8-6919-40b1-877c-b28fe13ebe64", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65647,7 +65647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95bc98c8-597a-4a2e-9789-fc238b3826b5", + "id": "74287887-b181-412a-b60b-61c18c2dda2d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65704,7 +65704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "930f6dde-20b1-413c-900a-feec80591b70", + "id": "d3903e13-0181-4174-8d92-092bf3fdfe03", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65761,7 +65761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "947c4fe9-f3e9-4c24-9e48-b8b89b59f099", + "id": "ca3829af-2f72-4c16-80a7-84407592f68e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65818,7 +65818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0de8673c-1ac7-4eac-b79a-a52eb03b6955", + "id": "406d0885-ff5f-404d-8a78-26dd8bade2d1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65881,7 +65881,7 @@ } }, { - "id": "4733916b-d910-48ea-8848-8a614f33e939", + "id": "2abc4003-9b92-49c4-bb99-e92286dd2409", "name": "Get certification recommendation config values", "request": { "name": "Get certification recommendation config values", @@ -65911,7 +65911,7 @@ }, "response": [ { - "id": "680b5fc1-9e64-4131-8ed6-eceec9d06bad", + "id": "01201629-611f-44e3-9074-850c8d6b8c6c", "name": "Cert recommendation configuration attributes", "originalRequest": { "url": { @@ -65955,7 +65955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17be2366-efb5-4985-a599-a70167ef74d1", + "id": "e659887a-869b-4691-a2ac-3fafde81c7b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65999,7 +65999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f88c4625-8348-4eb1-a92f-6f041180d737", + "id": "92c7eff9-727b-4777-b36f-d108a499f45c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66043,7 +66043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "384ac6c5-f0d2-4d2a-b75d-133aac2cda15", + "id": "744b450e-093c-49a1-beb0-2f2e61d7570f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66087,7 +66087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b3f69da-cdcf-4cef-8234-92bdf58d18a8", + "id": "faca6c99-3199-431c-a99a-172613e3eedb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66137,7 +66137,7 @@ } }, { - "id": "5ec9420f-8b0b-4b3a-8c3b-61b4c46ba5cf", + "id": "7260fa99-6c48-44ba-b222-89d544066748", "name": "Update certification recommendation config values", "request": { "name": "Update certification recommendation config values", @@ -66180,7 +66180,7 @@ }, "response": [ { - "id": "30e6775f-a4df-4f1e-bcaa-a2bc9a9b1816", + "id": "d9a99a2e-f0ff-4f5b-857e-25b92cfa0fe7", "name": "Cert recommendation configuration attributes after update", "originalRequest": { "url": { @@ -66237,7 +66237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64501f19-c90a-4f1f-bbab-05d11bf60427", + "id": "3d67b9ff-8b05-4a9a-8ee5-e7abeef45eab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66294,7 +66294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bca9d8d5-4d3e-4fb7-b006-cb60cf8267fd", + "id": "655550d1-138f-4f3f-99df-9a10d1da7405", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66351,7 +66351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d807fc98-dcca-496b-b79d-e2136047619b", + "id": "318d125d-7c4a-42da-aa01-d5222c6dea7e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66408,7 +66408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd57bc94-2159-43e4-89a6-321dbabd7c03", + "id": "27d7c04a-529a-4854-a9e9-804cec260f9b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66477,7 +66477,7 @@ "description": "", "item": [ { - "id": "03fa0825-13d8-4def-88c8-335b459a2bed", + "id": "c9e57dd9-b9c1-49d1-b3b5-548d70fc5d13", "name": "Create a role mining session", "request": { "name": "Create a role mining session", @@ -66519,7 +66519,7 @@ }, "response": [ { - "id": "0b688e8a-a461-49d6-b718-84083781c7cb", + "id": "109f0a34-d48d-4785-8cf3-3c01d95c3e7c", "name": "Submitted a role mining session request", "originalRequest": { "url": { @@ -66575,7 +66575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ad35e5d-9208-404d-b963-bb8faa3966ac", + "id": "99178731-b96c-443b-9ea2-56e8a6233a02", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66631,7 +66631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebc1d5c1-515e-4306-ae05-6be2a75867d8", + "id": "148aa9c6-3d4f-4bcf-a202-d219c7d0a630", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66687,7 +66687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5df36432-84c0-4963-8366-33ee7326e249", + "id": "89c3c78b-a127-4a64-be9a-c2ff332d04bd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66743,7 +66743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b47eda3-bbea-4d91-9f61-568f1b785b74", + "id": "dc42e2ba-37c9-4fca-908c-ffb7e10e6a4f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66799,7 +66799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ee2c790-0c72-4a38-a747-e8de1db64d3c", + "id": "22e61fd7-39aa-4f65-b53b-e4acdc020733", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66861,7 +66861,7 @@ } }, { - "id": "9f0f6175-96d5-4739-b814-50e67572cfc6", + "id": "1f94b54a-e761-4c43-b1d5-3cd91569524b", "name": "Retrieves all role mining sessions", "request": { "name": "Retrieves all role mining sessions", @@ -66936,7 +66936,7 @@ }, "response": [ { - "id": "a1436b79-39c7-4a9c-8487-5c5850615d4d", + "id": "d120647b-7800-4c05-bd31-7ec78975074d", "name": "Succeeded. Returns all role mining sessions that match the query parameters.", "originalRequest": { "url": { @@ -67025,7 +67025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f2fceae-669d-466d-87c8-0634ec49639a", + "id": "3cbe81d8-827c-4eb0-96f0-1b65fb846d08", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67114,7 +67114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "183970b3-b0a5-41a2-8f03-7e89180c5c4c", + "id": "fad1853a-626d-4f5b-8029-ee3c048d82a7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67203,7 +67203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40d4a95c-da9f-4eac-868e-01c76cd3778f", + "id": "a8aec04e-a93b-4330-8b83-802664be8063", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67292,7 +67292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2f8070d-2c97-46ec-948f-885dd3aead0d", + "id": "77a3d1fa-c41f-4c14-9abe-01481c940f76", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67381,7 +67381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e241ee51-a6e2-4816-b743-604c1cbbb1ab", + "id": "6dbfa4cf-adf1-4c19-af96-94584a67380c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67476,7 +67476,7 @@ } }, { - "id": "1f27d163-075d-4af4-885e-d74fad3479d7", + "id": "422c8048-efba-47b8-ba34-055868b43bb6", "name": "Patch a role mining session", "request": { "name": "Patch a role mining session", @@ -67530,7 +67530,7 @@ }, "response": [ { - "id": "db9708c5-7710-45cc-b5b1-b6d63b59fb77", + "id": "4c7261e3-b615-4d3d-bed2-c1b6667f436b", "name": "Success", "originalRequest": { "url": { @@ -67587,7 +67587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "938f7ff8-d033-40fb-87dc-1d1e8b3b2c37", + "id": "17d9df78-e3c1-425a-84fc-35b7fdb4905e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67644,7 +67644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aec7c541-a221-4f95-9852-a82706129f1e", + "id": "2907eb35-960f-46fc-847b-af130b1d8db5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67701,7 +67701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca5cf2cd-0cf1-4fec-aa28-03576c9cf121", + "id": "30cd6f3c-07c6-4aeb-aa46-e943c9f97e36", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67758,7 +67758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6970bfc5-9937-4f25-a8a5-3dcf18a3b346", + "id": "6d6d3b1d-c602-440d-b91a-c49e396509bc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -67815,7 +67815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f3de206-d754-476b-853a-c4a381613c6a", + "id": "c5c693ea-3fac-4a89-b442-726e85ddaeef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67872,7 +67872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1a00c16-dcc2-47f8-b5c9-08c18c697195", + "id": "82825108-5ef6-4a1c-bcad-1febefc207f7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67935,7 +67935,7 @@ } }, { - "id": "e0657d23-9e2f-46fb-963b-7a9e7d676745", + "id": "708b6441-bb85-42e9-96f5-88c359761791", "name": "Get a role mining session", "request": { "name": "Get a role mining session", @@ -67976,7 +67976,7 @@ }, "response": [ { - "id": "a2be7b21-e6b1-4f3f-af60-1dcf65cbdcc4", + "id": "e74eb396-5e0c-480a-9546-7d7f37205494", "name": "Returns a role mining session", "originalRequest": { "url": { @@ -68020,7 +68020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "deeec7cf-c1cd-48ab-a30f-8df95014cc8b", + "id": "5ac480c1-416c-42a2-b10f-9d57f09b391e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68064,7 +68064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37e726de-95f7-41d9-86c9-09fb1aed5839", + "id": "3aae91d7-2a27-470a-8344-40617f861c7d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68108,7 +68108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c6f8d1d-dc9a-4cd7-8131-090a39811df9", + "id": "76a05a2c-3a16-4be1-b3e4-bffcc2b3c501", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68152,7 +68152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "025f8fab-2571-4888-9790-78e8fef52e3f", + "id": "b5099221-049e-482e-81a6-cf4e470ffb5f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -68196,7 +68196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f792f506-80bf-45d0-afec-447493d8ae27", + "id": "7a8a2eb6-05bb-4b18-8367-0a572d589e7b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68240,7 +68240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2eb69af5-2d48-415f-ad3d-338d0670824b", + "id": "c4579352-bbe8-49fb-830b-1ef8786757b0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68290,7 +68290,7 @@ } }, { - "id": "17714e54-5941-471a-98d1-2d023aaf497e", + "id": "9b399bd1-ee07-4206-8614-720f2748f902", "name": "Get role mining session status state", "request": { "name": "Get role mining session status state", @@ -68332,7 +68332,7 @@ }, "response": [ { - "id": "3667afc5-88b3-403e-a56b-e0f8b0c77bc8", + "id": "84c1891e-2577-4380-855f-3083cab068dc", "name": "Succeeded. Returns session status", "originalRequest": { "url": { @@ -68377,7 +68377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccd1ff73-394a-494a-b44c-91ea8e99289a", + "id": "ed07adcd-6315-4b3d-bbcd-27bb1b7eb5a8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68422,7 +68422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04413381-d064-495e-a7a7-be3b0a2f4181", + "id": "6e5a8850-5aca-4f29-836f-5a9ebfbecfb2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68467,7 +68467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e55e8ab-3eaf-4ad0-9aba-aa64914bb73e", + "id": "8f2cd56e-c8be-4955-a413-df062baf360e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68512,7 +68512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3373478a-66af-4cb4-97e8-693e2af9a273", + "id": "7ddd6a30-f38b-4c7e-a899-d05a807d4a6e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68563,7 +68563,7 @@ } }, { - "id": "cc6c4556-9de5-4770-8f9e-109c61896720", + "id": "71d873b3-149b-4309-b95b-80b5a24eb89b", "name": "Retrieves all potential role summaries", "request": { "name": "Retrieves all potential role summaries", @@ -68651,7 +68651,7 @@ }, "response": [ { - "id": "4bd5532d-4a93-45be-8774-5225b53a5e3b", + "id": "b5807dac-c440-406a-bc0e-9bc3f4a7d062", "name": "Succeeded. Returns a list of potential role summaries for a role mining session.", "originalRequest": { "url": { @@ -68742,7 +68742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f8e6517-ca99-4499-839b-f1fc02aa2c81", + "id": "228756be-c391-41ae-9465-1cdd2b9f97b3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68833,7 +68833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "709d2503-22e5-4efd-99f2-d15a88621ff9", + "id": "20cbe42a-2844-4aa7-ba7e-b9f08c09d380", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68924,7 +68924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ac0f0e7-4d8f-4043-a86e-91b807dfc1a4", + "id": "0e6d213c-90a5-4648-885f-e4a0244343e6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69015,7 +69015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "397e4ee1-6646-450d-adf8-df7d0260839a", + "id": "3b9af70a-d7bd-407f-81a2-6c1491e0bb36", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69106,7 +69106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2b6b83d-1e6c-449e-813b-5f2439290cbe", + "id": "b4d35529-52cc-4246-ad50-2c10fbdbe054", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69203,7 +69203,7 @@ } }, { - "id": "dba70100-3b60-4224-928b-8e723267cd92", + "id": "58183123-4130-4ae8-a6e3-ffdef832bb66", "name": "Retrieves a specific potential role", "request": { "name": "Retrieves a specific potential role", @@ -69256,7 +69256,7 @@ }, "response": [ { - "id": "f7de4d7d-f8f2-4459-85b8-bcfd2f680e4c", + "id": "e7bfd310-7af9-4afd-b00c-99c01b9e52b2", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -69297,12 +69297,12 @@ "value": "application/json" } ], - "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"nulla64\": \"labore non Excepteur\"\n },\n {\n \"enim_f_e\": \"laborum in fugiat\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"ex_f\": \"veniam ex exercitation\",\n \"sint_63\": \"laborum i\"\n },\n {\n \"dolore71_\": \"amet elit ullamco proident\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"name\": \"Saved Potential Role - 07/10\",\n \"provisionState\": \"POTENTIAL\",\n \"quality\": 100,\n \"roleId\": \"07a0b4e2-7a76-44fa-bd0b-c64654b66519\",\n \"saved\": true,\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n },\n \"type\": \"SPECIALIZED\"\n}", + "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"sint_c8\": \"mollit dolor nisi minim\",\n \"ina2\": \"minim proident qui aliquip\"\n },\n {\n \"ut33\": \"elit dolor qui\",\n \"nostrud48\": \"ipsum nostrud do\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"tempor_a69\": \"velit dolor irure\",\n \"anim706\": \"qui incididunt\",\n \"in3\": \"cillum non\",\n \"incididunt0\": \"mollit aute cupidatat\"\n },\n {\n \"adipisicing_892\": \"Ut culpa Duis\",\n \"elit_d2\": \"minim in\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"name\": \"Saved Potential Role - 07/10\",\n \"provisionState\": \"POTENTIAL\",\n \"quality\": 100,\n \"roleId\": \"07a0b4e2-7a76-44fa-bd0b-c64654b66519\",\n \"saved\": true,\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n },\n \"type\": \"SPECIALIZED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5e379f76-5b4d-47b8-b4fb-759349d51f46", + "id": "67845d6b-44c4-43c2-970b-fcc51e9aa316", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69348,7 +69348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51ed1014-3a79-4723-aa65-54133298cd56", + "id": "38c91820-8835-42eb-aec2-ec169a36e056", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69394,7 +69394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96432ca0-7440-4672-ba25-40bf45c2e104", + "id": "45695f15-0176-4b35-896d-b2636778d80c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69440,7 +69440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85fb73de-e604-41fd-9736-88d031d52e42", + "id": "87365cbb-db42-48c2-bd78-7c45c976ad21", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69486,7 +69486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e855124c-7605-4a1b-af53-514c68c6d496", + "id": "dd881e3a-7f32-4b76-b0ea-ee2c4b6990df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69538,7 +69538,7 @@ } }, { - "id": "9824a076-a8e1-45b4-9cea-76bd298cc042", + "id": "a1f0da44-7793-4f5f-96e4-8053199fe153", "name": "Update a potential role", "request": { "name": "Update a potential role", @@ -69604,7 +69604,7 @@ }, "response": [ { - "id": "fd05d510-afe7-4f2e-a338-6fe9b98c61af", + "id": "4c3b55d0-2aac-4a6a-baf9-06ba8f5791a9", "name": "Succeeded. Returns the potential role summary based on the potentialRoleId provided.", "originalRequest": { "url": { @@ -69663,7 +69663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba9de25f-fbc7-4c7f-afa1-2619a2c60965", + "id": "c0894fa2-338d-473d-91f8-d06d45c394d7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69722,7 +69722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7a61fc4-b023-4581-837f-a8e252b40ca3", + "id": "c53f7f09-44ba-473b-93f5-d1a94dc00cd6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69781,7 +69781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85e47bf8-3478-45be-a343-72c5a36df606", + "id": "4ef5e2c9-d9e4-4386-bfe9-d0e203a1792d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69840,7 +69840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efe46cfc-1cfd-419c-9afd-6cf85bcd4180", + "id": "f818ce29-e952-4cee-9d26-228b9e19cb11", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -69899,7 +69899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e526472-791b-4886-b008-dd703fed233b", + "id": "334a58ac-c4fe-4841-8500-5690c99677e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69958,7 +69958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be7e6db4-58ee-449f-8541-5c664947549d", + "id": "a271cfd3-6162-4a60-80ed-f976e06313f9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70023,7 +70023,7 @@ } }, { - "id": "53cc421e-6ab1-4dd9-b30f-7da59a8a120a", + "id": "6fda7527-74a5-4303-a327-33d11ba891f6", "name": "Retrieves the applications of a potential role for a role mining session", "request": { "name": "Retrieves the applications of a potential role for a role mining session", @@ -70105,7 +70105,7 @@ }, "response": [ { - "id": "4f1c526d-f8f3-454b-864c-2090e327ba57", + "id": "8409a7f9-46f5-4bab-8dd5-97ffb49c686a", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -70180,7 +70180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e45d31a6-e46c-479a-88af-a8d37fba6fe4", + "id": "a3bfd2e1-c071-4ffe-bca3-0ac2c0a17747", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70255,7 +70255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "508bdc29-ea72-47ae-a3e8-b75d8f8b3778", + "id": "27b7a12d-ce2d-47da-929b-3a91aaf29e33", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70330,7 +70330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33cd6aa9-8e60-48b3-94c2-8ed978935b26", + "id": "b714047d-5326-40dc-b65e-a9f736995c3b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70405,7 +70405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00d31769-8368-4178-81e6-d7b912391379", + "id": "6cdc6640-ea73-44c9-ba16-7d2037da0abf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70486,7 +70486,7 @@ } }, { - "id": "30429973-eefc-4605-ba09-4b400cc71d7b", + "id": "8eea07c5-2cb0-44c8-befe-f97878fa402c", "name": "Retrieves entitlements for a potential role in a role mining session", "request": { "name": "Retrieves entitlements for a potential role in a role mining session", @@ -70595,7 +70595,7 @@ }, "response": [ { - "id": "7522ede4-d37e-4f8d-b5ab-4907a12c1dc1", + "id": "dcba4bdf-eddb-44c5-a1d7-57c6971801a8", "name": "Succeeded. Returns a list of entitlements for a potential role.", "originalRequest": { "url": { @@ -70697,7 +70697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4851ac3e-95f0-44c9-aafa-5bb541e5ae4e", + "id": "d47c279c-8a0d-4066-8098-e75d8191d72a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70799,7 +70799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1459844-3fca-46db-af4f-0e365d65a540", + "id": "49080892-ef2e-4c65-a415-fa83a03ee3f4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70901,7 +70901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe5a0a63-c5b4-4f7d-b4f7-18f7e9f1b085", + "id": "a9e91816-4c6a-4c10-a5cd-e570730319d3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71003,7 +71003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f642d9b-1fc2-430b-aecf-e5b96274226c", + "id": "f8676bf7-ba56-4430-ba92-32f95d31465a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71111,7 +71111,7 @@ } }, { - "id": "26d8aa97-1cb7-4fb9-81da-066b04194a6d", + "id": "476845ac-6338-40a3-babd-f7973e775edf", "name": "Retrieves entitlement popularity distribution for a potential role in a role mining session", "request": { "name": "Retrieves entitlement popularity distribution for a potential role in a role mining session", @@ -71175,7 +71175,7 @@ }, "response": [ { - "id": "f426c6c7-f136-4cd9-b996-3c96c6f55130", + "id": "a5f7614b-d9d1-495c-8310-3562c88550ea", "name": "Succeeded. Returns a map containing entitlement popularity distribution for a potential role.", "originalRequest": { "url": { @@ -71227,12 +71227,12 @@ "value": "application/json" } ], - "body": "{\n \"dolore_8\": 78989617,\n \"deserunte96\": 37164038\n}", + "body": "{\n \"enim2a_\": 67236187,\n \"cillum_80\": -30944162,\n \"incididunt_3e\": 63771847,\n \"consequat_ec\": -50996718\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c2f91e25-235c-47e5-b28b-ddb4a546fed8", + "id": "f255785c-4836-4487-88e7-c12e4eb7ddb2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71289,7 +71289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "356be174-bf0d-4afd-8758-a9abfff33ffb", + "id": "7754c85d-0a3b-4287-92e7-8d3909e67035", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71346,7 +71346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cd8389f-47d9-4d3f-ae90-07fed4cecdc8", + "id": "e02a715d-ea44-4b07-929e-75be0914c03a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71403,7 +71403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0e85cfd-8f1e-4e6b-845c-152525fd0b0d", + "id": "b583601b-70bb-487e-83dc-ab5ea35f695c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71466,7 +71466,7 @@ } }, { - "id": "eed56f27-eeb3-4e14-b31c-9dd25683e8e0", + "id": "2e40c518-8711-4b20-a67c-38e3d8618dfc", "name": "Edit entitlements for a potential role to exclude some entitlements", "request": { "name": "Edit entitlements for a potential role to exclude some entitlements", @@ -71533,7 +71533,7 @@ }, "response": [ { - "id": "73541f14-f878-4a6d-be0f-41478fb77b03", + "id": "5cb1ba28-38c7-4c12-a8e5-701417048367", "name": "Adds or removes entitlements from a potential role's entitlement exclusion list.", "originalRequest": { "url": { @@ -71588,12 +71588,12 @@ "value": "application/json" } ], - "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"nulla64\": \"labore non Excepteur\"\n },\n {\n \"enim_f_e\": \"laborum in fugiat\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"ex_f\": \"veniam ex exercitation\",\n \"sint_63\": \"laborum i\"\n },\n {\n \"dolore71_\": \"amet elit ullamco proident\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"name\": \"Saved Potential Role - 07/10\",\n \"provisionState\": \"POTENTIAL\",\n \"quality\": 100,\n \"roleId\": \"07a0b4e2-7a76-44fa-bd0b-c64654b66519\",\n \"saved\": true,\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n },\n \"type\": \"SPECIALIZED\"\n}", + "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"sint_c8\": \"mollit dolor nisi minim\",\n \"ina2\": \"minim proident qui aliquip\"\n },\n {\n \"ut33\": \"elit dolor qui\",\n \"nostrud48\": \"ipsum nostrud do\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"tempor_a69\": \"velit dolor irure\",\n \"anim706\": \"qui incididunt\",\n \"in3\": \"cillum non\",\n \"incididunt0\": \"mollit aute cupidatat\"\n },\n {\n \"adipisicing_892\": \"Ut culpa Duis\",\n \"elit_d2\": \"minim in\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"name\": \"Saved Potential Role - 07/10\",\n \"provisionState\": \"POTENTIAL\",\n \"quality\": 100,\n \"roleId\": \"07a0b4e2-7a76-44fa-bd0b-c64654b66519\",\n \"saved\": true,\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n },\n \"type\": \"SPECIALIZED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e2a7831-ed3b-41b4-9c6f-3fcb00e694a7", + "id": "3143ccf0-443e-4c46-ae48-35b78ea9620d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71653,7 +71653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbd811ad-311c-4011-8461-40dce82a6223", + "id": "574e682d-0be9-428c-86d6-50825c96c6e4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71713,7 +71713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "321eb3fe-5c5b-4d93-bc99-e7b095e1bde6", + "id": "7a761de3-f335-470c-b569-a30293ee4248", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71773,7 +71773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c0cc158-6f3d-4261-bd9a-c4e435fd8861", + "id": "a639c712-1623-449b-a634-eb17c034c861", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71839,7 +71839,7 @@ } }, { - "id": "51c69598-cbc0-4431-87b1-b11902cc2e80", + "id": "fb7459c3-bb2a-49a6-ba9c-c0a08fc8e49b", "name": "Retrieves identities for a potential role in a role mining session", "request": { "name": "Retrieves identities for a potential role in a role mining session", @@ -71875,7 +71875,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -71939,7 +71939,7 @@ }, "response": [ { - "id": "ecc4761b-12b7-4bfa-888a-986ec41acfc6", + "id": "4ef466bf-2955-4b44-8f40-4638a157eff6", "name": "Succeeded. Returns a list of identities for a potential role.", "originalRequest": { "url": { @@ -71970,7 +71970,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -72032,7 +72032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "938fb651-09b6-45eb-89b4-ec5d59cb6d32", + "id": "be6ca772-7e3a-4040-ba61-b5c2ecc6d471", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72063,7 +72063,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -72125,7 +72125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a75bb9cb-90cb-4605-835c-fe53a90ad3e9", + "id": "f185dce3-5746-4eb9-81b5-d9f5b91678f9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72156,7 +72156,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -72218,7 +72218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdf7f92e-62ab-4023-8212-60dcd55885e8", + "id": "9616fa4f-3260-45d1-ba46-184d85247278", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72249,7 +72249,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -72311,7 +72311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34531d5a-6f56-4431-b431-9ba9a7daac78", + "id": "6feced6d-d76f-4201-ab6b-7c84d12c09d3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72342,7 +72342,7 @@ "type": "text/plain" }, "key": "filters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -72410,7 +72410,7 @@ } }, { - "id": "bfe0bd59-485a-4098-9e12-f71ca480fd45", + "id": "9b54a427-a371-4c91-8ae2-1cb4a8e00c9e", "name": "Export (download) details for a potential role in a role mining session", "request": { "name": "Export (download) details for a potential role in a role mining session", @@ -72464,7 +72464,7 @@ }, "response": [ { - "id": "8d9a158e-ec33-4317-a4ce-b2943922c2a4", + "id": "b8174427-6e1c-46ca-8888-10907f466aff", "name": "Succeeded. Returns a zip file containing csv files for identities and entitlements for the potential role.", "originalRequest": { "url": { @@ -72506,12 +72506,12 @@ "value": "application/zip" } ], - "body": "in aute elit ullamco", + "body": "magna dolore deserunt", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "e03b06cd-5ef1-4236-9aa6-457dd7aeea94", + "id": "43de2c2b-e5de-471b-af8f-61b7ddf51e11", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72558,7 +72558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94cb0caf-14ba-471a-b06f-70e2fe7888ef", + "id": "94a804be-b7bd-4ab5-b9e8-ddbf429dca9f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72605,7 +72605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41cec7c4-b76e-4fb8-bf34-b373c50abe7d", + "id": "7b645221-e45e-4892-b3ae-f6f2ef360664", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72652,7 +72652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6868821-8c1c-4e31-84dd-6355efaeca91", + "id": "9623d754-b62c-43fb-acaa-17903174c89d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72705,7 +72705,7 @@ } }, { - "id": "a32bc7d8-b80b-4a7f-b550-8d5350f7accf", + "id": "83fab1c6-3ce0-491b-9c53-598893fb9e90", "name": "Asynchronously export details for a potential role in a role mining session and upload to S3", "request": { "name": "Asynchronously export details for a potential role in a role mining session and upload to S3", @@ -72772,7 +72772,7 @@ }, "response": [ { - "id": "6bc4e747-b525-49ce-8754-233a771392ea", + "id": "28919aa3-255f-4ba2-8e49-a0e7d83407f5", "name": "Job Submitted. Returns a reportId that can be used to download the zip once complete", "originalRequest": { "url": { @@ -72832,7 +72832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d0f7714-e2ca-4899-be9f-a6e168014629", + "id": "ad565543-17d8-4c7e-a18d-29f0b72b78e5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72892,7 +72892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39c42ee6-0b08-4218-9af2-4c2d1f3f9c56", + "id": "98734f90-a75e-4388-b115-9df890cf2a55", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72952,7 +72952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2de69a48-bcca-4be3-968c-eeb6d9fd7fd6", + "id": "05f07d6d-f1bc-4a7d-b242-20198a4f08f6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73012,7 +73012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3514bbcd-13c6-4a6c-b36d-12572d1d95be", + "id": "3dac350c-3112-4d66-b12e-b52cc56d6a6a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73078,7 +73078,7 @@ } }, { - "id": "cff2ae50-0aef-487c-8ecc-a277278a5722", + "id": "8e8e1c97-06cc-4596-a91d-dd94e7aa4674", "name": "Retrieve status of a potential role export job", "request": { "name": "Retrieve status of a potential role export job", @@ -73143,7 +73143,7 @@ }, "response": [ { - "id": "8bb3b690-94d0-4dee-b63b-b572ee1f47d5", + "id": "22b5a2db-5048-427e-be58-58b8ebf72f24", "name": "Success. Returns the current status of this export", "originalRequest": { "url": { @@ -73191,7 +73191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a16d4792-4365-43a6-b0d0-835e70d120d4", + "id": "f3ea4682-a4cc-4e53-8e2a-cc5e3da2d594", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73239,7 +73239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8eae85b2-56aa-4a4a-a060-3ff60e2c743f", + "id": "4b6af1fd-ef50-4d02-813e-a929b4cf4fda", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73287,7 +73287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80125e6e-71bb-405e-a5ca-50890c80e85a", + "id": "8f1a737e-8160-4fb9-8d1b-7cf6e3fcc25a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73335,7 +73335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "600cbc25-8a9b-4c90-92eb-a469507fe57c", + "id": "155aa148-026f-4add-a4f6-214d9319291c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73389,7 +73389,7 @@ } }, { - "id": "200a8fb2-650e-4b8a-9acb-1087a3b1a673", + "id": "87d4cc25-61ae-4d17-8ecf-cd4a9715e212", "name": "Export (download) details for a potential role in a role mining session", "request": { "name": "Export (download) details for a potential role in a role mining session", @@ -73455,7 +73455,7 @@ }, "response": [ { - "id": "ca4f7461-f24f-424e-8241-0d1d4eafa3b8", + "id": "df9e45a5-ae3b-486c-a43c-65acadedf66f", "name": "Succeeded. Returns a zip file containing csv files for identities and entitlements for the potential role.", "originalRequest": { "url": { @@ -73499,12 +73499,12 @@ "value": "application/zip" } ], - "body": "in aute elit ullamco", + "body": "magna dolore deserunt", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "dec5f963-f95d-4577-b880-d04062f4cbf6", + "id": "43b21828-053b-4ad3-8c1d-bd959be285c4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73553,7 +73553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20ef63ac-51f1-4078-8030-f1b6cebc11e0", + "id": "6e365732-db74-48cd-ad7d-508c2d42c82a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73602,7 +73602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58392641-af44-466d-b85e-88abbe6c2580", + "id": "45dd825c-436e-4a9f-be87-82620d1dedda", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73651,7 +73651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9460c8e7-ccfc-4fab-8d6b-438453a0da51", + "id": "e330b37f-0961-4d43-92e6-a1491350d405", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73706,7 +73706,7 @@ } }, { - "id": "adb27a21-ce0a-4557-9ecd-9c633c894305", + "id": "f5a22a88-6fbb-4cd4-9fa7-90323abfcc34", "name": "Create request to provision a potential role into an actual role.", "request": { "name": "Create request to provision a potential role into an actual role.", @@ -73792,7 +73792,7 @@ }, "response": [ { - "id": "2121c63a-20c0-4e4c-b0a1-6ec9e1823440", + "id": "24924e70-4543-44db-8088-68ab804d1a6e", "name": "Accepted. Returns a potential role summary including the status of the provison request", "originalRequest": { "url": { @@ -73871,7 +73871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1911d29-eaaa-4dcc-9849-9a32f3eb4e62", + "id": "624ebf88-397c-4bd5-8dad-f3ced2d2d653", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73950,7 +73950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cca80a77-14ff-4d18-a694-5b0b244bc119", + "id": "a3cb28d8-48c7-4fa4-b857-46ab063ea7be", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74029,7 +74029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c38c39bf-ab25-49ab-b76b-3ff56c214f3c", + "id": "fb8a7b5b-aff2-44b4-ae86-c9ab629e7ab2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74108,7 +74108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f40dfe0b-7dec-43ef-8d7d-5eb6288b2b70", + "id": "215a8255-aaf8-440a-807b-b6857bc059a6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -74187,7 +74187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbf74da4-1027-4072-97ba-a601f87b7241", + "id": "4e866894-9b94-431f-ba46-da967bd31cb2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74272,7 +74272,7 @@ } }, { - "id": "9a4c6d29-5468-4955-bfe8-cfd77ba632aa", + "id": "48b3590b-5566-47e0-9ad8-dfbfcab6a72c", "name": "Retrieves excluded entitlements for a potential role in a role mining session", "request": { "name": "Retrieves excluded entitlements for a potential role in a role mining session", @@ -74372,7 +74372,7 @@ }, "response": [ { - "id": "3e333b89-aed4-40e9-8f77-629ddcd5f86a", + "id": "f5a3d78c-85f7-451c-9eae-2c9d800fd656", "name": "Succeeded. Returns a list of excluded entitlements for a potential roles.", "originalRequest": { "url": { @@ -74465,7 +74465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a95f8af6-fb39-4d77-a363-0044bae0e406", + "id": "dc698cbf-f57a-4bdb-b3b1-ebf04db0017d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74558,7 +74558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a91bf879-32f0-4768-bfa4-888e656c94a7", + "id": "d5a63fd4-907a-4094-801e-4ea96a154afa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74651,7 +74651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6e119cf-bb89-437a-8a2e-cfc0cd9e7acb", + "id": "933f620c-a4e5-4ad5-8083-a5057e1cc51c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74744,7 +74744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58319117-4a1c-4df6-b857-a272dcbda539", + "id": "acbb7172-9c1b-4728-97a5-6b8d1c6c2612", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74843,7 +74843,7 @@ } }, { - "id": "c3db06c2-fa3c-40a9-a1b9-1f994743ba4f", + "id": "07bd0790-c7f7-4a45-9d02-200067a4fb61", "name": "Retrieves all potential role summaries", "request": { "name": "Retrieves all potential role summaries", @@ -74918,7 +74918,7 @@ }, "response": [ { - "id": "f512cda4-a7e0-42ac-aa23-8e978cb4867b", + "id": "434e4f43-b55f-454a-94ec-110e0b5b59ff", "name": "Succeeded. Returns all potential role summaries that match the query parameters.", "originalRequest": { "url": { @@ -75007,7 +75007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "966de7e9-9bf8-4048-8f88-538b82e5822b", + "id": "95a65c55-8d54-4976-91d4-d76018b86786", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75096,7 +75096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53d974da-bc59-4176-b1f4-8a0c291da2fa", + "id": "0384f73e-a33a-4352-99bf-dfdf9f7d2461", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75185,7 +75185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e537106b-62ab-4f63-a699-0d8d98b91076", + "id": "4defa3b6-2c8e-4f75-b87a-999bad774c50", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75274,7 +75274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9affb39-ec1a-4b37-857b-9c9d514705cc", + "id": "388cf47e-d24b-4589-9fa4-5bf0e9f0d694", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75363,7 +75363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22187c4c-7bb2-4235-8a7a-9590bf185c3b", + "id": "92e39e79-f1ce-46ec-80fd-da88f5984425", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75458,7 +75458,7 @@ } }, { - "id": "4b007f2b-35ee-43d2-b44c-a11f5f960856", + "id": "cedfe61c-29a1-48e9-9ae8-75d2bbf70b8a", "name": "Retrieves a specific potential role", "request": { "name": "Retrieves a specific potential role", @@ -75499,7 +75499,7 @@ }, "response": [ { - "id": "190f866e-185a-4e3f-8a6a-0a752e64175b", + "id": "1657a419-747c-41a1-91e2-b301b27ab0c3", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -75538,12 +75538,12 @@ "value": "application/json" } ], - "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"nulla64\": \"labore non Excepteur\"\n },\n {\n \"enim_f_e\": \"laborum in fugiat\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"ex_f\": \"veniam ex exercitation\",\n \"sint_63\": \"laborum i\"\n },\n {\n \"dolore71_\": \"amet elit ullamco proident\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"name\": \"Saved Potential Role - 07/10\",\n \"provisionState\": \"POTENTIAL\",\n \"quality\": 100,\n \"roleId\": \"07a0b4e2-7a76-44fa-bd0b-c64654b66519\",\n \"saved\": true,\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n },\n \"type\": \"SPECIALIZED\"\n}", + "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"sint_c8\": \"mollit dolor nisi minim\",\n \"ina2\": \"minim proident qui aliquip\"\n },\n {\n \"ut33\": \"elit dolor qui\",\n \"nostrud48\": \"ipsum nostrud do\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"tempor_a69\": \"velit dolor irure\",\n \"anim706\": \"qui incididunt\",\n \"in3\": \"cillum non\",\n \"incididunt0\": \"mollit aute cupidatat\"\n },\n {\n \"adipisicing_892\": \"Ut culpa Duis\",\n \"elit_d2\": \"minim in\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"name\": \"Saved Potential Role - 07/10\",\n \"provisionState\": \"POTENTIAL\",\n \"quality\": 100,\n \"roleId\": \"07a0b4e2-7a76-44fa-bd0b-c64654b66519\",\n \"saved\": true,\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n },\n \"type\": \"SPECIALIZED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a18e39f7-a72d-417d-ac70-ca7f855d613d", + "id": "763717d4-419a-4ca5-82c3-01822c501659", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75587,7 +75587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58479250-61da-47d6-b6a4-763f15b7f3b9", + "id": "67860d49-ed70-42ba-8dff-9ec996fd49ec", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75631,7 +75631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb70e729-3147-48f8-a636-99f029a1e2e2", + "id": "bcf9e14f-aac9-46c2-800a-063f388e6437", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75675,7 +75675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "038243d4-e4a0-40c4-99a0-15b84faa6d72", + "id": "7a12411c-f938-4e7a-ae42-965763167fd5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75719,7 +75719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6de160a3-1290-408d-b0cf-094ff61738ff", + "id": "3f186552-b9c1-4403-9405-8d814f64b3bd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75769,7 +75769,7 @@ } }, { - "id": "b818be1d-ea51-411a-94e9-350dfe7ba631", + "id": "f244e7a1-767a-43f0-9f9d-b8148bfbc3ac", "name": "Update a potential role", "request": { "name": "Update a potential role", @@ -75833,7 +75833,7 @@ }, "response": [ { - "id": "cf5896b0-4f38-4e5b-8a6a-784ad82183a8", + "id": "879e882e-228b-46d3-9673-bf084231f67b", "name": "Succeeded. Returns the potential role summary based on the potentialRoleId provided.", "originalRequest": { "url": { @@ -75890,7 +75890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82616211-0caa-4724-bb3e-1eaddb66bf64", + "id": "8dc0d2c3-3f7b-4cc0-907e-fc58e82a3a51", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75947,7 +75947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3defc3bd-d7fe-42e2-adb2-69d445b2dabd", + "id": "2e372b5c-c82b-4935-9696-b3ed9333aa07", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76004,7 +76004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e458822a-b13b-4084-acdf-3599ae506009", + "id": "ec43c5fa-85b8-4577-a087-b692f013f4f7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76061,7 +76061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37b682e0-b6d0-4177-a956-f232ab60ccea", + "id": "6719d7fd-0cd2-43cf-a8b6-1625590c7bf1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -76118,7 +76118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "508934a0-d256-448b-a501-992405a0eb8b", + "id": "a1e45620-23f1-4c64-a178-63eaca75ae07", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76175,7 +76175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bbc4b98-dcef-47c3-a697-3e39aa40a490", + "id": "a5550812-8949-4c0a-9699-15dd003733af", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76238,7 +76238,7 @@ } }, { - "id": "b897d95a-ba63-4847-9428-769eea120eed", + "id": "a38d3e77-aa46-461a-acd5-28b64de1d461", "name": "Retrieves all saved potential roles", "request": { "name": "Retrieves all saved potential roles", @@ -76305,7 +76305,7 @@ }, "response": [ { - "id": "04270d3b-bff4-4583-b6be-2a8a433e6672", + "id": "99a21b96-dd97-4d6c-909b-4013c893aa9d", "name": "Succeeded. Returns a list of draft roles for a role mining session.", "originalRequest": { "url": { @@ -76386,7 +76386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7367697-0095-41fe-989a-9328a0138d93", + "id": "eaeaf141-dded-4b01-9a96-a8563f397e00", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76467,7 +76467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a4a1acf-0520-4233-a197-b42ff7955e2e", + "id": "54672957-0a0e-40d8-afe7-89e30c512380", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76548,7 +76548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ea8b449-433a-4850-b3ca-d740c39d7755", + "id": "3f1a72e1-2185-4206-9544-b402cf8fafa6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76629,7 +76629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc860065-25c6-4beb-8868-02b901682e34", + "id": "791b2ee5-0f02-49d7-948f-dd94d545b04d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76710,7 +76710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a3a3606-e909-43e0-9ecb-f8519aecf663", + "id": "c4291f0b-318d-421f-a5f9-527c847a2f3b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76797,7 +76797,7 @@ } }, { - "id": "b1ac4595-6636-481a-957c-64debfb1d3fd", + "id": "549d0b1b-7a98-4885-97ee-90ef20fc460e", "name": "Retrieves potential role source usage", "request": { "name": "Retrieves potential role source usage", @@ -76888,7 +76888,7 @@ }, "response": [ { - "id": "0c3da013-2de5-4952-bee4-a676bf2029bf", + "id": "e4377537-f4c6-4463-9929-a0d2a6a26712", "name": "Succeeded. Returns a list of source usage for the identities in a potential role.", "originalRequest": { "url": { @@ -76972,7 +76972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f650f0c2-f663-41c6-b7ca-b57a7c8be572", + "id": "8a731385-5edf-46ba-bbb2-0c380acef72a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77056,7 +77056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88caabf2-d15b-4c57-bb50-449113caae82", + "id": "450a8026-f5f2-4ac5-abe6-6c07a80b451a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77140,7 +77140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "236d1512-17a2-4603-8eaa-dd0d53e3d8f8", + "id": "16a6a5c2-0e4b-4767-8a22-03f51b3e722e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77224,7 +77224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "055e8b50-624f-4f96-a046-e029bc3f175a", + "id": "51f6a2b1-163c-4ebf-b20d-49f23404dbe1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77308,7 +77308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38f8c355-e657-4dfd-8c12-95185db1cf90", + "id": "c984eaa4-8204-41c1-9b88-d3b987241d38", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77404,7 +77404,7 @@ "description": "Use this API to implement identity functionality.\nWith this functionality in place, administrators can synchronize an identity's attributes with its various source attributes.\n\nIdentityNow uses identities as users' authoritative accounts. Identities can own other accounts, entitlements, and attributes.\n\nAn identity has a variety of attributes, such as an account name, an email address, a job title, and more.\nThese identity attributes can be correlated with different attributes on different sources.\nFor example, the identity John.Smith can own an account in the GitHub source with the account name John-Smith-Org, and IdentityNow knows they are the same person with the same access and attributes.\n\nIn IdentityNow, administrators often set up these synchronizations to get triggered automatically with a change or to run on a schedule.\nTo manually synchronize attributes for an identity, administrators can use the Identities drop-down menu and select Identity List to view the list of identities.\nThey can then select the identity they want to manually synchronize and use the hamburger menu to select 'Synchronize Attributes.'\nDoing so immediately begins the attribute synchronization and analyzes all accounts for the selected identity.\n\nRefer to [Synchronizing Attributes](https://documentation.sailpoint.com/saas/help/provisioning/attr_sync.html) for more information about synchronizing attributes.\n", "item": [ { - "id": "2a94effd-6a33-4f46-b90b-ab48a1b0ebf8", + "id": "633b19b2-4014-42c4-b893-40d4d315f10a", "name": "Attribute synchronization for single identity.", "request": { "name": "Attribute synchronization for single identity.", @@ -77425,7 +77425,7 @@ "variable": [ { "type": "any", - "value": "in aute elit ullamco", + "value": "magna dolore deserunt", "key": "identityId", "disabled": true, "description": { @@ -77446,7 +77446,7 @@ }, "response": [ { - "id": "c913f91b-a1eb-433c-9bcc-081c67fa73a4", + "id": "afd61120-e2e9-46f1-84ae-9a80c25a0532", "name": "An Identity Sync job", "originalRequest": { "url": { @@ -77491,7 +77491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3697552a-2cae-4d8f-a338-a33d959c8523", + "id": "92f4f203-b776-4bf7-8129-4ec4a59ec207", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77536,7 +77536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bf61961-502b-41e9-aa44-f9c1f299d349", + "id": "7be1ace9-2d74-45eb-beca-e063efc9efd2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77581,7 +77581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e25cc2dc-54d9-43c4-bd8c-f6209d405598", + "id": "97b421ac-9878-4dd1-84de-fd69cd788abf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77626,7 +77626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e96353e8-0607-4371-82f2-e71a7465e676", + "id": "7f6bec46-bbb8-42ac-a369-2b8086e6f622", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -77671,7 +77671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ccfccbf-c5a4-4305-9d0c-60bc43d66906", + "id": "77a620bf-08b0-40a4-8c2c-5b1c923b72e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77716,7 +77716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d2f9da8-1bee-4d6e-9ce5-3505cf7d7abf", + "id": "7effe897-e162-4c79-9091-998d57cd1dbf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77767,7 +77767,7 @@ } }, { - "id": "6875b5d8-ed17-49b7-9395-c56d358e09a5", + "id": "147f3e0f-96a2-4602-9b32-268703873d63", "name": "Get ownership details", "request": { "name": "Get ownership details", @@ -77809,7 +77809,7 @@ }, "response": [ { - "id": "94327efe-4613-4bd2-a9d2-2d18f8e935a1", + "id": "555c785f-81b1-41b8-8efe-5a19a6ac2a81", "name": "Ownership association details of an Identity.", "originalRequest": { "url": { @@ -77854,7 +77854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d221987-0a98-485f-b170-79da46b74fe8", + "id": "934b34b9-f671-4f51-8b38-147268ab2b9c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77899,7 +77899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9c07430-4516-41ac-b9c1-912cc54c90b9", + "id": "1847c16a-e552-4be2-b8a7-c1691a83e2b5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77944,7 +77944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26dc3df0-7eee-4183-80d5-4a980c29760a", + "id": "7a215330-9a8f-4a97-86d9-c60e3127c36f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77989,7 +77989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f11b501a-3d97-4b5e-92e7-5f964c11b2c2", + "id": "bfa7fd63-26b3-4d2c-8328-14d3c680cf17", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -78034,7 +78034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f764f08-b56f-4f29-aa20-f5977d71e74e", + "id": "8576e53d-8485-4ade-acdd-3439989916e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78079,7 +78079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb9c6a0f-e77e-4491-9e72-dd4443fa85d3", + "id": "a382765c-999c-46bc-816b-f60af027c789", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78130,7 +78130,7 @@ } }, { - "id": "6c8c92ba-3e8c-4b29-9c02-653fc18f31b5", + "id": "b87fc106-e051-40da-898f-a8c00ca88ccf", "name": "List Identities", "request": { "name": "List Identities", @@ -78214,7 +78214,7 @@ }, "response": [ { - "id": "6e967736-89b5-469c-8aeb-e2eaece36f3b", + "id": "3070fc58-ea5f-42f7-a8d1-5ca6936dc74e", "name": "List of identities.", "originalRequest": { "url": { @@ -78312,7 +78312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99fcf6ad-acf9-4c23-b31d-0d326c586d75", + "id": "ce422d55-ad4c-4a64-b35d-75d1b4105412", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78410,7 +78410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "893d0d49-5c72-4aa7-8332-98775e58a47e", + "id": "24d08f55-fabc-4fa2-9582-216a23f0c23f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78508,7 +78508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72bb656f-13e4-46dc-930e-aaa1a921b678", + "id": "84e1cffa-7d8f-4f69-abcd-99df5f48c24d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78606,7 +78606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "138093eb-5617-4dfe-bbca-91a0cb703163", + "id": "f1797650-30a7-4296-8915-e2f42e882d55", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78704,7 +78704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4bd9e20-ea12-445d-81e2-4ba0bf7ce2b4", + "id": "2435a39c-67f4-4ba5-8d08-444912fbdbb6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78808,7 +78808,7 @@ } }, { - "id": "bad546c0-2228-4270-8865-15f0d31a2a94", + "id": "b0fd9726-bdce-4306-a772-9de084fdf008", "name": "Identity Details", "request": { "name": "Identity Details", @@ -78849,7 +78849,7 @@ }, "response": [ { - "id": "5bc0a105-d63d-468d-b1eb-c9bc4b0695e0", + "id": "1f1a5c6e-bb1a-42e7-9fec-13d90c42a4be", "name": "An identity object", "originalRequest": { "url": { @@ -78893,7 +78893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f6c85e8-a4c5-4fca-b213-8c47c76df061", + "id": "5093d0eb-29d5-4f96-80c3-cc3fb8af88f6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78937,7 +78937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b079e899-5a17-4967-bbd0-bcbd680846b2", + "id": "73b3578b-d8ea-4422-8ad1-f928f1fa40c5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78981,7 +78981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ef755ef-52d2-4669-9515-7866ab7f516a", + "id": "693e10f5-cdd2-4454-95ad-b959b1fe9a63", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79025,7 +79025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b2c79bc-d47e-4d15-aba8-0bb5133e1dde", + "id": "32bab059-f31f-4081-b0c2-ffd7561e69b9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -79069,7 +79069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c17965f2-6172-4339-93d9-f5bde232f552", + "id": "e4ddb66a-8d38-4e92-8785-31b40e468487", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79113,7 +79113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0aa43702-0b7e-4f4a-a1d8-f58204d9ffa9", + "id": "9e94cb44-42e1-4f9b-98b8-7fcafb54cd38", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79163,7 +79163,7 @@ } }, { - "id": "be3d5d41-6d89-4af5-a0ab-5b22fb4821c5", + "id": "05ac413a-9942-4947-a635-d3550a088347", "name": "Deletes an identity.", "request": { "name": "Deletes an identity.", @@ -79204,7 +79204,7 @@ }, "response": [ { - "id": "af547fd4-2614-4e1f-90fe-6aeb1507979b", + "id": "1a81b4d3-4f62-4386-9db3-abaaeec1c046", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -79238,7 +79238,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0ff5e6fd-b814-4b70-9b91-8d7f4d4d9d73", + "id": "c23c2402-5469-41a8-b40c-2d072c324b10", "name": "Client Error - Returned if the request is invalid. It may indicate that the specified identity is marked as protected and cannot be deleted.", "originalRequest": { "url": { @@ -79282,7 +79282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70f63f0f-ad4f-40bd-bca3-c39976a5be71", + "id": "464cdc7f-2859-403b-9de1-320a736268d9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79326,7 +79326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7099b74-5d0e-4eb7-815d-8ad951b51a08", + "id": "de58f8dd-16f3-431d-b633-25f3785ecd27", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79370,7 +79370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9851f11-dae0-4891-a958-98c71a256aa6", + "id": "07f47590-da02-416c-9dc2-60f0a2d36568", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -79414,7 +79414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0594439d-cca0-4dd4-b8d4-0cc9ad871070", + "id": "87bb4977-aa9b-4552-afd1-c78882f6957b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79458,7 +79458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba75fcd3-a6c9-45cc-b5e5-11bca547a6a6", + "id": "9236e2b9-de45-4687-8760-e9975588ad2c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79508,7 +79508,7 @@ } }, { - "id": "f11496c4-9557-4b59-9806-42c4e9487251", + "id": "647e42e7-207b-4cb9-8964-739bd5556475", "name": "Process a list of identityIds", "request": { "name": "Process a list of identityIds", @@ -79551,7 +79551,7 @@ }, "response": [ { - "id": "244539f9-03ec-4759-aa75-fd252b9fe8ec", + "id": "f4fcdb99-b4b1-4baa-a0f9-468594bede18", "name": "Object containing the DTO type TASK_RESULT and the job id for the task", "originalRequest": { "url": { @@ -79608,7 +79608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "292b7b9e-0ed2-44b3-84cb-026130a7332b", + "id": "7c957994-45c5-4fd1-97e9-a02470e9e659", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79665,7 +79665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "299c4d2e-0e2e-4dfc-8f91-66658da97165", + "id": "3d42b7e6-2a03-4411-8206-2b67f37582a6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79722,7 +79722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0abc9c5d-a7d5-4bec-8274-f5ab5277d72f", + "id": "7e059b48-2ee7-4b0c-9226-0a628369df53", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79779,7 +79779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffc66057-7230-46d9-8fbf-eacc52c63fde", + "id": "82c23f2c-0a3e-4d26-94a2-ccabcf0720ce", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -79836,7 +79836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87af5fa2-4050-4929-9976-9c09ebeb1492", + "id": "db63ed0c-3483-44f9-b809-96e4a6361eeb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79893,7 +79893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b718aa9-78bf-4fda-a787-a97c3b77e2a6", + "id": "9ac4f679-62bf-46fc-9dce-27276ec75167", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79962,7 +79962,7 @@ "description": "", "item": [ { - "id": "fd2d0b4e-3388-4906-acaa-ee22bf711719", + "id": "a1ba01c6-aaef-43da-be80-7e093bbc2bfd", "name": "List Identity Attributes", "request": { "name": "List Identity Attributes", @@ -80028,7 +80028,7 @@ }, "response": [ { - "id": "2cb9d6ac-edee-4e91-ba1b-ededf3371382", + "id": "9fd14bdd-d766-473c-908c-6090f10225d4", "name": "List of identity attributes", "originalRequest": { "url": { @@ -80108,7 +80108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee9ad02b-e220-4831-986c-93e2b0e5466a", + "id": "6194f0a1-4714-4c96-ba83-32e9eec25d3b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80188,7 +80188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd2f9169-738c-4134-9096-6f47d2f5360f", + "id": "6e67df0e-7565-4cd2-8d74-6b73959bdb55", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80268,7 +80268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d57dd5d4-9a0f-4669-ab8e-be58e09e3bc4", + "id": "73d35791-d1e8-4d3f-9be4-7acfb7105e99", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80348,7 +80348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c56cb487-b819-4d69-9e05-181a1a185e22", + "id": "22054303-045f-4de3-986e-c8c3faae1e65", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80428,7 +80428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83adaf5d-5fbd-4862-a2c8-2b81066d7876", + "id": "cd5f9b7f-f1ec-419f-a0d6-24ac167b2af8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80514,7 +80514,7 @@ } }, { - "id": "09c9cce0-9341-46c7-b775-58e6e43f61f3", + "id": "3bd441e9-8c0d-4410-8c39-bbd9414d07da", "name": "Create Identity Attribute", "request": { "name": "Create Identity Attribute", @@ -80556,7 +80556,7 @@ }, "response": [ { - "id": "6c2cd162-d4bd-4ab5-8706-e9702291915f", + "id": "8887f58d-df7c-4735-a675-1c575f7b036d", "name": "The identity attribute was created successfully", "originalRequest": { "url": { @@ -80612,7 +80612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75184f49-9c8a-4b96-a5af-937c50597ea9", + "id": "e0e02aeb-0314-473a-99a2-0f729a657236", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80668,7 +80668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4448f5cb-fb0f-4120-9c51-ae29837f0329", + "id": "492ab6dc-ea83-466c-a371-30fb8276ce14", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80724,7 +80724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "634806b3-76c9-46d7-9c1f-2d5a10aed3ae", + "id": "0ba662e6-0286-4742-a31b-58dc9d1e6674", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80780,7 +80780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e29e1ac-a433-4248-b84b-9fc7d7c12c98", + "id": "a27bd4cf-af21-4341-b1c6-954371466270", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -80836,7 +80836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8876394-0a43-41a4-b06c-8dcd1d6eb860", + "id": "b5b1915e-acd1-4b30-a4cc-13b614f41eb3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80892,7 +80892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f23ccb7-2729-440f-9f71-93629f072bf1", + "id": "f9ae5829-c30d-45c5-a590-047b0582b299", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80954,7 +80954,7 @@ } }, { - "id": "d9c40c35-9d17-4639-9bd5-529bddaa0e8b", + "id": "de04df92-18d3-49e7-99c4-7ad3c5045010", "name": "Get Identity Attribute", "request": { "name": "Get Identity Attribute", @@ -80995,7 +80995,7 @@ }, "response": [ { - "id": "dc790b35-287b-4ca0-82c5-78e837794a46", + "id": "d232b1d7-e583-4707-8966-ae929b74be6f", "name": "The identity attribute with the given name", "originalRequest": { "url": { @@ -81039,7 +81039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1efde516-c0dd-4e0f-baa1-0db04bfb66e4", + "id": "4d09e2ff-d0c0-437a-a79c-34a69041d64f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81083,7 +81083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19f09ca3-0f80-4fb8-9888-19d0237eea27", + "id": "7041abd4-11fb-4708-96e0-1bd2d8d34f74", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81127,7 +81127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eaf35ca9-8451-473a-be12-711f0713f2d5", + "id": "bf02a0f3-ab1a-4f1b-b3d9-c516bcf39ca1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81171,7 +81171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e86adf00-442c-4fa9-a89f-40b51acca6c3", + "id": "ca288a79-056b-42d2-8c66-439dba8855fd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -81215,7 +81215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bd6977f-df5b-4955-9af4-a194fb01d2e0", + "id": "cccbe9fb-ba26-4b90-851b-a24cf8aaf8a2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81259,7 +81259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71bfd827-fe7c-419d-bcdc-aaa9708ad72a", + "id": "0287c2c9-9d3e-46c5-af8f-e781732c2e2b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81309,7 +81309,7 @@ } }, { - "id": "7dc0c9d0-ab07-4fad-a806-e67d5ca3197a", + "id": "b484be1d-5a2f-4f55-a6df-cbf2773db2db", "name": "Update Identity Attribute", "request": { "name": "Update Identity Attribute", @@ -81363,7 +81363,7 @@ }, "response": [ { - "id": "b79081b1-b99b-4856-87a5-f72fa85647aa", + "id": "cafbaa95-dc69-4b20-a4ce-4209d7b95b1e", "name": "The identity attribute was updated successfully", "originalRequest": { "url": { @@ -81420,7 +81420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61c1b259-2835-4653-bb18-219840577922", + "id": "3175a9dd-91c4-4c92-aaaf-2986c7c12f3f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81477,7 +81477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa9ffc8c-a57e-479b-84aa-0cbee4c97675", + "id": "d989e39f-07a9-4394-9a1a-e7e87922a114", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81534,7 +81534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47fae079-f736-4854-8ffb-d809ac2092f9", + "id": "f957da92-1545-4e93-8ce3-901dc6aa2aba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81591,7 +81591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e37f1a97-b89f-4d3b-a7f6-1f22a677a35b", + "id": "f0852804-1584-4334-88d2-2dd0a61aeeae", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -81648,7 +81648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47672281-bfbb-4710-9a65-56b03d055d7f", + "id": "e27d5ae1-c470-4021-9bbf-17f8b7fcb96f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81705,7 +81705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a74928c3-615f-4250-b479-12478ebaefd9", + "id": "779e3a5c-dd7c-46e9-b5a0-098cf0dd56b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81768,7 +81768,7 @@ } }, { - "id": "125aa8ad-3ef0-4bde-a0d7-863489dde0a2", + "id": "c0a01188-b5f0-4e71-97ef-026ee3fada59", "name": "Delete Identity Attribute", "request": { "name": "Delete Identity Attribute", @@ -81809,7 +81809,7 @@ }, "response": [ { - "id": "8d6fd05b-7ddc-4006-bbb7-b07f47f99a2c", + "id": "8017c058-5823-47e7-91ec-df834e091064", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -81843,7 +81843,7 @@ "_postman_previewlanguage": "text" }, { - "id": "fabb87cf-3609-41d7-97b2-20918672c7f2", + "id": "9b241664-70cf-4de8-a491-0947848d0a1c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81887,7 +81887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05516763-0d56-4594-8007-6cff42985564", + "id": "4c5158a7-5bb2-4608-b10e-8bde2950f69d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81931,7 +81931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f87353fc-096c-41e4-bb3f-5c33c8f4b459", + "id": "163ea93a-6409-4737-811e-685bb3b5003d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81975,7 +81975,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd9d8b9d-e5dd-4c76-930a-1c7b2846ada9", + "id": "59e39f98-4119-4667-9c4b-6ad399908869", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -82019,7 +82019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54141b28-f796-43cf-b7f0-6c8587aba2a7", + "id": "c123cd63-4293-4773-8739-7007eed029c3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82063,7 +82063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb889e75-f6e2-48fc-b0f4-4ef496a9468f", + "id": "d4198b00-9f62-4305-9784-c89d0138064b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82113,7 +82113,7 @@ } }, { - "id": "56b427e5-a047-426a-b629-ea84e9073819", + "id": "7fa56cda-b3bd-4723-aedf-79c982df6904", "name": "Bulk delete Identity Attributes", "request": { "name": "Bulk delete Identity Attributes", @@ -82156,7 +82156,7 @@ }, "response": [ { - "id": "d725eb0e-2881-4643-a53c-df397de03492", + "id": "21ca1673-8648-421d-8eb5-39413d0a7cf8", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -82203,7 +82203,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4fdfa777-62a4-4114-9d4f-5f380cc6dd2a", + "id": "741d5b92-c211-41ef-ba50-828369cf445b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82260,7 +82260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7d6066e-2072-45f4-992d-1b515e518511", + "id": "07ecdbeb-0024-4457-a618-55bb46c849f9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82317,7 +82317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07bd1c47-49ee-4aae-82a2-215f766bd33f", + "id": "a7e4e736-e27c-45a3-9f47-7a4ea728a1ae", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82374,7 +82374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7143ee27-4487-45fa-a2f0-5d69d9e4491d", + "id": "60a94147-a915-4b3a-98e5-d641b6e6e6ad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -82431,7 +82431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "541adc54-156b-4ce9-a478-d9aeb2a5b1b8", + "id": "6483d2a5-fb83-40bb-bbf8-5071b17d020f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82488,7 +82488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af5ea0a3-06be-4e31-a495-719f630a6f52", + "id": "946170ac-fc51-4db3-aeca-678c6015bed2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82557,7 +82557,7 @@ "description": "", "item": [ { - "id": "3f5004c3-7a47-450b-9312-580b0a6d4f64", + "id": "933c3186-c9e1-4d49-a1f6-314e6381aa3a", "name": "Lists all the identities", "request": { "name": "Lists all the identities", @@ -82632,7 +82632,7 @@ }, "response": [ { - "id": "527d88cd-55c9-49e6-b9de-9fdd13aa7a28", + "id": "d0970539-02c4-4a73-aeb8-7692f94ac0ee", "name": "List of identities for the customer.", "originalRequest": { "url": { @@ -82721,7 +82721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abaa548b-3b96-4880-9518-eed710471288", + "id": "106fcea9-ab26-47a0-a606-9c2d72c78af3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82810,7 +82810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02299120-71b5-44ad-a514-714395a3194a", + "id": "ae4995fe-0ce1-4f13-8e16-0124a2e86d8f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82899,7 +82899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b88b393-e3e3-4003-8521-8ba87ed28263", + "id": "514c15f0-2259-4af7-99b6-1f322cec528d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82988,7 +82988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f38c23b-298c-4eb7-b644-6cbccf0e4b39", + "id": "51ada252-d229-44ca-a01b-d810e82fcddf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83077,7 +83077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b146e00c-ccc5-42bd-bc8f-4d4d5121d110", + "id": "334172ed-e7d0-4260-a8e1-123b16e98f00", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83172,7 +83172,7 @@ } }, { - "id": "73f6e029-1784-4220-84c6-3f73738fb1c2", + "id": "b737be1c-fe70-4817-9daf-926e0d00bcc6", "name": "Get latest snapshot of identity", "request": { "name": "Get latest snapshot of identity", @@ -83213,7 +83213,7 @@ }, "response": [ { - "id": "0d829f57-725d-4428-b222-4d31d7e69853", + "id": "67e50e14-510b-4a9b-95b0-0e2a5f306acd", "name": "The identity object.", "originalRequest": { "url": { @@ -83257,7 +83257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bafb01e3-9cf5-4115-a39f-30e793d998cb", + "id": "cd6df62f-5520-48e1-9104-28c75655dcf3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83301,7 +83301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a42b0c18-7fac-4665-a058-095c5f48eea5", + "id": "570999fc-f7e6-40ce-bd07-00a791f4168f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83345,7 +83345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ac4dca1-1d9e-4120-8e0a-c4062f137c2a", + "id": "ae126b0b-b3a0-4164-8165-3864088f466c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83389,7 +83389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "805b3fb3-8455-408c-a6c2-0ffa29596853", + "id": "727be304-a109-450c-91e6-af4801829e47", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83433,7 +83433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68ab936a-eba2-47e3-90b5-1a9f0d7a2497", + "id": "b7411f3c-3a4e-4892-97ff-bc368a09a0b7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83483,7 +83483,7 @@ } }, { - "id": "9d312b72-1957-4040-81fc-010a41241c1b", + "id": "1fdd9f46-50ba-4591-8b37-6ccfbf500dcd", "name": "Gets a list of access items for the identity filtered by item type", "request": { "name": "Gets a list of access items for the identity filtered by item type", @@ -83535,7 +83535,7 @@ }, "response": [ { - "id": "02dc530f-d640-4b30-b56c-940653dbe0ff", + "id": "2706f3e9-0a17-4328-855d-0dcaa5ceeb57", "name": "Access Profile", "originalRequest": { "url": { @@ -83590,7 +83590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "118e5ae4-d0e2-453e-874f-f0411924068a", + "id": "e0f329fb-6cef-4973-b849-43899c5ae29e", "name": "Account", "originalRequest": { "url": { @@ -83645,7 +83645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1d7e555-0f43-4176-9736-0f9eae03f151", + "id": "ca0a8669-eca3-4f75-b77b-b9e262c4c7aa", "name": "App", "originalRequest": { "url": { @@ -83700,7 +83700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f4fa236-9002-4efb-adff-67c6a1e97230", + "id": "3149ef13-3ac5-4b84-a27a-b97678557b37", "name": "Entitlement", "originalRequest": { "url": { @@ -83755,7 +83755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a621a3e-db85-4444-827d-c1023f3ca9fe", + "id": "252b230f-0965-4d4d-bb9b-aeedc57b74c0", "name": "Role", "originalRequest": { "url": { @@ -83810,7 +83810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9937336-1562-4a28-8c4b-ff634763aef9", + "id": "815bbb41-4181-4d91-9b7e-b8a329abc282", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83865,7 +83865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cca5c146-61af-4b00-bd92-8df1915b2709", + "id": "3ebcec95-b4ac-41a4-b65a-0811ddbc0348", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83920,7 +83920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11006c6f-5609-4fac-a2f4-d00ca5f2c179", + "id": "77111d79-94c8-44cf-acef-575fbaf6df14", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83975,7 +83975,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e5f433f-980c-4d13-94fc-43d62d39689d", + "id": "c21949cd-e6a6-408d-a312-06526afcbd86", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -84030,7 +84030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae73cc0e-1b68-43db-8daa-a078b44bd1b0", + "id": "80c0d385-4621-49b2-937f-e64530e7bd66", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84091,7 +84091,7 @@ } }, { - "id": "dedf7e88-c73e-4e44-b94e-ebd18c01a8b4", + "id": "d09aa89d-eb5d-4469-bf30-3f2a8c0350b1", "name": "Lists all the snapshots for the identity", "request": { "name": "Lists all the snapshots for the identity", @@ -84125,7 +84125,7 @@ "type": "text/plain" }, "key": "interval", - "value": "day" + "value": "month" }, { "disabled": true, @@ -84179,7 +84179,7 @@ }, "response": [ { - "id": "83610fa6-1ff6-47e2-a743-8fb828b35293", + "id": "4603836c-cb04-45b6-bc6f-a2f6072ca00d", "name": "A list of identity summary for each snapshot.", "originalRequest": { "url": { @@ -84208,7 +84208,7 @@ "type": "text/plain" }, "key": "interval", - "value": "day" + "value": "month" }, { "disabled": true, @@ -84270,7 +84270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3601a3c-8e67-4663-a455-54677164f436", + "id": "8b34f962-ce3c-475a-a04c-d7801ffb3e21", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84299,7 +84299,7 @@ "type": "text/plain" }, "key": "interval", - "value": "day" + "value": "month" }, { "disabled": true, @@ -84361,7 +84361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0955ee7-eb94-4c7e-a052-91182531d529", + "id": "d7b102b0-ad64-49b8-af95-bfcc2e794afc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84390,7 +84390,7 @@ "type": "text/plain" }, "key": "interval", - "value": "day" + "value": "month" }, { "disabled": true, @@ -84452,7 +84452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32defaa9-187f-45cf-b9d9-22e78956889d", + "id": "4c9ed033-b38c-4749-9bce-e084f8a38095", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84481,7 +84481,7 @@ "type": "text/plain" }, "key": "interval", - "value": "day" + "value": "month" }, { "disabled": true, @@ -84543,7 +84543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03657181-5aa5-4229-bd19-eaed967ebcf9", + "id": "4f8be046-215a-455e-8b47-0974e53d89a0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -84572,7 +84572,7 @@ "type": "text/plain" }, "key": "interval", - "value": "day" + "value": "month" }, { "disabled": true, @@ -84634,7 +84634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6049cdc-53f7-45cf-9a01-4e09d03d7125", + "id": "7c1601a8-6662-4ada-a4a2-ada0097a4ea7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84663,7 +84663,7 @@ "type": "text/plain" }, "key": "interval", - "value": "day" + "value": "month" }, { "disabled": true, @@ -84731,7 +84731,7 @@ } }, { - "id": "b7ca2311-aa62-4537-9b1e-238b445b1c1e", + "id": "7f07830b-486e-4d8c-8a90-263601a58758", "name": "Gets the summary for the event count for a specific identity", "request": { "name": "Gets the summary for the event count for a specific identity", @@ -84765,7 +84765,7 @@ "type": "text/plain" }, "key": "interval", - "value": "day" + "value": "month" }, { "disabled": true, @@ -84828,7 +84828,7 @@ }, "response": [ { - "id": "8aec86a7-9b9e-4853-b698-3cd7b7e89388", + "id": "6467e7aa-1aff-4b23-9e2e-619e8ddeccf1", "name": "A summary list of identity changes in date histogram format.", "originalRequest": { "url": { @@ -84857,7 +84857,7 @@ "type": "text/plain" }, "key": "interval", - "value": "day" + "value": "month" }, { "disabled": true, @@ -84928,7 +84928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8537788d-a1bb-4678-896b-4a9e82fa5ccd", + "id": "cd844f1d-9418-447a-adfe-95eea1d32af4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84957,7 +84957,7 @@ "type": "text/plain" }, "key": "interval", - "value": "day" + "value": "month" }, { "disabled": true, @@ -85028,7 +85028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "316b0d88-f4d3-458e-991c-1fe2c54a028c", + "id": "57e50a22-86b1-48db-ab24-d993d6155d72", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85057,7 +85057,7 @@ "type": "text/plain" }, "key": "interval", - "value": "day" + "value": "month" }, { "disabled": true, @@ -85128,7 +85128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1af8e3e-bea5-4fac-976e-61a4bf413d46", + "id": "9a4faf11-c397-42a4-9229-e5e352d883b9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85157,7 +85157,7 @@ "type": "text/plain" }, "key": "interval", - "value": "day" + "value": "month" }, { "disabled": true, @@ -85228,7 +85228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bfbcd31-fb07-4b7e-bc65-10eef41791da", + "id": "db2fc9a5-7851-449e-93cb-61f2db945888", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -85257,7 +85257,7 @@ "type": "text/plain" }, "key": "interval", - "value": "day" + "value": "month" }, { "disabled": true, @@ -85328,7 +85328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49730466-c3ea-49b2-bc29-f911a0a0b445", + "id": "eac98dfa-5520-4d10-9c83-438f5a173572", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85357,7 +85357,7 @@ "type": "text/plain" }, "key": "interval", - "value": "day" + "value": "month" }, { "disabled": true, @@ -85434,7 +85434,7 @@ } }, { - "id": "bce94c9e-00c5-45f4-b964-11eceddaf0b3", + "id": "bee26689-6c0b-43fa-bc45-04f532e72b34", "name": "Gets an identity snapshot at a given date", "request": { "name": "Gets an identity snapshot at a given date", @@ -85487,7 +85487,7 @@ }, "response": [ { - "id": "4607098c-4712-4843-aad9-7a0948845f82", + "id": "a25c4602-8ee2-444c-ad1e-638e9d3ff160", "name": "The identity object.", "originalRequest": { "url": { @@ -85533,7 +85533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce8b93eb-b497-47cf-8377-67dee4193918", + "id": "34d4212a-6419-4e0e-bd3d-75f0d6006be8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85579,7 +85579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e488c96-cd33-4b3c-b780-78411db699cb", + "id": "7870099f-eee8-4537-8d19-6bbc8058c45e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85625,7 +85625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d53fb25-a470-4f9e-98c2-25ce602d4550", + "id": "f5ea22db-cb28-4732-a1bc-008f5a096597", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85671,7 +85671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e05c3ac1-52db-42dc-a581-aee376b84478", + "id": "fdc1d65b-6c1f-47c4-b652-1befd7ad53bd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -85717,7 +85717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae0f2054-a52f-455d-95d1-af0d394e1a59", + "id": "b06bb0b1-f30e-4e8f-83d1-371d1f918d03", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85769,7 +85769,7 @@ } }, { - "id": "b3e1a7c9-33fd-4a31-bfa6-d3402c87d966", + "id": "9d130b0a-5c67-42a0-b8f0-461a2fcdf0ae", "name": "Gets the list of identity access items at a given date filterd by item type", "request": { "name": "Gets the list of identity access items at a given date filterd by item type", @@ -85833,7 +85833,7 @@ }, "response": [ { - "id": "5b7309ac-ebcd-4ad7-9775-219698072f62", + "id": "75382c57-d392-442a-99d2-71c57a3b5769", "name": "Access Item AccessProfile Response", "originalRequest": { "url": { @@ -85890,7 +85890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b913f49-221c-4f33-b341-8befe508aaba", + "id": "992d0c32-b7cc-4abc-aa73-966582acf592", "name": "Access Item Account Response", "originalRequest": { "url": { @@ -85947,7 +85947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15dcad32-ca31-4376-9255-01c4ce1fde8d", + "id": "edd501d1-08ae-4045-8ac5-9fbe229ed4de", "name": "Access Item App Response", "originalRequest": { "url": { @@ -86004,7 +86004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57a6e5cc-8505-4310-84ee-6ff870c6e788", + "id": "d4334ff1-6e69-43c8-a818-e2251cba2c01", "name": "Access Item Entitlement Response", "originalRequest": { "url": { @@ -86061,7 +86061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b0c5645-0ca1-4f72-b69d-7cb07eeec2ca", + "id": "3c760114-9c41-4e99-af7e-4f211c6236ea", "name": "Access Item Role Response", "originalRequest": { "url": { @@ -86118,7 +86118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "203b0d36-14bc-4c9e-bb4f-236582ee3225", + "id": "bb23e0ac-bf55-43a8-a585-a302ee3f317c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86175,7 +86175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e65343e0-9780-45a9-a598-5c7fa9ec9b0e", + "id": "07c41f95-fe9c-400f-a87d-a87c83ece7f3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86232,7 +86232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51369bef-96e2-457a-a9b2-6a6f76a8166c", + "id": "8c61ff76-a3ce-4bc5-b1d9-84b6de3ad7cc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86289,7 +86289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2049d248-59c5-4c5e-82a1-cdbad63a7a43", + "id": "04420ce8-dc2d-4fd4-b5e6-ba8137cae42d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -86346,7 +86346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "accab46b-71f3-4f15-bc6b-fe6939406e9e", + "id": "277d205c-4bb1-4ba5-9aa6-6edeadefc944", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86409,7 +86409,7 @@ } }, { - "id": "ddfc1c59-824c-4442-ad89-2877a12174f2", + "id": "2129017e-4c10-41d5-afe3-935e709b6ef4", "name": "Lists all events for the given identity", "request": { "name": "Lists all events for the given identity", @@ -86524,7 +86524,7 @@ }, "response": [ { - "id": "d219839d-790b-4b0a-ae08-a2d83ddd6a2d", + "id": "d62353c9-5fd3-45dd-9e75-2ad6519ee55f", "name": "AccessItemAssociated", "originalRequest": { "url": { @@ -86624,7 +86624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d5ee428-dbd9-4c2e-8fd8-36c8e8ce7160", + "id": "fbe69fe1-b657-4eaf-8487-4aa644643306", "name": "AccessItemRemoved", "originalRequest": { "url": { @@ -86724,7 +86724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "076ea2ad-a934-4e69-90ab-000fe5e467a7", + "id": "df6c00c9-50f1-4102-843d-f923a7de3336", "name": "AttributesChanged", "originalRequest": { "url": { @@ -86824,7 +86824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6085297c-ed4c-4e30-b02f-05df061797f1", + "id": "3a23b09d-080f-4036-b433-0bc8fb466a76", "name": "AccessRequested", "originalRequest": { "url": { @@ -86924,7 +86924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64152d50-f2a9-451b-aee6-ab1ba0e8cade", + "id": "eb24815a-7815-45d9-bd3f-3e963dd066e7", "name": "IdentityCertified", "originalRequest": { "url": { @@ -87024,7 +87024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3a3c5b5-7bda-4046-84a6-ac9cd023e453", + "id": "961d885b-f4aa-4e60-a3dc-89dc55db773b", "name": "AccountStatusChanged", "originalRequest": { "url": { @@ -87124,7 +87124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e969ff1-7bfe-4d71-b64f-869745ef85a0", + "id": "19695500-5478-4588-8381-d504a3ff78d5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87224,7 +87224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "421989ab-d225-46ec-80ca-57590c8afcb1", + "id": "5d22784b-1300-41ae-8118-ed5bcb8122f9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87324,7 +87324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce77c631-b6c5-4c3a-9a8d-6cc9c2d1a365", + "id": "d0c06f0b-1671-498c-b7ec-f651269f7aaf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87424,7 +87424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69fa4bea-2576-419e-aa10-4ec9d80c0a42", + "id": "20a12578-ca93-4e3a-b960-76f5cdb36c3f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -87524,7 +87524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c8fc6ee-ba2d-4ade-b78d-0ea5f8972ce8", + "id": "71d48ed0-a877-4e53-a036-de7b9997945c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87624,7 +87624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "262d09ad-cb90-4a0e-9841-3592b2efc0e4", + "id": "3071307a-0190-4c62-9338-a5965d66a604", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87730,7 +87730,7 @@ } }, { - "id": "5060aae3-8097-4c77-a115-7d54366f201a", + "id": "f88c9861-b573-4532-80e3-355234eb8190", "name": "Gets the start date of the identity", "request": { "name": "Gets the start date of the identity", @@ -87772,7 +87772,7 @@ }, "response": [ { - "id": "0ea93bcb-f3d5-4ae2-874e-2ccfa850b3d2", + "id": "b5e693d6-eb6d-462f-98ed-f7179c0a0501", "name": "The start date of the identity", "originalRequest": { "url": { @@ -87817,7 +87817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d854eed3-1431-4aa4-bece-4a22156a0c77", + "id": "1242b006-ea29-463a-807b-5cdce703d1e6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87862,7 +87862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c242d907-ff4f-441e-ba99-81fba9ba1e15", + "id": "74b1b84b-ee03-401f-bca4-344b2f5e1262", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87907,7 +87907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25149585-2844-4cba-a584-6601e4fb435d", + "id": "dacefca8-7098-47ec-8607-966f65321e96", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87952,7 +87952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c34b784-b328-4f68-b1ab-b30943cfb68c", + "id": "d6181b2a-19e3-473b-8459-c16d4b76b27f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -87997,7 +87997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0f1624e-532c-444d-b4c8-a4786fa81ae6", + "id": "3fd854e9-b69c-4065-9910-62087e251038", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88048,7 +88048,7 @@ } }, { - "id": "e4abf354-9122-4b1f-abb7-72bffed9f2db", + "id": "9fb86f4e-568f-469c-a2a6-51d87bc3a62f", "name": "Gets a difference of count for each access item types for the given identity between 2 snapshots", "request": { "name": "Gets a difference of count for each access item types for the given identity between 2 snapshots", @@ -88091,7 +88091,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "elit eiusmod Ut" + "value": "minim u" }, { "disabled": true, @@ -88100,7 +88100,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "magna" + "value": "enim incididunt" }, { "disabled": true, @@ -88154,7 +88154,7 @@ }, "response": [ { - "id": "9b6c0d66-fee5-445e-be0e-a2aca8631fc6", + "id": "c057f4b2-244e-48e1-a432-863e1d670723", "name": "A IdentityCompare object with difference details for each access item type", "originalRequest": { "url": { @@ -88192,7 +88192,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "magna" + "value": "enim incididunt" }, { "disabled": true, @@ -88254,7 +88254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a467625-f7bc-4dad-acf7-a78fdedefc44", + "id": "a28e2c48-0c20-4c4e-ab24-1bc4e160acf7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88292,7 +88292,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "magna" + "value": "enim incididunt" }, { "disabled": true, @@ -88354,7 +88354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6fdf08c-4bc4-496d-b9cb-66e001b7e6fb", + "id": "0aef9914-f9e8-4a0e-ade8-042f656a98d6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88392,7 +88392,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "magna" + "value": "enim incididunt" }, { "disabled": true, @@ -88454,7 +88454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95714e68-c97b-4670-b410-c5bdb2d13f87", + "id": "5e87f8e9-4ecb-4a96-bc03-75e7d2a0b4dc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88492,7 +88492,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "magna" + "value": "enim incididunt" }, { "disabled": true, @@ -88554,7 +88554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6f9e645-bef6-4916-b0e5-ac3382a53056", + "id": "9d04d072-e96a-43b5-b48c-9a3afbe22439", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -88592,7 +88592,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "magna" + "value": "enim incididunt" }, { "disabled": true, @@ -88654,7 +88654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64df1682-f8f1-4812-9599-49801e3fec90", + "id": "ef994a6b-858f-4ff9-bed7-d78fdd1d7cb2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88692,7 +88692,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "magna" + "value": "enim incididunt" }, { "disabled": true, @@ -88760,7 +88760,7 @@ } }, { - "id": "804aaffa-e1f8-453c-86b1-4c7b45fa9fd8", + "id": "97874ed6-c8f6-4dc8-8bf3-74a214d995fe", "name": "Gets a list of differences of specific accessType for the given identity between 2 snapshots", "request": { "name": "Gets a list of differences of specific accessType for the given identity between 2 snapshots", @@ -88872,7 +88872,7 @@ }, "response": [ { - "id": "893264d1-d10e-4bd2-ab7e-48e2a338f179", + "id": "8c2c8ddd-fd64-46f3-baef-0aa1f15754e0", "name": "A list of events for the identity", "originalRequest": { "url": { @@ -88973,7 +88973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54f2e08e-d441-41f9-811b-253991dac65a", + "id": "b1eccdc3-6ecb-410a-9b98-3ac547b7fc56", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89074,7 +89074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "165cc692-d2ee-4c2f-8472-7c5f1b306712", + "id": "d9f712cb-c545-43cb-b061-257bbb7e785a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89175,7 +89175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09e35ac7-053b-4dfa-a9b5-732e69dc3dbb", + "id": "39b2c1b8-a035-450f-a017-bea9808aaafd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89276,7 +89276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d926971b-4e71-4580-afbf-5cc49de0dd9f", + "id": "4ba2972a-5c0f-4f85-8012-9519b205d05f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -89377,7 +89377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f64ca31-167a-41ff-8411-cdfcc02141f9", + "id": "0c4e24c7-0d3d-4299-a825-1234cf7401a8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89490,7 +89490,7 @@ "description": "Use this API to implement and customize identity profile functionality.\nWith this functionality in place, administrators can manage identity profiles and configure them for use by identities throughout IdentityNow.\n\nIdentity profiles represent the configurations that can be applied to identities as a way of granting them a set of security and access, as well as defining the mappings between their identity attributes and their source attributes.\nThis allows administrators to save time by applying identity profiles to any number of similar identities rather than configuring each one individually.\n\nIn IdentityNow, administrators can use the Identities drop-down menu and select Identity Profiles to view the list of identity profiles.\nThis list shows some details about each identity profile, along with its status. They can select an identity profile to view and modify its settings, its mappings between identity attributes and correlating source account attributes, and its provisioning settings.\nAdministrators can also use this page to create new identity profiles or delete existing ones.\n\nRefer to [Creating Identity Profiles](https://documentation.sailpoint.com/saas/help/setup/identity_profiles.html) for more information about identity profiles.\n", "item": [ { - "id": "a639f88a-9b2e-456b-a71a-9cc9c38d8774", + "id": "43ea0671-4ef8-44d5-af66-c8c8f71094be", "name": "Identity Profiles list", "request": { "name": "Identity Profiles list", @@ -89565,7 +89565,7 @@ }, "response": [ { - "id": "528dd0f3-9761-4d8f-9edc-280c9990add0", + "id": "b8a82342-6d11-4584-9e05-6be07f7e4c73", "name": "List of identityProfiles.", "originalRequest": { "url": { @@ -89649,12 +89649,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"1a6dde03-eafc-0d2b-5e71-69b5010ba4e3\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n },\n {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"d75256ae-4726-943f-659b-3c632a2e1f1b\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n]", + "body": "[\n {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:1f7b5643-7f75-b1fa-a8d8-2c2a4c803832\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n },\n {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"adf0416d-6108-6f26-622b-6a22db0dd3d3\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "daf5e05b-6dc7-4bef-9037-d82c6d3dc52d", + "id": "ff81c2ec-861c-4ec1-a78d-a58b2a91b4b6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89743,7 +89743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35fd69b2-e212-48b8-a6f0-d1d5c84ff3cf", + "id": "3f47d32f-4bc4-42bf-bd2b-68c7dbf1682c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89832,7 +89832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dfce366-68fa-4345-a08c-718bcaa2e039", + "id": "bade5d1d-36ab-4471-8b3c-3ab5c270ab84", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89921,7 +89921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "feb8454f-429a-4818-954a-c7cd2cc9fbf1", + "id": "e08059ee-3dba-47f1-9ca3-847ed897fd33", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90010,7 +90010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e027890-3ba2-465e-8ec2-43323ef29132", + "id": "d9e610f0-3537-46c4-9f93-ffe56ffd923e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90105,7 +90105,7 @@ } }, { - "id": "b516ffb5-089e-407c-8be2-e2ef77584d08", + "id": "74bbcbaa-85d5-410a-a1b7-42b6f5c0075c", "name": "Create an Identity Profile", "request": { "name": "Create an Identity Profile", @@ -90136,7 +90136,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"4fcb22c3-08e5-dae2-d58c-784cd8c28720\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"af3296a0-6c7e-3da4-5de7-1792daf66afa\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -90147,7 +90147,7 @@ }, "response": [ { - "id": "a1d3dba2-df81-4a9e-8c1c-fcf9bb0773a5", + "id": "e71b5f90-3127-4e8d-b583-994014a89be0", "name": "The created Identity Profile", "originalRequest": { "url": { @@ -90181,7 +90181,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"4fcb22c3-08e5-dae2-d58c-784cd8c28720\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"af3296a0-6c7e-3da4-5de7-1792daf66afa\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -90198,12 +90198,12 @@ "value": "application/json" } ], - "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"4fcb22c3-08e5-dae2-d58c-784cd8c28720\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"af3296a0-6c7e-3da4-5de7-1792daf66afa\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "91de8801-17bb-424b-92b0-ef760a9ebef7", + "id": "4929aaa0-04d9-494d-bc6b-d0a0a21cf753", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90237,7 +90237,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"4fcb22c3-08e5-dae2-d58c-784cd8c28720\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"af3296a0-6c7e-3da4-5de7-1792daf66afa\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -90259,7 +90259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a95f738e-746c-4202-b11d-e5f2a9970ac2", + "id": "476630c5-8518-4094-a73a-b36f301039ef", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90293,7 +90293,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"4fcb22c3-08e5-dae2-d58c-784cd8c28720\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"af3296a0-6c7e-3da4-5de7-1792daf66afa\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -90315,7 +90315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "183dba1c-d408-4de0-b1db-275ef40577f3", + "id": "3ae7599d-a563-41fe-9b96-cef85fbc4086", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90349,7 +90349,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"4fcb22c3-08e5-dae2-d58c-784cd8c28720\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"af3296a0-6c7e-3da4-5de7-1792daf66afa\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -90371,7 +90371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4571f06c-4a38-44db-990b-16ac952b9afb", + "id": "255133eb-01df-4ef9-8b5f-193081be9232", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90405,7 +90405,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"4fcb22c3-08e5-dae2-d58c-784cd8c28720\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"af3296a0-6c7e-3da4-5de7-1792daf66afa\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -90427,7 +90427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27e4e668-b88b-44b8-bc69-15b3e908fa91", + "id": "a11fc623-88e9-48ec-88a1-a7766a1af5b3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90461,7 +90461,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"4fcb22c3-08e5-dae2-d58c-784cd8c28720\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"af3296a0-6c7e-3da4-5de7-1792daf66afa\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -90489,7 +90489,7 @@ } }, { - "id": "f39dbc1d-0f3b-492e-b7be-422c81c62dbe", + "id": "06d0a8d6-75c1-476c-afc0-276bd528663d", "name": "Delete Identity Profiles", "request": { "name": "Delete Identity Profiles", @@ -90532,7 +90532,7 @@ }, "response": [ { - "id": "e49d3b90-42df-4401-86b2-3d52a49dd2e4", + "id": "eb485f8e-569f-435a-9931-cfacf81fec45", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -90584,12 +90584,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"1946-02-05T02:41:20.499Z\",\n \"launched\": \"1972-03-02T18:48:05.943Z\",\n \"completionStatus\": \"Success\"\n}", + "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"1980-04-18T17:01:54.953Z\",\n \"launched\": \"1972-01-08T18:38:08.493Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "16cc57df-bbda-4636-8126-6b1bb87803c4", + "id": "0c1d68ae-dac1-4fe7-8e4c-7d76837b5f38", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90646,7 +90646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8181f512-aff7-4265-ac2e-98d33862f10f", + "id": "fec2592a-0f06-44f0-a5ad-1a3fda494ac8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90703,7 +90703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92a6b0de-739b-409e-9c9b-06d6db0e9831", + "id": "fe8b1297-1a22-4172-b2b6-d03b51f14233", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90760,7 +90760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40128db7-30c3-4459-a1b9-50eff1342a79", + "id": "4f8d2f64-85b1-41e4-b77e-0f445eacfc14", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90817,7 +90817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74141337-73fd-498b-a492-d3a3880c4cc9", + "id": "1fa7e529-8a12-4c59-ac19-15c8863f746a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90880,7 +90880,7 @@ } }, { - "id": "0378e23b-be73-4ed0-b876-1943e49e4457", + "id": "d7634100-3ed2-44c4-b5a2-a6bc6a94c7ee", "name": "Export Identity Profiles", "request": { "name": "Export Identity Profiles", @@ -90956,7 +90956,7 @@ }, "response": [ { - "id": "81bd515c-d861-4995-96c8-d21fd38339a1", + "id": "ce90ede9-8052-4992-9446-a97243a33d86", "name": "List of export objects with identity profiles.", "originalRequest": { "url": { @@ -91046,7 +91046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d29cb3f-8e65-471b-bfc3-ac48b45f6b2b", + "id": "0279e8d7-60ef-48ba-ad37-9fa0a1c53cd5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91136,7 +91136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "569e0ade-c360-4fc6-b5c6-bb50fca054ea", + "id": "02304900-afb8-4c6e-9f33-c50e3bcec839", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91226,7 +91226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0a6f998-ad82-462d-8544-0dead6c698ca", + "id": "a596be16-4c34-43a4-b0e9-e74a0ebaebf6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91316,7 +91316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ff24d3b-ac5e-46c4-b527-505001bf3b04", + "id": "2406345f-e8e9-4888-bfdb-49b8226b2c9e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -91406,7 +91406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93f1818b-501b-484d-aaff-adc9af46d613", + "id": "0918a570-6a72-4a9f-8cc1-21f5b2697070", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91496,7 +91496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "447c03f9-7cb2-48c1-a474-045c95baafe1", + "id": "09276cdd-2aa1-46a9-85bd-2bd2c38bc055", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91592,7 +91592,7 @@ } }, { - "id": "e91a9545-f042-4505-aff1-018e86c79e1a", + "id": "74d040ff-184c-481e-add6-5cbc4551f1f7", "name": "Import Identity Profiles", "request": { "name": "Import Identity Profiles", @@ -91635,7 +91635,7 @@ }, "response": [ { - "id": "5ba47e3b-b350-4333-90b9-36bf0dcb1e39", + "id": "6b495ff1-282f-4665-b124-92ccfbd1d991", "name": "The result of importing Identity Profiles.", "originalRequest": { "url": { @@ -91687,12 +91687,12 @@ "value": "application/json" } ], - "body": "{\n \"infos\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"eiusmod_50\": {},\n \"mollit_fd5\": {},\n \"quis_8\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"exercitation_77d\": {},\n \"sinta\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"dolorce6\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"aliquip_66\": {},\n \"in_0\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"ea5\": {},\n \"veniam_3\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"Duis_7d\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n }\n ]\n}", + "body": "{\n \"infos\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"consectetur_2\": {},\n \"labore__\": {},\n \"enim_6\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"Duis_4e\": {},\n \"laboris7\": {},\n \"velit_7\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"eu_8b\": {},\n \"adipisicing338\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"exercitationb96\": {},\n \"irure_38\": {},\n \"ut0_\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"veniamf2\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"officia_1d\": {},\n \"eu_bad\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c69c492c-aef8-4a91-8d7d-d4672224176c", + "id": "2d940d63-bcc8-41e1-9d68-06f922bd7143", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91749,7 +91749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f544a149-6034-4a32-adc4-de25c1cc53cd", + "id": "f164f0f4-2454-4725-85fb-973ec750ac55", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91806,7 +91806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78f54bc5-a237-41cb-b976-2fecb9855255", + "id": "d54586cb-c7dc-4e2a-90ae-05cec93cadf5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91863,7 +91863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20d4dba2-a5db-40d0-9b26-9f39ef3d3272", + "id": "d8fd1710-9cb9-4a63-a3fa-5cb1f6fa4477", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91920,7 +91920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16400149-254e-45c3-86b1-b94e218f0752", + "id": "1f3311c4-0247-42e9-8149-917c3039d76a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91983,7 +91983,7 @@ } }, { - "id": "ee431469-896b-4fea-934a-04829ecd38ce", + "id": "c38fe429-6629-4086-ab05-849553cf8d0c", "name": "Generate Identity Profile Preview", "request": { "name": "Generate Identity Profile Preview", @@ -92015,7 +92015,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:9eeb715e-6d3b-ff11-c6de-d7f7ab5b3056\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:ae6490b5-15a6-5206-4bda-6dae6f5741e3\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -92026,7 +92026,7 @@ }, "response": [ { - "id": "dd6ece49-2466-476b-9835-c7d5f930944c", + "id": "0b530e90-1903-43fb-a49c-a2d565c11bbb", "name": "Object representing the preview object with all of the identity attributes using the current mappings.", "originalRequest": { "url": { @@ -92061,7 +92061,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:9eeb715e-6d3b-ff11-c6de-d7f7ab5b3056\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:ae6490b5-15a6-5206-4bda-6dae6f5741e3\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -92083,7 +92083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e346713a-0fb2-4c41-85b8-02b3e81d707c", + "id": "110e0be8-62e3-43ec-8918-7b6ec69ae876", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92118,7 +92118,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:9eeb715e-6d3b-ff11-c6de-d7f7ab5b3056\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:ae6490b5-15a6-5206-4bda-6dae6f5741e3\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -92140,7 +92140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36dab777-7e92-40bb-b077-50e73720182a", + "id": "3c78c00a-cded-49d5-9828-b064cc35a068", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92175,7 +92175,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:9eeb715e-6d3b-ff11-c6de-d7f7ab5b3056\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:ae6490b5-15a6-5206-4bda-6dae6f5741e3\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -92197,7 +92197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e5a893c-288b-435b-bcf5-1ea27e8aa467", + "id": "31cb11bc-f7fd-4cd4-9a98-f89e9d67f8a2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92232,7 +92232,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:9eeb715e-6d3b-ff11-c6de-d7f7ab5b3056\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:ae6490b5-15a6-5206-4bda-6dae6f5741e3\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -92254,7 +92254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ca5f30f-e6f5-45b9-b849-71d341ab4dff", + "id": "ccccc23d-b402-4623-bcb1-379ccdd58774", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92289,7 +92289,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:9eeb715e-6d3b-ff11-c6de-d7f7ab5b3056\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:ae6490b5-15a6-5206-4bda-6dae6f5741e3\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -92311,7 +92311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "952152f1-33c6-4472-94c3-72884d490336", + "id": "da597a5c-5228-445e-8edd-a4760a915e51", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92346,7 +92346,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:9eeb715e-6d3b-ff11-c6de-d7f7ab5b3056\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:ae6490b5-15a6-5206-4bda-6dae6f5741e3\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -92374,7 +92374,7 @@ } }, { - "id": "3d316220-b679-4b50-b9b0-e7e237ca28a4", + "id": "016ffa61-f22b-4906-995f-facfa6209037", "name": "Gets a single Identity Profile", "request": { "name": "Gets a single Identity Profile", @@ -92415,7 +92415,7 @@ }, "response": [ { - "id": "f5376ad3-45dc-4e5c-aaf7-39ff09dbd33f", + "id": "58039c9d-81a3-44b5-ad6b-5c71b8004c1d", "name": "An Identity Profile object", "originalRequest": { "url": { @@ -92454,12 +92454,12 @@ "value": "application/json" } ], - "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"4fcb22c3-08e5-dae2-d58c-784cd8c28720\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"af3296a0-6c7e-3da4-5de7-1792daf66afa\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "80608569-d5d8-4264-9088-b50fc906db9c", + "id": "1aecb510-01b7-4adc-8a22-e6b5271e92e3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92503,7 +92503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "165f7658-d7dc-4ddf-b525-6797655e0bff", + "id": "5f5b3858-b45d-487d-9539-7682ad166622", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92547,7 +92547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e748aab5-309f-47bd-a01b-d1320527cd17", + "id": "66e16bc1-8b15-457e-883f-c615787bc8d7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92591,7 +92591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d5a086d-0211-424e-8b91-e85f88673d80", + "id": "59628c5f-7705-41dd-bcd1-5d9d0af8b8e1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -92635,7 +92635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f9f2fd5-26ee-41a6-aeba-583b7dc6dfc0", + "id": "4cb2fe7a-c25b-4531-a864-0bcfd17af11d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92679,7 +92679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2e2fb08-227d-4b9c-871a-549a7b5f0233", + "id": "4c6584fd-1b55-4184-a69b-1127b4a01073", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92729,7 +92729,7 @@ } }, { - "id": "7a1d159f-e856-4c66-88b9-fd14d7f83220", + "id": "4ce7b5e8-231d-470b-8eee-4163e2835bf6", "name": "Delete an Identity Profile", "request": { "name": "Delete an Identity Profile", @@ -92770,7 +92770,7 @@ }, "response": [ { - "id": "ba0eebfd-6bfd-4b9b-86a3-ba210195e2bd", + "id": "96ad151d-4bcf-4dab-a203-b3af983e0c20", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -92809,12 +92809,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"2010-06-10T04:54:01.859Z\",\n \"launched\": \"1993-05-14T17:03:04.904Z\",\n \"completionStatus\": \"Success\"\n}", + "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"2003-03-25T16:59:58.785Z\",\n \"launched\": \"1946-03-08T21:04:01.855Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fb309c1a-cff9-47fc-b1aa-b5b361806e97", + "id": "93152f3e-5afa-48c3-b660-9a1e6657477f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92858,7 +92858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fea4a88-822b-44a6-8838-430fec5df252", + "id": "3e300273-d133-4034-bb6c-81605eb05472", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92902,7 +92902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9be5f6e-a239-4f9b-a266-60510d56542d", + "id": "4aae26d8-e10d-47c9-bad1-7703b4e9935a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92946,7 +92946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5cb92a2-81bc-4a0d-bc31-51e28989618c", + "id": "5d2fd100-d30d-42c4-8257-5e4d6ccfc43e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -92990,7 +92990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0e07f00-f129-4965-8db4-d05286698a52", + "id": "0c9b9463-5001-4ed1-ab73-cefc709ed04f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93034,7 +93034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98337dc4-9353-472c-a41e-901e9c475e51", + "id": "9af51318-f9bb-4425-93e7-a884e822dcdb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93084,7 +93084,7 @@ } }, { - "id": "52dc5008-d1a1-44b1-a44d-f265de4de0fc", + "id": "d8d0d96b-2785-45b6-82bb-0e9ea0714e27", "name": "Update the Identity Profile", "request": { "name": "Update the Identity Profile", @@ -93138,7 +93138,7 @@ }, "response": [ { - "id": "9bfbc34d-eeec-4788-adcc-83c61430022c", + "id": "50a50073-fa62-4b82-b901-3255f22d8206", "name": "The updated Identity Profile.", "originalRequest": { "url": { @@ -93190,12 +93190,12 @@ "value": "application/json" } ], - "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"4fcb22c3-08e5-dae2-d58c-784cd8c28720\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"af3296a0-6c7e-3da4-5de7-1792daf66afa\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b3f2afc1-bc9d-43fb-809b-2c1c8e6874f8", + "id": "b21dca67-d427-4809-bdd1-b4281e52f851", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93252,7 +93252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e316c25-223e-446d-8b82-0f31a30260d6", + "id": "8525f423-f460-405a-a868-c94b50faa85a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93309,7 +93309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e0e8742-6f46-4dd3-b91e-d0a1826a05ec", + "id": "22854a6e-e5e3-44be-aa7b-88e1bbf214a4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93366,7 +93366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d533961b-9b73-4b2d-90b6-17c69debac20", + "id": "519b1f4d-0b37-4bcc-9d1c-3246dd496330", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -93423,7 +93423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a4575ed-1aa6-48bc-b3a2-cd51c1351398", + "id": "98b35e35-afa7-4c4f-bc47-23d5b590198b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93480,7 +93480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11cf8912-b1da-4d6d-82f1-6df5b0af4460", + "id": "78165125-4f34-435c-acfd-dfe903b60c44", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93543,7 +93543,7 @@ } }, { - "id": "8e148339-a476-4849-aa2b-4823fcee3e98", + "id": "4bdcb203-4495-4222-bbea-17da9221d419", "name": "Default identity attribute config", "request": { "name": "Default identity attribute config", @@ -93585,7 +93585,7 @@ }, "response": [ { - "id": "95143edf-f8ce-4cad-87cc-a74db76c3749", + "id": "b2cceeae-41f8-4c9e-900d-93e965e9fd58", "name": "An Identity Attribute Config object", "originalRequest": { "url": { @@ -93630,7 +93630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e38639b-8efa-466b-a7f5-c7243919e2a1", + "id": "776d3dcf-1eba-4b3e-b708-f8606c68155b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93675,7 +93675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2811995b-4df6-4107-a563-156926b3d9fc", + "id": "3af7abde-7df7-4378-b9c6-393b65b15367", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93720,7 +93720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efaa0da5-7945-4bc7-a6fd-1b0a615704f2", + "id": "dbce3796-6c02-42c9-abc2-cea9e19fe6ca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93765,7 +93765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b8b4983-2511-462a-951d-9debe76e1c87", + "id": "8cf5ce58-f3d4-4638-b0d8-94b4eb49b652", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -93810,7 +93810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a120af7-e4e0-43e5-9fe4-0f7f9c616999", + "id": "a8323ffe-aa44-4149-8ec9-c15def640fda", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93855,7 +93855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad1fc2a7-29ee-423b-9d2d-aa985bc29a77", + "id": "8d53669c-d594-4798-ac32-32449716a40c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93906,7 +93906,7 @@ } }, { - "id": "3ab7b74e-3fc9-4983-b29b-d1b762928596", + "id": "19194545-c809-478f-bee3-b20426eef92d", "name": "Process identities under profile", "request": { "name": "Process identities under profile", @@ -93948,7 +93948,7 @@ }, "response": [ { - "id": "67c98173-b6a8-4bc1-853b-9b848f7ca30f", + "id": "529d5afa-33d3-4592-8e5c-3c0efd5b1fcf", "name": "Accepted status after refresh has launched", "originalRequest": { "url": { @@ -93993,7 +93993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7de5d8a-1468-4a7b-9b2c-dbcebaebbb06", + "id": "fb9da9da-f1c0-4c4f-b33b-fef054f72d92", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94038,7 +94038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2677144-fb35-40df-b0b7-34cc86bec518", + "id": "08e1e965-b170-435d-9ea1-621aec1bcdc8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94083,7 +94083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a989ec3-26fb-43b9-b622-a65bb04ab8ad", + "id": "f17b6666-5074-471e-842c-33218211efb9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94128,7 +94128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8379058e-63aa-46ff-9c29-65a5da4da169", + "id": "c4cd8b1e-014a-4441-a709-fe422840a9ed", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -94173,7 +94173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9a58b18-8594-427a-a2ba-3c4aa04e5c87", + "id": "baecd511-c3b4-4c80-b228-027c4093c179", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94218,7 +94218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f3947e8-de42-4153-9523-677836d2d6a8", + "id": "90d2d4c3-54ab-4818-b0be-0d62608855ce", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94275,7 +94275,7 @@ "description": "Use this API to implement and customize lifecycle state functionality.\nWith this functionality in place, administrators can view and configure custom lifecycle states for use across their organizations, which is key to controlling which users have access, when they have access, and the access they have.\n\nA lifecycle state describes a user's status in a company. For example, two lifecycle states come by default with IdentityNow: 'Active' and 'Inactive.'\nWhen an active employee takes an extended leave of absence from a company, his or her lifecycle state may change to 'Inactive,' for security purposes.\nThe inactive employee would lose access to all the applications, sources, and sensitive data during the leave of absence, but when the employee returns and becomes active again, all that access would be restored.\nThis saves administrators the time that would otherwise be spent provisioning the employee's access to each individual tool, reviewing the employee's certification history, etc.\n\nAdministrators must define the criteria for being in each lifecycle state, and they must define how IdentityNow manages users' access to apps and sources for each lifecycle state.\n\nIn IdentityNow, administrators can manage lifecycle states by going to Admin > Identities > Identity Profile, selecting the identity profile whose lifecycle states they want to manage, selecting the 'Provisioning' tab, and using the left panel to select the lifecycle state they want to modify.\n\nIn the 'Provisioning' tab, administrators can make the following access changes to an identity profile's lifecycle state:\n\n- Enable/disable the lifecycle state for the identity profile.\n\n- Enable/disable source accounts for the identity profile's lifecycle state.\n\n- Add existing access profiles to grant to the identity profiles in that lifecycle state.\n\n- Create a new access profile to grant to the identity profile in that lifecycle state.\n\nAccess profiles granted in a previous lifecycle state are automatically revoked when the identity moves to a new lifecycle state.\nTo maintain access across multiple lifecycle states, administrators must grant the access profiles in each lifecycle state.\nFor example, if an administrator wants users with the 'HR Employee' identity profile to maintain their building access in both the 'Active' and 'Leave of Absence' lifecycle states, the administrator must grant the access profile for that building access to both lifecycle states.\n\nDuring scheduled refreshes, IdentityNow evaluates lifecycle states to determine whether their assigned identities have the access defined in the lifecycle states' access profiles.\nIf the identities are missing access, IdentityNow provisions that access.\n\nAdministrators can also use the 'Provisioning' tab to configure email notifications for IdentityNow to send whenever an identity with that identity profile has a lifecycle state change.\nRefer to [Configuring Lifecycle State Notifications](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html#configuring-lifecycle-state-notifications) for more information on how to do so.\n\nAn identity's lifecycle state can have four different statuses: the lifecycle state's status can be 'Active,' it can be 'Not Set,' it can be 'Not Valid,' or it 'Does Not Match Technical Name Case.'\nRefer to [Moving Identities into Lifecycle States](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html#moving-identities-into-lifecycle-states) for more information about these different lifecycle state statuses.\n\nRefer to [Setting Up Lifecycle States](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html) for more information about lifecycle states.\n", "item": [ { - "id": "22181aad-77fc-4566-bf7e-04642abab09f", + "id": "311f54b8-72fb-4940-9549-86c8a7cf4ede", "name": "Lifecycle State", "request": { "name": "Lifecycle State", @@ -94297,7 +94297,7 @@ "variable": [ { "type": "any", - "value": "in aute elit ullamco", + "value": "magna dolore deserunt", "key": "identity-profile-id", "disabled": true, "description": { @@ -94307,7 +94307,7 @@ }, { "type": "any", - "value": "in aute elit ullamco", + "value": "magna dolore deserunt", "key": "lifecycle-state-id", "disabled": true, "description": { @@ -94328,7 +94328,7 @@ }, "response": [ { - "id": "3cd06bb2-8b15-4d1b-9686-fe784675e25a", + "id": "d5d6769e-6e9b-40b9-8ae0-083592b8df17", "name": "lifecycle-state", "originalRequest": { "url": { @@ -94374,7 +94374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f395c68-bb09-4608-91f4-85469522168d", + "id": "7ea2eb91-cc5c-4ef6-bd63-83137cf8410b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94420,7 +94420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99908649-30bb-43b4-af2c-7f5b01266741", + "id": "df690a44-d67f-4c18-8c3a-05770f50746f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94466,7 +94466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88e7dcb5-e00f-41bc-a07e-0f1e075c7b1f", + "id": "dd0c5465-96dc-4063-8e2c-b94324c7552d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94512,7 +94512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff417254-74a9-4d48-a0c8-6dc9069d19a2", + "id": "204225dc-6182-4234-b61d-7d07ded41923", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94558,7 +94558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a853dcc-ce36-40cd-a130-ca0f4a82bef9", + "id": "cfe359a7-89b6-4aeb-bcab-46570cb9744f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94610,7 +94610,7 @@ } }, { - "id": "589e21c1-3762-4388-be8e-b9ce582d1c90", + "id": "d1bdb71e-7a54-4a0e-8e52-47b459632fc4", "name": "Update Lifecycle State", "request": { "name": "Update Lifecycle State", @@ -94632,7 +94632,7 @@ "variable": [ { "type": "any", - "value": "in aute elit ullamco", + "value": "magna dolore deserunt", "key": "identity-profile-id", "disabled": true, "description": { @@ -94642,7 +94642,7 @@ }, { "type": "any", - "value": "in aute elit ullamco", + "value": "magna dolore deserunt", "key": "lifecycle-state-id", "disabled": true, "description": { @@ -94676,7 +94676,7 @@ }, "response": [ { - "id": "48f70698-3edc-42c5-bb2f-4dc89290ad1f", + "id": "e90b264d-6fc7-4909-b940-e66a6e9efe8b", "name": "Updated lifecycle-state.", "originalRequest": { "url": { @@ -94735,7 +94735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cd3ee2a-9b79-4af1-ba6c-780e9364e54d", + "id": "6d34a362-d721-4eb5-8a16-c87b5babeba5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94794,7 +94794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b13f418-28fc-4314-9fef-1ebb556f0f6b", + "id": "457b7ff7-fd66-40d3-9e2e-f4b774ad2bf2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94853,7 +94853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20acb43c-1f0b-4131-895c-4049039b04fb", + "id": "bab94440-3366-4cda-af15-1f67b51b5a16", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94912,7 +94912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b87e01a-1259-4b13-bbd2-27f7e0b76bf9", + "id": "44969a69-366d-44e2-bbda-479f7825c3b7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94971,7 +94971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c87528c-e19a-4e29-8488-05e6f6d3b626", + "id": "e45ad7b8-b9b8-44c2-8ee5-3a4fc8a71473", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95042,7 +95042,7 @@ "description": "Read and write operations for managing client data and statuses", "item": [ { - "id": "0e6962b9-7d3d-4a49-bdc5-ae88a7a0daed", + "id": "7b4a3296-47fa-4378-8ae3-cd66fd964e10", "name": "Specified Managed Client Status.", "request": { "name": "Specified Managed Client Status.", @@ -95094,7 +95094,7 @@ }, "response": [ { - "id": "34f25915-01b7-4c6a-86fa-8a451d5c5b87", + "id": "ca76cc8d-da0d-4766-9928-66487d4e6ee5", "name": "Responds with Managed Client Status having the given ID and Type.", "originalRequest": { "url": { @@ -95144,12 +95144,12 @@ "value": "application/json" } ], - "body": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "body": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "663bfe92-57a0-4cd8-860e-c6c98dbf3380", + "id": "5cf63460-aea6-4819-b79d-4fd12f3d32de", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95204,7 +95204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4950670b-4a63-4e4e-b2ea-78a75dee965e", + "id": "052cf4da-1789-4e35-a0b8-eed6b4e0c06c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95259,7 +95259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6576b7f3-51b0-4542-9118-67e8c712e168", + "id": "beecc334-857b-45b9-82eb-611f15a8b6dc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95314,7 +95314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6755984b-c37c-4974-8d4a-117666fee288", + "id": "5e044482-4b7e-4a29-a3f0-f63e1d662588", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -95369,7 +95369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22407058-e037-4b5b-8729-c6afaf54a127", + "id": "8fb43f1e-b244-4b59-ad8d-60dee03a9943", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95424,7 +95424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34a14c48-f2d7-4131-8e24-c789c10196f4", + "id": "5a8c7819-c8f3-4766-80b6-6f776c172894", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95485,7 +95485,7 @@ } }, { - "id": "5b0103c1-46c6-4ad0-ac1d-69fac9e9f814", + "id": "5a019b27-2260-461a-8f95-5968bb9a80e0", "name": "Handle status request from client", "request": { "name": "Handle status request from client", @@ -95529,7 +95529,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95540,7 +95540,7 @@ }, "response": [ { - "id": "5aa1bbe0-8c93-4118-9d3a-5de3574f1380", + "id": "508d7353-cbae-4ef8-92e7-928bda3df657", "name": "Responds with the updated Managed Client Status.", "originalRequest": { "url": { @@ -95576,7 +95576,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95593,12 +95593,12 @@ "value": "application/json" } ], - "body": "{\n \"body\": {\n \"body\": {\n \"clientId\": \"1528\",\n \"clusterId\": \"1533\",\n \"orgType\": \"test\",\n \"vaDownloadUrl\": \"https://sptcbu-va-images.s3.amazonaws.com/va-latest.zip\",\n \"clusterJobCount\": 1,\n \"configuration\": {\n \"clusterType\": \"sqsCluster\",\n \"clusterExternalId\": \"2c91808876dd79120176f758af765c58\",\n \"debug\": \"false\",\n \"failureThreshold\": \"0\",\n \"gmtOffset\": \"-6\",\n \"scheduleUpgrade\": \"false\",\n \"va_version\": \"va-megapod-useast1-595-1627543540\",\n \"jobType\": \"VA_UPGRADE\",\n \"cookbook\": \"va-megapod-useast1-595-1627543540\"\n },\n \"connectorServices\": [\n {\n \"name\": \"EndToEnd-ADSource\",\n \"connector_host\": \"host.example.com\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-AzureADSource\",\n \"connector_host\": null,\n \"connector_port\": null,\n \"connector_(boolean)useSSL\": null,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-OpenLDAP\",\n \"connector_host\": \"10.0.2.64\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"Dynamic-ADSource\",\n \"connector_host\": \"host.example.com\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-JdbcADSource\",\n \"connector_host\": \"10.0.5.187\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-JdbcSource\",\n \"connector_host\": null,\n \"connector_port\": null,\n \"connector_(boolean)useSSL\": null,\n \"connectorFileUploadHistory\": [\n {\n \"serviceId\": \"540717\",\n \"date\": \"2021-02-05T22:58:15Z\",\n \"file\": \"temp7081703651350031905mysql-connector-java-8.0.11.jar\"\n }\n ]\n }\n ],\n \"jobs\": [\n {\n \"uuid\": \"872b622f-5ab5-4836-9172-e3bb77f05b2c\",\n \"cookbook\": \"872b622f-5ab5-4836-9172-e3bb77f05b2c\",\n \"state\": \"FINISHED\",\n \"type\": \"VA_UPGRADE\",\n \"targetId\": \"1528\",\n \"managedProcessConfiguration\": {\n \"charon\": {\n \"version\": \"345\",\n \"path\": \"sailpoint/charon\",\n \"description\": null,\n \"dependencies\": null\n },\n \"ccg\": {\n \"version\": \"415_583_79.0.0\",\n \"path\": \"sailpoint/ccg\",\n \"description\": null,\n \"dependencies\": null\n },\n \"toolbox\": {\n \"version\": \"6\",\n \"path\": \"sailpoint/toolbox\",\n \"description\": null,\n \"dependencies\": null\n },\n \"fluent\": {\n \"version\": \"50\",\n \"path\": \"fluent/va\",\n \"description\": null,\n \"dependencies\": null\n },\n \"va_agent\": {\n \"version\": \"89\",\n \"path\": \"sailpoint/va_agent\",\n \"description\": null,\n \"dependencies\": null\n }\n }\n }\n ],\n \"queue\": {\n \"name\": \"megapod-useast1-denali-lwt-cluster-1533\",\n \"region\": \"us-east-1\"\n },\n \"maintenance\": {\n \"window\": \"true\",\n \"windowStartTime\": \"2021-07-29T00:00:00Z\",\n \"windowClusterTime\": \"2021-07-29T01:35:24Z\",\n \"windowFinishTime\": \"2021-07-29T04:00:00Z\"\n }\n }\n },\n \"status\": \"WARNING\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "body": "{\n \"body\": {\n \"body\": {\n \"clientId\": \"1528\",\n \"clusterId\": \"1533\",\n \"orgType\": \"test\",\n \"vaDownloadUrl\": \"https://sptcbu-va-images.s3.amazonaws.com/va-latest.zip\",\n \"clusterJobCount\": 1,\n \"configuration\": {\n \"clusterType\": \"sqsCluster\",\n \"clusterExternalId\": \"2c91808876dd79120176f758af765c58\",\n \"debug\": \"false\",\n \"failureThreshold\": \"0\",\n \"gmtOffset\": \"-6\",\n \"scheduleUpgrade\": \"false\",\n \"va_version\": \"va-megapod-useast1-595-1627543540\",\n \"jobType\": \"VA_UPGRADE\",\n \"cookbook\": \"va-megapod-useast1-595-1627543540\"\n },\n \"connectorServices\": [\n {\n \"name\": \"EndToEnd-ADSource\",\n \"connector_host\": \"host.example.com\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-AzureADSource\",\n \"connector_host\": null,\n \"connector_port\": null,\n \"connector_(boolean)useSSL\": null,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-OpenLDAP\",\n \"connector_host\": \"10.0.2.64\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"Dynamic-ADSource\",\n \"connector_host\": \"host.example.com\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-JdbcADSource\",\n \"connector_host\": \"10.0.5.187\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-JdbcSource\",\n \"connector_host\": null,\n \"connector_port\": null,\n \"connector_(boolean)useSSL\": null,\n \"connectorFileUploadHistory\": [\n {\n \"serviceId\": \"540717\",\n \"date\": \"2021-02-05T22:58:15Z\",\n \"file\": \"temp7081703651350031905mysql-connector-java-8.0.11.jar\"\n }\n ]\n }\n ],\n \"jobs\": [\n {\n \"uuid\": \"872b622f-5ab5-4836-9172-e3bb77f05b2c\",\n \"cookbook\": \"872b622f-5ab5-4836-9172-e3bb77f05b2c\",\n \"state\": \"FINISHED\",\n \"type\": \"VA_UPGRADE\",\n \"targetId\": \"1528\",\n \"managedProcessConfiguration\": {\n \"charon\": {\n \"version\": \"345\",\n \"path\": \"sailpoint/charon\",\n \"description\": null,\n \"dependencies\": null\n },\n \"ccg\": {\n \"version\": \"415_583_79.0.0\",\n \"path\": \"sailpoint/ccg\",\n \"description\": null,\n \"dependencies\": null\n },\n \"toolbox\": {\n \"version\": \"6\",\n \"path\": \"sailpoint/toolbox\",\n \"description\": null,\n \"dependencies\": null\n },\n \"fluent\": {\n \"version\": \"50\",\n \"path\": \"fluent/va\",\n \"description\": null,\n \"dependencies\": null\n },\n \"va_agent\": {\n \"version\": \"89\",\n \"path\": \"sailpoint/va_agent\",\n \"description\": null,\n \"dependencies\": null\n }\n }\n }\n ],\n \"queue\": {\n \"name\": \"megapod-useast1-denali-lwt-cluster-1533\",\n \"region\": \"us-east-1\"\n },\n \"maintenance\": {\n \"window\": \"true\",\n \"windowStartTime\": \"2021-07-29T00:00:00Z\",\n \"windowClusterTime\": \"2021-07-29T01:35:24Z\",\n \"windowFinishTime\": \"2021-07-29T04:00:00Z\"\n }\n }\n },\n \"status\": \"CONFIGURING\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "80192a4c-0217-4a7b-a80b-50b575f2934a", + "id": "20cda2e5-b8f8-4c5e-944d-a502e2f9c258", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95634,7 +95634,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95656,7 +95656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20f7215b-5931-4de0-a6c8-69d6e6267bb8", + "id": "8a0ac0eb-c0ae-42b2-a21a-46bbdc282d9c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95692,7 +95692,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95714,7 +95714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53402d1a-43ff-429e-9ca9-aa71f52cbf7e", + "id": "e3548492-ecc2-4321-9bbb-e8f456f67a31", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95750,7 +95750,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95772,7 +95772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99faa3e5-c577-499e-ba3d-a758437dd380", + "id": "31fa1700-a8d9-4da8-8654-29f4d722942c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -95808,7 +95808,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95830,7 +95830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d1db59e-c448-427c-8e96-aa61c4236f91", + "id": "8e71add4-4d07-4d7d-96be-445ae8124c7c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95866,7 +95866,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95888,7 +95888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80d76c7a-aeb8-45fb-a654-8969b2122ca5", + "id": "3c8d1320-40d2-4fd9-9667-fdb438ff1270", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95924,7 +95924,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95958,7 +95958,7 @@ "description": "Operations for accessing and managing client Clusters, including Log Configuration", "item": [ { - "id": "0eea2316-d01a-452f-bb26-d433e872d581", + "id": "b6657dc2-eaad-4514-a686-a187f94ab5dc", "name": "Get a specified ManagedCluster.", "request": { "name": "Get a specified ManagedCluster.", @@ -95999,7 +95999,7 @@ }, "response": [ { - "id": "7951dbed-b6f0-4625-8af7-c0f8036fde58", + "id": "3888df92-28aa-4d58-9cfa-a1fd99d53225", "name": "Responds with ManagedCluster having the given ID.", "originalRequest": { "url": { @@ -96043,7 +96043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b063256b-dfe3-48b6-9a6d-23b5f8031388", + "id": "eb64b8a8-bba3-4af6-a4cf-1c7939e598cf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96087,7 +96087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9839a97c-d107-4139-9d2a-cd81ccc18e31", + "id": "9ef1948c-13d0-4f25-94ae-f6aab12a845c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96131,7 +96131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d83ba79-a6e9-416c-8758-30b39588a57b", + "id": "80a4b823-7d33-47ac-87c0-ad9e2dab6ef2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96175,7 +96175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d839f499-c54e-4233-8c41-2b623bdc333b", + "id": "d0512a43-72ba-4f24-9544-6f4619342597", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -96219,7 +96219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2e36e38-cbde-46e9-aaea-464819b08766", + "id": "f1dd9712-550c-4a24-b68a-5cb2f7894e94", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96263,7 +96263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4eeea8e7-cd52-44ed-9367-a81f369096cd", + "id": "0f4829d0-016a-41a7-b618-d23ab42c70b7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96313,7 +96313,7 @@ } }, { - "id": "0952ed7b-ddf8-4fdd-a10b-4995ed402bf4", + "id": "cd05b103-4a0a-4e44-9750-fd0ff9d803b8", "name": "Get managed cluster's log configuration", "request": { "name": "Get managed cluster's log configuration", @@ -96355,7 +96355,7 @@ }, "response": [ { - "id": "4827435e-4eb1-41db-9a25-6c6e619129e0", + "id": "bc75b287-b89a-4fa4-91c4-e8a0baa33263", "name": "Log configuration of ManagedCluster matching given cluster ID", "originalRequest": { "url": { @@ -96400,7 +96400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72b54441-9ed2-4d4f-acb7-d7cada430de4", + "id": "ffaf446b-abf4-4896-8846-450e67c98441", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96445,7 +96445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1993ace-87c9-4a2d-bea7-65111277e4e9", + "id": "22f4c3a9-1771-4e97-9710-d6013a43a7cb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96490,7 +96490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c80202f-796c-4a8d-abb6-11ffc37ea63f", + "id": "d305d1f0-05f4-41dd-9aac-d04f57ee3f76", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96535,7 +96535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07b8fe53-f57f-44e8-a420-14b20c504fb9", + "id": "3bd60e04-ce56-4d74-bc06-568533e3cd6c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -96580,7 +96580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8a56d77-671c-4c84-8293-3bb92b321be1", + "id": "341306d9-846f-4f67-af06-4aa0f662d572", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96625,7 +96625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec648282-99d5-4df3-aa36-911ac35a1f21", + "id": "4b6aaea7-3133-450c-922c-f643002db3f2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96676,7 +96676,7 @@ } }, { - "id": "1923a784-0c62-4d47-9afd-63d1e22a4daf", + "id": "c0e2546f-9abe-46fc-9eb3-7d1ae5032505", "name": "Update managed cluster's log configuration", "request": { "name": "Update managed cluster's log configuration", @@ -96731,7 +96731,7 @@ }, "response": [ { - "id": "ad689a86-ac5a-4636-a86a-fad1265c1d89", + "id": "ca6f7618-d4cd-45c0-84f6-f3c13dd84b66", "name": "Responds with updated ClientLogConfiguration for given ManagedCluster", "originalRequest": { "url": { @@ -96789,7 +96789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "629688d2-8f1b-4cc9-8272-e971a866b1ae", + "id": "d2e35be3-d239-4069-ae5a-4e790b26f046", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96847,7 +96847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36eaf99e-b090-42e6-b12e-a75196f49268", + "id": "1704daf9-22b4-48e1-83b6-1d53a3918452", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96905,7 +96905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2693d068-012f-4da9-813a-d4124f5beb25", + "id": "70e5b349-1280-444e-b0d1-65448a34e7a5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96963,7 +96963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8a11a01-9bfb-492a-9cb5-ce983577e118", + "id": "e42cb0a7-4725-4fee-84bb-c8f347846605", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -97021,7 +97021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b7cdf2a-b240-4609-bf51-35cb95ba4f88", + "id": "b26b7d18-6ffe-4d01-aea4-863c19bac299", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97079,7 +97079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd48c069-345f-477f-8825-0c8b8f194500", + "id": "d0e7c271-0310-4e47-bae3-d44a3dff2633", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97143,7 +97143,7 @@ } }, { - "id": "6423bfa3-b974-43e5-815a-e5618d9226eb", + "id": "8f116dc7-06bb-440d-b5fc-14979e1d5d14", "name": "Retrieve all Managed Clusters.", "request": { "name": "Retrieve all Managed Clusters.", @@ -97209,7 +97209,7 @@ }, "response": [ { - "id": "ce6faa67-6a7c-49f3-b6d6-1e6d28422f55", + "id": "7f7f6d19-adf2-4914-82c8-988f419ca199", "name": "Responds with a list of ManagedCluster.", "originalRequest": { "url": { @@ -97289,7 +97289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6311d985-96e2-448d-89d4-1c5e51e44d31", + "id": "5ed38b62-ce8f-45c1-81d8-90b51e59d278", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97369,7 +97369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a88cab2-418d-48c3-965a-9d4ed7c8e16a", + "id": "66e96160-f7c0-4d31-a2f2-de8a8da5cb9e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97449,7 +97449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e82c9e15-a6d5-4ed8-81c5-7a3c727a2f7c", + "id": "240745cd-298d-4cfb-b60f-3f9e5a44e6cf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97529,7 +97529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "684009fc-ce4e-414c-b804-1a4bf07e9c90", + "id": "baccb2e9-2699-4fef-beb7-4d3162a6b785", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97609,7 +97609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ecf7be3-6daf-449d-9a4c-fa2b5bae5446", + "id": "93bfb807-8e48-418e-83ca-e4db7a33e3b5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97701,7 +97701,7 @@ "description": "Configure and test multifactor authentication (MFA) methods", "item": [ { - "id": "cc045488-ff9b-4152-abf3-79ee0fcde74a", + "id": "b302ca04-2414-4f42-ad38-410db1111f8e", "name": "Configuration of Okta MFA method", "request": { "name": "Configuration of Okta MFA method", @@ -97732,7 +97732,7 @@ }, "response": [ { - "id": "e0c585b1-4a6c-4b79-bdc7-8d6b95322b60", + "id": "ba3f77ea-2b85-49f4-84d3-403b1e50f680", "name": "The configuration of an Okta MFA method.", "originalRequest": { "url": { @@ -97777,7 +97777,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc6b0338-bf61-4960-8e34-8bd6769da2c7", + "id": "8af93561-18a2-4b43-bc38-dc53693948af", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97822,7 +97822,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e6715d5-d95d-4989-b8a7-40f336027548", + "id": "5c880fbd-36c2-4321-84a7-84087a09b037", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97867,7 +97867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84281ffb-0556-43a1-b729-c92dbdd3bb97", + "id": "38e63aca-b4db-4ad2-a84f-9b011771fe57", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97912,7 +97912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3996fd9f-4c3b-4834-90ba-56aac65b0b0d", + "id": "e8c3ecba-cff1-4560-8d56-ce2f8df2eb24", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97957,7 +97957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50390ad8-9d9d-4d7f-832f-4e79b4042342", + "id": "e7429368-a033-45f2-b500-05a63c86b329", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98008,7 +98008,7 @@ } }, { - "id": "7a9b7409-16bf-4234-9538-74bc2eee00bd", + "id": "6f2db203-aba6-4326-b254-643584bcf829", "name": "Set Okta MFA configuration", "request": { "name": "Set Okta MFA configuration", @@ -98052,7 +98052,7 @@ }, "response": [ { - "id": "f59d7625-fa84-480f-985e-c3081523a723", + "id": "8c658e70-f7cb-4386-bd00-e939a9050ab1", "name": "MFA configuration of an Okta MFA method.", "originalRequest": { "url": { @@ -98110,7 +98110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d90c86b6-0103-4281-8168-5737682aa492", + "id": "52966a70-5ea5-4bfa-aca0-58868552416a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98168,7 +98168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3cdd06f-8368-42c1-b63b-c1decf105c04", + "id": "3328ce62-c7e2-495f-ae5e-05b8c3214ebb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98226,7 +98226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddfc9f9f-2c1f-449d-bc8e-6dc86e53bb8e", + "id": "b3c00148-c292-4447-a8cd-96f4ba374985", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98284,7 +98284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da7ccc8f-45e5-4332-8213-1019bc665b09", + "id": "735b6286-a022-42e0-b75f-3744ca8efb1b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98342,7 +98342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9c54c6d-1794-46a2-937b-c0ba8e130af8", + "id": "257fee0d-79bf-416b-8f49-f2923f1906a0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98406,7 +98406,7 @@ } }, { - "id": "4d49044f-6ac4-46c9-9a7b-12755b70005f", + "id": "47fb0430-5275-420c-b4b2-68c381b47056", "name": "Configuration of Duo MFA method", "request": { "name": "Configuration of Duo MFA method", @@ -98437,7 +98437,7 @@ }, "response": [ { - "id": "5a5ccbf3-4771-47da-bedd-6757e6c02fc2", + "id": "8adff389-f711-4233-86ef-7b939055fade", "name": "The configuration of an Duo MFA method.", "originalRequest": { "url": { @@ -98482,7 +98482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27f5da50-376d-4e32-8aa1-87522b5731e3", + "id": "19c41219-688c-47ec-aa6c-48536957a2cc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98527,7 +98527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7404e751-68fa-4d17-b9c8-41f497f15287", + "id": "e8ad21c2-7d14-41f9-bf85-6410984deff4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98572,7 +98572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9259d8be-0109-43c0-8d17-167e23e51a28", + "id": "eba18f2a-f630-4b0c-a80e-9ea2c5e0fd93", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98617,7 +98617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f097c445-7cd7-4c9a-818c-0f6f6ae75986", + "id": "4aed9cab-9aef-4f03-930e-d7283622f269", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98662,7 +98662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f96b5c85-edf2-46cf-a530-5b7dfcc904fe", + "id": "34f2c655-2197-4f58-af0c-727f4dd65dc4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98713,7 +98713,7 @@ } }, { - "id": "41b21186-0544-4fe8-9afa-2d951447034c", + "id": "39a7a8aa-3c24-45b9-ba3d-bb5facdea94b", "name": "Set Duo MFA configuration", "request": { "name": "Set Duo MFA configuration", @@ -98757,7 +98757,7 @@ }, "response": [ { - "id": "aefd237a-ab95-44ce-bab6-d81fa8d5b50f", + "id": "3a5d38c0-bc8e-44ea-b393-dbf5f2d998c4", "name": "MFA configuration of an Duo MFA method.", "originalRequest": { "url": { @@ -98815,7 +98815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6e4901d-c1be-4f6d-82e2-d026b6159007", + "id": "b1389a3a-0604-4453-a070-ae02bd974e39", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98873,7 +98873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f62724f-bbf5-455d-8bc9-c0fb107fde23", + "id": "9e12bfee-3f71-4dc9-b1c7-10f9f830150e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98931,7 +98931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7061089b-7866-4637-9df9-d39c3ce427cd", + "id": "e0fb8920-a2eb-4848-b3c0-f8a13b178213", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98989,7 +98989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1e18a07-dc0d-4241-a3d3-a7fbc9ca4dab", + "id": "ab816772-db02-412b-88a7-9b10a1c80efe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99047,7 +99047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec5da64c-b9b6-4ba8-96a2-d11ecfbe7fc2", + "id": "6c7dd0b7-b32f-444a-897d-7950ceaa9611", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99111,7 +99111,7 @@ } }, { - "id": "1ecf37df-270c-481f-87dc-bd58df9a9aa1", + "id": "c1d73289-2abe-4dbd-b959-bafe3a1319b8", "name": "MFA method's test configuration", "request": { "name": "MFA method's test configuration", @@ -99153,7 +99153,7 @@ }, "response": [ { - "id": "ce6deadb-e884-4036-bca9-733b15f75a7c", + "id": "7ccaa875-696e-40f7-8b23-c55f14f7b59f", "name": "The result of configuration test for the MFA provider.", "originalRequest": { "url": { @@ -99198,7 +99198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01903d1f-f386-4e83-a8b6-7adbf0f0c97e", + "id": "e884b981-b23f-4e52-bee3-cb40382827da", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99243,7 +99243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ce117d4-6cec-4e16-b697-9fe1ef3a97f8", + "id": "0d24cb98-29bb-4582-9c09-6830c1fe824f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99288,7 +99288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7c34168-31c3-428d-b9ee-8582a4b7d524", + "id": "36f1db18-cd96-41d4-a0b7-0a790f7158a8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99333,7 +99333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33e2e6c9-4a69-499d-9286-4155223dd408", + "id": "0f237ae6-f6bf-44db-a4ad-5d42a1dae2f1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99378,7 +99378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf7523fd-6815-4b80-93c7-a081c19c4c4b", + "id": "b48894b9-f8e1-46ac-9a82-f3fde066f76a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99429,7 +99429,7 @@ } }, { - "id": "640b0212-7ce4-4cff-a78c-7350e1467f27", + "id": "f2882490-748e-4d35-a28e-a6a7dad628a2", "name": "Delete MFA method configuration", "request": { "name": "Delete MFA method configuration", @@ -99471,7 +99471,7 @@ }, "response": [ { - "id": "de9e9788-50b4-4030-a956-8d01cd92862c", + "id": "2471688f-c8b2-40fa-9fce-fd2f1fdcc732", "name": "MFA configuration of an MFA method.", "originalRequest": { "url": { @@ -99516,7 +99516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3fd9d63-8691-42b4-94e1-539c4655251e", + "id": "fc8b78d8-d8ae-4c4b-bcc1-a12ed3264637", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99561,7 +99561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6aaa44f-7400-4639-b6ec-dcfc62138779", + "id": "73dc881b-43b6-474b-a405-18d70f492f80", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99606,7 +99606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42a2e6f6-63d4-4cd0-acdb-cde3b07c8031", + "id": "b4493612-9706-4afa-aba7-9927f04d5b95", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99651,7 +99651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b4af8fa-e4d9-41fc-becd-31bc50518321", + "id": "22db420a-1651-4708-80c3-f230ba6f7b86", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99696,7 +99696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9958c604-e58c-4901-80d0-0d0ce6afeb37", + "id": "66c8ce12-75e9-4886-914d-0c38a5ae8082", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99753,7 +99753,7 @@ "description": "This API used for multifactor authentication functionality belong to gov-multi-auth service. This controller allow you to verify authentication by specified method", "item": [ { - "id": "bb1b4a16-91b4-44d0-a411-4dc0b76c0591", + "id": "c73bdd9d-9248-4dbd-bd2a-2ee285ba0bdf", "name": "Verifying authentication via Okta method", "request": { "name": "Verifying authentication via Okta method", @@ -99797,7 +99797,7 @@ }, "response": [ { - "id": "1b5251bc-0f40-4ef0-8935-a6e6d20634b7", + "id": "c8ecc864-5b8a-40b7-af34-50e0a3c84b81", "name": "The status of verification request.", "originalRequest": { "url": { @@ -99855,7 +99855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5599dccd-0092-4105-9394-3535e0850ce9", + "id": "bc424b7d-9483-4808-93e5-50099754f3c4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99913,7 +99913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96565f95-c0bd-4ca9-afc9-ee151bd88024", + "id": "9e96cb2c-8965-47cc-a4e0-38cbf0514a92", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99971,7 +99971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "398a1991-720d-4ed4-a000-944cab41a21f", + "id": "7deb835c-1d09-4440-ae36-67ab32b02e34", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100029,7 +100029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b090bcdd-9285-4cbb-ab59-240c6295e6ad", + "id": "348d8f97-a7a4-41d8-957c-e5d76adc0548", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100087,7 +100087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5f16b92-e5de-4588-ab9f-ed76e11d45a3", + "id": "21d55cc6-d3a6-4a5b-85d3-8db1af50101a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100151,7 +100151,7 @@ } }, { - "id": "7b7f790f-dc30-4c66-be6a-ab4bd35f8684", + "id": "82ad46af-2a8f-4270-a359-1c82fef89af5", "name": "Verifying authentication via Duo method", "request": { "name": "Verifying authentication via Duo method", @@ -100195,7 +100195,7 @@ }, "response": [ { - "id": "8276d79a-81f2-441b-8c1f-9ad6beb6c151", + "id": "72a883d7-a4b8-4162-a397-e42d8d4011fa", "name": "The status of verification request.", "originalRequest": { "url": { @@ -100253,7 +100253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff07ea46-55d5-434b-8243-41f4997dcd58", + "id": "9e25e88b-d9f4-4cd7-8d5c-960f48ad710f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100311,7 +100311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f5c4a51-81ad-464d-bf79-49af688d8200", + "id": "cf3a354a-b92d-4394-beb8-278ffa1c3882", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100369,7 +100369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b43da795-9039-45a2-a6bc-1d50dbdedd7c", + "id": "e7100d1f-087a-4aa4-bb12-67aab4e51704", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100427,7 +100427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29678403-e405-4f49-a3a3-44e1347edd6f", + "id": "9897d9f9-27fc-4c13-ac26-188c732b91ab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100485,7 +100485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "884fd484-596e-4bb7-97ca-570599f1d034", + "id": "ff177b56-6266-4789-af14-fffc821bc8b0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100549,7 +100549,7 @@ } }, { - "id": "b8af6270-02c2-4506-8e6c-e1298990a255", + "id": "b72c3d0b-0dee-4877-9703-6358c1cff1dc", "name": "Polling MFA method by VerificationPollRequest", "request": { "name": "Polling MFA method by VerificationPollRequest", @@ -100604,7 +100604,7 @@ }, "response": [ { - "id": "20e5bcbd-ee51-4496-a733-04096254c7dd", + "id": "08d35507-7070-44bb-b751-69194cb92df0", "name": "MFA VerificationPollRequest status an MFA method.", "originalRequest": { "url": { @@ -100662,7 +100662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ce4ee8f-88e2-40a7-a170-f7704986f18c", + "id": "35c3fd76-700b-4491-8408-a8244244639a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100720,7 +100720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3591955e-164c-4382-bfbf-f69b93585e3a", + "id": "ab437752-c093-4166-945d-ea5aaff1de5e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100778,7 +100778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "917fb326-ef20-4013-898c-570b6b97fbe4", + "id": "d2226396-7c23-487b-b57e-c44eb854d9b4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100836,7 +100836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d69559f2-d447-4edf-aca5-4c0ebe9195f5", + "id": "44ced7bb-b970-46a2-852b-16fcc2243db2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100894,7 +100894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5f1430a-ad2d-4514-bd02-5d403d69c2ea", + "id": "94545994-07e2-41bf-badd-d0fba14279ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100958,7 +100958,7 @@ } }, { - "id": "6685c079-9eba-413d-9306-80a9065efb95", + "id": "a4296193-666f-4660-a0e2-3073204e23c6", "name": "Authenticate KBA provided MFA method", "request": { "name": "Authenticate KBA provided MFA method", @@ -101002,7 +101002,7 @@ }, "response": [ { - "id": "83e4f952-1d55-4a97-8843-a992a95709eb", + "id": "4959bb0d-0821-41ce-a1eb-b1c4d3b5587e", "name": "KBA authenticated status.", "originalRequest": { "url": { @@ -101060,7 +101060,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c80fd48-9fc3-46ec-9a19-e4b00066de37", + "id": "9a5819fa-426e-4d1e-81f1-ae47308b2e5a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101118,7 +101118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "522a67ad-01b5-4216-bc80-44b10e6b2d6e", + "id": "8c9ce8d8-241a-4cc6-96e7-6e9e78b518a5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101176,7 +101176,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0861108e-4691-4a79-a437-6b6f16b5b1ae", + "id": "4e1b23f6-cda8-4332-9498-eed5adc12cac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101234,7 +101234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f93c7b9-3b2a-445a-b33b-f964bd458d9d", + "id": "61eb2f49-002e-4adf-af23-4baaad961254", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101292,7 +101292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85265bd9-58ae-479a-9de5-66b22528237b", + "id": "293e4009-2feb-467d-bdf9-03355ef6055e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101356,7 +101356,7 @@ } }, { - "id": "777e119d-9bbc-4db1-9c5c-9c74263b1b6c", + "id": "c6b4cc16-4d0d-43ae-9ed1-f1eedd697037", "name": "Authenticate Token provided MFA method", "request": { "name": "Authenticate Token provided MFA method", @@ -101400,7 +101400,7 @@ }, "response": [ { - "id": "b9b01a75-54c2-415e-86d9-7d688ea8aa5c", + "id": "087c038a-48cd-471d-b5f3-33f47d38f46a", "name": "Token authenticated status.", "originalRequest": { "url": { @@ -101458,7 +101458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "331845fa-3d81-40be-9499-eb1285fba321", + "id": "731d9d11-f8e6-47ce-8f33-7d1a2f03c596", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101516,7 +101516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4bb9566-01d7-4b54-99b7-af9ba8bf3686", + "id": "95d271ae-bbee-4240-b393-69c3d88d5c0c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101574,7 +101574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f500c20-ec71-4c60-852b-a832aaa1cde8", + "id": "d041cb59-0245-466d-a40b-8daf6c27284b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101632,7 +101632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70019c5a-2dbb-40ad-afc2-10489e38d3d7", + "id": "0759d3dd-bddb-4e03-b673-951998846198", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101690,7 +101690,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce076a86-ce5d-45a3-ba7c-ec0cfa6a52d4", + "id": "0d7b59ed-0435-410c-98af-282ee1ce96f0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101754,7 +101754,7 @@ } }, { - "id": "3727d5fa-3653-419a-a753-fa13f420db4b", + "id": "dfeadfff-5928-4573-b93e-8f521710081b", "name": "Create and send user token", "request": { "name": "Create and send user token", @@ -101798,7 +101798,7 @@ }, "response": [ { - "id": "21ee6e0d-72cc-4a48-9f96-3ce61631d25d", + "id": "81451f89-74ed-4d83-b03e-df13d2f41cdf", "name": "Token send status.", "originalRequest": { "url": { @@ -101856,7 +101856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd0680bb-e19c-40de-9f63-450bd6b17e18", + "id": "9d6ad050-c521-40e8-8a3c-d6c7bce005f3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101914,7 +101914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f59b4e7-1f5e-4511-befd-2d47621ef714", + "id": "91e869d0-f0df-4a4a-9e71-e8edf97b1de0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101972,7 +101972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da9797e7-d19c-4754-a333-6b0d1bbf1102", + "id": "56685d26-9813-4a57-bf80-b36d7d0b8cf9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102030,7 +102030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78870920-6afc-4b2e-b168-19a7df0ce252", + "id": "429d4539-e6ee-4f23-b283-5973ef8c1269", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102088,7 +102088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1d156f8-0218-4c35-b2a3-faa560a9806b", + "id": "f6d73473-7504-4c7a-abd4-f493f0b40c01", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102158,7 +102158,7 @@ "description": "Use this API to implement non-employee lifecycle management functionality.\nWith this functionality in place, administrators can create non-employee records and configure them for use in their organizations.\nThis allows organizations to provide secure access to non-employees and control that access.\n\nThe 'non-employee' term refers to any consultant, contractor, intern, or other user in an organization who is not a full-time permanent employee.\nOrganizations can track non-employees' access and activity in IdentityNow by creating and maintaining non-employee sources.\nOrganizations can have a maximum of 50 non-employee sources.\n\nBy using SailPoint's Non-Employee Lifecycle Management functionality, you agree to the following:\n\n- SailPoint is not responsible for storing sensitive data.\nYou may only add account attributes to non-employee identities that are necessary for business operations and are consistent with your contractual limitations on data that may be sent or stored in IdentityNow.\n\n- You are responsible for regularly downloading your list of non-employee accounts for all the sources you create and storing this list of accounts in a managed location to maintain an authoritative system of record and backup data for these accounts.\n\nTo manage non-employees in IdentityNow, administrators must create a non-employee source and add accounts to the source.\n\nTo create a non-employee source in IdentityNow, administrators must use the Admin panel to go to Connections > Sources.\nThey must then specify 'Non-Employee' in the 'Source Type' field.\nRefer to [Creating a Non-Employee Source](https://documentation.sailpoint.com/saas/help/common/non-employee-mgmt.html#creating-a-non-employee-source) for more details about how to create non-employee sources.\n\nTo add accounts to a non-employee source in IdentityNow, administrators can select the non-employee source and add the accounts.\nThey can also use the 'Manage Non-Employees' widget on their user dashboards to reach the list of sources and then select the non-employee source they want to add the accounts to.\n\nAdministrators can either add accounts individually or in bulk. Each non-employee source can have a maximum of 20,000 accounts.\nTo add accounts in bulk, they must select the 'Bulk Upload' option and upload a CSV file.\nRefer to [Adding Accounts](https://documentation.sailpoint.com/saas/help/common/non-employee-mgmt.html#adding-accounts) for more details about how to add accounts to non-employee sources.\n\nOnce administrators have created the non-employee source and added accounts to it, they can create identity profiles to generate identities for the non-employee accounts and manage the non-employee identities the same way they would any other identities.\n\nRefer to [Managing Non-Employee Sources and Accounts](https://documentation.sailpoint.com/saas/help/common/non-employee-mgmt.html) for more information about non-employee lifecycle management.\n", "item": [ { - "id": "6a75c584-1388-4aa0-a1c3-5e4f21f266de", + "id": "abece74e-dc0b-4150-bf5f-615ba7de08e2", "name": "Create Non-Employee Record", "request": { "name": "Create Non-Employee Record", @@ -102189,7 +102189,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -102200,7 +102200,7 @@ }, "response": [ { - "id": "854345d7-3507-4c20-bd3e-dfb802ef9992", + "id": "55c0f306-fbee-4e40-969c-5de459c9890d", "name": "Created non-employee record.", "originalRequest": { "url": { @@ -102234,7 +102234,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -102251,12 +102251,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"enim\",\n \"accountName\": \"elit id cillum voluptate\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"veniam_64\": \"ex qui Excepteur dolor\",\n \"aliquip0_6\": \"ex irure do\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n}", + "body": "{\n \"id\": \"anim in\",\n \"accountName\": \"dolor\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"irure_21\": \"amet tempor quis laboris\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9c0b7dd7-c157-4e2a-adb3-5b1005a5a4bb", + "id": "50ee01c4-087e-453e-94f3-ffd0bb061908", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102290,7 +102290,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -102312,7 +102312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a0924ac-afdb-4b21-b82a-f8fde78298bd", + "id": "c70f96c5-621a-4e85-8cb7-9ec5d69c1a56", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102346,7 +102346,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -102368,7 +102368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7527b2e1-3a90-44c7-9416-c5057f45e37a", + "id": "99a1e3b2-b134-4e91-8583-5d87f380c9e0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102402,7 +102402,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -102424,7 +102424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d781b263-f1d4-4731-924b-21e47883a910", + "id": "595477e2-dd9d-4aea-bae1-96f2ffd77265", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102458,7 +102458,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -102480,7 +102480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21deef60-66df-40c6-8d28-1308ecfac912", + "id": "4dc63503-a48d-44da-9919-1856888eff94", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102514,7 +102514,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -102542,7 +102542,7 @@ } }, { - "id": "d1266dda-4e19-4f76-ba49-62ccf556aa35", + "id": "4a309090-fecb-4e6a-a28b-4bfd58f96038", "name": "List Non-Employee Records", "request": { "name": "List Non-Employee Records", @@ -102617,7 +102617,7 @@ }, "response": [ { - "id": "f1747d0d-865d-4656-a88c-0fbb99891b7b", + "id": "473aa5da-55a2-4e32-b6a0-5f2cb1dc9184", "name": "Non-Employee record objects", "originalRequest": { "url": { @@ -102701,12 +102701,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"ullamco consequat nulla\",\n \"accountName\": \"dolor in est cillum\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"Ut_e0\": \"ut ipsum dolor culpa\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"proident qui laboris\",\n \"accountName\": \"labore mollit cillum ipsum\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"utd\": \"mollit in sint commodo eiusmod\",\n \"pariatur_66\": \"do exercitation esse\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n]", + "body": "[\n {\n \"id\": \"officia reprehenderit veniam do sint\",\n \"accountName\": \"voluptate tempor qui pariatur\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"proident_0c\": \"est\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"in\",\n \"accountName\": \"ad\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"sit_44b\": \"et ea mollit proident eu\",\n \"et38b\": \"non Duis labore deserunt\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b9d659bc-5577-4289-a7b4-18b21a4163eb", + "id": "f7a3dc79-c0de-4b94-973d-52f2299f6878", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102795,7 +102795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd551dd4-1920-4d67-a0e1-3b4320464cfa", + "id": "82015dfd-6bf5-4b08-9c4c-2547d473fad3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102884,7 +102884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7de46f37-032d-40ba-ae17-3d7208459ab6", + "id": "d8dcbc27-fe4f-4970-a81d-1913a03dd80a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102973,7 +102973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "749273ea-b2ae-40fc-8532-858a21e638e4", + "id": "b46ba0b1-bc9d-44b2-9561-33a6287a253a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103062,7 +103062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b59e7b46-cdf5-4b49-817e-4ce083dda2be", + "id": "9b563557-d9ca-4f18-be27-2a5e9d4d1e0d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103157,7 +103157,7 @@ } }, { - "id": "8d3c2bd2-ba4a-435e-838c-5c836bfa04eb", + "id": "56349666-35da-4e48-964a-7a8665a97aa5", "name": "Get a Non-Employee Record", "request": { "name": "Get a Non-Employee Record", @@ -103198,7 +103198,7 @@ }, "response": [ { - "id": "c9404f7b-28e8-470c-b959-3a332d6219f0", + "id": "92f307d1-115d-4aed-8869-b0de17ffb08b", "name": "Non-Employee record object", "originalRequest": { "url": { @@ -103237,12 +103237,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"enim\",\n \"accountName\": \"elit id cillum voluptate\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"veniam_64\": \"ex qui Excepteur dolor\",\n \"aliquip0_6\": \"ex irure do\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n}", + "body": "{\n \"id\": \"anim in\",\n \"accountName\": \"dolor\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"irure_21\": \"amet tempor quis laboris\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d70334ac-76d1-4589-9973-c56e5694dbe5", + "id": "07fb43b4-79a3-42b9-95bc-199820f45519", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103286,7 +103286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12dd1fc3-6d6b-4eb8-b260-b0469548dbbc", + "id": "b2247b17-1343-4375-9830-7101b85bdf4e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103330,7 +103330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c70871ca-a382-4dd8-a2ad-e1c1f7011f4b", + "id": "dcd4b23e-5799-4ddd-8f2e-265a710d3724", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103374,7 +103374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "700b0f66-4038-4ffc-8c31-23dced8a0c88", + "id": "130e4c21-8454-45c9-88d4-0be96486c9e6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103418,7 +103418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39661699-18b8-49b8-8469-5aea2b180656", + "id": "2807703c-b71d-4928-9dce-b1425dce04b6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103468,7 +103468,7 @@ } }, { - "id": "1952fec9-2920-4010-8fd3-814d18b75688", + "id": "f2fcbbfa-cb82-4684-9217-903226aed57a", "name": "Update Non-Employee Record", "request": { "name": "Update Non-Employee Record", @@ -103511,7 +103511,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -103522,7 +103522,7 @@ }, "response": [ { - "id": "23e2ba30-2a2f-437c-a87e-9e71dcbe04b0", + "id": "83ed6d4b-86fe-4961-bdef-dcdf3251dc54", "name": "An updated non-employee record.", "originalRequest": { "url": { @@ -103557,7 +103557,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -103574,12 +103574,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"enim\",\n \"accountName\": \"elit id cillum voluptate\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"veniam_64\": \"ex qui Excepteur dolor\",\n \"aliquip0_6\": \"ex irure do\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n}", + "body": "{\n \"id\": \"anim in\",\n \"accountName\": \"dolor\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"irure_21\": \"amet tempor quis laboris\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f667b12d-3436-4f7b-b932-ed2c344fc921", + "id": "da3cbe07-efbf-4c0d-a251-3ad467aecddb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103614,7 +103614,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -103636,7 +103636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa5f9cf5-2c35-4d00-9193-5df4b60cb2e1", + "id": "dd990d34-4815-4b2c-b8ec-f5691ba3f2ac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103671,7 +103671,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -103693,7 +103693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62a59bfc-268b-4999-8613-9b4fe1f2841c", + "id": "d1c98757-2b22-4ebb-a189-3f5a622b14d5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103728,7 +103728,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -103750,7 +103750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "425dd220-9de4-4952-ab5c-d24f7617cde6", + "id": "4d839f39-8aa1-419b-ae03-41850480f0b4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -103785,7 +103785,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -103807,7 +103807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b415cdbc-7b3e-435e-b85c-a72fbad6f33b", + "id": "1630509b-521e-4d5c-8c27-2886c220c8ae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103842,7 +103842,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -103864,7 +103864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "520f0edc-b06a-4f1d-bb16-536c6d800f81", + "id": "06717a2a-6b7a-476e-831d-1e44940d7800", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103899,7 +103899,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -103927,7 +103927,7 @@ } }, { - "id": "06c00279-0060-4a90-a53a-a46513741eb6", + "id": "389fba2d-e415-407d-b187-7f66814805e8", "name": "Patch Non-Employee Record", "request": { "name": "Patch Non-Employee Record", @@ -103981,7 +103981,7 @@ }, "response": [ { - "id": "3aeaad20-a902-49e4-adbb-b36453957736", + "id": "d067198c-d127-4c40-960c-bba9a5ac1c60", "name": "A patched non-employee record.", "originalRequest": { "url": { @@ -104033,12 +104033,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"enim\",\n \"accountName\": \"elit id cillum voluptate\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"veniam_64\": \"ex qui Excepteur dolor\",\n \"aliquip0_6\": \"ex irure do\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n}", + "body": "{\n \"id\": \"anim in\",\n \"accountName\": \"dolor\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"irure_21\": \"amet tempor quis laboris\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2ede5e36-6ada-4cec-b419-3cab1901ad55", + "id": "4c390b81-7c8b-4502-b939-5eecc6a54846", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104095,7 +104095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e06dc284-630f-4a49-a8e4-2bd920829ce8", + "id": "23fd46e6-04f3-4943-a55f-c9e3df88b2aa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104152,7 +104152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d75ba0ec-9f1e-45c0-8347-062c5f4ccda8", + "id": "b46cf8ec-1ee5-4f19-9bc2-cfac9ae62369", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104209,7 +104209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fc958cd-b567-4acd-9f11-0e4f6254c5d2", + "id": "affdcb82-962e-434a-9606-79905fddb832", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -104266,7 +104266,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d759fef9-5f15-488c-9da4-4d6e341cd2da", + "id": "0057b279-8f11-417b-905e-dae84a40de3f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104323,7 +104323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9df5d057-3520-48af-b49c-558d5e5a0de5", + "id": "fc87bc53-2968-4ff0-86bb-c298e93dc18f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104386,7 +104386,7 @@ } }, { - "id": "8bad21b1-7881-4656-8c3a-00cc6e2a43e6", + "id": "f249ffe3-9752-4169-994e-9edc04822cfc", "name": "Delete Non-Employee Record", "request": { "name": "Delete Non-Employee Record", @@ -104427,7 +104427,7 @@ }, "response": [ { - "id": "bc4449f3-952c-4157-b7a9-2d22cac4b499", + "id": "ba5ac1c0-1af5-454e-a5be-d33f6e96f6ca", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -104461,7 +104461,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5dfb00e4-105b-43f2-a0dd-22344fedaf2f", + "id": "9ab97e3b-cc58-443f-a19d-ea54ff5a3ec9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104505,7 +104505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "317bac97-fd77-4e7a-8868-6cadc11e172a", + "id": "624d02c4-9526-47d9-93c8-e29c5f37a2e4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104549,7 +104549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6af5f5ba-6fac-4efe-9630-1bb4077b1c36", + "id": "3e35c0ec-97ea-4d21-844a-6ec675c31f27", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104593,7 +104593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b059a1be-7c13-4244-8e54-0f3ae1c2d2db", + "id": "65523862-f4bf-43a4-ab83-feb41df0af52", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104637,7 +104637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "678febff-18c7-411c-a726-def491843f84", + "id": "a49300cc-71f9-4835-9ad2-068eb4950de9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104687,7 +104687,7 @@ } }, { - "id": "045efc7a-7812-4e78-ae67-2a3f1449f780", + "id": "44f048f2-f816-450a-85c0-2343f754c0ef", "name": "Delete Multiple Non-Employee Records", "request": { "name": "Delete Multiple Non-Employee Records", @@ -104719,7 +104719,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"4ef7d27c-c7b8-69be-6942-ed1da9911e1b\",\n \"e295a7dd-5e7b-bad4-e8ab-332dde8e9f51\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"08c3e245-8355-2f95-a065-88b2e4d4fd7d\",\n \"49739a32-fdf2-f703-11d3-def4e6e1e693\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -104730,7 +104730,7 @@ }, "response": [ { - "id": "8eac47bd-98b0-4b87-970a-957518631b88", + "id": "633d7ed5-0673-44c3-887e-af0b10321f23", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -104761,7 +104761,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"4ef7d27c-c7b8-69be-6942-ed1da9911e1b\",\n \"e295a7dd-5e7b-bad4-e8ab-332dde8e9f51\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"08c3e245-8355-2f95-a065-88b2e4d4fd7d\",\n \"49739a32-fdf2-f703-11d3-def4e6e1e693\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -104777,7 +104777,7 @@ "_postman_previewlanguage": "text" }, { - "id": "bbfc1935-d6be-4464-9a38-bd745bde27e1", + "id": "b1ca1391-dfbc-4523-aa44-86dd0f7440db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104812,7 +104812,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"4ef7d27c-c7b8-69be-6942-ed1da9911e1b\",\n \"e295a7dd-5e7b-bad4-e8ab-332dde8e9f51\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"08c3e245-8355-2f95-a065-88b2e4d4fd7d\",\n \"49739a32-fdf2-f703-11d3-def4e6e1e693\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -104834,7 +104834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7022e988-b11f-4f41-bd33-7e9ece93972d", + "id": "46a27b70-76ea-4bdc-a462-ed765678b061", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104869,7 +104869,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"4ef7d27c-c7b8-69be-6942-ed1da9911e1b\",\n \"e295a7dd-5e7b-bad4-e8ab-332dde8e9f51\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"08c3e245-8355-2f95-a065-88b2e4d4fd7d\",\n \"49739a32-fdf2-f703-11d3-def4e6e1e693\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -104891,7 +104891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d060845c-e455-4544-90fb-b749a98022cc", + "id": "da07b62e-8e50-433b-85a9-94da7fff2104", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104926,7 +104926,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"4ef7d27c-c7b8-69be-6942-ed1da9911e1b\",\n \"e295a7dd-5e7b-bad4-e8ab-332dde8e9f51\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"08c3e245-8355-2f95-a065-88b2e4d4fd7d\",\n \"49739a32-fdf2-f703-11d3-def4e6e1e693\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -104948,7 +104948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52cb7c95-fda2-427e-8a4c-c57d084fc5ef", + "id": "575c7352-abd9-47f2-bdd4-3c21a5898e66", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104983,7 +104983,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"4ef7d27c-c7b8-69be-6942-ed1da9911e1b\",\n \"e295a7dd-5e7b-bad4-e8ab-332dde8e9f51\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"08c3e245-8355-2f95-a065-88b2e4d4fd7d\",\n \"49739a32-fdf2-f703-11d3-def4e6e1e693\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -105005,7 +105005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b330ad31-ca23-4d3a-88d2-73992c57a470", + "id": "34d8ce45-772d-4b9d-aed9-1bbb123f61c0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105040,7 +105040,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"4ef7d27c-c7b8-69be-6942-ed1da9911e1b\",\n \"e295a7dd-5e7b-bad4-e8ab-332dde8e9f51\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"08c3e245-8355-2f95-a065-88b2e4d4fd7d\",\n \"49739a32-fdf2-f703-11d3-def4e6e1e693\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -105068,7 +105068,7 @@ } }, { - "id": "c2a65c1c-4a30-4a62-bfd2-87ed2da3b980", + "id": "f0c760dd-c244-4fc6-827e-04f39bda644e", "name": "Create Non-Employee Request", "request": { "name": "Create Non-Employee Request", @@ -105099,7 +105099,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -105110,7 +105110,7 @@ }, "response": [ { - "id": "4a92c32a-53af-44c8-8994-7a3f0994425c", + "id": "f3042198-1545-4391-8201-164c306bf4c4", "name": "Non-Employee request creation object", "originalRequest": { "url": { @@ -105144,7 +105144,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -105161,12 +105161,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"dolor_7a8\": \"Ut ea\"\n },\n \"approvalItems\": [\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"laborum ipsum\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"elit cupidatat in\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"labore\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n}", + "body": "{\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"anim08\": \"quis sit qui est\"\n },\n \"approvalItems\": [\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"minim ut adipisicing\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"deserunt do\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"Ut dolor\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ace72573-d22c-4649-948d-a54508876d51", + "id": "c79dbc78-bbb1-4892-8612-4eb91b3daf6a", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -105200,7 +105200,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -105222,7 +105222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38c7bdb9-b4d7-4467-9a11-c47212820036", + "id": "0142e47e-1fc8-417a-8c7a-53d670cba7ec", "name": "400.1.409 Reference conflict", "originalRequest": { "url": { @@ -105256,7 +105256,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -105278,7 +105278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45f16dab-daef-49d8-8b8f-62102a568dbb", + "id": "fc509393-2b0a-4997-8953-ca07dabc5b5c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105312,7 +105312,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -105334,7 +105334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5dd4865f-6ebf-4bcb-bcb3-95b0af5e2491", + "id": "2b5e48f9-d81e-4933-a61b-2c055bc5917a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105368,7 +105368,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -105390,7 +105390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83f64c55-6cd0-487d-a716-574cd26d1116", + "id": "27481a8c-d78f-48c4-8727-a3575ff63a12", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105424,7 +105424,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -105446,7 +105446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3712c68-bf13-44b7-a8eb-38647457b18b", + "id": "a4402a4a-92c5-4a5f-8adf-b3e252301f94", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105480,7 +105480,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"esse_be1\": \"quis incididunt occaecat\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"laboris_1\": \"dolor enim\",\n \"dolor50b\": \"Duis sint\",\n \"voluptate725\": \"dolore eu\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -105508,7 +105508,7 @@ } }, { - "id": "582546f9-4498-42c4-808e-874775d09d39", + "id": "3e0de44f-8259-4b79-a81f-0a89d6bcdecd", "name": "List Non-Employee Requests", "request": { "name": "List Non-Employee Requests", @@ -105592,7 +105592,7 @@ }, "response": [ { - "id": "6c5f91f5-b397-408c-8dfa-078c5835b919", + "id": "a80a43b0-7031-417c-8821-74270d3a6ae5", "name": "List of non-employee request objects.", "originalRequest": { "url": { @@ -105685,12 +105685,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"dolor5e3\": \"aliquip mollit nisi\",\n \"amet_7f5\": \"laborum p\",\n \"veniam0\": \"commodo proident irure\",\n \"ut1ea\": \"in non\"\n },\n \"approvalItems\": [\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"REJECTED\",\n \"approvalOrder\": 1,\n \"comment\": \"in Excepteur Ut\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"nisi proident esse incididunt\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"PENDING\",\n \"comment\": \"ut sed\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n },\n {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"ullamcoa6\": \"commodo adipisicing\"\n },\n \"approvalItems\": [\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"NOT_READY\",\n \"approvalOrder\": 1,\n \"comment\": \"dolor Lorem dolore\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"REJECTED\",\n \"approvalOrder\": 1,\n \"comment\": \"minim voluptate laborum veniam amet\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"CANCELLED\",\n \"comment\": \"aliqua cupidatat non pariatur\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n }\n]", + "body": "[\n {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"eu_7a\": \"exercitation enim sint\"\n },\n \"approvalItems\": [\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"deserunt nisi mag\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"NOT_READY\",\n \"approvalOrder\": 1,\n \"comment\": \"nulla\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"PENDING\",\n \"comment\": \"minim enim\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n },\n {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"ipsum_41\": \"amet qui officia nulla\",\n \"sed__\": \"amet\"\n },\n \"approvalItems\": [\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"Ut\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"anim Duis aliqua\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"inci\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "53b341e4-1818-47ef-904c-2a6ca23a5e45", + "id": "0c6b1fc2-4fd0-4858-a424-2c28c3ac476d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105788,7 +105788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bfb673a-d683-4ff9-9f36-8aa6adfae178", + "id": "4eff102e-4d28-4e1e-a609-181ff6cec087", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105886,7 +105886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5fed032-dfe4-4d40-92b3-94090390b568", + "id": "2265881f-ab9d-470c-af40-130e41eb8500", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105984,7 +105984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f1acc91-ff50-4ef0-9eff-22bcb225d2de", + "id": "2d8299c1-7892-48d5-b1da-a764354a1018", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106082,7 +106082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80dce263-c673-49e7-8f4a-d546dca7489b", + "id": "e6057aa2-411c-4d2f-a8e5-3198540b7da2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106186,7 +106186,7 @@ } }, { - "id": "1db04e31-f2dd-45cd-929b-5b7fbb3b4597", + "id": "bead73ee-6a54-4f76-b5e0-a5e27b1b9501", "name": "Get a Non-Employee Request", "request": { "name": "Get a Non-Employee Request", @@ -106227,7 +106227,7 @@ }, "response": [ { - "id": "d4b7b2ec-c528-4b66-a8cf-804545c6515e", + "id": "59a36e24-ab3b-4346-85d7-d72f267300f9", "name": "Non-Employee request object.", "originalRequest": { "url": { @@ -106266,12 +106266,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"dolor_7a8\": \"Ut ea\"\n },\n \"approvalItems\": [\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"laborum ipsum\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"elit cupidatat in\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"labore\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n}", + "body": "{\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"anim08\": \"quis sit qui est\"\n },\n \"approvalItems\": [\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"minim ut adipisicing\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"deserunt do\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"Ut dolor\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "15e4ac0b-315f-46e1-847e-59c16db967da", + "id": "547d085d-614c-449f-96b0-0bac9a5666db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106315,7 +106315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb2d19d2-cad3-434d-a5d6-ddfcfb29f2e1", + "id": "f71442ec-447a-43c6-96da-7bbcb5b1dbd9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106359,7 +106359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "605fcaad-bfc0-4c59-aa21-d6dddce839e0", + "id": "95f3fbec-c01a-463d-a612-281f394af548", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106403,7 +106403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8e15482-db2d-4477-98b8-82293b3aaf6d", + "id": "be35ce7b-374c-4afa-a062-fa0e55f77f1f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -106447,7 +106447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71f4b07c-3285-46c5-aad6-b680a4b42517", + "id": "b9b232bf-e130-435d-868e-28a125142ca4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106491,7 +106491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76a72448-b98a-4986-baa8-61c58a631673", + "id": "bea567b3-3bba-4d21-a054-95f3cf6d339d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106541,7 +106541,7 @@ } }, { - "id": "73bc09c3-54fa-4ea5-bda2-55e8deba444a", + "id": "ef9ec490-bde0-48c7-8fe9-93d0b58c4e2a", "name": "Delete Non-Employee Request", "request": { "name": "Delete Non-Employee Request", @@ -106582,7 +106582,7 @@ }, "response": [ { - "id": "5bd77d40-e7bd-44de-bafe-ea48cbbb2551", + "id": "836f600d-e542-41a9-9902-fd8eb50ea5e2", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -106616,7 +106616,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a80c26db-4f7a-4550-9e8a-bedd7229f5d3", + "id": "08624990-33ae-494d-b453-5b687f0b1b2a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106660,7 +106660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c992c775-6b05-41e0-9ec3-21e5cce2db90", + "id": "896b52eb-eca8-47fc-9ffc-2f48ab169fa9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106704,7 +106704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a24aa997-36e5-4265-a8f8-4af49e096a66", + "id": "4947010b-031a-4a0e-a4bf-8ceeafb77f7d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106748,7 +106748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81043a2c-5f74-4faf-a5a1-e6f5a4a90c75", + "id": "c65ddd82-8284-48e3-9935-898324712ea7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -106792,7 +106792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7f49cf6-3577-4eb4-a2cf-c0b993c83a7b", + "id": "6b7bbb1c-f7e1-415c-b502-cf734cac7022", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106836,7 +106836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5491aa0-a9f9-4f02-bc7b-f413fd11dfcd", + "id": "b0fc3516-00e3-46f5-a29b-7d7c27620785", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106886,7 +106886,7 @@ } }, { - "id": "62c527bd-a330-497c-a0c4-2e9e0b96b24e", + "id": "c69f7f5e-15f3-435e-8aa8-dc237330d1a5", "name": "Get Summary of Non-Employee Requests", "request": { "name": "Get Summary of Non-Employee Requests", @@ -106928,7 +106928,7 @@ }, "response": [ { - "id": "e7c7ff76-aadf-418d-b000-01ae819eb4dc", + "id": "febbd3c0-5857-41a6-b617-927718eedbf2", "name": "Non-Employee request summary object.", "originalRequest": { "url": { @@ -106968,12 +106968,12 @@ "value": "application/json" } ], - "body": "{\n \"approved\": -51611142.5237852,\n \"rejected\": 72291204.35504189,\n \"pending\": 48678668.32543796,\n \"nonEmployeeCount\": 56258107.22453949\n}", + "body": "{\n \"approved\": -74233729.09950596,\n \"rejected\": -80401075.53590596,\n \"pending\": -48183643.38062819,\n \"nonEmployeeCount\": -70234894.12690553\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cc797902-a4da-418a-83e8-599243c5d177", + "id": "ea481e7d-bfa4-45a8-97a1-064260ebf38a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107018,7 +107018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1085ca82-02a5-4a26-90ee-ca6ad71396ac", + "id": "469ba4f1-d88c-4606-82a5-81bd1b648495", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107063,7 +107063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b72c22af-9262-45dc-98f6-76d6f5d493b3", + "id": "554486e5-0611-4a8c-9dec-22ba8eacbf11", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107108,7 +107108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85db2231-aa46-44df-851a-f5a764f1450d", + "id": "75f9cbd5-8a31-4a75-b7f1-023758a5344d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107153,7 +107153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4340f892-4cb5-4005-87fb-43639d1ef4d3", + "id": "01e1dd04-960c-4175-8a13-06a8c2ab2a7c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107204,7 +107204,7 @@ } }, { - "id": "902940da-7af1-4070-9cda-85cd9d420e28", + "id": "c0c6d1e7-4d83-4e69-b2ba-3d0c89b77c82", "name": "Create Non-Employee Source", "request": { "name": "Create Non-Employee Source", @@ -107246,7 +107246,7 @@ }, "response": [ { - "id": "1c59e46f-8d7d-4a2f-9018-32a8d4cc5714", + "id": "5c9f89a2-6588-48c2-8618-41a7f5276ed0", "name": "Created non-employee source.", "originalRequest": { "url": { @@ -107302,7 +107302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9ecec5d-96e8-4f7c-8fb7-54a564c410a4", + "id": "a67ba5d7-e814-4264-bc38-18f171fb7c06", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107358,7 +107358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e176c7ab-3263-4578-be34-840a2a11a1ab", + "id": "b41911a3-2ebf-4b4e-b9c9-66600cef1026", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107414,7 +107414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41b5f1b9-ad02-4953-b094-7fbaeecf9d16", + "id": "bc1cfefa-7c6a-4514-9a0c-6c3fa758929b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107470,7 +107470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ddc09ef-b594-471b-a9b5-91e93361b372", + "id": "17034e4b-8852-40e1-bfd1-80a2e9bcf1a7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107526,7 +107526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2217b8a2-7e03-420f-8205-1a81697e2dd2", + "id": "c2f77f3c-8bd7-443c-840c-63b43b10a306", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107588,7 +107588,7 @@ } }, { - "id": "5ce4d99b-cc08-4b69-93a0-c440025b0f46", + "id": "4520cb60-94cf-45dc-98a0-f106fc619d89", "name": "List Non-Employee Sources", "request": { "name": "List Non-Employee Sources", @@ -107672,7 +107672,7 @@ }, "response": [ { - "id": "6cadb4a3-bf83-469b-befd-11220690e8ff", + "id": "f14b9bf3-0a62-4965-a76c-d8abef67452b", "name": "List of non-employee sources objects.", "originalRequest": { "url": { @@ -107770,7 +107770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfa11742-43df-482e-9e7d-6826c6b64e90", + "id": "ea2968b5-7471-4468-9d34-eb27345a7257", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107868,7 +107868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb7628c5-35bb-455e-9b02-5b8d56763121", + "id": "30877463-90c0-4eef-811f-6d2436386ff5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107966,7 +107966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e01a8827-2d1f-490c-97d7-c3192cf323a8", + "id": "7951da0e-9fdd-49ef-8934-501c065764f6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108064,7 +108064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fe0e234-f5eb-460b-9fe5-8dd5f4640acd", + "id": "6a6fd3d1-6272-4e1b-a1ab-4cc16a8c8695", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108162,7 +108162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32e5ba9c-b8c7-44a2-9829-9539da0429f1", + "id": "0cab2700-dc35-4704-b4c4-5d8fc4ac707d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108266,7 +108266,7 @@ } }, { - "id": "1547a5a0-5754-4fca-8db4-91f71ec0a9e5", + "id": "f4d08971-eab3-4df8-9d44-a353e8eb4c36", "name": "Get a Non-Employee Source", "request": { "name": "Get a Non-Employee Source", @@ -108307,7 +108307,7 @@ }, "response": [ { - "id": "ca58e5d2-d929-42f2-99b6-33934386b342", + "id": "18280860-8413-4a9d-8800-b20e4f2f5e04", "name": "Non-Employee source object.", "originalRequest": { "url": { @@ -108351,7 +108351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdaa765d-9bfd-430d-91bb-ba2fb1404561", + "id": "9d0da938-9f7e-4d8d-9c07-f8ebdb675eb0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108395,7 +108395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1754b7b-8bfe-4444-b675-ef63d10635bf", + "id": "1ed369da-1a8d-402e-8190-eb5385b66e00", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108439,7 +108439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48f93b70-165e-4be0-b393-8e0b67dcd865", + "id": "700ca175-e73e-4c1f-b5b6-6a702edf5c87", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108483,7 +108483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b63fcc6f-1a37-4278-aa79-9631b90425ce", + "id": "508e4de2-7694-4b37-bfa8-980ae33a492f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108527,7 +108527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb448d14-f996-470a-94f0-bb3e9ce73be4", + "id": "b0878b32-a066-447b-878a-0a920de71a82", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108577,7 +108577,7 @@ } }, { - "id": "8da24d86-8999-42be-b760-6fd2e2cbfe9e", + "id": "f7f52e02-10a1-49e6-b440-4cfc5e02ea03", "name": "Patch a Non-Employee Source", "request": { "name": "Patch a Non-Employee Source", @@ -108631,7 +108631,7 @@ }, "response": [ { - "id": "4c163a3c-8ad7-4b69-adf3-1f531adce86a", + "id": "7f42b0ba-1750-4a31-a2d6-f4299be35de3", "name": "A patched non-employee source object.", "originalRequest": { "url": { @@ -108688,7 +108688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbd38374-d7ad-40ba-9925-e5999f6dff65", + "id": "00afb70e-5b20-467f-952d-84a004a9770c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108745,7 +108745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0167e4b-9fa0-410b-8571-984854d24a4a", + "id": "202660cc-94b6-41b9-a009-3fbe92d40fdf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108802,7 +108802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b085418-5421-45b4-b1a8-ed1209f3facf", + "id": "56df0f63-19c6-4a6a-b17b-7af80adc94fa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108859,7 +108859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b37f92a-9bb5-4885-a130-3743dbcd6ac7", + "id": "34d3d179-015f-46e0-b0ea-67b2eaa4fb8c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108916,7 +108916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6775f1e7-6f7f-4f26-acee-a02fce1b5f27", + "id": "95c88897-0a43-409f-81f2-5581aba17387", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108979,7 +108979,7 @@ } }, { - "id": "672be571-9d55-4492-9170-1e72e8aa070c", + "id": "1740a77e-5a38-4857-b881-eaa1f2e4c8ce", "name": "Delete Non-Employee Source", "request": { "name": "Delete Non-Employee Source", @@ -109020,7 +109020,7 @@ }, "response": [ { - "id": "6a3ea34f-afb0-4ec9-aeda-63d585fc59a6", + "id": "419994fa-da33-4116-b01e-ae7ab4f98d55", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -109054,7 +109054,7 @@ "_postman_previewlanguage": "text" }, { - "id": "bb2aa234-ed81-4b5c-a070-aa1ec4a0f3bd", + "id": "d4f50c87-4aa9-4b22-9c44-8db11d3c74e1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109098,7 +109098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "134080bd-7d57-4e5c-b639-7e48a1795e1c", + "id": "5e4ee4d7-7a32-47c3-b3c4-225c09d70f2c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109142,7 +109142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5067ab2d-f983-4606-9ab5-70b140276c16", + "id": "09762e16-4c37-43bb-83a5-d438b8bc222c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109186,7 +109186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b27859bb-719c-425c-bb0e-d88709e612ca", + "id": "93506255-43de-4aa0-b327-8f001dbb25ff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109230,7 +109230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ac638f9-0282-4f90-9da8-3a7a83d5ee26", + "id": "57b3cf32-1e80-4317-b333-1513928ac1e6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109280,7 +109280,7 @@ } }, { - "id": "a006aae8-68f0-406e-a04e-f5258ab7878d", + "id": "c644af52-71e8-4fa1-a4ad-06f136882923", "name": "Exports Non-Employee Records to CSV", "request": { "name": "Exports Non-Employee Records to CSV", @@ -109323,7 +109323,7 @@ }, "response": [ { - "id": "013a2690-34a4-42ef-92b6-b07dd37883bf", + "id": "cd6370bf-9724-4f45-91e2-141cbc40bb21", "name": "Exported CSV", "originalRequest": { "url": { @@ -109369,7 +109369,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6834e4e8-f21d-4604-b421-9981664b1eae", + "id": "b5f4d723-9a07-4bd8-8366-83a28c805b5c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109415,7 +109415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "babc1db2-2273-4371-b606-cb9c00791304", + "id": "2160eb77-9270-442f-ace6-2ee3b910e20a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109461,7 +109461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90978c0b-d72a-4eb6-ad76-18a4b2634e37", + "id": "fe00a586-0ba5-49d1-ac30-2be4361463d2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109507,7 +109507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef7235a5-83fd-4285-86af-62dde265e92d", + "id": "dc73e1ee-f479-4124-8ae8-4996c2e176c2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -109553,7 +109553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f4da391-1c17-49e1-a221-632f82620d7a", + "id": "6725d1dc-6b19-4560-b99b-f087e9e4709c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109599,7 +109599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd3e75ec-3bd9-4344-99d3-18e1d0386392", + "id": "0b449e4e-dc2e-4646-a40e-33d08e82effe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109651,7 +109651,7 @@ } }, { - "id": "f007ebee-0d35-4806-a842-05e0936d75fb", + "id": "05b14e89-8132-490e-8ac2-159ac99f89f2", "name": "Imports, or Updates, Non-Employee Records", "request": { "name": "Imports, or Updates, Non-Employee Records", @@ -109702,7 +109702,7 @@ "type": "text/plain" }, "key": "data", - "value": "et anim consequat", + "value": "Ut deserunt enim", "type": "text" } ] @@ -109710,7 +109710,7 @@ }, "response": [ { - "id": "cfffe8c1-683e-4d05-92c3-495288b8c517", + "id": "af79795e-d53c-4763-843b-a655f3e94922", "name": "The CSV was accepted to be bulk inserted now or at a later time.", "originalRequest": { "url": { @@ -109753,7 +109753,7 @@ "type": "text/plain" }, "key": "data", - "value": "et anim consequat", + "value": "Ut deserunt enim", "type": "text" } ] @@ -109772,7 +109772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36b307be-4990-45d7-90c4-71afbe4e6444", + "id": "31984601-79a1-4a0c-97c7-1945a9800e47", "name": "Client Error - Returned if the request body is invalid.\nThe response body will contain the list of specific errors with one on each line.\n", "originalRequest": { "url": { @@ -109815,7 +109815,7 @@ "type": "text/plain" }, "key": "data", - "value": "et anim consequat", + "value": "Ut deserunt enim", "type": "text" } ] @@ -109834,7 +109834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3eab7aba-4cbf-4bc2-9db4-508f4a02db7a", + "id": "ae6d90ec-42c4-4d98-9498-f06b5b08477b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109877,7 +109877,7 @@ "type": "text/plain" }, "key": "data", - "value": "et anim consequat", + "value": "Ut deserunt enim", "type": "text" } ] @@ -109896,7 +109896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a8b9806-54b5-43a3-8088-ce1646c12793", + "id": "be317a6b-40c5-4793-9363-41a16b809e31", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109939,7 +109939,7 @@ "type": "text/plain" }, "key": "data", - "value": "et anim consequat", + "value": "Ut deserunt enim", "type": "text" } ] @@ -109958,7 +109958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84cd3aec-a9fe-4c00-a2fc-b6877fdfd9e3", + "id": "0e8a9f2a-8fb5-4126-98c6-27f5aee98a1e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -110001,7 +110001,7 @@ "type": "text/plain" }, "key": "data", - "value": "et anim consequat", + "value": "Ut deserunt enim", "type": "text" } ] @@ -110020,7 +110020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "628154fb-ec5a-42a6-b3ca-413ca356eed9", + "id": "6b2576e3-1626-42e7-852f-9b318f286010", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110063,7 +110063,7 @@ "type": "text/plain" }, "key": "data", - "value": "et anim consequat", + "value": "Ut deserunt enim", "type": "text" } ] @@ -110082,7 +110082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7aed794-6ddb-446f-b680-5faf7eb158ba", + "id": "feb618fc-3579-4617-bb14-6bd172d20251", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110125,7 +110125,7 @@ "type": "text/plain" }, "key": "data", - "value": "et anim consequat", + "value": "Ut deserunt enim", "type": "text" } ] @@ -110150,7 +110150,7 @@ } }, { - "id": "0ffd3575-1258-4d2c-ab73-c55752866eb1", + "id": "d18a81d1-1227-42c5-a344-4958b087b4c5", "name": "Bulk upload status on source", "request": { "name": "Bulk upload status on source", @@ -110193,7 +110193,7 @@ }, "response": [ { - "id": "d4e6156b-9743-448b-b599-a78d6d047f82", + "id": "aaf40355-02ce-4378-827e-285acf8f6430", "name": "Status of the newest bulk-upload job, if any.", "originalRequest": { "url": { @@ -110239,7 +110239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c8d2c78-b96e-47f3-8314-37e4d6f3d4aa", + "id": "91f39c58-ad57-400b-bb32-d1b810d35dff", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110285,7 +110285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba231688-8c13-44ad-8952-455bac585235", + "id": "53372c08-3194-4c19-bd1d-393a70e187f7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110331,7 +110331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "deb9b767-b231-4ff6-aea8-ebd1c3b0a4bb", + "id": "8b969abd-feb2-4c6c-bc4f-46e8b7653358", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110377,7 +110377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e9e3482-9e7d-45ec-b9c1-1b579af1b5c6", + "id": "57e2827c-a6be-4a5a-811f-a10ea201d44f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110423,7 +110423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd41fc89-f368-4463-a8cf-2267c356cabb", + "id": "5b2891f2-fab0-4b80-80c7-d891ba8f9dea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110475,7 +110475,7 @@ } }, { - "id": "d308c683-d98b-4a7d-b125-7c1bfa8a229c", + "id": "0e771ba3-5b3e-4ef6-b0cf-6242283aba1d", "name": "Exports Source Schema Template", "request": { "name": "Exports Source Schema Template", @@ -110518,7 +110518,7 @@ }, "response": [ { - "id": "1b7a72c8-0ed3-4d19-a14d-7605e661ed7c", + "id": "ccb5dfd1-82a2-4e1d-8aa8-a3d58cfd38f9", "name": "Exported Source Schema Template", "originalRequest": { "url": { @@ -110564,7 +110564,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f26b8496-51ae-4bc9-91ac-c30d83c4deaa", + "id": "f436145d-1ecb-4a71-afad-ed48919630b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110610,7 +110610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73096a7b-a7e9-42bd-b65a-0ec2f538c0fd", + "id": "f9bc4df5-6815-4051-8aa9-6476b916d57e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110656,7 +110656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a22f3c9c-051f-4463-9c1f-c719539cc449", + "id": "fe3721ee-35c8-4e2c-b7cb-40fc2a20f9be", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110702,7 +110702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f71d2079-de1c-4aec-8379-faa2dbd044a0", + "id": "9a5f218e-6930-4629-a588-16555ea0c6d3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -110748,7 +110748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dbe574c-364a-4a2f-bc7a-afd5e5dc79ed", + "id": "9e255cc4-4deb-4720-b63a-d1403807948b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110794,7 +110794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b0e7ea8-e412-45c7-ad1e-1dfe99a7798f", + "id": "e3d2ef57-7b35-4fc9-bff7-08767c5ff8ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110846,7 +110846,7 @@ } }, { - "id": "1b665a78-5c3e-46e4-ba48-d2d8ab995b28", + "id": "0d2ca726-8296-4da4-9fb0-a01a681ce03a", "name": "Get List of Non-Employee Approval Requests", "request": { "name": "Get List of Non-Employee Approval Requests", @@ -110930,7 +110930,7 @@ }, "response": [ { - "id": "ee82e8eb-6092-4330-a3cb-4edab89697b6", + "id": "89489c8b-2162-4dc3-8514-339bee215055", "name": "List of approval items.", "originalRequest": { "url": { @@ -111023,12 +111023,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"ad Ut anim\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"labore exercitation ani\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"nulla laborum magna elit\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"irure sunt commodo ut\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"NOT_READY\",\n \"approvalOrder\": 1,\n \"comment\": \"Lorem \",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"elit exercitation\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"qui quis Duis\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"reprehenderit laborum\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "006436cc-aba7-49cf-837f-a59e91847b96", + "id": "a3ad0388-c1a3-49a7-951a-e37622439cb4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111126,7 +111126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9aac64d4-d410-42e8-9123-25eefc97f604", + "id": "65fa004b-37c2-4296-ab1f-13ec59676972", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111224,7 +111224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23e06f23-e46b-4ab2-bb38-471db90420e0", + "id": "282a0e61-269e-499f-98fc-22f4959da2f3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111322,7 +111322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33043a51-ba06-4b59-8d30-c2c87b6ff654", + "id": "c106670b-01eb-416c-838a-386da72c277a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111420,7 +111420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7dcdcb0-6162-430a-9562-c75d8ad87871", + "id": "dd292ef1-6b56-4239-a50a-ed075af0e531", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111524,7 +111524,7 @@ } }, { - "id": "5c0498e9-1f2d-46c8-bb4e-f45d33787965", + "id": "753e0647-5ab9-43ad-9d24-bc7ea9a6fcde", "name": "Get a non-employee approval item detail", "request": { "name": "Get a non-employee approval item detail", @@ -111575,7 +111575,7 @@ }, "response": [ { - "id": "e0459547-6c1b-471f-9c4d-a27921791c72", + "id": "9a4dce10-2f14-47bd-82ec-300f47c76394", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -111624,12 +111624,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"ex ve\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"ad exercitation irure et\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n },\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"schemaAttributes\": [\n {\n \"type\": \"TEXT\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n },\n {\n \"type\": \"TEXT\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n }\n ]\n },\n \"data\": {\n \"est1\": \"labore\"\n },\n \"approvalStatus\": \"REJECTED\",\n \"comment\": \"in qui sed nisi\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24\",\n \"endDate\": \"2021-03-25\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n }\n}", + "body": "{\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"NOT_READY\",\n \"approvalOrder\": 1,\n \"comment\": \"nisi adipisicing proident\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"cillum elit incididunt\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n },\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"schemaAttributes\": [\n {\n \"type\": \"TEXT\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n },\n {\n \"type\": \"DATE\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n }\n ]\n },\n \"data\": {\n \"veniam_fa4\": \"anim eu\",\n \"sit_b\": \"deserunt elit fugiat nostrud et\",\n \"aliquip_4\": \"commodo non in\"\n },\n \"approvalStatus\": \"NOT_READY\",\n \"comment\": \"eiusmo\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24\",\n \"endDate\": \"2021-03-25\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "04bfd49a-e735-442e-b5fa-299ca920b493", + "id": "d139bec0-abd2-41c7-a187-eaa702785297", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111683,7 +111683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a0fd618-55e9-4bac-9321-10bec71e4b00", + "id": "f5e9ec26-8778-42cb-8567-90ef57fd32ae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111737,7 +111737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2f04036-ed30-4018-bc09-6c115280031e", + "id": "607d912d-b28b-4e04-8168-c8fd3e0e01ee", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111791,7 +111791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53f58387-868c-4ff2-a583-720ac5453edf", + "id": "70e8769a-493e-4d4d-b5c4-61a298ac7105", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111845,7 +111845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f73f220-f489-495d-9664-dacafe21e860", + "id": "354d790f-b416-4294-a8f5-42ddae436609", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111905,7 +111905,7 @@ } }, { - "id": "ca4f1fcf-9bfa-4e5c-963e-8d4216d765cf", + "id": "fe26db0c-61aa-4097-9204-1c7a94a2a30f", "name": "Approve a Non-Employee Request", "request": { "name": "Approve a Non-Employee Request", @@ -111926,7 +111926,7 @@ "variable": [ { "type": "any", - "value": "in aute elit ullamco", + "value": "magna dolore deserunt", "key": "id", "disabled": true, "description": { @@ -111949,7 +111949,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ut dolore minim\"\n}", + "raw": "{\n \"comment\": \"aute\"\n}", "options": { "raw": { "headerFamily": "json", @@ -111960,7 +111960,7 @@ }, "response": [ { - "id": "5aaa68af-9b69-4819-a13f-3335532c3749", + "id": "5c612a31-9129-43e5-8fd6-aff2f0dd266c", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -111996,7 +111996,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ut dolore minim\"\n}", + "raw": "{\n \"comment\": \"aute\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112013,12 +112013,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"culpa\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"commodo dolor \",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n}", + "body": "{\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"mollit nostrud laborum Duis\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"id dolore proident\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "607e3fd1-c5db-4a08-9af6-89c345d50558", + "id": "8a9170df-882f-4d69-b7db-d681459d1f26", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112054,7 +112054,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ut dolore minim\"\n}", + "raw": "{\n \"comment\": \"aute\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112076,7 +112076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb54e876-8af0-4b17-88e2-4c75a131e020", + "id": "50a0de9d-84b3-4df6-9658-c4566ff52b26", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112112,7 +112112,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ut dolore minim\"\n}", + "raw": "{\n \"comment\": \"aute\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112134,7 +112134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "951f477a-c91b-415c-9cc9-b2c22d9552c7", + "id": "b2fdf112-39aa-4802-8e64-5b13771c83c4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112170,7 +112170,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ut dolore minim\"\n}", + "raw": "{\n \"comment\": \"aute\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112192,7 +112192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d727757-c159-48be-8f01-b1c1314fb445", + "id": "40bf4c8e-7d06-4472-a94d-edde785300a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112228,7 +112228,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ut dolore minim\"\n}", + "raw": "{\n \"comment\": \"aute\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112250,7 +112250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfc09d72-a41b-473c-9ac8-34389d7d5f39", + "id": "7433ffa9-49e2-48ba-a89e-f796e489b3d2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112286,7 +112286,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ut dolore minim\"\n}", + "raw": "{\n \"comment\": \"aute\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112314,7 +112314,7 @@ } }, { - "id": "8c6c400d-e88a-4c6a-9155-dbd2f150ca2e", + "id": "00bef90d-f865-4a73-8788-f0557d5dc253", "name": "Reject a Non-Employee Request", "request": { "name": "Reject a Non-Employee Request", @@ -112335,7 +112335,7 @@ "variable": [ { "type": "any", - "value": "in aute elit ullamco", + "value": "magna dolore deserunt", "key": "id", "disabled": true, "description": { @@ -112358,7 +112358,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"quis labore occaecat\"\n}", + "raw": "{\n \"comment\": \"non Duis elit cillum\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112369,7 +112369,7 @@ }, "response": [ { - "id": "45765bbe-47f2-4c74-8d40-5d9b630627d9", + "id": "e627b698-b95c-460c-91c9-440b6c0e67c0", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -112405,7 +112405,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"quis labore occaecat\"\n}", + "raw": "{\n \"comment\": \"non Duis elit cillum\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112422,12 +112422,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"culpa\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"commodo dolor \",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n}", + "body": "{\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"mollit nostrud laborum Duis\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"id dolore proident\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8da086ba-eadb-4830-8f60-bbf460135a54", + "id": "b63a89c6-d475-4f79-9d65-f85a2776156a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112463,7 +112463,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"quis labore occaecat\"\n}", + "raw": "{\n \"comment\": \"non Duis elit cillum\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112485,7 +112485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08ac888f-b2ad-4914-8cd4-1351f80f4e92", + "id": "800ffd48-5f96-452d-be9b-aa904b8d6424", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112521,7 +112521,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"quis labore occaecat\"\n}", + "raw": "{\n \"comment\": \"non Duis elit cillum\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112543,7 +112543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9010f26a-0ccc-4873-9f87-a9997ec841cc", + "id": "61852055-047b-467b-9bf9-aeb370cba15b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112579,7 +112579,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"quis labore occaecat\"\n}", + "raw": "{\n \"comment\": \"non Duis elit cillum\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112601,7 +112601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17240f2e-4806-499e-ba46-fcd0ed7acdd4", + "id": "9e8783bd-1d32-43cb-82e6-eda8d2cabab4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112637,7 +112637,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"quis labore occaecat\"\n}", + "raw": "{\n \"comment\": \"non Duis elit cillum\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112659,7 +112659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0280f73d-085d-4f04-93a9-d4c96a09e2ec", + "id": "a38a201f-6054-42f0-b18b-09faafe2cf9b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112695,7 +112695,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"quis labore occaecat\"\n}", + "raw": "{\n \"comment\": \"non Duis elit cillum\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112723,7 +112723,7 @@ } }, { - "id": "54be32e0-4cbe-47d3-ab53-e3d22b58f915", + "id": "ebceca7d-4fc2-4395-9e2f-abf7b01a1e13", "name": "Get Summary of Non-Employee Approval Requests", "request": { "name": "Get Summary of Non-Employee Approval Requests", @@ -112765,7 +112765,7 @@ }, "response": [ { - "id": "97d21adc-696e-47b5-a073-dc45969503cc", + "id": "5a03df62-acf6-42e1-8fde-92f3ba714c29", "name": "summary of non-employee approval requests", "originalRequest": { "url": { @@ -112805,12 +112805,12 @@ "value": "application/json" } ], - "body": "{\n \"approved\": 52302293.61458543,\n \"pending\": 96283665.16629004,\n \"rejected\": -93368075.31811236\n}", + "body": "{\n \"approved\": 43294269.22850236,\n \"pending\": 14141513.957417965,\n \"rejected\": -45332746.992784314\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "663c644f-ccd2-43dd-a5b1-b7269da3a6ea", + "id": "3684d6ff-f6db-4a83-a1b5-94a8f525b2e7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112855,7 +112855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d244bc31-6925-44b8-b53f-8ec36b1a072f", + "id": "e58d4b77-f168-43f4-b28e-f9dc556e2f9c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112900,7 +112900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "674bcf67-1d4f-4421-a3cd-b046a25af804", + "id": "339bdee3-f010-4a54-8f1e-0da786443084", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112945,7 +112945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dffceb6a-97be-4fdd-8697-ee749e5d3030", + "id": "629e5c30-950e-41c7-a5d8-3091110a8457", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112990,7 +112990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2568cf2e-ff1f-41e7-a903-5473ae5ac950", + "id": "67b3b42b-79cc-4d5e-87aa-481daf3dcb96", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113041,7 +113041,7 @@ } }, { - "id": "a3009a15-0b53-4494-bad8-9b403af9e151", + "id": "6b8b0e4e-3d04-4764-97da-3058ae231efe", "name": "List Schema Attributes Non-Employee Source", "request": { "name": "List Schema Attributes Non-Employee Source", @@ -113083,7 +113083,7 @@ }, "response": [ { - "id": "4e57aabe-433b-481a-9501-ef0502ce6843", + "id": "1d24df64-1f04-4c76-8ada-ab4de04afc71", "name": "A list of Schema Attributes", "originalRequest": { "url": { @@ -113128,7 +113128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b5a4204-126c-4d2a-a5e2-b8a32a6c8ad5", + "id": "86da5b03-c672-47bd-bc7f-b4248a9ae781", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113173,7 +113173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fc88c9d-232b-411b-94c7-15def1d7e88c", + "id": "eb831b17-b025-4b38-a4e9-c309cb826fbd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113218,7 +113218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f6c5e06-0a92-4765-bf18-6712dc37732d", + "id": "fafe0e31-2a27-4a15-91b2-9197722f5e48", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113263,7 +113263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df9aa450-9ad3-42a6-9c5d-d9d484cf140c", + "id": "899c2919-7e6d-4d30-a882-3c35c8437fa4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -113308,7 +113308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ac91dc0-9a7f-45c4-8d21-b888bc926e5a", + "id": "dd4fd16f-0218-4136-aedf-3f8a0ac1fb95", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113353,7 +113353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9119cbdd-f33c-46fb-a61e-dd7ce073f352", + "id": "1d9a3469-1ed2-4995-8e52-23bdd0c686fe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113404,7 +113404,7 @@ } }, { - "id": "ac09b099-5ece-48ef-a2c3-9ee10cd0338d", + "id": "548ee757-9d41-4a00-9893-5d4ee9c7dd46", "name": "Create Non-Employee Source Schema Attribute", "request": { "name": "Create Non-Employee Source Schema Attribute", @@ -113459,7 +113459,7 @@ }, "response": [ { - "id": "c401be16-5648-48cd-9415-83e065644a17", + "id": "b0254a58-16e2-4c39-be6d-607e490ae7f3", "name": "Schema Attribute created.", "originalRequest": { "url": { @@ -113512,12 +113512,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"IDENTITY\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n}", + "body": "{\n \"type\": \"DATE\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d3d41da9-1db5-459c-aa87-048dd88af5c2", + "id": "f9ef730b-5665-4944-981b-cb2b9e1f5c68", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113575,7 +113575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fb0f4dd-0fc3-46a0-a137-734f5f307526", + "id": "8fb4a122-c851-44ac-9545-fddec9c3ec65", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113633,7 +113633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06744697-8edb-454c-8363-f512028b1a36", + "id": "537980f4-1e94-41af-9cad-2758b7554bec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113691,7 +113691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e52b1f22-44c1-447e-8d0b-b34a64c81949", + "id": "49bc8c8c-aaad-43c2-872e-63e25f7e05f9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113749,7 +113749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74e30c72-668c-4bc7-8762-a57ba7b7b85e", + "id": "a9192181-d58e-400a-ba33-85a0a2fa41ab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113813,7 +113813,7 @@ } }, { - "id": "8e7e17b5-64c8-4bf8-80d0-1895c5a334a5", + "id": "78509f9e-12a0-41fb-9aa0-cf5c0a05938e", "name": "Delete all custom schema attributes", "request": { "name": "Delete all custom schema attributes", @@ -113855,7 +113855,7 @@ }, "response": [ { - "id": "301b293f-cb05-46fe-8ecc-b84076424ac1", + "id": "61621850-7fd8-45c3-8f64-87dae44345e1", "name": "All custon Schema Attributes were successfully deleted.", "originalRequest": { "url": { @@ -113890,7 +113890,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e37a2d41-c864-4cb1-bb6b-3ae1fa225cc7", + "id": "aac8f4b0-2564-4baa-84ee-57b606cd3fb3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113935,7 +113935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46bb0fff-d61b-458d-ab99-40f74bb06033", + "id": "4e3387ba-187d-478c-a4e8-f739d458d079", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113980,7 +113980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c863ea5-4ada-4a4b-bb2d-c32dee8e956d", + "id": "95426ff0-29ff-4056-a318-77b5bbddad98", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114025,7 +114025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33c20ccd-e81c-4063-bf2c-063c4934dcc0", + "id": "64e437cf-49f1-4ac6-88ce-918b4f194425", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114070,7 +114070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad257266-95af-4795-af01-6ed20dcf12e1", + "id": "236a54bd-f47d-478c-b548-f009134e7026", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114121,7 +114121,7 @@ } }, { - "id": "49a5bb41-c14e-4f54-89f3-f2fd8d7e9f81", + "id": "3b989cd2-fdc2-41a4-b164-c787715232b0", "name": "Get Schema Attribute Non-Employee Source", "request": { "name": "Get Schema Attribute Non-Employee Source", @@ -114174,7 +114174,7 @@ }, "response": [ { - "id": "c745ac9f-449a-4914-8386-20f4f636f461", + "id": "58bcc9ba-f5cf-4fb8-95a4-8900d454393b", "name": "The Schema Attribute", "originalRequest": { "url": { @@ -114220,7 +114220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a28c522-e53a-496b-861d-e0b0c58ddb71", + "id": "c49ac2c3-84dd-4219-8095-40c1310ae0c2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114266,7 +114266,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64ad482f-f666-4511-a098-8a048b469a68", + "id": "a3dea6ea-ceab-4037-80d9-1d01ecc3ed42", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114312,7 +114312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c04cb0e8-4bd0-4338-b705-ce69b992f506", + "id": "a922db9f-c125-4996-9a36-9178b058b468", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114358,7 +114358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1300acd8-899b-41fc-893a-df26d45cdfa3", + "id": "5e3bafb1-e846-4faa-b607-5359968ab5e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114404,7 +114404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1a3f3f5-ebab-497f-b90a-193a7f567c2a", + "id": "c8a4d004-93d0-4c0f-ac49-6eb338f145d8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114456,7 +114456,7 @@ } }, { - "id": "b4d0f874-e648-48fa-9331-96ce591c0878", + "id": "ed9a4f76-b433-4b92-8640-80fff177e790", "name": "Patch Non-Employee Source's Schema Attribute", "request": { "name": "Patch Non-Employee Source's Schema Attribute", @@ -114522,7 +114522,7 @@ }, "response": [ { - "id": "af284592-e8c5-4ca5-a3e3-37615e410967", + "id": "ce1f4f2c-ba2d-4bc1-a209-8b595ed574d8", "name": "The Schema Attribute was successfully patched.", "originalRequest": { "url": { @@ -114576,12 +114576,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"IDENTITY\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n}", + "body": "{\n \"type\": \"DATE\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a9189db4-294f-45cb-82b2-ad5b128fad6e", + "id": "cbf84ceb-0754-4ded-91f4-0553bee806aa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114640,7 +114640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74a9624d-e0c9-49eb-8934-62a8846af823", + "id": "a27d7388-b1c8-4eb0-a7fb-8f439662699c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114699,7 +114699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c722a238-c0b2-4ea8-b4c6-80527b43cf7f", + "id": "235edb31-54cd-4613-8053-6fc7b82aa84c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114758,7 +114758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03d5ad5e-5bc2-4ab6-9c5a-79ac9567e0e8", + "id": "f2e7638e-39a6-4d6d-85fb-7269e663abac", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -114817,7 +114817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "325d6f86-078f-49b8-bbb2-7bfc091b75a1", + "id": "028ed2ac-1dd7-4149-94fc-31ff49ddf294", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114876,7 +114876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22974cc2-95c1-4463-88be-27523c02c22d", + "id": "4ac05162-a38e-4131-8b49-88fbe428408b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114941,7 +114941,7 @@ } }, { - "id": "799f47b5-235a-46f2-a1a1-210c9c513fd7", + "id": "9c1eaf0c-223a-444b-9bfd-0b39e0e5f023", "name": "Delete Non-Employee Source's Schema Attribute", "request": { "name": "Delete Non-Employee Source's Schema Attribute", @@ -114994,7 +114994,7 @@ }, "response": [ { - "id": "15879079-5b4c-44b0-81f1-28f8b078632f", + "id": "c9a60e82-ec28-4b05-9acf-55610a9adc6a", "name": "The Schema Attribute was successfully deleted.", "originalRequest": { "url": { @@ -115030,7 +115030,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b00f9957-a70f-49bd-a948-01097dfda3c5", + "id": "718f11ef-a192-4ace-9613-7acc5f80d7e2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115076,7 +115076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d9060e1-9296-4f52-be1b-702bb18435c7", + "id": "279c4e8a-97c9-4ff4-87ce-7facde56c0e7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115122,7 +115122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58e5d0a5-b7e8-4e19-ac6d-a5976e24031b", + "id": "743edbf0-f00f-4fa7-9919-466e8249d365", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115168,7 +115168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5de2fdb8-35d0-4710-bf15-2e2326de7498", + "id": "2f263672-edde-4ab6-872d-1d7ea91bd09d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115214,7 +115214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0365a786-28fd-402b-b2d7-51be16f6a27c", + "id": "65326c1c-ac4b-492d-8166-e1a4cfd3daa4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115272,7 +115272,7 @@ "description": "", "item": [ { - "id": "c7d8edc5-af8e-4393-9f1f-c0e950097e85", + "id": "5f5b9224-c70e-4344-ba11-e1a6ae04c757", "name": "Change MAIL FROM domain", "request": { "name": "Change MAIL FROM domain", @@ -115314,7 +115314,7 @@ }, "response": [ { - "id": "96e3af1c-3818-45be-a048-f83cda281509", + "id": "de7e3880-970f-480c-a8de-3f4a8ee7dd0a", "name": "MAIL FROM Attributes required to verify the change", "originalRequest": { "url": { @@ -115370,7 +115370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e79d6014-ce4c-4c47-8d0b-969161328d5e", + "id": "9594b3b3-9f31-4ca2-bb6f-32908a70c09b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115426,7 +115426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "283b862f-4fee-454a-a926-7e680a9e9c44", + "id": "caba846b-a897-41b7-a0a7-2d2498be44b3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115482,7 +115482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68606073-77cd-4b41-9988-7dd8e5e2608c", + "id": "7331630d-3d0d-4f08-98cc-8c26bc665f89", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115538,7 +115538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e4fe24e-f210-4277-93be-c6f0de774bd2", + "id": "6f495fa3-5bea-4e73-b6a3-ef3dbe8d3c08", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115594,7 +115594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e34605bd-b6be-48af-a4ba-6ee4b0ff602d", + "id": "bed7aa86-cef8-48f6-a486-2236cd64a1fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115656,7 +115656,7 @@ } }, { - "id": "54a4d90d-fb22-4519-9546-481e3dd26b7d", + "id": "b490c5a2-e381-4062-a52a-67d7694d3b21", "name": "Get MAIL FROM Attributes", "request": { "name": "Get MAIL FROM Attributes", @@ -115701,7 +115701,7 @@ }, "response": [ { - "id": "50d80046-381d-40a0-9431-26fb5ba25f34", + "id": "319c3aeb-e1d9-425b-b022-d6c6aa02a70f", "name": "MAIL FROM Attributes object", "originalRequest": { "url": { @@ -115755,7 +115755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "579ca24c-8531-4782-b1ef-b26a5f078bf8", + "id": "876ae1d0-2149-4a7d-a861-5f63b9efccb7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115809,7 +115809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0836ee88-00ca-494d-bd24-17b7adafa9a0", + "id": "7a732ba4-6103-40f5-9239-e5cd9afe8ef7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115863,7 +115863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82ef6eff-a7d9-4b55-9704-b1dceb8de9b1", + "id": "93b2da33-7ce1-4317-8105-31469f1d4310", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115917,7 +115917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c9426f3-6452-4d60-9714-a8fb7fc8cb0f", + "id": "0775f02d-c61f-4055-b125-d4b121080c60", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115971,7 +115971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ef71997-462f-4d4a-8436-3bda409da65b", + "id": "bf3bd453-7ce4-4679-9cb8-8457382792c5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116031,7 +116031,7 @@ } }, { - "id": "c25b1a28-f209-424d-b2c0-9acefa948ec8", + "id": "c6ca5fd4-0a15-4473-a390-e640ae729794", "name": "List Notification Template Defaults", "request": { "name": "List Notification Template Defaults", @@ -116088,7 +116088,7 @@ }, "response": [ { - "id": "fe68744e-b7fa-4004-a578-56817a4f7917", + "id": "5fab3543-6d1b-429a-b5ad-e1bd4f917cf6", "name": "A list of the default template objects", "originalRequest": { "url": { @@ -116159,7 +116159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1272c43-ded0-4ddf-aa24-37068ed64e13", + "id": "07f0f53e-8cf0-412a-99ce-d5845a2b10a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116230,7 +116230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c518751c-3b10-4c77-b4c0-a2009e384e45", + "id": "a0a3560c-6853-4152-8555-2bdc175bfcc2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116301,7 +116301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b95ee304-8b3b-435b-b08b-a76be273679c", + "id": "93279b90-e352-49dd-b5e7-9f4295310cb2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116372,7 +116372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c24f2b5-2d8c-48af-89f4-4bf99ed83432", + "id": "4469490c-e3bc-4cf7-9c92-8cce3b43056f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116443,7 +116443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ea2bc74-fdf2-4f42-bc2c-e45cf6b723d5", + "id": "2ac2350c-6b1b-47f9-b01d-678e27304424", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116520,7 +116520,7 @@ } }, { - "id": "57ab3546-1f66-4a37-87c7-578a2084b6be", + "id": "bb4917e4-c1ea-497c-bb55-e2592fdf0750", "name": "List Notification Templates", "request": { "name": "List Notification Templates", @@ -116577,7 +116577,7 @@ }, "response": [ { - "id": "555c5e6b-edd2-4c1c-aa8e-f152fe085288", + "id": "c93eaf96-1629-40c4-afa4-a7ed4d638ea4", "name": "A list of template objects for your site", "originalRequest": { "url": { @@ -116648,7 +116648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bd5c002-8a58-4753-ac68-d9ccbb644aaf", + "id": "71d3fe89-f755-41f9-8f96-f6b5bb77818a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116719,7 +116719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0de8df1-e74e-4d72-a5bd-92c072dca731", + "id": "22179ba8-094b-486d-8af9-07e6bfa4d3e0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116790,7 +116790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3521456-5937-404d-a71c-ffd9a25bda30", + "id": "f0100035-7a3b-4ad9-af45-cf51fc6cba50", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116861,7 +116861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "070e1211-0b48-43ed-9231-0ad20748f8e0", + "id": "424f068d-4111-46a1-8cc5-097b48b23622", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116932,7 +116932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8160c7fd-63e9-453a-8a9d-2688775ed1c0", + "id": "83883e19-f813-47ca-9c88-e9820cf6e104", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117009,7 +117009,7 @@ } }, { - "id": "6443f65e-944d-4e68-a575-163f894ba631", + "id": "b2530c5a-e3d7-43a0-8770-f8ba622f062e", "name": "Create Notification Template", "request": { "name": "Create Notification Template", @@ -117051,7 +117051,7 @@ }, "response": [ { - "id": "942b1039-a22e-41b0-9b5f-40bdceb0877e", + "id": "8ce982b8-52c0-4af1-9aad-61f9fd456692", "name": "A template object for your site", "originalRequest": { "url": { @@ -117107,7 +117107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4879c040-deeb-4e8d-a182-075611b7c1f5", + "id": "4ec4f2c0-cbc5-465b-86e7-0a9bcf600209", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117163,7 +117163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e353c6e-9fae-4324-bc72-3c249da21e48", + "id": "4d6245a0-c110-4b2d-a06a-9636ed514ea6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117219,7 +117219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f39338f5-1b8b-4b54-9a7d-2199512a7837", + "id": "61aaad06-33b3-4747-a98c-d383a750bc32", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117275,7 +117275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5494cb52-5311-49ae-ad60-d996719e4fd1", + "id": "2db28173-7af5-4132-9d2e-fd73e42320f2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117331,7 +117331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c69bc7d-3ff1-45ca-8dd6-d69595e1ab0e", + "id": "72178581-3503-44b1-8fab-cab54e42b0be", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117393,7 +117393,7 @@ } }, { - "id": "a5770a63-ab5c-4a7d-b5ae-d015666bf267", + "id": "6d9839b1-8e17-4833-965b-32b0e9baac38", "name": "Get Notification Template By Id", "request": { "name": "Get Notification Template By Id", @@ -117434,7 +117434,7 @@ }, "response": [ { - "id": "63df3444-732f-4232-871c-03569a785013", + "id": "881c055b-0990-4e1f-8040-70cd780cbf30", "name": "A template object for your site", "originalRequest": { "url": { @@ -117478,7 +117478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aee60d4f-dd43-4564-a94b-6a750c2545b9", + "id": "e3b46c03-243a-4241-b471-299bee3348e8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117522,7 +117522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "841a93ab-2f83-45b5-8fd4-8aaa2ed4e0d4", + "id": "44f48ba2-fbe1-4b20-8e76-de9575369c68", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117566,7 +117566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5265ec1-5e65-434c-8daf-66f862be9a7c", + "id": "3476a567-ff94-40f7-93ef-5f54e39b09c3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117610,7 +117610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a98f5fba-79c5-49c5-81a1-111f0c06e365", + "id": "950ca250-4953-4709-a07e-d2542774ecf1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117654,7 +117654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "310c5d6f-8287-47ca-8949-e856ed31b528", + "id": "d9c614b4-f75e-42f5-91c2-c3ef7c0b6058", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117704,7 +117704,7 @@ } }, { - "id": "581fa373-aedf-4a02-bae3-de4aecfbe1af", + "id": "f4acff83-bf35-4b79-863b-9ec8d79a4634", "name": "Bulk Delete Notification Templates", "request": { "name": "Bulk Delete Notification Templates", @@ -117747,7 +117747,7 @@ }, "response": [ { - "id": "6c270be5-e0bd-471e-bf14-a1b99d6247d4", + "id": "01f18a15-c0b3-470e-95c0-01fee5d60ab2", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -117794,7 +117794,7 @@ "_postman_previewlanguage": "text" }, { - "id": "219e6789-c707-47d2-94c0-ab535e8fcbe0", + "id": "202295c5-593d-4812-ae97-abf5f650ac42", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117851,7 +117851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "994493ea-8724-4f32-b77e-ef4823e83fc3", + "id": "b1fa4cdc-89fc-4e3e-a056-9aa6ec3e1f91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117908,7 +117908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1199060-ca5f-441e-87a4-20fe9e73fe89", + "id": "1e6d4e0d-6e35-43ee-b83d-e3d5bd5f8e4b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117965,7 +117965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35257786-79e8-4a79-bb68-a3cdfefb3355", + "id": "e74c1b5b-d89c-4ece-a5d3-3949809bc229", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118022,7 +118022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bd40e44-dad5-497e-abdd-f8e062aa0e8f", + "id": "cd9fa304-3321-4edc-ab96-863d5548210e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118085,7 +118085,7 @@ } }, { - "id": "0176af4a-dd02-4604-9958-d7b23080f39a", + "id": "3a1bb02a-29ce-492f-bed3-5dedc230b5c5", "name": "Get Notification Template Context", "request": { "name": "Get Notification Template Context", @@ -118114,7 +118114,7 @@ }, "response": [ { - "id": "38540cb6-48e5-4920-a9df-cb22468c4371", + "id": "d5e3e58a-2f79-43ad-a018-b90a64e9c7dd", "name": "Notification template context attributes for a specific tenant.", "originalRequest": { "url": { @@ -118157,7 +118157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fc4e6cc-b078-4642-93cc-e12239365580", + "id": "695a4a1a-3a95-45f7-a9ee-7b25d002fe87", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118200,7 +118200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d4e7e80-61f0-4a17-9ec1-ae2b80f98f0f", + "id": "0450ef0b-39f5-49fd-b165-a8296bee2997", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118243,7 +118243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "462912ba-39ac-4c04-a399-4be179df5864", + "id": "5d47fbf5-bc01-48e4-a2f6-2f5d9a4682fd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118286,7 +118286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9b626db-f21c-4835-ad00-e48e4a7d4369", + "id": "706293db-ae9d-489b-9ffb-721a0a8b924e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118329,7 +118329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18ba065c-9f30-48f6-b7f3-ae2842da719a", + "id": "50ffa487-64f3-4919-9efe-d4e9b4fbecc3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118378,7 +118378,7 @@ } }, { - "id": "8f16c1e7-7af5-47e1-95e0-9182d5dcb161", + "id": "1b69e156-b7dc-4690-a58c-c4e979ab791e", "name": "Get Notification Preferences for tenant.", "request": { "name": "Get Notification Preferences for tenant.", @@ -118419,7 +118419,7 @@ }, "response": [ { - "id": "92fc6ae5-3e62-4731-b033-037323adab0a", + "id": "3e01590f-ebf9-4c0b-b811-925b537b13ac", "name": "Return preference for the given notification key.", "originalRequest": { "url": { @@ -118463,7 +118463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d31a727-9e2b-4491-b171-978d39708457", + "id": "da1166d9-4046-49a8-ab2d-1337a99cf25a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118507,7 +118507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0752ff1-6f71-4a78-a08e-b03a893e0f0e", + "id": "e47e7392-9402-476f-9303-6be0db87a487", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118551,7 +118551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4ab767b-6d77-4fe3-ac5e-f2b4bc04aa6c", + "id": "ce5b3228-5c52-4e42-bd2e-2ababf030509", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118595,7 +118595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bf198a2-426d-4ac0-ae99-a2d885a7f46e", + "id": "153e0b04-d4f6-4f94-99b7-03aabaa6a71d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -118639,7 +118639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7937ee2f-aa5a-4460-aa52-40537a34fb99", + "id": "5a46f3e9-96c9-4a3a-9e75-338cae60ceb0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118683,7 +118683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a780add2-b28d-412c-95f7-11604f436301", + "id": "06d69c9b-83f0-4dad-8edf-466cf2503f7f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118733,7 +118733,7 @@ } }, { - "id": "825d3f33-e598-4e6c-935e-7ee14d0e59aa", + "id": "e37c41c4-f2ec-4fb9-88a9-954b218e144c", "name": "Overwrite preferences notification key.", "request": { "name": "Overwrite preferences notification key.", @@ -118787,7 +118787,7 @@ }, "response": [ { - "id": "cf0e81e6-abac-486a-a8be-dad6bf7385aa", + "id": "579608f1-edb5-4b1f-ba41-b77b5aee0115", "name": "The preferences were successfully replaced, and an echo of the new preferences are sent back to caller.", "originalRequest": { "url": { @@ -118844,7 +118844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a151f1da-edb8-4ff2-bbac-b7a33adc0ead", + "id": "39791839-025b-4ace-86f0-91206d545de8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118901,7 +118901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1678156-2444-4a81-a093-c489f8581eb7", + "id": "64c89677-633e-442a-83a5-4b47c10abddf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118958,7 +118958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed157789-5f31-4efe-a76f-07eb2db3393a", + "id": "1dcfdcb0-8b57-41b4-b55c-83f7c799a134", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119015,7 +119015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b7abb0c-f250-4679-91ee-1b135996f375", + "id": "a77e857d-7376-45e7-89cc-cd4eec077b59", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -119072,7 +119072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "faa95114-d484-4bb5-ad6b-9e807dc000c7", + "id": "fdcaec97-aade-418d-9813-e1115f38bbd3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119129,7 +119129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fb6bea6-7a00-4140-b9f6-337cdaf80fae", + "id": "ef9bf20e-11b0-4bff-91ae-72ff18afdf41", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119192,7 +119192,7 @@ } }, { - "id": "0171935d-3db9-4d53-b481-8e70a48fd2de", + "id": "23310750-ac7f-438d-bcc8-6221276e2aef", "name": "Send Test Notification", "request": { "name": "Send Test Notification", @@ -119234,7 +119234,7 @@ }, "response": [ { - "id": "e3fc1f27-18e9-40d6-8d1a-697a35c04046", + "id": "2d0a2dd3-d78a-4c9b-a0dd-7d26d5e06f53", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -119280,7 +119280,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f7840fa7-ff16-4394-8ebf-bce3992062a5", + "id": "96f66757-6a4d-4b5f-a845-ff02502867c3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119336,7 +119336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "219cf30b-8100-498e-bdf6-1520df9908f6", + "id": "738c7061-050c-44ec-a963-e6b1da82e9e7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119392,7 +119392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fc354ac-ddce-46cd-82a2-8f3d7ac75046", + "id": "24966e5e-3567-44aa-9307-50834b70627d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119448,7 +119448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c755e949-5afa-45dc-9e1f-081c5643f46e", + "id": "8790a93c-c699-41d9-a232-1bd32879a46d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -119504,7 +119504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06b6f3ad-54d4-47f5-a49b-703f40bfe2dc", + "id": "720203ed-09b3-4f2e-a504-b577e68350a1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119560,7 +119560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ec68029-774a-444a-8ce1-8b2e1cd06d23", + "id": "8888b2bb-4a02-4485-aba9-7d62683aebb3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119622,7 +119622,7 @@ } }, { - "id": "b0df3f57-46ab-401a-8522-26c1b6ccba48", + "id": "95623098-904b-4439-b751-237d4f429f16", "name": "List From Addresses", "request": { "name": "List From Addresses", @@ -119697,7 +119697,7 @@ }, "response": [ { - "id": "0de3a8f4-a1cb-4d6e-960e-cfe216ad7566", + "id": "33ee0a2e-4d1c-4c1d-81f1-331f4f150354", "name": "List of Email Status", "originalRequest": { "url": { @@ -119781,12 +119781,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"sit laborum consectetur proi\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"PENDING\"\n },\n {\n \"id\": \"Excepteur proident velit qui\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"PENDING\"\n }\n]", + "body": "[\n {\n \"id\": \"dolor magna incididunt\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"SUCCESS\"\n },\n {\n \"id\": \"Duis veniam aute reprehenderit\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"PENDING\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a82c5a65-c866-40fc-9321-1932842b45a1", + "id": "3aa8917d-0aae-49b3-bb30-2b4f6c692789", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119875,7 +119875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a05e3325-f9c2-42fd-b1e9-5fe0176a13b6", + "id": "ce1ddd6a-c03e-4c9b-afc1-98c5e6514e32", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119964,7 +119964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1491c999-dcd4-463f-9360-df48731109e1", + "id": "9096356d-5c58-49f5-bcc6-3eba04abe2ee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120053,7 +120053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6180fb0-0a82-4f16-80d2-5f573fd18270", + "id": "79db193d-3bbd-4e40-a347-1503a202cca1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120148,7 +120148,7 @@ } }, { - "id": "edca434c-1f55-4775-bde9-fecf7d339def", + "id": "05f3fc7a-2fe7-4071-b5a3-7b8c8788b604", "name": "Create Verified From Address", "request": { "name": "Create Verified From Address", @@ -120190,7 +120190,7 @@ }, "response": [ { - "id": "b79632d2-9663-4632-bc13-77ef9f97e608", + "id": "8f881b54-047c-4de4-9ec0-6c08235b7712", "name": "New Verified Email Status", "originalRequest": { "url": { @@ -120241,12 +120241,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"eu mollit laborum Lorem\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"FAILED\"\n}", + "body": "{\n \"id\": \"in fugiat ullamco commodo\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"SUCCESS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5b0380a0-be9e-415c-8893-93c51421e0d4", + "id": "a9f18066-e24f-4a70-9c25-23c70e29d2c5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120302,7 +120302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6934150f-925c-4f10-80e9-a7743a8b8d42", + "id": "af93c6a8-89f7-47c6-8419-697508017c13", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120358,7 +120358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91354d87-1175-4478-91fd-d18ad7d5b440", + "id": "f8836544-4925-4595-a270-022b2f5546bf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120414,7 +120414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f8a7377-3c0c-4e91-9151-59f31b06add4", + "id": "8bfba4da-cf3a-4edf-a443-8c86fdce0f09", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120470,7 +120470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "819d32a6-ef98-4463-b1be-f0b7319c9f0e", + "id": "9c8e91fc-18f4-4fe1-abe0-30ca9640bb05", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120532,7 +120532,7 @@ } }, { - "id": "37487b80-87c9-4cb0-8f7a-14ebd2e5e07a", + "id": "c966f486-8f19-478f-adb0-8fea8d188a9a", "name": "Delete Verified From Address", "request": { "name": "Delete Verified From Address", @@ -120552,7 +120552,7 @@ "variable": [ { "type": "any", - "value": "in aute elit ullamco", + "value": "magna dolore deserunt", "key": "id", "disabled": true, "description": { @@ -120573,7 +120573,7 @@ }, "response": [ { - "id": "ad1c6e39-e5dc-49f5-b840-bbbdda859654", + "id": "3e26119d-3a26-4112-b9a1-daaa9539417e", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -120607,7 +120607,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a76a2ad5-d11b-4662-a5ed-075929b8f354", + "id": "fcb21c86-6928-42de-a2ca-04f9f903e541", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120651,7 +120651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64e2bfac-9e06-454a-9d86-e117bb389789", + "id": "2973a1bc-c7bc-47f8-aedb-8088667d36e8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120695,7 +120695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a9137d8-2140-4d6d-95b0-4ef2f7c996ba", + "id": "3f9f0dba-19e9-48bd-ba59-2be1ec5f42d0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120739,7 +120739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "485fed81-2826-4300-a9b6-2ced1cbb021f", + "id": "0a37c30a-e34f-4451-8710-21fa68fcb027", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -120783,7 +120783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07f12089-1e1f-4a13-8ade-eeb7e44f4a8f", + "id": "c7104934-52d8-4a2f-aec1-e5ec32437471", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120827,7 +120827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7acb268-ce2d-4a66-a70b-59ba41679e35", + "id": "cf6b44e2-6b5d-4e9f-a3f1-0654a25f6578", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120877,7 +120877,7 @@ } }, { - "id": "4da59523-d1f3-40a1-815f-87461de0ceeb", + "id": "ff6093e5-0a7b-456c-acb9-64a0b728e446", "name": "Get DKIM Attributes", "request": { "name": "Get DKIM Attributes", @@ -120906,7 +120906,7 @@ }, "response": [ { - "id": "22f52854-9b84-4030-9278-f5348a7e6905", + "id": "ac81d1e4-fccb-453c-86dd-7e8932d5ec84", "name": "List of DKIM Attributes", "originalRequest": { "url": { @@ -120949,7 +120949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d3eb2aa-48af-44e7-841c-fa72220835f3", + "id": "d682354a-8f4c-40f5-a0e2-4694040becf1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120992,7 +120992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f849f333-4428-452f-90b6-941d4769ee9b", + "id": "d0e3f0ec-468a-4021-83df-4b74c6d5a7c0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121035,7 +121035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46be4627-6492-424c-b110-1edae0eb5c4e", + "id": "3b8a0f61-9ec8-4c36-852d-443260a1f28f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121078,7 +121078,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9099c64d-ea5f-4d9e-b8ed-7e887bf659d8", + "id": "521ed800-f73e-4ad7-a428-1d08786e553d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121121,7 +121121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "676806c6-c656-4c58-84e8-394a42890557", + "id": "c1910028-bc6a-4a0f-9cdd-7e874d25aac1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121170,7 +121170,7 @@ } }, { - "id": "62244ef3-8946-4167-a87b-350972894b7f", + "id": "e2b77b94-2f74-4dc9-9207-c2b443c0cbab", "name": "Verify domain address via DKIM", "request": { "name": "Verify domain address via DKIM", @@ -121212,7 +121212,7 @@ }, "response": [ { - "id": "9fa68e4c-9842-4081-999e-8a195bae2b55", + "id": "4eb76768-90d1-488f-85dd-4a0e602f4ed4", "name": "List of DKIM tokens required for the verification process.", "originalRequest": { "url": { @@ -121268,7 +121268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d72911f-f917-4029-8d0d-758a20008287", + "id": "7f48bde2-639a-4a32-8160-cc989bf6cfdf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121324,7 +121324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3f32bc2-aec3-468b-9e5c-cdfdeb2debbb", + "id": "5159cd38-b152-4095-aab0-a9e5d1ec622b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121380,7 +121380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "668cca43-9948-45ea-960f-26d9977eed85", + "id": "b0cc2752-a930-43b5-8cef-2e41a29725a3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121436,7 +121436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "258f28cd-4a5c-40e9-9992-48b3497586ba", + "id": "8d874872-6d86-4368-82bf-127ed3bb1ab6", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -121492,7 +121492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bde2817e-4094-46d6-ab7b-f9954bbb8c10", + "id": "41622ec5-f21d-4610-a201-05a651d1a3e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121548,7 +121548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50a04ae8-57ed-4e28-b75c-1f22c58acd0b", + "id": "b6a53a17-d5a7-4db1-bb0b-3cee5afaafcd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121616,7 +121616,7 @@ "description": "Use this API to implement OAuth client functionality.\nWith this functionality in place, users with the appropriate security scopes can create and configure OAuth clients to use as a way to obtain authorization to use the IdentityNow REST API.\nRefer to [Authentication](https://developer.sailpoint.com/idn/api/authentication) for more information about OAuth and how it works with the IdentityNow REST API.\n", "item": [ { - "id": "3a96ed35-fbc8-4327-a813-1b9c9e991a73", + "id": "f3aeb57f-a9fa-466a-a68f-ca29bf4bef11", "name": "List OAuth Clients", "request": { "name": "List OAuth Clients", @@ -121655,7 +121655,7 @@ }, "response": [ { - "id": "bb06a9b3-0600-49f9-b057-4eddd1cd9da3", + "id": "e2d6b06e-772a-4d1b-9735-6aa939e1eb93", "name": "List of OAuth clients.", "originalRequest": { "url": { @@ -121708,7 +121708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a123266d-e77c-46ba-b0f2-e1e199799b84", + "id": "8fab67cf-3e55-4686-bf52-01bc47876cb0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121761,7 +121761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67ea713f-d5b4-4086-86d4-c7aead55a3f8", + "id": "5e1eab7a-1c66-445f-9073-fda6bbd77617", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121814,7 +121814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58560448-d237-452b-a06d-5865e1243e06", + "id": "e6edf134-71ce-4a0f-96c1-380e4fe260ba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121867,7 +121867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66878132-c887-4d37-a61a-654876174c95", + "id": "165c2ace-250f-49a0-b516-ac4a1b3e1743", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121920,7 +121920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da62741f-7b29-4e9d-96f3-1bc0bedc2fa4", + "id": "0de9523d-9fed-4588-8daf-dc509650799c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121979,7 +121979,7 @@ } }, { - "id": "b4545591-9f17-44be-a048-87fa4f65799e", + "id": "3077b6a9-ceff-4033-8505-f40d249015cc", "name": "Create OAuth Client", "request": { "name": "Create OAuth Client", @@ -122021,7 +122021,7 @@ }, "response": [ { - "id": "47b665c6-7280-44c8-8d5b-eaaac58b02ca", + "id": "22d018a4-3b9c-447c-8007-754c6a85eb19", "name": "Request succeeded.", "originalRequest": { "url": { @@ -122077,7 +122077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c300d15-1942-44d0-8abe-9f348cca64df", + "id": "4919ef1a-fecc-4cee-a838-9bdc4192e389", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122133,7 +122133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad1dbf64-e91e-4175-9771-d92546ae91e1", + "id": "93c81303-ba43-4b77-9cdd-cc2fc985091d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122189,7 +122189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f05d27a-c076-4a84-a432-e2bc1fba86b7", + "id": "ef53c0ee-3fbe-4f45-a2ce-996e84ee9cbd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122245,7 +122245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7e80cfb-ac28-4418-b2b6-77f97af0fb63", + "id": "3e363ba7-1dae-45ad-b9eb-89f836701cc6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122301,7 +122301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0a11db8-b2ac-4175-9bf1-6dfa7a8ba291", + "id": "a481ab4e-115c-4049-8a00-bcfd53117f4c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122363,7 +122363,7 @@ } }, { - "id": "3569861f-09bb-4c44-a57e-50f7e3b27b83", + "id": "ef553282-aa03-470a-9067-c7ca66283ff6", "name": "Get OAuth Client", "request": { "name": "Get OAuth Client", @@ -122404,7 +122404,7 @@ }, "response": [ { - "id": "1d2979bf-7d48-46d9-b2ce-b0e0732ecabb", + "id": "f19eacef-3c6c-4b55-94c6-8d9b5b828929", "name": "Request succeeded.", "originalRequest": { "url": { @@ -122448,7 +122448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dafe8cf-7f63-4463-ba76-07c35790270d", + "id": "d198111a-1d5d-46c4-90f8-013fc7c30529", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122492,7 +122492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "018c719c-040e-43a9-a39e-7d96366d94e8", + "id": "f311aa84-3bc2-4b15-a840-fe3266f40746", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122536,7 +122536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b129b3bc-734e-41dd-9a02-03dc98cce6d3", + "id": "86c45be4-2835-439d-b180-5d0c6fe6f0a4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122580,7 +122580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d18599aa-4e13-48b4-9375-5dfa104bcc3f", + "id": "0442285d-d8db-4503-b562-cb5e01a12bca", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -122624,7 +122624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adfb7ebc-fc50-462b-ae6c-90dae2bf6a30", + "id": "6333ed1a-0042-48f7-9884-29f55f5b667e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122668,7 +122668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4aa81669-4a0c-43ec-bc94-7ed79167c317", + "id": "7128077c-11a1-49d5-8523-10b8b24d0200", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122718,7 +122718,7 @@ } }, { - "id": "53f3bac6-c017-48f8-81e5-b08ee3fed91c", + "id": "fc38f940-9e62-46f9-ba35-5039e5e07831", "name": "Delete OAuth Client", "request": { "name": "Delete OAuth Client", @@ -122759,7 +122759,7 @@ }, "response": [ { - "id": "2ba32061-c5b2-4292-82e0-c6d92182a53f", + "id": "e457f701-f4ff-457c-b095-c7d98b0086da", "name": "No content.", "originalRequest": { "url": { @@ -122793,7 +122793,7 @@ "_postman_previewlanguage": "text" }, { - "id": "72c451f8-0fe6-4588-9aec-331b0789435f", + "id": "193203e1-5426-4bb0-b052-421b7bd9e41a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122837,7 +122837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f82372e-3985-4cbf-b02a-b2f932aee41a", + "id": "359cc751-4074-4a7a-aedb-b2fe59770c94", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122881,7 +122881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0551868a-e263-4b6c-910a-4c489c073503", + "id": "2f85c213-9e43-4dc2-bb94-58c11160d140", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122925,7 +122925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e0c2dfd-46e2-4c5c-99f2-73dce6434dc2", + "id": "cd3056ec-7343-4209-9b7f-3a102e6ce9d3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -122969,7 +122969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90ad3743-57ae-4f4f-9aaf-54b6673c7210", + "id": "98eb0dc0-ad78-4951-8cc8-9d49b3ef1981", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123013,7 +123013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9226e02d-22de-43ab-ac97-6f488a050797", + "id": "005f570d-a247-4e07-9d12-6c7dae10d243", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123063,7 +123063,7 @@ } }, { - "id": "1e030d4c-50a6-49f3-9c90-de5984e853a1", + "id": "d911ca0f-df74-4543-ae2f-de1f8cbeaa8e", "name": "Patch OAuth Client", "request": { "name": "Patch OAuth Client", @@ -123117,7 +123117,7 @@ }, "response": [ { - "id": "5fe371f0-1916-4905-aa2d-6ef503c1ebd4", + "id": "3bdd77cd-9c81-4ce3-89ea-c098c4850bea", "name": "Indicates the PATCH operation succeeded, and returns the OAuth client's new representation.", "originalRequest": { "url": { @@ -123174,7 +123174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f0d5321-4115-4810-bcdb-96297270582d", + "id": "b19c1ff7-94b7-4834-aa31-0c53ef4678b3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123231,7 +123231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af48d07a-e9ab-4a1d-be3f-94f26c8d74cb", + "id": "efc6396f-31e0-4e66-ab13-510eecceddb5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123288,7 +123288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aced4b7e-bd62-4aac-b3e0-cf31603a7dfe", + "id": "2c758dff-399a-4183-8cca-f075e3322e57", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123345,7 +123345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5ba7da4-b496-4cde-9a52-217fdfc5a1cb", + "id": "ab09d815-286c-4e19-b957-a02474ff5218", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -123402,7 +123402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87e25dfe-8fe1-46cf-9207-5a1f658c7dc2", + "id": "0834ad74-a023-4c20-9cc5-3d99bc038ecc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123459,7 +123459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5f450ef-30f5-490e-8d52-67ae9b0adb18", + "id": "bff98a9c-8826-4477-bd0b-fce954a05948", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123528,7 +123528,7 @@ "description": "Operations for managing org configuration settings (eg. time zone)", "item": [ { - "id": "840a6874-b8f8-445c-98ac-3bd0790a3743", + "id": "f66ef2ca-b394-454d-b850-235fb6beac74", "name": "Get Org configuration settings", "request": { "name": "Get Org configuration settings", @@ -123557,7 +123557,7 @@ }, "response": [ { - "id": "1cd752ea-0ea5-4773-bd7a-66a9a47c1d10", + "id": "47653a52-f924-46ba-a6b4-87d7fed2b237", "name": "Request succeeded.", "originalRequest": { "url": { @@ -123595,12 +123595,12 @@ "value": "application/json" } ], - "body": "{\n \"orgName\": \"acme-solar\",\n \"timeZone\": \"America/Toronto\",\n \"lcsChangeHonorsSourceEnableFeature\": false,\n \"armCustomerId\": \"DE38E75A-5FF6-4A65-5DC7-08D64426B09E\",\n \"armSapSystemIdMappings\": \"aute\",\n \"armAuth\": \"epiYNTRYA2S7swisDWk1Zv4VMNgvqEjiBh5_ufuCWsma2m-5XADijqBg0ijXLby5nS6lxZNXabhGnAPGeDGc4V3jQKrhwV-UHypRLs8ZLgOjiQNus9NimS0uPdKomRW6TFWqXyfnYd-znNgbbVuwUy9GyD9ebDVJSntPastxSx7UcyGuWBqfNZYpuxKRWe_7TVY60qL55jUqyz8N4XUbbdcxdbZ0uik6ut-Bv90MKTbZexBW_PR4qcgIkaEs4kIenLyBxnGziYo7AO0tJ8bGHO8FJRkibCpAQIt7PISLo7Gg_Xf9j10dKq2YDgy4pPTvz3fE2ZHYnXCXvXFSA-vVag==\",\n \"armDb\": \"EU\",\n \"armSsoUrl\": \"https://your-arm-sso-url\",\n \"iaiEnableCertificationRecommendations\": true,\n \"sodReportConfigs\": [\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n },\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n }\n ]\n}", + "body": "{\n \"orgName\": \"acme-solar\",\n \"timeZone\": \"America/Toronto\",\n \"lcsChangeHonorsSourceEnableFeature\": false,\n \"armCustomerId\": \"DE38E75A-5FF6-4A65-5DC7-08D64426B09E\",\n \"armSapSystemIdMappings\": \"esse cillum voluptate dolor\",\n \"armAuth\": \"epiYNTRYA2S7swisDWk1Zv4VMNgvqEjiBh5_ufuCWsma2m-5XADijqBg0ijXLby5nS6lxZNXabhGnAPGeDGc4V3jQKrhwV-UHypRLs8ZLgOjiQNus9NimS0uPdKomRW6TFWqXyfnYd-znNgbbVuwUy9GyD9ebDVJSntPastxSx7UcyGuWBqfNZYpuxKRWe_7TVY60qL55jUqyz8N4XUbbdcxdbZ0uik6ut-Bv90MKTbZexBW_PR4qcgIkaEs4kIenLyBxnGziYo7AO0tJ8bGHO8FJRkibCpAQIt7PISLo7Gg_Xf9j10dKq2YDgy4pPTvz3fE2ZHYnXCXvXFSA-vVag==\",\n \"armDb\": \"EU\",\n \"armSsoUrl\": \"https://your-arm-sso-url\",\n \"iaiEnableCertificationRecommendations\": true,\n \"sodReportConfigs\": [\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n },\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aa8fc402-6c72-4de5-9df2-3ecfb15bb665", + "id": "3d5d6907-169b-4fb5-a7ac-f1690f4af13c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123643,7 +123643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61d21e4a-9275-4218-a024-39439d767c80", + "id": "08fcd157-8359-4362-9a90-e8289f939d15", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123686,7 +123686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54a8f080-0585-4c66-bc66-c81770f6568c", + "id": "f733f1d6-d302-45b0-a31a-ad7e1ff5a56d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123729,7 +123729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ad8f60e-373f-4339-90e6-1cd53ead4a20", + "id": "5dba9db7-a4e7-493e-83b5-340bd349a666", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -123772,7 +123772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ce3df8b-20d7-4556-b641-f4497d2379c7", + "id": "1f44797f-4f52-4559-ae96-9ff3c584e5d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123815,7 +123815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edc7808b-c4c9-4808-86a6-f6a3af46989f", + "id": "9bd4a235-c628-4a8e-bc09-6b03c28bd89c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123864,7 +123864,7 @@ } }, { - "id": "86f3030c-c815-48fc-8d7d-a76f855e9f09", + "id": "6a5e5555-6430-43c7-87d9-dc25a672300c", "name": "Patch an Org configuration property", "request": { "name": "Patch an Org configuration property", @@ -123906,7 +123906,7 @@ }, "response": [ { - "id": "242d3843-1e17-4e96-92d8-4adea9395422", + "id": "38ed8ebf-a6cc-4101-96c6-3b0266405fac", "name": "The Org was successfully patched.", "originalRequest": { "url": { @@ -123957,12 +123957,12 @@ "value": "application/json" } ], - "body": "{\n \"orgName\": \"acme-solar\",\n \"timeZone\": \"America/Toronto\",\n \"lcsChangeHonorsSourceEnableFeature\": false,\n \"armCustomerId\": \"DE38E75A-5FF6-4A65-5DC7-08D64426B09E\",\n \"armSapSystemIdMappings\": \"aute\",\n \"armAuth\": \"epiYNTRYA2S7swisDWk1Zv4VMNgvqEjiBh5_ufuCWsma2m-5XADijqBg0ijXLby5nS6lxZNXabhGnAPGeDGc4V3jQKrhwV-UHypRLs8ZLgOjiQNus9NimS0uPdKomRW6TFWqXyfnYd-znNgbbVuwUy9GyD9ebDVJSntPastxSx7UcyGuWBqfNZYpuxKRWe_7TVY60qL55jUqyz8N4XUbbdcxdbZ0uik6ut-Bv90MKTbZexBW_PR4qcgIkaEs4kIenLyBxnGziYo7AO0tJ8bGHO8FJRkibCpAQIt7PISLo7Gg_Xf9j10dKq2YDgy4pPTvz3fE2ZHYnXCXvXFSA-vVag==\",\n \"armDb\": \"EU\",\n \"armSsoUrl\": \"https://your-arm-sso-url\",\n \"iaiEnableCertificationRecommendations\": true,\n \"sodReportConfigs\": [\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n },\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n }\n ]\n}", + "body": "{\n \"orgName\": \"acme-solar\",\n \"timeZone\": \"America/Toronto\",\n \"lcsChangeHonorsSourceEnableFeature\": false,\n \"armCustomerId\": \"DE38E75A-5FF6-4A65-5DC7-08D64426B09E\",\n \"armSapSystemIdMappings\": \"esse cillum voluptate dolor\",\n \"armAuth\": \"epiYNTRYA2S7swisDWk1Zv4VMNgvqEjiBh5_ufuCWsma2m-5XADijqBg0ijXLby5nS6lxZNXabhGnAPGeDGc4V3jQKrhwV-UHypRLs8ZLgOjiQNus9NimS0uPdKomRW6TFWqXyfnYd-znNgbbVuwUy9GyD9ebDVJSntPastxSx7UcyGuWBqfNZYpuxKRWe_7TVY60qL55jUqyz8N4XUbbdcxdbZ0uik6ut-Bv90MKTbZexBW_PR4qcgIkaEs4kIenLyBxnGziYo7AO0tJ8bGHO8FJRkibCpAQIt7PISLo7Gg_Xf9j10dKq2YDgy4pPTvz3fE2ZHYnXCXvXFSA-vVag==\",\n \"armDb\": \"EU\",\n \"armSsoUrl\": \"https://your-arm-sso-url\",\n \"iaiEnableCertificationRecommendations\": true,\n \"sodReportConfigs\": [\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n },\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "87bf2a6d-211d-4b54-ad62-b6b84dde8253", + "id": "e43778de-2bcb-4b0d-824e-2dfd21a5c511", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124018,7 +124018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89006cc3-b5d0-41e4-8208-04c8df913e8d", + "id": "8169369b-31c2-4151-9ad9-ec3555bcc63d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124074,7 +124074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecc946cc-fe05-4eea-8073-8e6f4bf5a19c", + "id": "bfdc06b8-861a-47e4-a566-c6fccb108d1e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124130,7 +124130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c26eb0d7-94c4-4729-b84a-1c8d28c0f8d6", + "id": "f308e17e-06a9-43fe-9fcc-02100b6b097c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -124186,7 +124186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db5eb225-e115-4c5b-a866-1f93420678a5", + "id": "cf4f5048-ba3f-4240-9cfe-3462b3d8b8c5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124242,7 +124242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fca532f-f635-4b4f-ac00-2b0ac48f47ef", + "id": "9f973a3f-57a7-43d0-9533-c1200ebdfd95", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124304,7 +124304,7 @@ } }, { - "id": "b91b1eb3-4123-4345-bfbc-9529908cd417", + "id": "fef5568d-8be4-4630-ba76-1add35d248fe", "name": "Get list of time zones", "request": { "name": "Get list of time zones", @@ -124334,7 +124334,7 @@ }, "response": [ { - "id": "52a99875-5b4d-432f-9ca5-a3d1134d96a1", + "id": "c4e129ab-3b4a-4206-b026-180d67de4e29", "name": "Request successful", "originalRequest": { "url": { @@ -124378,7 +124378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d9e4900-1893-4061-810b-f143578c528e", + "id": "05c40d30-4b40-4fc1-bb17-cd6699b3dfa9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124422,7 +124422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25cf89a7-aacb-4fda-885e-8c01f22a7c4c", + "id": "4780883a-af68-4f96-bcc6-7b877408d8cd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124466,7 +124466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eaddbce7-e9e5-408a-beb8-10223ed82a25", + "id": "079e8539-b19f-444c-9f2a-c84d02e64765", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124510,7 +124510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd78c8fa-3070-435a-a835-7dc6ab645ef1", + "id": "63b5fbc5-4741-44c8-b1f9-329798d37b8d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124554,7 +124554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "462320dd-a915-4617-9d73-33efd995a127", + "id": "53f79570-6504-4f0d-9296-6caf8ee97d46", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124610,7 +124610,7 @@ "description": "Use this API to implement organization password configuration functionality.\nWith this functionality in place, organization administrators can create organization-specific password configurations.\n\nThese configurations include details like custom password instructions, as well as digit token length and duration.\n\nRefer to [Configuring User Authentication for Password Resets](https://documentation.sailpoint.com/saas/help/pwd/pwd_reset.html) for more information about organization password configuration functionality.\n", "item": [ { - "id": "688029e1-17be-42ba-b240-63e0e4e1e107", + "id": "3ea7a3de-13a3-4e39-8b84-134f312a626f", "name": "Get Password Org Config", "request": { "name": "Get Password Org Config", @@ -124639,7 +124639,7 @@ }, "response": [ { - "id": "8217344a-73fd-4290-b064-51b253464eec", + "id": "2568cc5c-4594-47da-b6a9-fbd0ad039e60", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -124682,7 +124682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8778d281-898b-4d36-95e8-2ae01dcae395", + "id": "1e3817c9-b182-49f1-b82b-6b5e768a3560", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124725,7 +124725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01fe6ecf-8750-4100-9087-2151489b8c31", + "id": "c7a213b7-d41d-4f67-b67f-f5751d8622fe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124768,7 +124768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfd76e9c-7f05-4e2a-9cac-43e896d244b5", + "id": "296208fe-6327-43a1-93f0-44c7748be599", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124811,7 +124811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bdff990-83e3-4b11-a2db-179e06685d58", + "id": "e432b7d2-52ce-41dd-b7c9-a0ff20b594ef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124854,7 +124854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23655314-2423-4448-bea9-f19889ed009e", + "id": "df86bb6a-7024-4ed6-afe1-744f864f4c02", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124903,7 +124903,7 @@ } }, { - "id": "6f6c099d-ff9b-4b1c-a705-d9279e9c7cd4", + "id": "9139900e-f995-464f-a437-0732a53151a6", "name": "Update Password Org Config", "request": { "name": "Update Password Org Config", @@ -124945,7 +124945,7 @@ }, "response": [ { - "id": "fb0c3091-2cc2-4a95-82f7-53fe2757f9bc", + "id": "942c685d-7297-4aee-947b-bcb9fda18bb3", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -125001,7 +125001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c84056e4-4d3b-4396-a7ac-d0aa6bfe5a64", + "id": "1762cc79-3609-40fd-bd18-a50ef91ace6b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125057,7 +125057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ed69d34-3fba-49f2-9dcb-006295833f10", + "id": "764c4a51-f29a-4779-abad-1b27d5c9eb41", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125113,7 +125113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b1c1ba6-9f23-45f7-b5ce-b524ceaa3a8f", + "id": "9ea6461d-c30f-4536-a2d0-9a61d227572b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125169,7 +125169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7b948ed-774a-4206-a891-7024a525a397", + "id": "5cd17396-6985-4409-ac4a-94c1ec9f8aac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125225,7 +125225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2364235d-0d22-4005-98b5-cda276d5bcb8", + "id": "5e1d7f15-e31e-4841-9a33-2d5bae42f2fc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125287,7 +125287,7 @@ } }, { - "id": "e7f8c83a-9228-4e25-a4b9-bddb80a64e29", + "id": "cbc11aa0-eab1-4209-be3f-f5a5bd1d6722", "name": "Create Password Org Config", "request": { "name": "Create Password Org Config", @@ -125329,7 +125329,7 @@ }, "response": [ { - "id": "943ff70d-865b-439f-989d-ee9f0c752db1", + "id": "d8708edd-4ae5-443d-81b5-e88ad330dfad", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -125385,7 +125385,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05834e93-0f18-4616-9ba6-d4a03b6f52e9", + "id": "3ae86ebf-cfd4-46e2-9211-ae3592b11f17", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125441,7 +125441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5408c61-0389-4f2e-8737-06fcbda3ed88", + "id": "959666a8-253f-4573-a62f-7eb6ec1e98be", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125497,7 +125497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "379e218b-9a83-4d9b-a08f-e85e0bc6c21a", + "id": "d3d5506b-4c0b-4b99-b2c2-036ca3fa5d2e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125553,7 +125553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25539467-8701-407a-bf95-ec090feff03a", + "id": "3b649d05-77cc-4a83-ab44-185fbaf388ba", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125609,7 +125609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e19fba6c-6abb-4017-8155-17fe49bbefca", + "id": "f6d65993-7fb1-41b6-9eb9-45b602e9540f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125677,7 +125677,7 @@ "description": "Use this API to implement password dictionary functionality.\nWith this functionality in place, administrators can create password dictionaries to prevent users from using certain words or characters in their passwords.\n\nA password dictionary is a list of words or characters that users are prevented from including in their passwords.\nThis can help protect users from themselves and force them to create passwords that are not easy to break.\n\nA password dictionary must meet the following requirements to for the API to handle them correctly:\n\n- It must be in .txt format.\n\n- All characters must be UTF-8 characters.\n\n- Each line must contain a single word or character with no spaces or whitespace characters.\n\n- It must contain at least one line other than the locale string.\n\n- Each line must not exceed 128 characters.\n\n- The file must not exceed 2500 lines.\n\nAdministrators should also consider the following when they create their dictionaries:\n\n- Lines starting with a # represent comments.\n\n- All words in the password dictionary are case-insensitive.\nFor example, adding the word \"password\" to the dictionary also disallows the following: PASSWORD, Password, and PassWord.\n\n- The dictionary uses substring matching.\nFor example, adding the word \"spring\" to the dictionary also disallows the following: Spring124, 345SprinG, and 8spring.\nUsers can then select 'Change Password' to update their passwords.\n\nAdministrators must do the following to create a password dictionary:\n\n- Create the text file that will contain the prohibited password values.\n\n- If the dictionary is not in English, they must add a locale string to the top line: locale:`languageCode`_`countryCode`\n\nThe languageCode value refers to the language's 2-letter ISO 639-1 code.\nThe countryCode value refers to the country's 2-letter ISO 3166-1 code.\n\nRefer to this list https://docs.oracle.com/cd/E13214_01/wli/docs92/xref/xqisocodes.html to see all the available ISO 639-1 language codes and ISO 3166-1 country codes.\n\n- Upload the .txt file to IdentityNow with [Update Password Dictionary](https://developer.sailpoint.com/idn/api/beta/update-password-dictionary). Uploading a new file always overwrites the previous dictionary file.\n\nAdministrators can then specify which password policies check new passwords against the password dictionary by doing the following: In the Admin panel, they can use the Password Mgmt dropdown menu to select Policies, select the policy, and select the 'Prevent use of words in this site's password dictionary' checkbox beside it.\n\nRefer to [Configuring Advanced Password Management Options](https://documentation.sailpoint.com/saas/help/pwd/adv_config.html) for more information about password dictionaries.\n", "item": [ { - "id": "5e134e76-ca27-46a2-aae5-8c5c62ccbfa9", + "id": "3e31cc71-de59-422a-b385-06928199457f", "name": "Get Password Dictionary", "request": { "name": "Get Password Dictionary", @@ -125706,7 +125706,7 @@ }, "response": [ { - "id": "2eafbe40-2267-4d9b-ba1d-513aef9dbbb2", + "id": "db0c4b2d-c3a4-4f26-a35e-b7329baf0c2b", "name": "A password dictionary response", "originalRequest": { "url": { @@ -125744,12 +125744,12 @@ "value": "text/plain" } ], - "body": "in aute elit ullamco", + "body": "magna dolore deserunt", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "90d886df-955d-404d-9fad-e639f963fe58", + "id": "a1287d8a-b3e2-4cd6-99a6-69f5e82f974f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125792,7 +125792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18c17712-6e71-4d57-8ee2-9fe89a12e996", + "id": "16685c3f-b959-4bf9-924d-f49a3ef7b222", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125835,7 +125835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee333c9b-4a45-4ffb-b753-b081c83f22ee", + "id": "9f485782-ae20-4432-9e5f-217b44f81447", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125878,7 +125878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e82fb27-43a2-438a-823e-eed66dbd111f", + "id": "50991a78-d309-484e-a25c-ee139e4cd847", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -125921,7 +125921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "727ba128-e1a5-47f2-9435-a239dc07cb6d", + "id": "f584c095-3925-4d2a-b431-6988a084163b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125964,7 +125964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ebd3375-cbd9-45ba-8fcd-f922dce5bb6e", + "id": "d6d27b7c-b54f-4344-9d4c-cc02b1e54163", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126013,7 +126013,7 @@ } }, { - "id": "a044816f-e934-4110-996b-79ccd66fb06e", + "id": "e0cd4194-4701-45c1-9d0d-716958ce02fd", "name": "Update Password Dictionary", "request": { "name": "Update Password Dictionary", @@ -126051,7 +126051,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -126059,7 +126059,7 @@ }, "response": [ { - "id": "40695e33-1578-402c-aef6-e42fa7154a04", + "id": "48b610cd-bea9-439d-80d0-ae55322e8382", "name": "Successfully updated.", "originalRequest": { "url": { @@ -126096,7 +126096,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -126109,7 +126109,7 @@ "_postman_previewlanguage": "text" }, { - "id": "34154271-1f76-4d4f-8ce1-e47565975ac9", + "id": "b0456873-27b2-4a86-afd1-e88708219836", "name": "Created.", "originalRequest": { "url": { @@ -126146,7 +126146,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -126159,7 +126159,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b026c903-2243-4d31-b6a2-ac9a74ce60c9", + "id": "ea2984e8-e9bb-4484-ad07-f85c70cb9ed0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126200,7 +126200,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -126219,7 +126219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d87e455-1846-4fc9-bba6-0413f3e4f81e", + "id": "5fdbc619-fbf4-41a4-9cb1-8b478a9f1815", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126260,7 +126260,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -126279,7 +126279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65fe2435-43e7-4158-ab63-10e9618d8d2a", + "id": "09eec6e7-637c-4c9c-b2cc-3e50c38e3357", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126320,7 +126320,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -126339,7 +126339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f705df5-a3b1-4b85-b3e7-541d593ae515", + "id": "06a245de-e5d4-40cb-9a38-7a0fe3a01433", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -126380,7 +126380,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -126399,7 +126399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15bca396-2fab-43f4-9a45-d94ca4640e7e", + "id": "8f8ac3ea-b4b4-4a03-985a-1ac7b26b6006", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126440,7 +126440,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -126459,7 +126459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "463a375c-e99e-4011-88cc-dc96fc57c301", + "id": "967bdf31-6202-4c62-aec6-633425557d50", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126500,7 +126500,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -126531,7 +126531,7 @@ "description": "Use this API to implement password management functionality.\nWith this functionality in place, users can manage their identity passwords for all their applications.\n\nIn IdentityNow, users can select their names in the upper right corner of the page and use the drop-down menu to select Password Manager.\nPassword Manager lists the user's identity's applications, possibly grouped to share passwords.\nUsers can then select 'Change Password' to update their passwords.\n\nGrouping passwords allows users to update their passwords more broadly, rather than requiring them to update each password individually.\nPassword Manager may list the applications and sources in the following groups:\n\n- Password Group: This refers to a group of applications that share a password.\nFor example, a user can use the same password for Google Drive, Google Mail, and YouTube.\nUpdating the password for the password group updates the password for all its included applications.\n\n- Multi-Application Source: This refers to a source with multiple applications that share a password.\nFor example, a user can have a source, G Suite, that includes the Google Calendar, Google Drive, and Google Mail applications.\nUpdating the password for the multi-application source updates the password for all its included applications.\n\n- Applications: These are applications that do not share passwords with other applications.\n\nAn organization may require some authentication for users to update their passwords.\nUsers may be required to answer security questions or use a third-party authenticator before they can confirm their updates.\n\nRefer to [Managing Passwords](https://documentation.sailpoint.com/saas/user-help/accounts/passwords.html) for more information about password management.\n", "item": [ { - "id": "445d95e9-deab-485f-886a-f0026e24019b", + "id": "7d5e58dd-1861-4cc9-b0e3-1b79edeb78a4", "name": "Generate a digit token", "request": { "name": "Generate a digit token", @@ -126574,7 +126574,7 @@ }, "response": [ { - "id": "595939ed-54da-4d83-aca5-712dc87ad8c8", + "id": "c0c2f191-6c07-4204-b941-45bf6b662588", "name": "The digit token for password management.", "originalRequest": { "url": { @@ -126631,7 +126631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "324258ea-395c-498c-b675-0f025a3b3d05", + "id": "27643696-2252-4b6c-aa4c-35b606dfa7f6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126688,7 +126688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8c6e961-db91-4940-9869-d3a5fbc197ae", + "id": "661d7d16-db47-48b4-93e6-38c672897a42", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126745,7 +126745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ba6a485-8c12-455a-b5d5-97dbc1bbe46e", + "id": "64e820d3-5af9-4fb5-b88e-b493f5fb9315", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126808,7 +126808,7 @@ } }, { - "id": "949159d2-5cc4-4d88-8e19-0f9989ed12e7", + "id": "aa39f588-0c74-484b-a3f9-e537a7458a6c", "name": "Query Password Info", "request": { "name": "Query Password Info", @@ -126850,7 +126850,7 @@ }, "response": [ { - "id": "e4f92f2f-9ad7-40bf-90a3-0e0e79af29c3", + "id": "e2d47d4a-660c-44aa-bb6c-b2ef0f309d02", "name": "Reference to the password info.", "originalRequest": { "url": { @@ -126906,7 +126906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1e3b932-8144-4490-ba7f-68a4b4ade803", + "id": "609a69ba-810c-4bbe-85cc-3464aa92ea8f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126962,7 +126962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d025336a-0e3f-402f-b98f-f6e2252d0012", + "id": "ffac1fea-9e0e-4c94-a75b-e7c32ca3007c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127018,7 +127018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ad2e031-8abb-4cb2-832e-b1dc79370457", + "id": "4845e671-0952-4095-a9f3-34e0c353c2d3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127074,7 +127074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60e05ff7-dc44-450f-8c31-17b4f3418db4", + "id": "67bb3aa9-f2ad-4a2b-98d3-db6809fc75be", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127130,7 +127130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69aced42-fb56-4e70-bd04-6b6dc80b0fae", + "id": "1ba5ec69-91db-4128-99a1-0fd71f213130", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127192,7 +127192,7 @@ } }, { - "id": "bc69e864-6372-406b-bc4f-e985e70d0f06", + "id": "fa018d76-fc19-404a-8b93-f8f3c801bef1", "name": "Set Identity's Password", "request": { "name": "Set Identity's Password", @@ -127234,7 +127234,7 @@ }, "response": [ { - "id": "216347ef-702a-48d1-bfe0-484a7a1bbf07", + "id": "f8ab44db-3106-49ef-bf08-3c4c5fd45e87", "name": "Reference to the password change.", "originalRequest": { "url": { @@ -127290,7 +127290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "905311ea-be55-4e8c-8441-d8a6f7d7dcda", + "id": "19292379-f610-4e44-87c7-4054c2a1809b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127346,7 +127346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e57c75d-d599-4992-a767-3380f67134b3", + "id": "75b6e6ed-1f1c-4b84-9b56-40a2219c2e85", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127402,7 +127402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "579b7f01-40db-4dfd-9978-32acdc8e7994", + "id": "1ddecd45-f1b4-4c56-af7a-11e105daf70a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127458,7 +127458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3b1517e-0f55-4158-9f02-f59078963ea2", + "id": "0f640f31-76e8-4f19-8862-9823da7e5d1e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127514,7 +127514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29f9b152-651b-436e-8047-b081dd686941", + "id": "708f0973-3856-4cd8-8c67-4fac743d9520", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127576,7 +127576,7 @@ } }, { - "id": "460ac34d-0c3f-47ec-87b5-a3e2ad03ee6d", + "id": "bd0e2e19-e6fe-4381-b115-51a1b5f24d6a", "name": "Get Password Change Request Status", "request": { "name": "Get Password Change Request Status", @@ -127596,7 +127596,7 @@ "variable": [ { "type": "any", - "value": "in aute elit ullamco", + "value": "magna dolore deserunt", "key": "id", "disabled": true, "description": { @@ -127617,7 +127617,7 @@ }, "response": [ { - "id": "ccbf2e7a-627b-4717-99c0-7c2ac7061811", + "id": "bbb7617b-84bf-4e11-89d7-b54a60c6cd9b", "name": "Status of the password change request", "originalRequest": { "url": { @@ -127661,7 +127661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "242d2219-7d83-4716-a732-82b4a0c19f2f", + "id": "8f86d215-03ed-46c3-a07f-89a058520a8b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127705,7 +127705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a57a4db-d221-47ac-a362-ee329ee0186f", + "id": "ea273afd-25ae-4431-ac48-57d4bd4630e5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127749,7 +127749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "caa158bd-3b83-4924-972b-62a7cac61376", + "id": "e19ab1fa-e856-42b3-8986-8baa660fadf1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127793,7 +127793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d456de99-9449-448c-8e4c-aafb2b524449", + "id": "44793802-3b9e-4349-8759-203cb84d1ea8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -127837,7 +127837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9075f40-26e4-476f-8f66-18e8f3c59a86", + "id": "4287640d-5138-4ab6-8d87-54caf34ff075", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127893,7 +127893,7 @@ "description": "Use this API to implement password sync group functionality.\nWith this functionality in place, administrators can group sources into password sync groups so that all their applications share the same password.\nThis allows users to update the password for all the applications in a sync group if they want, rather than updating each password individually.\n\nA password sync group is a group of applications that shares a password.\nAdministrators create these groups by grouping the applications' sources.\nFor example, an administrator can group the ActiveDirectory, GitHub, and G Suite sources together so that all those sources' applications can also be grouped to share a password.\nA user can then update his or her password for ActiveDirectory, GitHub, Gmail, Google Drive, and Google Calendar all at once, rather then updating each one individually.\n\nThe following are required for administrators to create a password sync group in IdentityNow:\n\n- At least two direct connect sources connected to IdentityNow and configured for Password Management.\n\n- Each authentication source in a sync group must have at least one application. Refer to [Adding and Resetting Application Passwords](https://documentation.sailpoint.com/saas/help/pwd/adv_config.html#adding-and-resetting-application-passwords) for more information about adding applications to sources.\n\n- At least one password policy. Refer to [Managing Password Policies](https://documentation.sailpoint.com/saas/help/pwd/policies.html) for more information about password policies.\n\nIn the Admin panel in IdentityNow, administrators can use the Password Mgmt dropdown menu to select Sync Groups.\nTo create a sync group, administrators must provide a name, choose a password policy to be enforced across the sources in the sync group, and select the sources to include in the sync group.\n\nAdministrators can also delete sync groups in IdentityNow, but they should know the following before they do:\n\n- Passwords related to the associated sources will become independent, so changing one will not change the others anymore.\n\n- Passwords for the sources' connected applications will also become independent.\n\n- Password policies assigned to the sync group are then assigned directly to the associated sources.\nTo change the password policy for a source, administrators must edit it directly.\n\nOnce the password sync group has been created, users can update the password for the group in Password Manager.\n\nRefer to [Managing Password Sync Groups](https://documentation.sailpoint.com/saas/help/pwd/sync_grps.html) for more information about password sync groups.\n", "item": [ { - "id": "1e416258-9446-4660-a43c-0db29ae2f01a", + "id": "e3599102-27e7-400e-a5f2-c2e99ca4ec65", "name": "Get Password Sync Group List", "request": { "name": "Get Password Sync Group List", @@ -127950,7 +127950,7 @@ }, "response": [ { - "id": "55efba75-f471-45b4-bb5a-7bd08f87c4ce", + "id": "3e3edb82-6d97-4265-9b3a-980926f6008c", "name": "A list of password sync groups.", "originalRequest": { "url": { @@ -128021,7 +128021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41a30c72-9040-42c3-bf63-f53a7ff1644b", + "id": "d50f14cc-53e6-440d-b956-622cff4a9968", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128092,7 +128092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ff69c3c-eab6-4a3d-8b5b-3c1fab83137b", + "id": "a48cd678-0341-468a-9259-1e7c949f609c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128163,7 +128163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83e016c0-2579-4199-a81a-7253b53c11dd", + "id": "b84286ca-2850-489d-a0cc-a9ec491bec80", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128234,7 +128234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d093f72b-cba0-449f-abbd-7ce2fdf6bed0", + "id": "01d541ff-28b2-4a01-a9ee-b2702991a086", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128305,7 +128305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae13417c-71a0-450e-836c-07e7158548f7", + "id": "109ffa52-c747-496e-bf91-9271b622938d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128382,7 +128382,7 @@ } }, { - "id": "2f704a19-7b51-4f21-9a86-c5814975d4d7", + "id": "aad3623b-86d8-4f0e-b0c1-4c52d6e7208b", "name": "Create Password Sync Group", "request": { "name": "Create Password Sync Group", @@ -128424,7 +128424,7 @@ }, "response": [ { - "id": "95091a9a-4591-4305-8b56-261ea170e414", + "id": "c540ec9e-dd4b-41e3-b93c-8fa98691653e", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -128480,7 +128480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfed788f-11d1-4e14-bdc2-0a48edbe6156", + "id": "6e2f99e9-c931-45cd-b58a-3e3c33791b2e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128536,7 +128536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f1917ca-4bbd-46f1-9584-8a0838e75de7", + "id": "a4931da1-063a-4b01-b1ed-fed6907df3ae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128592,7 +128592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8232c08e-36bc-4345-b1c0-88a335f13130", + "id": "23667521-a0a2-4d83-a923-d5c71f68931f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128648,7 +128648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2681cbb6-2c8c-43d3-970e-35f2348e1879", + "id": "612cd85b-0952-41a8-a854-fec8ba5fe1b4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128704,7 +128704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61201534-af45-411e-aa90-6ea0313860ad", + "id": "ef196f8d-5712-474e-a00c-4491ef121039", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128766,7 +128766,7 @@ } }, { - "id": "e654186e-8573-432c-a9d1-2f03e039af5f", + "id": "4bb95b29-b102-476a-805e-5a5449c8f747", "name": "Get Password Sync Group by ID", "request": { "name": "Get Password Sync Group by ID", @@ -128807,7 +128807,7 @@ }, "response": [ { - "id": "8584e921-4d7c-4884-bc83-d9ec8606e893", + "id": "61363d60-0020-4914-867d-6b4d0da29850", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -128851,7 +128851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46548582-92a4-48f1-a3df-44d35b73ef15", + "id": "199aa7d3-adb3-4d90-8c37-f5ac32922ce9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128895,7 +128895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a82bfb34-c49a-4b7f-9b42-c3eb1ae54982", + "id": "12ea9cfd-72b4-4c06-b263-8ea716c47be6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128939,7 +128939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87263534-8074-455e-afe8-320994c71bef", + "id": "94f4219d-0b7c-43f2-aa61-f5e1e778eb3e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128983,7 +128983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "223d0752-54e7-4f62-b56a-ac3e748e7ed4", + "id": "d15a2d3b-ed99-402e-a86d-195374ec94d7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -129027,7 +129027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1180eaf7-a595-4918-be10-219c2d67a398", + "id": "2ee12c2f-a3ad-436e-b08b-02a37c0f9a05", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129071,7 +129071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3182b06-4218-4985-b7d8-60a0e9f70055", + "id": "7907b5bc-8935-4cec-9bf5-1ce089727d4e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129121,7 +129121,7 @@ } }, { - "id": "55abf3aa-7ce2-4c8f-951b-d3641b650dd5", + "id": "4065bd7a-82a8-4ca3-9e93-dc70301c5b74", "name": "Update Password Sync Group by ID", "request": { "name": "Update Password Sync Group by ID", @@ -129175,7 +129175,7 @@ }, "response": [ { - "id": "2ff2dd2a-2668-417c-ba0c-f2b6fde06aec", + "id": "01a9f743-f7d3-4518-8b68-7744c1781903", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -129232,7 +129232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eef0c3f5-c23d-46fe-addc-7957cfb4279c", + "id": "fd55b561-2253-422d-a81d-bdf8ec156754", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129289,7 +129289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "208d6172-72be-4c05-8c73-f0016c026ddd", + "id": "f13fa26a-b990-4f47-9e63-964d477e4337", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129346,7 +129346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4a9f116-ae33-4fa3-908d-bc59d07d1b52", + "id": "c491729b-fca5-4cf0-b32e-d97d3a0c5130", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129403,7 +129403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfb71b32-e70f-4bf6-bc15-d6bda041a5bd", + "id": "b20ddeba-265b-49ac-9648-e433e36067e1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -129460,7 +129460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f6bf851-76de-44ae-836a-6a117fe5f1c6", + "id": "fb4b4cb5-6e79-4e2d-9340-dddcf253c7ff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129517,7 +129517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b96724fd-90bf-4b4d-9bcd-95a6d7922652", + "id": "285df7e4-a81b-4aaf-89c0-10345cd26293", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129580,7 +129580,7 @@ } }, { - "id": "4e3f7ba8-0162-47e0-8d58-4535c524013e", + "id": "439fa732-2acc-4738-8fcc-7359eb6f380e", "name": "Delete Password Sync Group by ID", "request": { "name": "Delete Password Sync Group by ID", @@ -129621,7 +129621,7 @@ }, "response": [ { - "id": "89896388-6533-4022-8c9c-ddf9e23ac8b8", + "id": "db38120d-230c-4871-a383-25cd38a001dd", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -129655,7 +129655,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1184378b-4bb0-4108-9c41-c72fa38c01b4", + "id": "33765b63-19c6-455c-89ef-9e317f5041c6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129699,7 +129699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b14122c-f0a5-49be-8bb3-dece248a60ef", + "id": "71e00c32-5ca1-4ace-9cca-1c183f02dd7e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129743,7 +129743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c03ac4b-1bcb-4d1d-b5fb-202723fdee12", + "id": "29ae6705-e542-4f4f-968a-4e257759edf2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129787,7 +129787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa177fd7-bf19-4f1f-a8f8-c0d96ec46445", + "id": "91a55058-3733-40c5-8096-9795b83f42e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129831,7 +129831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5100e362-a4fc-4082-b80b-944ba3a74db2", + "id": "630bfd26-7128-483c-a61f-23e8398ffaed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129887,7 +129887,7 @@ "description": "Use this API to implement personal access token (PAT) functionality.\nWith this functionality in place, users can use PATs as an alternative to passwords for authentication in IdentityNow.\n\nPATs embed user information into the client ID and secret.\nThis replaces the API clients' need to store and provide a username and password to establish a connection, improving IdentityNow organizations' integration security.\n\nIn IdentityNow, users can do the following to create and manage their PATs: Select the dropdown menu under their names, select Preferences, and then select Personal Access Tokens.\nThey must then provide a description about the token's purpose.\nThey can then select 'Create Token' at the bottom of the page to generate and view the Secret and Client ID.\n\nRefer to [Managing Personal Access Tokens](https://documentation.sailpoint.com/saas/help/common/generate_tokens.html) for more information about PATs.\n", "item": [ { - "id": "59779391-387d-4515-92be-dc9f501e1968", + "id": "b41d1a71-7d90-480e-af6b-c609a7d20581", "name": "List Personal Access Tokens", "request": { "name": "List Personal Access Tokens", @@ -129935,7 +129935,7 @@ }, "response": [ { - "id": "c62f3b6d-dea7-45ce-9e05-63750fb69f5e", + "id": "519472b5-a63a-4484-9451-7ea0d898b5bd", "name": "List of personal access tokens.", "originalRequest": { "url": { @@ -129997,7 +129997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64d2d412-83a6-4c69-a47d-2d7e91043fa9", + "id": "03e5d8b3-1ab9-48d5-9e18-d138403a70b4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130059,7 +130059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "135a1ed4-5860-4a7c-add3-6c403ac0bd00", + "id": "b95138e3-0c92-44b0-a406-8e34d286fab8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130121,7 +130121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d23c0af-93eb-409b-ad73-b4b57b0c0b7c", + "id": "cf5ba2c8-05f2-4e32-925d-8c9aacaff535", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130183,7 +130183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4965f9c-1889-4e64-8ffa-34791471f5ae", + "id": "67c15d63-bffb-4c7b-be90-a69fae3945a9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130245,7 +130245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c5aa3aa-4253-4d8d-81cd-b08f572c1c80", + "id": "e2bec6c0-c73d-4dd7-a9e8-bad11594757b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130313,7 +130313,7 @@ } }, { - "id": "83faee81-5b8e-4ce7-8584-2f6a8d40e63d", + "id": "9e509574-6f3d-493d-b88a-6dad373a3e73", "name": "Create Personal Access Token", "request": { "name": "Create Personal Access Token", @@ -130355,7 +130355,7 @@ }, "response": [ { - "id": "f8c95923-a9be-45da-8a64-f8aed54e0bf6", + "id": "28422606-dffe-4eca-90ba-55600275bb39", "name": "Created. Note - this is the only time Personal Access Tokens' secret attribute will be displayed.", "originalRequest": { "url": { @@ -130411,7 +130411,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee091194-040f-4d55-b90c-c3db8710b16b", + "id": "887b228e-744c-4046-8675-706a7597f97c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130467,7 +130467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61e2195d-f16b-4b90-85a4-60b56e1cbec4", + "id": "875f4ab4-0b06-4d05-98b3-43b602b5f75b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130523,7 +130523,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6711cdca-2820-4e40-9ee9-dd78d821cacd", + "id": "0445d40f-187a-49c9-8bdb-dff0740b4459", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130579,7 +130579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a2d2269-f0f3-4338-a418-1c98ac371799", + "id": "9d8169e6-a4ca-4f1a-857e-d937fb03ce76", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130635,7 +130635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66b5dc30-0e18-40b4-b2fc-e137bc16b71b", + "id": "cead64b7-c5a4-4a75-823e-0606e3a16e43", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130697,7 +130697,7 @@ } }, { - "id": "91fe7140-8945-4f09-9bb7-2a8f6117f116", + "id": "5d728502-d4cd-4788-8f01-88d4be086d50", "name": "Patch Personal Access Token", "request": { "name": "Patch Personal Access Token", @@ -130751,7 +130751,7 @@ }, "response": [ { - "id": "6803cc2c-637e-4f31-8453-07ce9cb77e52", + "id": "2d0afc2c-85d4-4afa-ab5a-3dd78465ea7a", "name": "Indicates the PATCH operation succeeded, and returns the PAT's new representation.", "originalRequest": { "url": { @@ -130808,7 +130808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdf7bc85-d4d8-44be-8fd1-db521b122b4c", + "id": "8b7b27be-397b-44ff-8863-5c901e8e59ab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130865,7 +130865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "940ea2b3-9f80-40ca-be8b-5f5c63971113", + "id": "eb8ba1c5-9ae8-44ac-84e5-ae332a55182c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130922,7 +130922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0973ead8-ee0c-4d47-954c-b6faddd84422", + "id": "901cc334-3aba-433c-ae97-518fbecd4ae8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130979,7 +130979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "247c7f0b-d621-4dcc-95df-b09b7a0f174b", + "id": "ebe91315-086d-4ab3-abf8-40dbd1c6aa16", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -131036,7 +131036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d31e11b9-bf80-4c84-b3a5-8d5dd3a336d3", + "id": "81794562-b585-4698-8363-593526957799", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131093,7 +131093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "084f3dac-e945-4838-81b7-65ded8f07ae7", + "id": "e52b7606-347e-40c7-8eb7-a0b1e1214ffc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131156,7 +131156,7 @@ } }, { - "id": "2e2c672b-fb4a-433d-b4a4-98dbbc806981", + "id": "77958a57-ce47-40cf-8dbd-dd0d12e1d468", "name": "Delete Personal Access Token", "request": { "name": "Delete Personal Access Token", @@ -131197,7 +131197,7 @@ }, "response": [ { - "id": "6d990fd7-39a4-433c-88d4-9de17f73a775", + "id": "86dc83c8-1e99-4280-ada6-d072338cb4da", "name": "No content.", "originalRequest": { "url": { @@ -131231,7 +131231,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c4105295-231f-49ab-b076-515f8916c064", + "id": "ae2d6314-407f-4142-9a51-609484a32e8b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131275,7 +131275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32e154d7-a558-470a-bc53-0d48c7f34b53", + "id": "be0e6618-2bf0-440b-901c-825e9a936cd5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131319,7 +131319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f31ff049-e280-4962-955c-818b5d6d9b11", + "id": "9b67adf5-380a-4e2b-9a5b-2677912a04fa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131363,7 +131363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c94c10e-de19-417e-8136-2115082110b3", + "id": "90704d0b-5ccb-4b3f-a1ed-984b8dc3a8c0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -131407,7 +131407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30694e9c-4daa-48b3-b3cd-68ae6eae6abf", + "id": "2618a393-5dd6-4e8e-b583-907bf8280be9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131451,7 +131451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a2ffe66-077d-4cb2-aa56-4d993240e335", + "id": "b7d1385b-4848-4037-9565-4de77ae25a17", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131507,7 +131507,7 @@ "description": "Use this API to implement public identity configuration functionality.\nWith this functionality in place, administrators can make up to 5 identity attributes publicly visible so other non-administrator users can see the relevant information they need to make decisions.\nThis can be helpful for access approvers, certification reviewers, managers viewing their direct reports' access, and source owners viewing their tasks.\n\nBy default, non-administrators can select an identity and view the following attributes: email, lifecycle state, and manager.\nHowever, it may be helpful for a non-administrator reviewer to see other identity attributes like department, region, title, etc.\nAdministrators can use this API to make those necessary identity attributes public to non-administrators.\n\nFor example, a non-administrator deciding whether to approve another identity's request for access to the Workday application, whose access may be restricted to members of the HR department, would want to know whether the identity is a member of the HR department.\nIf an administrator has used [Update Public Identity Config](https://developer.sailpoint.com/idn/api/beta/update-public-identity-config) to make the \"department\" attribute public, the approver can see the department and make a decision without requesting any more information.\n", "item": [ { - "id": "e3208c48-b4ee-4581-ab8c-af6f303e6b99", + "id": "d15da038-2ef3-4601-8dbd-a77ca6d4dedf", "name": "Get Public Identity Config", "request": { "name": "Get Public Identity Config", @@ -131536,7 +131536,7 @@ }, "response": [ { - "id": "5d8a9e72-956b-45da-abca-1d381bcef05e", + "id": "dd7b8896-14c9-44e9-abdc-f5ba2b9f31ce", "name": "Request succeeded.", "originalRequest": { "url": { @@ -131579,7 +131579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0f5e82f-f18c-40d8-b30c-00281cb67845", + "id": "164eb249-a80e-4491-9bec-1df7f156e94d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131622,7 +131622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e7b9704-49e9-4d5c-955b-cd30134c94a5", + "id": "72a3bb0d-e038-46a6-abdb-62472b48312c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131665,7 +131665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac8eefb9-3afd-4bde-b08e-39098be78c90", + "id": "2d8550f9-42a9-4110-949f-53adfc9c6ef0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131708,7 +131708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d24942a-a2c9-42fd-b951-4c91ddc7ba54", + "id": "e308888b-053c-450c-afc5-f508b93ed7fe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131751,7 +131751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c34b7e9-7674-4bdf-850a-71fe72fb4391", + "id": "4ff4cc76-56a7-4497-8679-663625540f8f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131800,7 +131800,7 @@ } }, { - "id": "7f7406f4-024d-4fba-8998-83062e27151b", + "id": "ab6f2afc-8087-45d7-9583-833bbfbe9c8e", "name": "Update Public Identity Config", "request": { "name": "Update Public Identity Config", @@ -131842,7 +131842,7 @@ }, "response": [ { - "id": "3adcaf85-a9aa-49a8-b237-82aaa39caab6", + "id": "171cac85-8573-46a0-b932-8be9f0e283c8", "name": "Request succeeded.", "originalRequest": { "url": { @@ -131898,7 +131898,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edf0a671-8636-47bb-9d58-90809d605241", + "id": "8fc76e9d-fbf9-482c-9142-ae40764cd0e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131954,7 +131954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e04d85e1-23fa-4aa3-bb6e-6677034e4643", + "id": "dd55c6a7-7051-467c-8f2a-dadc6f6da1e3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132010,7 +132010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b35d304-6574-4658-a521-684365845e1f", + "id": "d25a1e0b-3209-4d83-bd91-18ad0807ff75", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132066,7 +132066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efaf953f-d5fa-4000-976a-3830a959d0d1", + "id": "1a2749d3-b4cb-45fb-956c-67bab910641a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132122,7 +132122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91fda74b-f9d2-4d78-bd11-64dfda9b879c", + "id": "322a0592-a92d-4df6-b73e-4d761afce95a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132190,7 +132190,7 @@ "description": "Use this API to implement requestable object functionality.\nWith this functionality in place, administrators can determine which access items can be requested with the [Access Request APIs](https://developer.sailpoint.com/idn/api/beta/access-requests), along with their statuses.\nThis can be helpful for administrators who are implementing and customizing access request functionality as a way of checking which items are requestable as they are created, assigned, and made available.\n", "item": [ { - "id": "b72d9354-5a92-489e-9078-2d0a33c50b87", + "id": "3d7a8d1e-241d-42d9-8d33-c893a5adb6ef", "name": "Requestable Objects List", "request": { "name": "Requestable Objects List", @@ -132301,7 +132301,7 @@ }, "response": [ { - "id": "5e559235-a445-4fed-bfff-a9dfab6816ae", + "id": "f82af5e8-3d66-4192-b293-325a7c69a447", "name": "List of requestable objects", "originalRequest": { "url": { @@ -132426,7 +132426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6df3108-8907-42db-be3e-22cb62e11eb8", + "id": "dc1a0828-ec5d-4d07-9605-62f27ccef788", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132551,7 +132551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5eb6b45b-0fb3-467a-af4a-f25e43bba079", + "id": "58dd3fdc-f1ea-4158-bb6e-90d7d21a9f6f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132676,7 +132676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a9f9572-b09c-4f7e-84d0-bfc1c99144c5", + "id": "e6dd277d-d3d8-42ba-876c-7e794c4c2394", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132801,7 +132801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f0f1346-07d4-4e8c-8fb8-eebbb3212a8d", + "id": "57ea30f9-ef0b-4f92-af2f-55b6e01b93c3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132926,7 +132926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e3ad7e9-a847-434f-9426-f8a2335f38d1", + "id": "024915bd-6f8f-4b1f-8d0f-1d2ae8eecaf6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133063,7 +133063,7 @@ "description": "", "item": [ { - "id": "1547bd18-5e76-4c2c-8d0c-1b41bc296479", + "id": "813234a6-a65c-4c70-8ee4-3fcfd3d36db1", "name": "Generate insights for roles", "request": { "name": "Generate insights for roles", @@ -133093,7 +133093,7 @@ }, "response": [ { - "id": "da4b11b1-802b-44f3-b1a3-3acd06d13cb7", + "id": "81a7abc3-268e-4b42-a878-d33d47ffd27f", "name": "Submitted a role insights generation request", "originalRequest": { "url": { @@ -133137,7 +133137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb49ccb9-ca67-40b5-8dba-cfd1fa18559c", + "id": "b3e2661a-82bd-4036-98c9-eb8aa5421474", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133181,7 +133181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2d36bf3-2c55-47a6-b274-640cdc2134d2", + "id": "7dbb3148-ab01-49b4-85ee-8abdabc586f1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133225,7 +133225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2630a248-3fe3-470e-ab15-b2adff5f435f", + "id": "ffc009db-a5f6-4326-a27f-0cdd3472dd6e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133269,7 +133269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0f043a9-98ed-4deb-a5d4-06660c8a5aa5", + "id": "9db4becb-f158-45d3-8898-127af21c5685", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133313,7 +133313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d26f8cdb-89c3-41b3-b134-91fdda51f7fe", + "id": "6317e842-3e46-411d-b49b-25f2e0631bdd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133363,7 +133363,7 @@ } }, { - "id": "095ec7f2-5681-4e11-b146-fa38ece91161", + "id": "48afa707-94e8-4564-80dd-fe2c24e57c47", "name": "Returns metadata from prior request.", "request": { "name": "Returns metadata from prior request.", @@ -133405,7 +133405,7 @@ }, "response": [ { - "id": "55bf9369-6761-49a2-8281-d720910ce44b", + "id": "8c243748-0452-464a-8088-6fae53d2e3ef", "name": "Succeeded. Returns details of an earlier role insights request.", "originalRequest": { "url": { @@ -133450,7 +133450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfea5280-1bd7-4253-a3d7-9778308fe225", + "id": "40683bc9-ee97-43bc-a968-0d37b2aec2c7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133495,7 +133495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf1c6b7f-4540-434a-b845-e6c17b03507b", + "id": "88747db5-104a-4872-b646-302dd40382a3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133540,7 +133540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fca5cf79-4b82-4e64-85d2-f1e6a2df3ea3", + "id": "3facec9c-c6e6-42a7-92f1-fed4ae1655b6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133585,7 +133585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07960e5e-bb67-45e2-a1cf-6929cd8a05a6", + "id": "e6601a10-c4f7-4dda-b37f-d181fb39a820", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133630,7 +133630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "274d3d01-2678-49d0-9098-c0bcf9a9882c", + "id": "a182999d-dc7e-4fe9-be38-021c4a396e9a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133681,7 +133681,7 @@ } }, { - "id": "dd3c1720-c706-459e-a7e2-6a98ef212f73", + "id": "67c649ec-d8b3-4887-97bd-6706dba3e387", "name": "Get role insights summary information", "request": { "name": "Get role insights summary information", @@ -133711,7 +133711,7 @@ }, "response": [ { - "id": "256cacc9-be44-4ad5-bb50-3ad5ea0f7854", + "id": "edb4912c-7bf9-40ce-b36c-8755221fc5af", "name": "Succeeded. Returns high level counts.", "originalRequest": { "url": { @@ -133750,12 +133750,12 @@ "value": "application/json" } ], - "body": "{\n \"numberOfUpdates\": 16254391,\n \"lastGenerated\": \"2020-05-19T13:49:37.385Z\",\n \"entitlementsIncludedInRoles\": 45,\n \"totalNumberOfEntitlements\": 250,\n \"identitiesWithAccessViaRoles\": 550,\n \"totalNumberOfIdentities\": 980\n}", + "body": "{\n \"numberOfUpdates\": -54911974,\n \"lastGenerated\": \"2020-05-19T13:49:37.385Z\",\n \"entitlementsIncludedInRoles\": 45,\n \"totalNumberOfEntitlements\": 250,\n \"identitiesWithAccessViaRoles\": 550,\n \"totalNumberOfIdentities\": 980\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c3969245-9fe8-4435-ba13-9c9ee8e73c49", + "id": "d31c1cdb-2c65-488b-9ed2-26ac8617a8c2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133799,7 +133799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7479c456-a7eb-4bfd-91fd-4b911aae9ff6", + "id": "25d318ca-ede5-4d2f-aa2f-5fc55fb07808", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133843,7 +133843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbdc22c4-e040-42ea-8478-e09b571bc83a", + "id": "37cc1b31-9849-419b-a0c5-f52fe1fec5c5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133887,7 +133887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eeea2670-df48-4d86-bae6-21942f79dc43", + "id": "1a083978-da76-4394-a22f-a0c988936f76", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133937,7 +133937,7 @@ } }, { - "id": "5529c978-5d68-4f34-8ecd-40405d3027c2", + "id": "fa859467-43e1-49a3-bf3a-98a86523954b", "name": "Get role insights", "request": { "name": "Get role insights", @@ -134012,7 +134012,7 @@ }, "response": [ { - "id": "19a40420-c88f-40cd-b713-6664e456bb16", + "id": "32fa376d-8109-400d-b523-840733f0e86e", "name": "Succeeded. Returns a list of roles with information about insights for each role.", "originalRequest": { "url": { @@ -134101,7 +134101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2af8cf79-9227-4c47-822b-c538e81515fb", + "id": "640015f6-bccb-4900-a592-560924b936cb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134190,7 +134190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb623e09-71b5-48ca-9430-d32cfc451ddc", + "id": "fd62ccae-2756-4d66-b3c8-e3f021976e87", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134279,7 +134279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf7d6f6b-be32-4192-8284-41aea35e2134", + "id": "9b9084af-0c0a-477b-b1b3-6889fce2b841", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134368,7 +134368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "738f793d-60ea-4965-9478-a8386083cbc1", + "id": "55390434-6d3b-4481-b5a9-ed59f2f45e52", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134463,7 +134463,7 @@ } }, { - "id": "f7ac189c-14cf-41db-9db1-d6ca52ccc57a", + "id": "c002ce26-d60a-464a-a272-e53c8bcae961", "name": "Get a single role insight", "request": { "name": "Get a single role insight", @@ -134504,7 +134504,7 @@ }, "response": [ { - "id": "71783585-8c9e-4d18-acac-cdf0d32e3c66", + "id": "9215927c-330f-43d7-9b57-8501e99ae5f6", "name": "Succeeded. Returns information about insights for a single role.", "originalRequest": { "url": { @@ -134548,7 +134548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d0533b4-bab0-4817-84b8-1ca70313ce44", + "id": "c4c0f7bb-7443-4dde-9de4-26ba04d3ccf2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134592,7 +134592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb2ac25c-e2a8-4739-ab63-02d6e49a147e", + "id": "6ba3f671-fc34-4541-aae9-f5426e87369f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134636,7 +134636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4b258ce-b1ba-4e37-80d4-b2bc2d7390cc", + "id": "28661456-6fd0-488f-9746-f0bc0bf4ff5b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134680,7 +134680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "112bb626-01ef-43f6-83b9-bf26ed460589", + "id": "b488fb6f-3564-423e-a2f3-5586ea716097", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134730,7 +134730,7 @@ } }, { - "id": "92cf5ca9-d2bf-44cd-8a18-f4290d61aad5", + "id": "e0c2802a-3041-47cb-b4bf-0bd062b8f3e0", "name": "Get entitlement insights for a role", "request": { "name": "Get entitlement insights for a role", @@ -134755,7 +134755,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -134791,7 +134791,7 @@ }, "response": [ { - "id": "757c2edf-a1f3-4b2e-bb21-386877dafaee", + "id": "f5ab9e32-9b25-4b6e-ac3b-e2dd3d45be4f", "name": "Succeeded. Returns a list of entitlements to be added for a role.", "originalRequest": { "url": { @@ -134811,7 +134811,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -134850,12 +134850,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"incididunt ipsum sint\",\n \"id\": \"Excepteur ad enim anim\",\n \"description\": \"Lorem ut\",\n \"attribute\": \"cillum laboris proident\",\n \"value\": \"laborum velit veniam\",\n \"source\": \"consectetur velit eu laborum\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000\n }\n },\n {\n \"name\": \"id minim\",\n \"id\": \"reprehenderit elit in Lor\",\n \"description\": \"minim ut\",\n \"attribute\": \"fugiat consequat occaeca\",\n \"value\": \"nostrud cupidatat\",\n \"source\": \"do Excepteur cupidatat ex\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000\n }\n }\n]", + "body": "[\n {\n \"name\": \"dolor dolore\",\n \"id\": \"magna i\",\n \"description\": \"labore sit\",\n \"attribute\": \"Lorem qui\",\n \"value\": \"in eu dolore\",\n \"source\": \"adipisicing minim\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000\n }\n },\n {\n \"name\": \"ipsum do in nisi cillum\",\n \"id\": \"non sint et dolore\",\n \"description\": \"nostrud ea nisi\",\n \"attribute\": \"et\",\n \"value\": \"Lorem labore veniam ipsum\",\n \"source\": \"esse velit nostrud ei\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f231eae3-a980-4abb-a425-edcc885a31dd", + "id": "4588c01b-9212-4830-85ba-fd5157c16d19", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134875,7 +134875,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -134919,7 +134919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd5f729e-77ac-4bb1-a08d-d8e4b424f157", + "id": "9b05a497-ebb0-46f6-8113-a527e603b473", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134939,7 +134939,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -134983,7 +134983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a962c059-c74c-4442-b62b-da8f1bd54581", + "id": "3e486702-a252-4dbb-8cc3-1cd5bf854458", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135003,7 +135003,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -135047,7 +135047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "895cad86-514d-4e9b-aadb-6717c6ed4c76", + "id": "ec2fbe0c-143b-40eb-b73a-192275a1ad5d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135067,7 +135067,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -135117,7 +135117,7 @@ } }, { - "id": "701e73f5-6fe8-46a7-bc0a-635c957cf675", + "id": "2857b171-49d2-46d0-8766-e902b50ea6cb", "name": "Download entitlement insights for a role", "request": { "name": "Download entitlement insights for a role", @@ -135179,7 +135179,7 @@ }, "response": [ { - "id": "ad06285c-73aa-47ad-9fcc-c451b8da98d2", + "id": "13aa3f6e-40cf-4535-b542-789ce84e7a8a", "name": "Succeeded. Returns a csv file containing a list of entitlements to be added for a role.", "originalRequest": { "url": { @@ -135239,12 +135239,12 @@ "value": "text/csv" } ], - "body": "in aute elit ullamco", + "body": "magna dolore deserunt", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "b8067def-53c4-4c8b-89a3-7cce53644be5", + "id": "71707080-6fe8-4aa2-a852-74b1ad2dd5dc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135309,7 +135309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e109c505-2f55-44f7-9f08-6b64d825152b", + "id": "ce31ee6d-457a-43a3-849c-36ca9153847c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135374,7 +135374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bcde5df-996b-4286-8087-872d88bc7d17", + "id": "246fee86-e897-4f4b-8f42-b4a808b202be", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135439,7 +135439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6f7f1ac-d769-44b2-b7a0-cc47b05d9fc8", + "id": "42db3f8a-7b2e-44e0-8dc8-b0333eeb2e02", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135510,7 +135510,7 @@ } }, { - "id": "391d20e9-a8e8-40c2-8187-bb287fabf27f", + "id": "ff71cb82-5798-40d4-b08f-70a9fc422035", "name": "Get current entitlement for a role", "request": { "name": "Get current entitlement for a role", @@ -135562,7 +135562,7 @@ }, "response": [ { - "id": "97436332-9084-4f19-96d9-2db38cc63dba", + "id": "7e5e910e-70ab-448a-87a8-231d8b652fa3", "name": "Succeeded. Returns a list of current or pre-existing entitlements for a role.", "originalRequest": { "url": { @@ -135617,7 +135617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5837a00d-b50a-4092-b332-1c51e9a7af54", + "id": "def8a30e-8839-47a3-8e1a-92bda8870a20", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135672,7 +135672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59f11a09-d583-436e-8b55-6e3ba914ce3b", + "id": "92982b07-31d3-47d9-bc37-9af6dfedca94", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135727,7 +135727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63213dea-2fb8-48d3-9403-9e9f25e1462a", + "id": "1012ed74-2bc8-4aaf-bd8f-f0fb5d7becb0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135782,7 +135782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "864c05ea-0f0e-49e5-a9df-54d85cb5b10f", + "id": "899e4f0b-2fbf-46cd-a81c-1b3478ffcb67", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135843,7 +135843,7 @@ } }, { - "id": "d3ee8b96-9a33-41b6-86f2-8be649ae4871", + "id": "6d9d01d9-484a-4fad-89f2-71a656df46d9", "name": "Get identities for a suggested entitlement (for a role)", "request": { "name": "Get identities for a suggested entitlement (for a role)", @@ -135952,7 +135952,7 @@ }, "response": [ { - "id": "d93e0b49-7d4c-4992-9892-0ad981af68cf", + "id": "9ec0bc52-e1cf-4ace-bf0d-c398eaabc805", "name": "Succeeded. Returns a list of identities with or without the entitlement.", "originalRequest": { "url": { @@ -136054,7 +136054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7bc139d-4fb6-4947-87d0-b06a444d29ee", + "id": "c27c6135-2245-4a5e-9240-f964243908c9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136156,7 +136156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af0d441f-b590-4036-bda2-9728722b058e", + "id": "2d587ef1-dec6-4f0c-864e-383540568df5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136258,7 +136258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "079f0bb9-6d91-4c2d-9e21-8c0cb0b3b4c1", + "id": "77adcb3c-9e47-4ab7-89a8-c8508d6371a6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136360,7 +136360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82086299-f014-45b0-9bc7-5db13c43e9af", + "id": "07211c39-22f9-4bca-a1a1-379011ee6b02", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136474,7 +136474,7 @@ "description": "Use this API to implement and customize role functionality.\nWith this functionality in place, administrators can create roles and configure them for use throughout IdentityNow.\nIdentityNow can use established criteria to automatically assign the roles to qualified users. This enables users to get all the access they need quickly and securely and administrators to spend their time on other tasks.\n\nEntitlements represent the most granular level of access in IdentityNow.\nAccess profiles represent the next level and often group entitlements.\nRoles represent the broadest level of access and often group access profiles.\n\nFor example, an Active Directory source in IdentityNow can have multiple entitlements: the first, 'Employees,' may represent the access all employees have at the organization, and a second, 'Developers,' may represent the access all developers have at the organization.\n\nAn administrator can then create a broader set of access in the form of an access profile, 'AD Developers' grouping the 'Employees' entitlement with the 'Developers' entitlement.\n\nAn administrator can then create an even broader set of access in the form of a role grouping the 'AD Developers' access profile with another profile, 'GitHub Developers,' grouping entitlements for the GitHub source.\n\nWhen users only need Active Directory employee access, they can request access to the 'Employees' entitlement.\n\nWhen users need both Active Directory employee and developer access, they can request access to the 'AD Developers' access profile.\n\nWhen users need both the 'AD Developers' access profile and the 'GitHub Developers' access profile, they can request access to the role grouping both.\n\nRoles often represent positions within organizations.\nFor example, an organization's accountant can access all the tools the organization's accountants need with the 'Accountant' role.\nIf the accountant switches to engineering, a qualified member of the organization can quickly revoke the accountant's 'Accountant' access and grant access to the 'Engineer' role instead, granting access to all the tools the organization's engineers need.\n\nIn IdentityNow, adminstrators can use the Access drop-down menu and select Roles to view, configure, and delete existing roles, as well as create new ones.\nAdministrators can enable and disable the role, and they can also make the following configurations:\n\n- Manage Access: Manage the role's access by adding or removing access profiles.\n\n- Define Assignment: Define the criteria IdentityNow uses to assign the role to identities.\nUse the first option, 'Standard Criteria,' to provide specific criteria for assignment like specific account attributes, entitlements, or identity attributes.\nUse the second, 'Identity List,' to specify the identities for assignment.\n\n- Access Requests: Configure roles to be requestable and establish an approval process for any requests that the role be granted or revoked.\nDo not configure a role to be requestable without establishing a secure access request approval process for that role first.\n\nRefer to [Working with Roles](https://documentation.sailpoint.com/saas/help/access/roles.html) for more information about roles.\n", "item": [ { - "id": "3ceaf428-52f6-4f16-93da-c8781283b2ab", + "id": "3048b37e-1fff-4dd1-8818-bc4df10e4eab", "name": "List Roles", "request": { "name": "List Roles", @@ -136576,7 +136576,7 @@ }, "response": [ { - "id": "37a7599f-b8bf-4e1e-8953-164b7f8586ea", + "id": "bae1c754-f409-4f88-bd93-815b40ba8e14", "name": "List of Roles", "originalRequest": { "url": { @@ -136692,7 +136692,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8af2d6b6-756a-4f4c-8cb5-c0f05a25cc11", + "id": "bb5fd4a8-dc24-4e0d-b171-5b6db54d2e9e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136808,7 +136808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f84e126b-1340-4c55-9df1-a9a6f974ef52", + "id": "2614dad8-471b-4343-97a8-46a9385ec008", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136924,7 +136924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70ca7d02-b732-4828-acbf-baec7a5c00a0", + "id": "c28d4db8-0e2c-4c3c-b5c8-647d1429e17b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137040,7 +137040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c28ccc65-c0bf-41c2-bbdd-d2b041f986d2", + "id": "88c4aaec-fddf-4647-9bae-ea4facda19ea", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137156,7 +137156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ea9bb7f-ee87-4258-9a39-51377d98c283", + "id": "5afd2a78-e649-4542-bc5d-ec148c7791aa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137278,7 +137278,7 @@ } }, { - "id": "a749af9d-9eb3-492f-86e4-0260871d41d9", + "id": "499979fe-dbbf-4e98-8cec-8ebb7dd93e0c", "name": "Create a Role", "request": { "name": "Create a Role", @@ -137320,7 +137320,7 @@ }, "response": [ { - "id": "8bb8dcf4-5bbd-4918-9c4c-956368e8402a", + "id": "1065b45e-c174-4822-9740-ee2a97d5bb39", "name": "Role created", "originalRequest": { "url": { @@ -137376,7 +137376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4770566e-c3e3-4b3a-a21d-4b2da022bf8d", + "id": "436184ff-4499-41a2-9049-2d270fa88b41", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137432,7 +137432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "facc0053-e464-41c4-9af8-4f53e97a4486", + "id": "40b17ac4-4ae6-4642-835e-4f82791f24de", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137488,7 +137488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b367e49c-0676-48ac-a244-01cf2b09fde4", + "id": "3ec4082c-12ad-4be0-9163-36e43bfaf643", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137544,7 +137544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "294bdabd-a7a5-403f-8219-bc501be8ac0b", + "id": "36fc5743-b9ba-40a8-bafb-73421c737555", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137600,7 +137600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c259a9c2-d19b-4683-8e66-54a4b6a0ec09", + "id": "c94a9da4-3ea2-49b0-b7a0-24a4b93b18bc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137662,7 +137662,7 @@ } }, { - "id": "6f6052ec-02b4-49fa-949b-d418a235cd78", + "id": "719a95b0-351c-4685-8afc-97971b698689", "name": "Get a Role", "request": { "name": "Get a Role", @@ -137703,7 +137703,7 @@ }, "response": [ { - "id": "63a6124c-9918-40a2-974e-a5b86fae07f9", + "id": "fe1a56c5-1db7-4187-aaa5-119c3333da96", "name": "List of all Roles", "originalRequest": { "url": { @@ -137747,7 +137747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50a09344-df20-48d4-9204-0877b9c72e6d", + "id": "c6a7fb1d-6c3f-4b13-bfb2-7b2725c8e3fd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137791,7 +137791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1067f939-0e69-4689-ba1c-bf4aa6e59db8", + "id": "131b1647-cb53-48f4-bfbc-ecd8de677a5b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137835,7 +137835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df1becbf-0c72-4aa5-ba8e-b19d454d7917", + "id": "bb60dea9-2949-40cd-a141-744d4213602a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137879,7 +137879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b165d3f4-f282-40af-b2c3-851ac61d4105", + "id": "54977326-4269-41f3-b53c-043638704426", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137923,7 +137923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbd89196-edaf-4787-881f-98f9717ede7e", + "id": "df58c906-12b6-411d-9398-cbd845a98172", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137973,7 +137973,7 @@ } }, { - "id": "0d7b9765-1297-4188-b8e0-29ecb6550b27", + "id": "f9414694-f65b-4e47-84bf-814ae3060c95", "name": "Patch a specified Role", "request": { "name": "Patch a specified Role", @@ -138027,7 +138027,7 @@ }, "response": [ { - "id": "a4179b88-f8b1-49ab-89d9-366163687e6f", + "id": "616ae0d2-5bca-4e1f-88ed-eb4a3965e74f", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -138084,7 +138084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d4f1e19-8c44-432a-bce0-87fd585aee57", + "id": "c3fcdaf5-396e-43ed-b5a3-f7236bbb2dae", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -138141,7 +138141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eded5583-d990-4b13-b6c2-6f57739d6d8b", + "id": "2956c2ee-515d-4e59-9900-d7eb3bef5e8a", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -138198,7 +138198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c161691c-0171-4b92-a637-1f8807214396", + "id": "fb7fc533-a505-4c2d-9704-dea5fd91c906", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -138255,7 +138255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fbe1036-b051-497a-9c65-0f92daea1a6b", + "id": "9a52eaea-94f6-4a26-b54f-0b7443371fec", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -138312,7 +138312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00a6e5c6-6d24-486b-8fef-587889d5de1f", + "id": "b24a117b-7f27-4501-92c4-eb8e10a5a6de", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -138369,7 +138369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "384f2577-b096-4a5f-986a-458078950918", + "id": "b65f0494-b01b-4bda-974c-cf32e1c20fd9", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -138426,7 +138426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64464424-c131-4b45-8cc4-21fc30e8fe24", + "id": "0944936b-2b47-4124-ab63-7f8f7fb64cac", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -138483,7 +138483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ee696dd-ea08-4254-ade4-5f9f77367394", + "id": "486004bd-795c-4ed0-9c74-b47724b0c198", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -138540,7 +138540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0e47574-eede-4f09-8181-492d1a995db2", + "id": "fd920d66-5081-458c-a191-3148d8bff49a", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -138597,7 +138597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f3273f2-85ae-48bc-a77b-34b08d7779b6", + "id": "03a0783e-bdc9-4407-83c4-07e093fbd2e9", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -138654,7 +138654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "810b07ea-af3b-4e52-9994-704c8514883a", + "id": "181da7f8-ed87-4c0e-ad16-760e1cb083b4", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -138711,7 +138711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ea550cb-c2e0-4347-becc-070e44be651d", + "id": "69feebdd-3de7-46e9-9cce-4abe411e6ab3", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -138768,7 +138768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a4e2de0-0935-4ebf-9c73-ba37cea0d9fb", + "id": "9ded279b-c5f9-4cb8-b8a5-86d9a9114f2b", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -138825,7 +138825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7397d871-1ad4-4c4c-b471-a1d5853b6f1f", + "id": "36e004f0-3d9c-4ce2-b5ab-09f788b852ba", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -138882,7 +138882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9e239f2-7719-4ae6-88c0-afe972e7a8a0", + "id": "c1c5b909-4dc2-4d5a-a929-2047813f0c43", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -138945,7 +138945,7 @@ } }, { - "id": "aeaa0537-7838-4edb-98bd-b91d3dbb1f15", + "id": "ec709ebb-02f7-4ec4-894d-e246175bdf06", "name": "Delete a Role", "request": { "name": "Delete a Role", @@ -138986,7 +138986,7 @@ }, "response": [ { - "id": "877112b5-a082-49be-89f7-8e8349d062dd", + "id": "31ad04b4-2815-438f-913c-5584e516b8aa", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -139020,7 +139020,7 @@ "_postman_previewlanguage": "text" }, { - "id": "239f0a6b-a15f-42e3-9dd9-6206d498d53a", + "id": "e6031ece-203b-49b0-a639-02298f17a9ac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139064,7 +139064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e20f046a-7a1b-4349-9ceb-2ba3ccd305a8", + "id": "98ca1276-e982-4faf-a002-0f7f97bd73ec", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139108,7 +139108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d2f1844-65f9-41b4-a4e1-4fd01dbe5790", + "id": "fc8a11f5-6f3f-4c95-b39b-c899297a1ae1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139152,7 +139152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f516d0b3-d392-43b7-8756-937aabbf958b", + "id": "2f324302-0b66-49e6-9530-1f7681dac3f8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139196,7 +139196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61ee7366-6e8f-4d18-a5d4-be2e44620be4", + "id": "434835e6-1890-4461-a09a-73101dc3f760", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139246,7 +139246,7 @@ } }, { - "id": "89a1119c-5c79-48fd-8e9c-c412cb2b14cf", + "id": "70d50de7-b9d1-4520-a21c-6eafa87204cf", "name": "Delete Role(s)", "request": { "name": "Delete Role(s)", @@ -139289,7 +139289,7 @@ }, "response": [ { - "id": "f0caf69f-a5ca-4d2f-bfc2-b4446dff7107", + "id": "290f6974-ff4b-49be-8039-343e3c2b9a86", "name": "Returns an object with the id of the task performing the delete operation.", "originalRequest": { "url": { @@ -139346,7 +139346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53cd6f29-dddb-49e7-9f83-6a621c26e049", + "id": "22f621d9-8497-4bc5-aa32-8cf96b6c0003", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -139403,7 +139403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2aa8f7ad-2c1d-4c5f-872c-528b288f3e30", + "id": "97e17042-23e1-4a0b-ae2d-77b773f1ee45", "name": "400.1 Role ids limit violation", "originalRequest": { "url": { @@ -139460,7 +139460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c78b46b-1ab6-4939-84a6-8623ceea85c6", + "id": "a6b34588-2e08-4596-a43d-01206bb025e5", "name": "400.1.404 Referenced object not found", "originalRequest": { "url": { @@ -139517,7 +139517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "122a0d1d-9252-4ffa-87a5-e4fe731c1eaf", + "id": "ee98f271-1da8-447a-a71e-2baec32cc6ac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139574,7 +139574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a08fe436-cf82-4f2a-9fd4-ac39f645b553", + "id": "fbfd681d-4a1c-40a2-add0-5565873917e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139631,7 +139631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "465a9c9d-484f-499d-b262-d3851d683f24", + "id": "72a60d82-b1e8-443a-b4e3-dc069beafd8e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139688,7 +139688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "426ce011-8163-48bd-94bf-b3004796eff5", + "id": "bc0a67d9-c329-4523-8ce1-b61fe3317a3f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139751,7 +139751,7 @@ } }, { - "id": "334165b6-b25b-49c6-b07c-4a0c00c1d5ca", + "id": "79bbab5d-23a1-4172-9cdf-250fa1e62dcc", "name": "Identities assigned a Role", "request": { "name": "Identities assigned a Role", @@ -139836,7 +139836,7 @@ }, "response": [ { - "id": "1463f506-85b6-45c6-a8f0-09729ff195bb", + "id": "93093dd6-f8c5-4e48-b1dc-c4c9d85c5eb1", "name": "List of Identities assigned the Role", "originalRequest": { "url": { @@ -139927,7 +139927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5c4ecc7-805b-40d1-ad60-061b957f4d8c", + "id": "6cb2a059-7c99-4502-94e4-01fccb236c4d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140018,7 +140018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ea36e57-4bd8-4a96-aa13-786d0d1ff97f", + "id": "a4c84992-351e-4b9f-8cb6-1814138f188b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140109,7 +140109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84689f3f-88ac-4ed4-93f8-9879162467be", + "id": "68c5e2ec-1870-439e-b3f2-4fe5c6e8f0c2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140200,7 +140200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6aae9b14-4b25-4e9f-845d-ef6dd1e9e6d8", + "id": "18dc3a8f-b05b-45dd-8540-87a75bec931c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140291,7 +140291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99b8c0dc-f5c2-46f4-bffb-3deab0f02caf", + "id": "4abb768f-8397-4c5b-88c5-3129e10e7235", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140388,7 +140388,7 @@ } }, { - "id": "4d06ec2e-6c5a-4a97-bf04-11e77c4fc7ac", + "id": "ea5ee3a7-9383-455c-9679-bb93a699015c", "name": "List role's Entitlements", "request": { "name": "List role's Entitlements", @@ -140476,7 +140476,7 @@ }, "response": [ { - "id": "e2222981-5c3d-4b15-a38b-e61ba8db14b7", + "id": "4b1d1e5c-815c-43a4-a3bb-b540b835e0c3", "name": "List of Entitlements", "originalRequest": { "url": { @@ -140567,7 +140567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "642ac1f2-a00d-49fa-a745-1f4ac2ae322f", + "id": "8cf162f5-c557-46ea-b734-119ed2cf7809", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140658,7 +140658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b9184b5-a771-4d6e-a5b9-030729c6284c", + "id": "92555fde-58d0-4ccb-aab3-bf5d10b27752", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140749,7 +140749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1eb2c7a0-4030-463c-bd56-b4ad59b270aa", + "id": "4a7dd908-2fa9-4697-8414-d4ea609908bb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140840,7 +140840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27977b29-483c-466b-8bf3-0af94dcc0a30", + "id": "9772991d-a70e-4d7b-b851-b45816cdf580", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140931,7 +140931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa955890-e157-4cad-902c-3644691db2ef", + "id": "348c6f81-adbe-4951-b343-4bd3ba37c4fd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141034,7 +141034,7 @@ "description": "", "item": [ { - "id": "6252c510-ef95-4a26-89eb-21f244023935", + "id": "85b00cfd-4d6e-4711-bb2a-c778e9fa171c", "name": "Configure/create extended search attributes in IdentityNow.", "request": { "name": "Configure/create extended search attributes in IdentityNow.", @@ -141077,7 +141077,7 @@ }, "response": [ { - "id": "304f0bf9-139f-4701-955a-b183822dbe87", + "id": "6559d3c8-856a-489d-90a5-4406e8836629", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -141134,7 +141134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4903d458-b81b-4ac4-a14e-d717e22ddfd1", + "id": "7eb892d5-67e0-4300-812d-0f7fd0cffab3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141191,7 +141191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb33b90c-7904-445c-9fe6-c4a8a57681ba", + "id": "1969f372-ec65-45ca-ae09-aea51c1602f8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141248,7 +141248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90ec9099-17bf-4cb1-8c70-c6ac8b2d8a98", + "id": "72ac2b09-0ac2-4ff8-98f3-a769561b63be", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141305,7 +141305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71b26a25-2f7e-4adb-bfa9-bb7818bacfa8", + "id": "6c497f38-a480-4e50-b43f-b82db2f7ab12", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -141362,7 +141362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f31f3f7a-3bee-4f83-9ddf-40078b35eb60", + "id": "999ec8db-c5b2-42bd-8bad-d91168f112dc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141419,7 +141419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d53f991-16f5-43c8-a694-df2c0dd55e06", + "id": "35ea98bf-3428-4e36-8c5b-f4600157ab75", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141482,7 +141482,7 @@ } }, { - "id": "4ea0f4f1-d22c-4817-9e56-6dad98a2c8ff", + "id": "eeec293c-782b-401c-be06-00f8803a481d", "name": "Retrieve a list of extended search attributes in IdentityNow.", "request": { "name": "Retrieve a list of extended search attributes in IdentityNow.", @@ -141512,7 +141512,7 @@ }, "response": [ { - "id": "090ab872-c0e1-43f3-87bb-5177efe47642", + "id": "318d9a32-a37f-4520-8423-c98a9369ae60", "name": "List of attribute configurations in IdentityNow.", "originalRequest": { "url": { @@ -141556,7 +141556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ffb315a-b6d1-4948-b1f4-db8e828a42a8", + "id": "62670b7c-7fac-4975-b53b-b693039444f2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141600,7 +141600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3264294e-67b5-47d6-8705-2e2bec4749d6", + "id": "09d83acf-6a31-40b6-bd52-1cd7d00ce2b9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141644,7 +141644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "978e3b3a-5ed1-499f-bb1d-dcec8469db74", + "id": "ff783c89-2baf-4d01-8755-6b5bcab67a4a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141688,7 +141688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "984b231a-78f0-4e59-9b72-ae9dd9316f0c", + "id": "b9be2c7a-06fb-4fb4-bbf9-d2f76fb9fac5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141738,7 +141738,7 @@ } }, { - "id": "7b6d1876-f62e-4399-b0e3-220607298c96", + "id": "a4a7329c-be7b-449d-aa63-ea5cf2269eeb", "name": "Get the details of a specific extended search attribute in IdentityNow.", "request": { "name": "Get the details of a specific extended search attribute in IdentityNow.", @@ -141780,7 +141780,7 @@ }, "response": [ { - "id": "b01cabd3-9bea-49ff-ba62-89e105f63d08", + "id": "d284ba4f-4e18-4b84-844e-3265f866d9ba", "name": "Specific attribute configuration in IdentityNow.", "originalRequest": { "url": { @@ -141825,7 +141825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5456c193-c9de-4dd6-8056-80667db6ab19", + "id": "08398c57-fb5f-45c4-b1cb-fee89f931a24", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -141860,7 +141860,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1a418e4d-4afb-4d70-888a-a020b68dd87e", + "id": "13f7d71e-47d5-44fe-b7bf-73ec1eefe113", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141905,7 +141905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c62c4f9-89ac-4ede-8ee1-c4936a0a4556", + "id": "ced89944-0f6b-48eb-8147-5ec4377c07c2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141950,7 +141950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5041c8c-8b1e-4db3-90ae-1a71f800bcf9", + "id": "dfe68d02-663d-4ac6-b155-d95775aa3cc2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -141995,7 +141995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71d458ec-e221-49f7-9e3f-b89864fc505b", + "id": "0ef21465-d33b-4478-a7cc-7bcb1cf7ae16", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142040,7 +142040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01d8cb94-aaf6-4c43-8770-b6aaadf9af44", + "id": "a8b03dea-925f-4abc-be22-75df5cd59bfc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142091,7 +142091,7 @@ } }, { - "id": "6c4a53f3-f9d9-4110-8fc6-924673112f4c", + "id": "17c67bec-95a7-4e09-972c-00b05a03fc67", "name": "Delete an extended search attribute in IdentityNow.", "request": { "name": "Delete an extended search attribute in IdentityNow.", @@ -142133,7 +142133,7 @@ }, "response": [ { - "id": "cf3c1e85-4fd1-48fd-b7df-5d4d9c45d716", + "id": "f493f31e-067c-4950-96fa-38664f3be44c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -142168,7 +142168,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9e6af110-d0f0-470b-883a-8a0fad05d4e9", + "id": "6f5d76e9-5064-4363-ae11-37467e024ed6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142213,7 +142213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86ecdab5-22e6-4672-b7c1-342ab77fef8a", + "id": "52d842ed-d800-4aaa-a233-aba2d260a6d9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142258,7 +142258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d956e32-526c-497f-b433-085d37dc3700", + "id": "9e3ba761-64bd-4bb4-b1f0-e931fbf99fba", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -142303,7 +142303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96f05298-59c7-4429-b890-57604cdfec19", + "id": "4720b4ed-56b9-42c5-a2d5-0fa7888de3b8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142348,7 +142348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cdac3c1-2782-4728-bb50-1ed531e6711b", + "id": "b3fde8ed-085b-4650-a143-ac20dd4ad6de", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142399,7 +142399,7 @@ } }, { - "id": "bbe9e4ad-1b0e-4fa4-8096-a7edb222fbbf", + "id": "0d423f11-a335-44fc-937c-bd468f3fa4a5", "name": "Update the details of a specific extended search attribute in IdentityNow.", "request": { "name": "Update the details of a specific extended search attribute in IdentityNow.", @@ -142454,7 +142454,7 @@ }, "response": [ { - "id": "6a3323f8-26c4-402c-b551-cb881f09d0f5", + "id": "3da84daa-0337-44ad-95a0-44d35d9c430a", "name": "Responds with the Search Attribute Configuration as updated.", "originalRequest": { "url": { @@ -142512,7 +142512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7352478a-0718-48d4-9195-407dd1e1b678", + "id": "5298ba8f-7c3c-4b0a-8b95-3fdffaf92e85", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142570,7 +142570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0cece1c-455d-485a-b7be-f77a8ff46996", + "id": "77f179a9-4ea8-46b5-a7b1-965a8a344ca9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142628,7 +142628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cadd49a-8baf-4075-94bf-5dcc18995f89", + "id": "c40ff74b-746a-4a84-98b0-8dac5be7d5f0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142686,7 +142686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83c9a5e3-cd4d-4272-b0a2-6c15028a8e79", + "id": "6c469817-34d8-48fa-8542-99ada301e2cb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -142744,7 +142744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f3b5033-1f8f-4615-8af4-30cd4c8b36e9", + "id": "9ace91cf-a09d-4288-aa60-dfb4a247f0a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142802,7 +142802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fedc16f9-8fc5-4e1d-bde5-1eb2dbfad420", + "id": "b483f255-134c-4d03-aaf3-3221ddbcb976", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142872,7 +142872,7 @@ "description": "Use this API to implement and customize access request segment functionality. \nWith this functionality in place, administrators can create and manage access request segments. \nSegments provide organizations with a way to make the access their users have even more granular - this can simply the access request process for the organization's users and improves security by reducing the risk of overprovisoning access. \n\nSegments represent sets of identities, all grouped by specified identity attributes, who are only able to see and access the access items associated with their segments.\nFor example, administrators could group all their organization's London office employees into one segment, \"London Office Employees,\" by their shared location. \nThe administrators could then define the access items the London employees would need, and the identities in the \"London Office Employees\" would then only be able to see and access those items.\n\nIn IdentityNow, administrators can use the 'Access' drop-down menu and select 'Segments' to reach the 'Access Requests Segments' page. \nThis page lists all the existing access request segments, along with their statuses, enabled or disabled. \nAdministrators can use this page to create, edit, enable, disable, and delete segments. \nTo create a segment, an administrator must provide a name, define the identities grouped in the segment, and define the items the identities in the segment can access.\nThese items can be access profiles, roles, or entitlements. \n\nWhen administrators use the API to create and manage segments, they use a JSON expression in the `visibilityCriteria` object to define the segment's identities and access items. \n\nRefer to [Managing Access Request Segments](https://documentation.sailpoint.com/saas/help/requests/segments.html) for more information about segments in IdentityNow. \n", "item": [ { - "id": "07843ab7-b800-4fee-a489-ce6a5fe40f8a", + "id": "752259c3-4326-4fc0-83ff-816e7f132e2d", "name": "Create Segment", "request": { "name": "Create Segment", @@ -142914,7 +142914,7 @@ }, "response": [ { - "id": "e0707a01-6c77-4d85-9be5-be23d4baba3d", + "id": "c698235b-7357-4bb5-b1ef-607567576745", "name": "Segment created", "originalRequest": { "url": { @@ -142970,7 +142970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9df52ad8-98b6-463f-80e8-79e0dbe18a63", + "id": "a341dca5-090b-41ea-820b-9e3ab0e7540b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143026,7 +143026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e7360ba-dd02-47a4-bad4-96b1e30c927b", + "id": "573185b5-fd10-486b-9f0d-21f8d5ef569d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143082,7 +143082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e13202c2-79a8-40a9-b8e8-a74c1b640613", + "id": "3348e97d-e89b-4723-8185-f1c5e9d6ba29", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143138,7 +143138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ef39c14-2887-4bea-a6dd-94dfe7bba5b0", + "id": "d88b21bd-7b8d-4892-9d0a-1d6d0aa95d1b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143194,7 +143194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7459bfa-f4af-498e-8afa-32e0fee48a4d", + "id": "2f608f99-a2e9-484c-bdaa-415808c5a8e1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -143256,7 +143256,7 @@ } }, { - "id": "a8512708-c1f0-4e19-bd8a-02b8d802a087", + "id": "dfa87922-7f8b-4a89-8f0a-74254463a658", "name": "List Segments", "request": { "name": "List Segments", @@ -143313,7 +143313,7 @@ }, "response": [ { - "id": "e6c7b8bf-4f48-4cfd-a908-ac7a5a3d1057", + "id": "d7c3853f-a0bd-4ac0-b092-21852a03a307", "name": "List of all segments", "originalRequest": { "url": { @@ -143384,7 +143384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef535675-e247-4021-84ec-6e9966aaa674", + "id": "e189b8bf-ae70-46c7-8c51-3adb32741149", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143455,7 +143455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2a06e17-5353-4cb5-b9f0-b3ea804e1649", + "id": "3a58f4e0-edde-47a7-b3fe-88e7bc220442", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143526,7 +143526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e37b5619-322c-422c-8349-1964702db26c", + "id": "382c4926-667e-4a14-9eda-2157b55be46f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143597,7 +143597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95fe129b-5215-44b1-9e27-a282c7d0dfcd", + "id": "0b7092b9-0589-4843-aaa8-3be2aa456928", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143668,7 +143668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "119b49f9-abe0-4ecf-ab59-22ad69a179b8", + "id": "f747e5bb-7538-43d0-a56a-bf6efe1e03df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -143745,7 +143745,7 @@ } }, { - "id": "7e0f5f23-07ed-4fab-959b-9103467bea41", + "id": "dda475a3-dcc9-40dd-8b60-b4a3a68ce3ba", "name": "Get Segment by ID", "request": { "name": "Get Segment by ID", @@ -143786,7 +143786,7 @@ }, "response": [ { - "id": "fed3787e-8c6b-46d9-bc1e-632b395eec06", + "id": "420ac5c9-c798-410f-a238-7aa586e9ffaf", "name": "Segment", "originalRequest": { "url": { @@ -143830,7 +143830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60b528dd-cbca-4e38-8e5e-0b18c1244f92", + "id": "9175cdbb-a614-42ee-95a8-0e5b21986cb7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143874,7 +143874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b6fc675-de52-4474-9b44-7593f91c93f3", + "id": "a642cad4-75d5-477e-887d-d7bf4c47237f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143918,7 +143918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d115796d-e0d9-4df4-b118-068fe392922e", + "id": "22378c70-520b-48b8-8152-bfc18ee087df", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143962,7 +143962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a75fe18d-6e4e-410f-89aa-e4e2877d4850", + "id": "a9e6f105-b27f-4393-8672-ef34a94d0009", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -144006,7 +144006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcc30946-175b-48bd-941b-30aa502a5e78", + "id": "9af7a795-502d-4e7d-9296-ecd54c1b3ba0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144050,7 +144050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce0f075a-f3d2-4694-ae58-7638b55ee150", + "id": "e07faf6c-a402-4816-926c-907947e64a05", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144100,7 +144100,7 @@ } }, { - "id": "6d74668d-2d2e-4ab1-8bf6-99705549bbc7", + "id": "ec4427bc-dfd4-4b68-9bc1-5695f57e430f", "name": "Delete Segment by ID", "request": { "name": "Delete Segment by ID", @@ -144141,7 +144141,7 @@ }, "response": [ { - "id": "aaeb94fc-6672-483e-bfad-21e14618a28b", + "id": "06044a03-af1d-4179-ab07-1f2aad5f1f5c", "name": "No content.", "originalRequest": { "url": { @@ -144175,7 +144175,7 @@ "_postman_previewlanguage": "text" }, { - "id": "094fdf1c-9280-4f7b-a096-27f85bb69126", + "id": "98796fb4-ad0a-4fa8-aad6-e997c946182c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144219,7 +144219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d15cba0-4a52-4d23-a467-2a73f4f7751a", + "id": "99ca7c74-1761-4e53-bf58-d3385fe86c63", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144263,7 +144263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f01befb7-6178-45d1-a581-86f9ed42a579", + "id": "199d6f44-0f00-4e30-b01d-147328b3cb0f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144307,7 +144307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4baf30f1-3a77-49f9-9b79-ebf732fae565", + "id": "f07bf3bb-6eb6-428d-8772-8aff00288043", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -144351,7 +144351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e7e0c6a-742c-4b81-9440-520f6da45feb", + "id": "26ae7cb8-807b-4831-86cc-41e6753ae068", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144395,7 +144395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f372e59a-d6da-4b9a-8b97-24fdd2e2400f", + "id": "bb1da3bd-cd69-4b68-90f6-de3f7dcc0fe3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144445,7 +144445,7 @@ } }, { - "id": "6b2e92cb-f970-4464-b588-8dce2987ca89", + "id": "76c83a73-d39d-42c2-8a3b-4c02007af699", "name": "Update Segment", "request": { "name": "Update Segment", @@ -144499,7 +144499,7 @@ }, "response": [ { - "id": "bc46735f-a062-479e-afa8-39ded56aebca", + "id": "587d1178-02aa-49bd-a0dd-013591e2c2bf", "name": "Indicates the PATCH operation succeeded, and returns the segment's new representation.", "originalRequest": { "url": { @@ -144556,7 +144556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f16fdd31-332d-4877-8286-c56a6059e614", + "id": "59ab4a9a-af88-4cf0-9a62-d3a78ee41208", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144613,7 +144613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8f1a1ae-4f8b-487e-a8ab-1cf11b1d7a34", + "id": "9144a008-8682-4fe7-bac2-89fccb71a739", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144670,7 +144670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efb9d593-06ef-44f3-b1ff-1825c0f07fbd", + "id": "4691f8ba-cd76-4261-98c8-2004160a3f3c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144727,7 +144727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db3184f1-9784-4fe9-a841-4bdf9cddaeda", + "id": "b534d20b-468c-42e4-a0ed-5547e4e2ca4c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -144784,7 +144784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc870384-8622-4369-a4a6-d1b99bd230f1", + "id": "d29a1d41-9539-48d5-81b8-d6851ab0e3da", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144841,7 +144841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2406b765-40f2-4f87-9365-1ff6f5052a3e", + "id": "8a75808f-f468-4298-8aff-278b03af526c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144910,7 +144910,7 @@ "description": "Use this API to build an integration between IdentityNow and a service desk ITSM (IT service management) solution.\nOnce an administrator builds this integration between IdentityNow and a service desk, users can use IdentityNow to raise and track tickets that are synchronized between IdentityNow and the service desk.\n\nIn IdentityNow, administrators can create a service desk integration (sometimes also called an SDIM, or Service Desk Integration Module) by going to Admin > Connections > Service Desk and selecting 'Create.'\n\nTo create a Generic Service Desk integration, for example, administrators must provide the required information on the General Settings page, the Connectivity and Authentication information, Ticket Creation information, Status Mapping information, and Requester Source information on the Configure page.\nRefer to [Integrating SailPoint with Generic Service Desk](https://documentation.sailpoint.com/connectors/generic_sd/help/integrating_generic_service_desk/intro.html) for more information about the process of setting up a Generic Service Desk in IdentityNow.\n\nAdministrators can create various service desk integrations, all with their own nuances.\nThe following service desk integrations are available:\n\n- [Atlassian Cloud Jira Service Management](https://documentation.sailpoint.com/connectors/atlassian/jira_cloud/help/integrating_jira_cloud_sd/introduction.html)\n\n- [Atlassian Server Jira Service Management](https://documentation.sailpoint.com/connectors/atlassian/jira_server/help/integrating_jira_server_sd/introduction.html)\n\n- [BMC Helix ITSM Service Desk](https://documentation.sailpoint.com/connectors/bmc/helix_ITSM_sd/help/integrating_bmc_helix_itsm_sd/intro.html)\n\n- [BMC Helix Remedyforce Service Desk](https://documentation.sailpoint.com/connectors/bmc/helix_remedyforce_sd/help/integrating_bmc_helix_remedyforce_sd/intro.html)\n\n- [Generic Service Desk](https://documentation.sailpoint.com/connectors/generic_sd/help/integrating_generic_service_desk/intro.html)\n\n- [ServiceNow Service Desk](https://documentation.sailpoint.com/connectors/servicenow/sdim/help/integrating_servicenow_sdim/intro.html)\n\n- [Zendesk Service Desk](https://documentation.sailpoint.com/connectors/zendesk/help/integrating_zendesk_sd/introduction.html)\n", "item": [ { - "id": "0dd97181-a54e-4fde-a65f-32acac485bac", + "id": "46592fc3-2151-4aa8-a423-70c0443f4289", "name": "List existing Service Desk Integrations", "request": { "name": "List existing Service Desk Integrations", @@ -144985,7 +144985,7 @@ }, "response": [ { - "id": "958c533f-ae94-498c-be78-0e631ad67b86", + "id": "d07adb1c-f485-45f1-9ccd-95aa8eb0df13", "name": "List of ServiceDeskIntegrationDto", "originalRequest": { "url": { @@ -145074,7 +145074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07b3ed34-74f6-4b41-8fe4-e8feda4d7e0a", + "id": "e93b5a3d-1c2c-400d-9c09-13efad0028d6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145163,7 +145163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f3af0a8-e7f4-4a31-81ff-fdece5b6623e", + "id": "dd858667-798f-4e56-aca4-c6689df25842", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145252,7 +145252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5e7559f-a896-424a-ba34-411f4b05a58c", + "id": "ade754d8-476d-4af3-85a0-2b5c8555e2b8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145341,7 +145341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb8f0459-5780-4552-96b4-0cd897d6bf98", + "id": "bf85ff5d-4142-4199-a690-9022fc7601d5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -145430,7 +145430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "069702e3-c57a-418c-9b68-5e4df8397727", + "id": "cc600856-77b2-4596-92ca-c76a258fe3fa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145519,7 +145519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6dba0b13-b42c-4d0e-b3df-a224a00af34e", + "id": "01a74e12-ec21-41d2-834c-23fd9df8434c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145614,7 +145614,7 @@ } }, { - "id": "53ec4ab4-c292-4bb3-9340-1b3106ee4da1", + "id": "3c9b015d-cbdc-4ec5-b4df-0df64ea09b61", "name": "Create new Service Desk integration", "request": { "name": "Create new Service Desk integration", @@ -145656,7 +145656,7 @@ }, "response": [ { - "id": "70207390-a73c-48b6-9a57-efc276d16175", + "id": "1f6408be-0056-461a-8f89-bdfb38ec684a", "name": "details of the created integration", "originalRequest": { "url": { @@ -145712,7 +145712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e4bd5fe-b355-4f68-a42a-7d26ceaaba7f", + "id": "441ab8b9-49a2-4b7c-ac05-38732ebbb6b2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145768,7 +145768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c35aa69e-7ce1-4a58-8d29-7a3ebd16d71d", + "id": "0a015bd0-5d76-404f-842d-4083711c491e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145824,7 +145824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19584e84-62f8-4a4b-b304-304a88d0d146", + "id": "a24655b2-0484-4311-b36f-60211cb584b4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145880,7 +145880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb9d1fe1-23fb-4940-bfb5-d4f83015fd03", + "id": "7d6a1acc-43b4-4d8f-ab13-ab42a66f347a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -145936,7 +145936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4adb5214-d168-4c38-9eac-90c1e607de6c", + "id": "5b5f975f-e61b-4b99-98a3-f5c0a53e41f2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145992,7 +145992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38438102-7869-43a5-a35f-d82b664749eb", + "id": "0b17099e-4c93-409e-8384-8763936668ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146054,7 +146054,7 @@ } }, { - "id": "9b6dcb33-4fcb-45f5-8e6c-ce31ac61e1c2", + "id": "3d590448-54a9-4cef-9ae4-a66f942c37f8", "name": "Get a Service Desk integration", "request": { "name": "Get a Service Desk integration", @@ -146095,7 +146095,7 @@ }, "response": [ { - "id": "aa1a6e1e-3245-4ca6-985e-a70b3f852fcd", + "id": "ebeab464-7aa4-41a6-97df-8539d4d3100c", "name": "ServiceDeskIntegrationDto with the given ID", "originalRequest": { "url": { @@ -146139,7 +146139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33c6d68e-3d50-4156-8fea-789924e58130", + "id": "1339d272-6deb-444d-ad93-f7f97e1869dc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146183,7 +146183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87478407-63d7-489e-8548-f9555efc6ebe", + "id": "c627a4a4-a5a9-498f-89e3-5f7e03e134ee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146227,7 +146227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3408581-3995-41aa-a895-93e1aa12f61d", + "id": "19d47ebf-8a2b-44f2-9e3e-4768fd996bf7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146271,7 +146271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d7127d9-e6a2-4af1-be71-ff4adcb9b055", + "id": "0cfabd53-9413-49d8-9c0e-91a53ba8fda3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -146315,7 +146315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0ffb0c0-3c72-485f-a309-bf66a0543c07", + "id": "0698cec8-9c72-4f91-84be-b951a9ac2362", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146359,7 +146359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23950689-9ee8-4805-87ae-b5f09308cf3a", + "id": "c006a03b-5a15-4aa1-b305-14de3c14a714", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146409,7 +146409,7 @@ } }, { - "id": "803ae1cb-0a17-480a-842f-90c72f963828", + "id": "1e3bf3ae-4b75-4302-8872-ed014de58ea0", "name": "Update a Service Desk integration", "request": { "name": "Update a Service Desk integration", @@ -146463,7 +146463,7 @@ }, "response": [ { - "id": "f3d01924-4ea5-4bfc-b45d-11b1187d6b56", + "id": "2fdf2568-9dd1-4fed-a702-5f9018cd7d37", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -146520,7 +146520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9514f012-0919-44d0-b7d4-7d7b58289d2a", + "id": "464a695d-fecf-4103-b1e3-8489fea4f88d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146577,7 +146577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2848f5bf-3095-446f-92d3-37e9cd1cdcd1", + "id": "4c087be3-235d-4a3d-97a3-c445288212a3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146634,7 +146634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55205ad5-8844-450d-b8f3-65f8cc7c4277", + "id": "71d42c57-7aa8-497f-894b-88904444d848", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146691,7 +146691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6030214-fbbe-4c65-8dcd-8386a4665ab4", + "id": "8e39fc93-c88a-42bb-afcd-fed2bda4b1c3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -146748,7 +146748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "241e1661-50a1-49c7-a865-3df33d2ff962", + "id": "69d188c1-3919-492e-9655-992943f66e76", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146805,7 +146805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51548b59-c968-45df-8c7f-7c1c1578edc3", + "id": "62add7a8-42f3-4fa1-9799-1c740c2145b6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146868,7 +146868,7 @@ } }, { - "id": "8f01c0c2-23ee-4671-a2a0-096d5f789250", + "id": "898c7976-1282-4df9-8c56-b0c21a2222a5", "name": "Delete a Service Desk integration", "request": { "name": "Delete a Service Desk integration", @@ -146909,7 +146909,7 @@ }, "response": [ { - "id": "ec91c36f-3885-479c-9d20-94b97d7abeaa", + "id": "37d77d41-b858-4708-8fc9-db7e6056a0d3", "name": "Service Desk integration with the given ID successfully deleted", "originalRequest": { "url": { @@ -146943,7 +146943,7 @@ "_postman_previewlanguage": "text" }, { - "id": "258b27fa-d2de-4bd3-a6f5-f6ab3163d444", + "id": "13128dd1-b0b1-48ca-b594-3d69b0aa21bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146987,7 +146987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d31564c-2590-4a25-b115-6215ec810039", + "id": "fab751f5-cc47-4b7d-8a1c-8eb5ca0ce7ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147031,7 +147031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b55a419-f190-4fda-b35d-d0cfe10030fb", + "id": "f83b65d0-df41-4fb2-928e-d01f3d4903e9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147075,7 +147075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79c0a13a-40de-4d23-a145-574ee33e0c68", + "id": "d4323add-e9fc-452a-bbb4-7171e3719553", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -147119,7 +147119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53db3e79-d778-42c6-949c-358ec64269a4", + "id": "c7d4e17f-6851-41cc-a5e5-075a7e204457", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147163,7 +147163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f44d1fe3-e8b8-4e00-974f-9e51094bb7f1", + "id": "37cbb1c9-6525-48d6-a71a-3ce0dd3e1428", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147213,7 +147213,7 @@ } }, { - "id": "262788a0-037b-47b4-b290-a0d50625ff12", + "id": "ac70fa2d-e660-47b8-ab8e-f8eb6351c4ff", "name": "Service Desk Integration Update PATCH", "request": { "name": "Service Desk Integration Update PATCH", @@ -147267,7 +147267,7 @@ }, "response": [ { - "id": "64c79c3e-ca20-43a9-90eb-7c233e6b3c99", + "id": "4dd2977b-d387-43c8-b685-d889a1b657e4", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -147324,7 +147324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fac7bcb4-e807-49cd-a681-8b3a9a12155a", + "id": "bfaae9a1-ee9d-43c3-805e-24b0f5a94063", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147381,7 +147381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14585724-9f54-478a-8e35-a6db9caca6c1", + "id": "bb6f4809-57a6-4858-b49e-baca9f9e084b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147438,7 +147438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "546c6339-81b5-4ee1-bfea-3725a9b50ad4", + "id": "eacbad11-3846-47f3-93c6-b10753ce57d0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147495,7 +147495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c008101a-d930-4d68-be4c-c8c116a0d21d", + "id": "d0005633-01c6-48c5-9725-d1ff6dde2c70", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -147552,7 +147552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1abe890d-b787-468b-834f-d13ed2cd4078", + "id": "70b55ab5-43da-43d0-ba51-c93dc0241490", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147609,7 +147609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23c5a8f2-caea-4598-a8b9-59a66a3fcccd", + "id": "e9ce6fdb-e496-4391-b5d3-8d11409f3e97", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147672,7 +147672,7 @@ } }, { - "id": "0aef481f-aa4a-46ae-acbd-3e5769669c37", + "id": "c2d3fc0e-661c-46a2-bd3a-b052c593e2bc", "name": "Service Desk Integration Types List.", "request": { "name": "Service Desk Integration Types List.", @@ -147702,7 +147702,7 @@ }, "response": [ { - "id": "bb212d7c-2882-4125-b1e7-f7bb0154e55e", + "id": "db1a2b46-1b57-4071-9299-898850fd940b", "name": "Responds with an array of the currently supported Service Desk integration types.", "originalRequest": { "url": { @@ -147746,7 +147746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "116f1690-cf53-40e8-9fbc-ffed873ea846", + "id": "556fd88c-3a29-440c-a7a0-2a406e27b38a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147790,7 +147790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c95942ea-fd38-45c3-b215-0378d675364c", + "id": "a32af1f2-47a8-46fe-8e72-a1f0644b4d78", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147834,7 +147834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6af62225-6e94-4687-85fa-05968ace0cf4", + "id": "91e83b09-0833-4452-912e-1108a0783602", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147878,7 +147878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42e1eb2c-7dbc-43f1-af78-1eb23c230edf", + "id": "a95f8493-5c72-411a-817b-72aeefb452b8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -147922,7 +147922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4837d94-a6e3-48f6-8b4b-f911f7b1e757", + "id": "6e471ee2-b82d-4d29-a113-caf42f3c5408", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147966,7 +147966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7bd301b-b5bd-4ee4-8ff4-a906bdd3a8f3", + "id": "534c3a97-72a7-41d8-a483-4e23f5cddcc1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148016,7 +148016,7 @@ } }, { - "id": "3f17c1f9-be94-4816-a4b0-686f16e6a46d", + "id": "576aa3d9-3f98-4e42-b177-976219edafb1", "name": "Service Desk integration template by scriptName.", "request": { "name": "Service Desk integration template by scriptName.", @@ -148058,7 +148058,7 @@ }, "response": [ { - "id": "803cfc6b-f9ab-4866-bbb4-5c57dbeb176f", + "id": "e2b72431-9006-43cc-b636-6f00dc2ce7bf", "name": "Responds with the ServiceDeskIntegrationTemplateDto with the specified scriptName.", "originalRequest": { "url": { @@ -148098,12 +148098,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"ex0\": 97283254\n },\n \"name\": \"aName\",\n \"provisioningConfig\": {\n \"universalManager\": true,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"name\": \"My Source 1\"\n },\n {\n \"type\": \"SOURCE\",\n \"name\": \"My Source 2\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\\\\r\\\\n\\\\r\\\\n\\\\r\\\\n Before Provisioning Rule which changes disables and enables to a modify.\\\\r\\\\n \\n\"\n },\n \"noProvisioningRequests\": true,\n \"provisioningRequestExpiration\": 7\n },\n \"type\": \"Web Service SDIM\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\"\n}", + "body": "{\n \"attributes\": {\n \"et1f\": 94718371,\n \"dolore_27\": true\n },\n \"name\": \"aName\",\n \"provisioningConfig\": {\n \"universalManager\": true,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"name\": \"My Source 1\"\n },\n {\n \"type\": \"SOURCE\",\n \"name\": \"My Source 2\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\\\\r\\\\n\\\\r\\\\n\\\\r\\\\n Before Provisioning Rule which changes disables and enables to a modify.\\\\r\\\\n \\n\"\n },\n \"noProvisioningRequests\": true,\n \"provisioningRequestExpiration\": 7\n },\n \"type\": \"Web Service SDIM\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "71e4d973-2bb4-4d35-936c-41d63616d81f", + "id": "aa3bd478-46b1-45f0-b041-733cbb059821", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148148,7 +148148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63da8e51-72b9-4c72-a155-9c91f9a3d1d0", + "id": "9df91525-b3e4-4d6b-930c-1c94d87dd5f6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148193,7 +148193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58fbb1e4-98fe-4c2b-882c-3edaf5e23ca1", + "id": "e2dc416f-56af-4163-b827-bb088e2d1a68", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148238,7 +148238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f00b7a51-30af-4ef0-9653-027148b04d36", + "id": "2c2e80d1-422a-4a3e-94a5-406f8366dd76", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -148283,7 +148283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "483da3c0-eff7-40f2-8c7c-9572b8d446eb", + "id": "a2c0ac9e-2d81-4971-ae96-d5bd9d76eeb4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148328,7 +148328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bb3b4e1-af27-4933-a40e-56f68fa64e47", + "id": "053988f9-58d1-4cbe-8559-afc6141e4765", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148379,7 +148379,7 @@ } }, { - "id": "32a96ddb-bdb7-41c9-94c4-2439b5f6df1f", + "id": "66e9d26c-cc4d-48f7-9cb7-6a45642bc2c3", "name": "Get the time check configuration", "request": { "name": "Get the time check configuration", @@ -148409,7 +148409,7 @@ }, "response": [ { - "id": "f3325243-2336-40b4-9d7b-e58176598893", + "id": "59fbd2cd-9a9e-4347-ae82-494e7ffb0228", "name": "QueuedCheckConfigDetails containing the configured values", "originalRequest": { "url": { @@ -148448,12 +148448,12 @@ "value": "application/json" } ], - "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"amet minim nisi\",\n \"provisioningMaxStatusCheckDays\": \"occaecat nulla sed\"\n}", + "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"nisi ad eli\",\n \"provisioningMaxStatusCheckDays\": \"ea non Excepteur aliqua\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8307503e-c792-4ac6-a493-f4bfd75f4d3e", + "id": "e24cf285-7e67-48cb-ab40-1d98dbd995f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148497,7 +148497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6a21cc3-26a7-4343-9fc6-61528b8d9513", + "id": "b10f7fce-65d2-4ceb-b433-7c4732adcfe4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148541,7 +148541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab8d344b-174a-4192-8c50-e05635d10972", + "id": "09fd5421-a011-43fd-bb81-9a7c8b891896", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148585,7 +148585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45fd52f9-e6f2-4b2d-a95b-3cd3d996fd81", + "id": "ec1dc0ca-5801-4d70-a9df-6414facd3496", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -148629,7 +148629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a708fd24-3b72-4fb5-aa27-38fc51da12b7", + "id": "eb99e625-b203-4ce2-9ed3-8c34a8498528", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148673,7 +148673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1457a17-4375-41e4-b55e-6c1452953491", + "id": "da349bee-5f8c-4120-b8e0-d19c5a6a9eff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148723,7 +148723,7 @@ } }, { - "id": "6465611b-98ae-432b-b509-487c1eeedd1a", + "id": "db687c8b-88be-46be-b083-ba1a91898542", "name": "Update the time check configuration", "request": { "name": "Update the time check configuration", @@ -148755,7 +148755,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"amet minim nisi\",\n \"provisioningMaxStatusCheckDays\": \"occaecat nulla sed\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"nisi ad eli\",\n \"provisioningMaxStatusCheckDays\": \"ea non Excepteur aliqua\"\n}", "options": { "raw": { "headerFamily": "json", @@ -148766,7 +148766,7 @@ }, "response": [ { - "id": "e8f6186a-b688-4609-9b17-ce76500c9851", + "id": "7b251b9d-bcdb-48b7-925a-a6595feba648", "name": "QueuedCheckConfigDetails as updated", "originalRequest": { "url": { @@ -148801,7 +148801,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"amet minim nisi\",\n \"provisioningMaxStatusCheckDays\": \"occaecat nulla sed\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"nisi ad eli\",\n \"provisioningMaxStatusCheckDays\": \"ea non Excepteur aliqua\"\n}", "options": { "raw": { "headerFamily": "json", @@ -148818,12 +148818,12 @@ "value": "application/json" } ], - "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"amet minim nisi\",\n \"provisioningMaxStatusCheckDays\": \"occaecat nulla sed\"\n}", + "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"nisi ad eli\",\n \"provisioningMaxStatusCheckDays\": \"ea non Excepteur aliqua\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "847e02f5-c7ad-4f1a-bd43-5de5b7d84e76", + "id": "8a6eebc9-cc80-4618-9169-e4b99e4558d5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148858,7 +148858,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"amet minim nisi\",\n \"provisioningMaxStatusCheckDays\": \"occaecat nulla sed\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"nisi ad eli\",\n \"provisioningMaxStatusCheckDays\": \"ea non Excepteur aliqua\"\n}", "options": { "raw": { "headerFamily": "json", @@ -148880,7 +148880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5ae61dc-67bb-433e-9f32-5c516e894438", + "id": "8cb24748-6c8e-4634-846a-8f51a5bd106c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148915,7 +148915,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"amet minim nisi\",\n \"provisioningMaxStatusCheckDays\": \"occaecat nulla sed\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"nisi ad eli\",\n \"provisioningMaxStatusCheckDays\": \"ea non Excepteur aliqua\"\n}", "options": { "raw": { "headerFamily": "json", @@ -148937,7 +148937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2724412-c060-46c3-892f-210a4baba96f", + "id": "dd87833b-2eb5-44a2-a185-642baeb54bf7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148972,7 +148972,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"amet minim nisi\",\n \"provisioningMaxStatusCheckDays\": \"occaecat nulla sed\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"nisi ad eli\",\n \"provisioningMaxStatusCheckDays\": \"ea non Excepteur aliqua\"\n}", "options": { "raw": { "headerFamily": "json", @@ -148994,7 +148994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "889c2cbe-1671-4763-bf4f-18796b3024e6", + "id": "4e95cb60-5ab5-4d4e-a15e-7dce67594822", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -149029,7 +149029,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"amet minim nisi\",\n \"provisioningMaxStatusCheckDays\": \"occaecat nulla sed\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"nisi ad eli\",\n \"provisioningMaxStatusCheckDays\": \"ea non Excepteur aliqua\"\n}", "options": { "raw": { "headerFamily": "json", @@ -149051,7 +149051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cde4e53b-50e3-433b-8ba8-18dc2dc95e6b", + "id": "e7012d51-ca0c-4a20-8eb7-bc1f93c8635c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149086,7 +149086,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"amet minim nisi\",\n \"provisioningMaxStatusCheckDays\": \"occaecat nulla sed\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"nisi ad eli\",\n \"provisioningMaxStatusCheckDays\": \"ea non Excepteur aliqua\"\n}", "options": { "raw": { "headerFamily": "json", @@ -149108,7 +149108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb54f98e-c27d-41c7-8865-693768f7593e", + "id": "c98e053f-918d-4096-b4e6-c603dc32f435", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149143,7 +149143,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"amet minim nisi\",\n \"provisioningMaxStatusCheckDays\": \"occaecat nulla sed\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"nisi ad eli\",\n \"provisioningMaxStatusCheckDays\": \"ea non Excepteur aliqua\"\n}", "options": { "raw": { "headerFamily": "json", @@ -149177,7 +149177,7 @@ "description": "Use this API to implement and manage \"separation of duties\" (SOD) policies. \nWith SOD policy functionality in place, administrators can organize the access in their tenants to prevent individuals from gaining conflicting or excessive access. \n\n\"Separation of duties\" refers to the concept that people shouldn't have conflicting sets of access - all their access should be configured in a way that protects your organization's assets and data. \nFor example, people who record monetary transactions shouldn't be able to issue payment for those transactions.\nAny changes to major system configurations should be approved by someone other than the person requesting the change. \n\nOrganizations can use \"separation of duties\" (SOD) policies to enforce and track their internal security rules throughout their tenants.\nThese SOD policies limit each user's involvement in important processes and protects the organization from individuals gaining excessive access. \n\nTo create SOD policies in IdentityNow, administrators use 'Search' and then access 'Policies'.\nTo create a policy, they must configure two lists of access items. Each access item can only be added to one of the two lists.\nThey can search for the entitlements they want to add to these access lists.\n\n>Note: You can have a maximum of 500 policies of any type (including general policies) in your organization. In each access-based SOD policy, you can have a maximum of 50 entitlements in each access list.\n\nOnce a SOD policy is in place, if an identity has access items on both lists, a SOD violation will trigger. \nThese violations are included in SOD violation reports that other users will see in emails at regular intervals if they're subscribed to the SOD policy.\nThe other users can then better help to enforce these SOD policies. \n\nTo create a subscription to a SOD policy in IdentityNow, administrators use 'Search' and then access 'Layers'.\nThey can create a subscription to the policy and schedule it to run at a regular interval. \n\nRefer to [Managing Policies](https://documentation.sailpoint.com/saas/help/sod/manage-policies.html) for more information about SOD policies. \n\nRefer to [Subscribe to a SOD Policy](https://documentation.sailpoint.com/saas/help/sod/policy-violations.html#subscribe-to-an-sod-policy) for more information about SOD policy subscriptions. \n", "item": [ { - "id": "75857ebf-c4a5-4e16-9586-0302470ffddc", + "id": "933d55ee-cfa3-428c-b1a9-b3b3ce71e103", "name": "Create SOD policy", "request": { "name": "Create SOD policy", @@ -149219,7 +149219,7 @@ }, "response": [ { - "id": "3c8b0033-84c2-451d-9183-b490909ac019", + "id": "2cd7e1dd-c79a-4eb0-bd87-ea714946159d", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -149275,7 +149275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce4576ee-7ec2-4649-8b67-e238f8ea9496", + "id": "303c5c0c-7922-4c73-a1d2-b622d4247175", "name": "General Policy", "originalRequest": { "url": { @@ -149331,7 +149331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd2a9799-752f-4539-8ecd-ebf3b5dcfd41", + "id": "3c48082f-547c-48fa-b649-a00fe29fa92c", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -149387,7 +149387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cfc8f54-e122-4e53-85a1-5cbec0fee633", + "id": "31e93023-0a7d-4c0b-9f09-a13278d7594d", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -149443,7 +149443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc1c87bc-9d1c-4aa8-8fb4-ad45353c73c1", + "id": "ab7f86a6-0b3d-4162-92a7-03a537068b8a", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -149499,7 +149499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cc86f09-2ae7-480e-90c5-574f38fddb90", + "id": "f7e0f658-e9c3-4858-b431-bdbffa91c7b9", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -149555,7 +149555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0e7facb-ce0a-4b9b-b341-0bbd977d1566", + "id": "2b2121b8-ef11-4296-b4d0-edd12d1ff07a", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -149617,7 +149617,7 @@ } }, { - "id": "7c02a4e2-40f5-42d3-9820-75e066580bba", + "id": "3a3217a0-37d4-41a9-a41b-2ea4c6fda31e", "name": "List SOD policies", "request": { "name": "List SOD policies", @@ -149683,7 +149683,7 @@ }, "response": [ { - "id": "1a183f4a-5aee-4a5c-bb3c-0fd167f51b8e", + "id": "752694bc-c68c-4713-8508-261bc2620275", "name": "List of all SOD policies.", "originalRequest": { "url": { @@ -149763,7 +149763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "047cbbcf-ce78-4d60-b20a-06ad2321d6dd", + "id": "e8b4078a-7bc7-4855-b6f1-476186683dac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149843,7 +149843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "799bd63f-89f0-491f-b515-d809a3a2313d", + "id": "242f1622-5b5d-4003-8d7a-241531278b91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149923,7 +149923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d6d6a6d-79cb-42aa-b1a3-5cb8d5d7d437", + "id": "b3278787-e493-44ce-b1cb-3e64e8b5d79c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150003,7 +150003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00ef6147-8c11-4363-b1ff-63e3be3001a6", + "id": "8e10bea1-e8b2-4db9-a3f6-78d4b86172bb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150083,7 +150083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec913019-880f-49f3-bdfe-8bbf6134d797", + "id": "32ec42dd-1c17-4e50-8af5-2982d552c3ee", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150169,7 +150169,7 @@ } }, { - "id": "351941ae-e38a-43cc-9e39-d6fe33033762", + "id": "6731b0c6-6750-4b4c-82ce-320b0f8e4952", "name": "Get SOD policy by ID", "request": { "name": "Get SOD policy by ID", @@ -150210,7 +150210,7 @@ }, "response": [ { - "id": "754d66bb-6002-463b-b5db-0b90dde128f7", + "id": "ff7d8b94-7489-498e-be50-61d00efaee76", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -150254,7 +150254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79caf12b-e784-4e05-889b-38b23b975844", + "id": "27e2264d-f8eb-455d-83ce-e7a883081604", "name": "General Policy", "originalRequest": { "url": { @@ -150298,7 +150298,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c143be1-e8ad-4170-addf-c64dba7141fe", + "id": "6af96455-ebaa-4958-836c-f851568be3bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150342,7 +150342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7acf909-6ac0-4d20-8288-d90e38eea84a", + "id": "631d1114-b784-4434-bfc7-aae2b0c395d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150386,7 +150386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09c7e489-3eda-440b-889b-9629afbbbcae", + "id": "9412a102-beed-4a8b-a51b-2e3c00e7f54d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150430,7 +150430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4468834a-2d16-4f4f-abe2-24509edc51d9", + "id": "3b9d2191-51c4-4aa2-8de3-f945d2ca863c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -150474,7 +150474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d050017a-b856-450e-b841-cefc8fbcce84", + "id": "d0920e5f-e844-47db-bd7a-de261fdb60ad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150518,7 +150518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecb05b0a-abfe-40b8-a944-b29479ab24d6", + "id": "3c45797a-6f7c-49a6-9892-bbf771bc52ec", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150568,7 +150568,7 @@ } }, { - "id": "14197374-4006-4834-b189-7d4c8632cd77", + "id": "0ccea74d-973b-44ef-b133-bfd37ed4ffbb", "name": "Update SOD policy by ID", "request": { "name": "Update SOD policy by ID", @@ -150622,7 +150622,7 @@ }, "response": [ { - "id": "6bd0f535-e384-4ea1-9720-fa8a84bea7f2", + "id": "da2901e2-03ba-4fa7-9e46-c679cc079c1b", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -150679,7 +150679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d75ecee-4966-4259-8255-a27a36212ac0", + "id": "52d1d821-8fa4-4be5-a8cd-c398ca2c8132", "name": "General Policy", "originalRequest": { "url": { @@ -150736,7 +150736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "166d3999-11fc-404c-a3e5-7df0627da68e", + "id": "5b514648-5ba5-4432-a46b-c1a3d0698f2b", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -150793,7 +150793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4920157-e236-4d77-a96e-8b1b9f3f39a6", + "id": "b51bd70e-863d-4cbf-a999-26762cca29f8", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -150850,7 +150850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35553cd0-83ca-49f5-91c9-281ee5a2be93", + "id": "d119d589-7576-4376-991e-faccaeb5d9c2", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -150907,7 +150907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb60d17c-eccc-436d-a909-39326203035e", + "id": "149dd1bb-3538-42cc-b278-cfe747862acb", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -150964,7 +150964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d61196c0-613c-48b2-9ce2-bd06ebfefbc0", + "id": "536aa670-2c45-4fac-aab9-7917aab2ec96", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -151021,7 +151021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4e74bf0-45a4-4ee9-a5f2-169a123a79a5", + "id": "c9100c73-70bd-4386-99bf-faae82d566aa", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -151084,7 +151084,7 @@ } }, { - "id": "79b2caeb-88f5-4174-adda-222ba648970c", + "id": "e68dde74-8df3-45e6-9f0f-0a2b1de86d02", "name": "Delete SOD policy by ID", "request": { "name": "Delete SOD policy by ID", @@ -151135,7 +151135,7 @@ }, "response": [ { - "id": "674ddb2d-b6b4-48bf-9fff-b98067369087", + "id": "3f0883d9-2559-4419-a2d7-6f0bc8880acc", "name": "No content.", "originalRequest": { "url": { @@ -151179,7 +151179,7 @@ "_postman_previewlanguage": "text" }, { - "id": "bbb0413c-f35d-4801-8eda-7ef205adc541", + "id": "e9b4330d-d48e-48c1-bfb2-5df324e08c42", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151233,7 +151233,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52adc033-5db2-4c47-a660-6ff0187ab200", + "id": "0bada976-fcd1-4464-90ec-46bd17a3873a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151287,7 +151287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13861f60-220f-48b5-ba0f-1f36d3382811", + "id": "ba13ce61-3f82-4068-9b92-006e42e4e546", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151341,7 +151341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acfa085c-2b86-4535-86e7-701b63c7c7d3", + "id": "9a07a239-f400-4220-a1e0-2eafa9e4154f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -151395,7 +151395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bf9c20b-27e3-4a8d-8f31-87dc843bcded", + "id": "deeff7c9-0647-4d59-9a57-1c8aefd7545c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151449,7 +151449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8eed648b-c045-421a-a12b-6ca636566af6", + "id": "c713770e-0915-4bf8-a89c-f2bf2ae33631", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151509,7 +151509,7 @@ } }, { - "id": "562cf601-a517-4b75-ac5a-e51be3c33c02", + "id": "d9bd575e-3d26-4d79-b116-5f2665873e2b", "name": "Patch a SOD policy", "request": { "name": "Patch a SOD policy", @@ -151563,7 +151563,7 @@ }, "response": [ { - "id": "e5cab4bd-304f-45b5-8b21-9a6fc0e1c0d3", + "id": "02a15189-5145-4b8f-8d91-175cadeb4113", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -151620,7 +151620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13fff377-86f5-4991-8842-e928c95b25c2", + "id": "e2ae438a-02e9-4e4c-8eba-6c051b1e96c7", "name": "General Policy", "originalRequest": { "url": { @@ -151677,7 +151677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab082274-585c-4c35-8383-2ee596125dcd", + "id": "a6bc97f6-0cf9-489d-93d1-e51d18e5da66", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -151734,7 +151734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5e5b68e-c359-4465-bcdd-8e5dbc7a81e2", + "id": "31e971b1-bea1-4ea0-b444-09e1ff16c223", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -151791,7 +151791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfa62eaf-b54c-402e-8063-4c3cb21f5dba", + "id": "ad01925d-0a3c-41b0-ac96-52644c010e40", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -151848,7 +151848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b66aa3a-ff71-4768-853c-0e0bd923280a", + "id": "9f2ac12d-ec91-431e-857e-41a48b63d272", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -151905,7 +151905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33763b08-2768-4f61-8c3a-d7835c9b214f", + "id": "5f635f95-2dee-4ce7-a15f-c194586d4795", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -151962,7 +151962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "629cc19c-5904-422e-8b3f-3fbd3045ae81", + "id": "f314c23f-d925-4a64-8384-37df9c99ab18", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -152025,7 +152025,7 @@ } }, { - "id": "477e3960-e6fb-4218-8bd1-4a559e02dec0", + "id": "26d68bb1-e6d9-450d-b02e-1a0ce44bdf66", "name": "Get SOD policy schedule", "request": { "name": "Get SOD policy schedule", @@ -152067,7 +152067,7 @@ }, "response": [ { - "id": "3d77e4a1-e9f0-4275-aad2-4bb613deddd9", + "id": "9cc3eadd-38f9-451b-88f0-6af9b2bda51f", "name": "SOD policy ID.", "originalRequest": { "url": { @@ -152112,7 +152112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c178be23-062f-4740-9802-2d4cb56fdf48", + "id": "b2e914ff-390f-46a8-bc66-e325becbd9af", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152157,7 +152157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec8e80ac-a2ad-4839-9dbc-b19363c65dd2", + "id": "754c1100-a2da-43dd-a00c-0cc34b0d7890", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152202,7 +152202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee4aa0f5-5cde-4343-8006-e9506908e2e6", + "id": "70c2b578-5c9b-4005-b3f7-5f8782b695bb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152247,7 +152247,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33ebcb14-2d61-4590-9e1b-60d8e4d95286", + "id": "bb433b2d-90d2-4dd3-abcd-d384b5a97be5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152292,7 +152292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ed9d35e-aeb7-45af-be67-35fdcc234886", + "id": "45c998d2-9613-4d1d-abc9-ead2e51e3e45", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152343,7 +152343,7 @@ } }, { - "id": "32f59d0a-91e8-47d5-bf5a-995d12ff2af6", + "id": "62adc7a9-df5c-48e8-a70a-0a2cbcab8826", "name": "Update SOD Policy schedule", "request": { "name": "Update SOD Policy schedule", @@ -152398,7 +152398,7 @@ }, "response": [ { - "id": "e455b60f-e68e-440f-9e61-4b2e20d69c97", + "id": "646c38f5-c27f-4047-a680-7cbc90247e45", "name": "SOD policy by ID.", "originalRequest": { "url": { @@ -152456,7 +152456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da297a08-bd18-4b26-bde6-09b5392b5849", + "id": "e4a4886f-605b-4a45-811e-5d45b14fcc2e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152514,7 +152514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d05b65f-dd4a-4314-9c67-deaeca366590", + "id": "a847c553-8b58-46f2-8e98-9b5fef1f1d23", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152572,7 +152572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf397ace-4839-4bc3-b88b-4a0a20345dc6", + "id": "ef80cd2b-d68f-42d7-8bad-5b330a9c6221", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152630,7 +152630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b90597a4-e866-4eac-90f5-612788d288ed", + "id": "c308452e-3b81-474f-b067-ce670344d078", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152688,7 +152688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c02f278-2588-4654-a8f7-0b758c48a292", + "id": "9ea35d63-db35-4d3d-82b2-cdd5915dbde2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152752,7 +152752,7 @@ } }, { - "id": "decc7c36-2517-4591-9a1e-42422ac7435d", + "id": "a3a7b0bd-4d05-4ed4-a484-6949f8ed3a92", "name": "Delete SOD policy schedule", "request": { "name": "Delete SOD policy schedule", @@ -152794,7 +152794,7 @@ }, "response": [ { - "id": "4d909752-d032-4e41-87ef-95b245ca186d", + "id": "7cb7a311-1bd4-407d-bc7c-beffd6e75139", "name": "No content.", "originalRequest": { "url": { @@ -152829,7 +152829,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3df8486f-1308-4af6-a5f5-a6c10d7703d8", + "id": "d6c3bc19-3f29-4b8d-a05d-7dc24973c8bb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152874,7 +152874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6473c8db-ce4b-463a-aeb3-150a9cea835d", + "id": "f44c7c5e-9de4-420b-bd7c-3b18a34a3d32", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152919,7 +152919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc59292b-63b3-4cb4-bdc5-893e6d8ff0df", + "id": "0a3da84d-4ea1-4c62-9735-243c01f1a57d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152964,7 +152964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edbcdc77-8fc2-42f7-ab15-c9763942d001", + "id": "0c7ab378-dd9c-4278-8589-f5dc4098c209", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -153009,7 +153009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd106fe8-e858-49ad-a8ba-5bd1f60c299e", + "id": "a626de2f-484c-49c0-80bf-4150aba32d16", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153054,7 +153054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54bbe8e2-89d6-4f4e-87c5-1ef5df2a6180", + "id": "f6d7ba24-d78a-4317-9124-0ff1dea82b87", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153105,7 +153105,7 @@ } }, { - "id": "32fae4cb-328a-4ddd-ac74-39507c9e289a", + "id": "306698e2-cb3e-49d3-b9ae-180effed3004", "name": "Runs SOD policy violation report", "request": { "name": "Runs SOD policy violation report", @@ -153148,7 +153148,7 @@ }, "response": [ { - "id": "a04307d8-ef60-4fcd-8e18-127d534aedac", + "id": "34979a21-9f08-4a96-b2f0-a0c4b4a9f717", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -153194,7 +153194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7bacba5-ad02-413b-abc4-eae509f115e0", + "id": "55b11769-0504-4f59-99dc-eab0a0f7dc8f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153240,7 +153240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0075cd78-26b5-45d6-b166-66bb14486124", + "id": "f2977b6f-2c45-4144-a226-d1aeaa6ddeac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153286,7 +153286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4320f5f1-b08c-4a3e-b4fa-06daa740a824", + "id": "055dd514-c42d-40a6-bb46-0addd6dc2bf8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153332,7 +153332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6213d7e-3128-434e-bccb-d5310e335667", + "id": "be499b32-bad7-451e-b93b-26a170901012", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -153378,7 +153378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93dbe560-ce6b-4a44-99cf-a099e1550c41", + "id": "5145768f-77be-49a8-a422-3927817fb968", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153424,7 +153424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0afa7a2b-3927-45e0-85ac-21d5c932b9ac", + "id": "a8ab0718-4fd2-4ced-a1db-d81c338aee52", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153476,7 +153476,7 @@ } }, { - "id": "a09687d0-cf5d-4001-b8bd-33d8573df070", + "id": "a79af7ff-6813-46ab-9ddf-7898740b29fc", "name": "Get SOD violation report status", "request": { "name": "Get SOD violation report status", @@ -153518,7 +153518,7 @@ }, "response": [ { - "id": "7f794962-c78b-400a-8dde-215f3dedd30d", + "id": "848209b6-c098-45bd-bc7a-bcedeff7232f", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -153563,7 +153563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "024814d4-d8c8-4bc9-aa19-a92a57842ec6", + "id": "40461692-965f-4bc2-bed2-5b109396f7cb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153608,7 +153608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bb2d0cb-e118-4107-8fae-77d15111317a", + "id": "a6c47886-566f-4840-aba5-9bf76b181d22", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153653,7 +153653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a75a3bbd-3bfc-47ee-b48c-22f33763fe6d", + "id": "ba64a4e7-8b8f-4c40-8c69-312ddba7c385", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153698,7 +153698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18c419e9-9cae-4fdc-9a8a-339eff3f1332", + "id": "9756e3c4-4ddc-4061-96bc-2608c26f2b6f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -153743,7 +153743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf960ed2-72e6-4cb2-8b8d-edcb0afbe377", + "id": "d340f3e2-6eed-4c72-85e0-a53bd9b71205", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153788,7 +153788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef4aefba-d70d-43a4-854d-e0f0a3e56399", + "id": "26cac722-91ea-4886-9a10-af1c46536ff8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153839,7 +153839,7 @@ } }, { - "id": "c47b3a48-7bc0-4b06-ae2d-abcf58451609", + "id": "e6ff9463-850f-4690-84fe-128693767844", "name": "Get violation report run status", "request": { "name": "Get violation report run status", @@ -153881,7 +153881,7 @@ }, "response": [ { - "id": "41459dd8-580c-49ab-9957-f1610e02d1af", + "id": "7897019c-43b4-40e5-84fa-3c357a3680c9", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -153926,7 +153926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e66bcc49-7ed8-48c6-a043-825045b2704d", + "id": "1a90fab1-07f9-482f-a643-22d645bff373", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153971,7 +153971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9096018-932f-43e6-8870-5918297c251d", + "id": "c02eaf06-64a1-4427-a0b6-2068c28f79fd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154016,7 +154016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5af12ad0-d30e-4c10-b155-a9fd9c5b366d", + "id": "f5d62a73-f61d-4f68-b8cf-34b1b6bfbd02", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154061,7 +154061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8417a36b-306e-4c78-a538-82ebaf3a40ec", + "id": "6f96aaba-829d-48ab-9226-50db6412b8bc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -154106,7 +154106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0122d928-e2ce-4331-a435-fdebe249965d", + "id": "8c541ddb-6435-4777-9db4-f129fcad5880", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154151,7 +154151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af95c930-283c-43d2-a7db-7c2256778abd", + "id": "727bcdbd-2c4b-4726-9898-fca7a98132b6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154202,7 +154202,7 @@ } }, { - "id": "107d03fa-29f2-447a-a008-402c910e3848", + "id": "862a075a-48bb-4f34-b375-6ea33d9ffd6a", "name": "Runs all policies for org", "request": { "name": "Runs all policies for org", @@ -154245,7 +154245,7 @@ }, "response": [ { - "id": "e46da41e-24ca-48f0-ae46-e6bbb6ba6b11", + "id": "f2fed929-4b37-4c44-a556-c29daa4cbe17", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -154302,7 +154302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6eb875dd-f685-4c5e-b113-2802526ac93f", + "id": "78f35d9d-ff7b-43ec-93d7-70662f9b2145", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -154359,7 +154359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d442eab-3d85-4935-b65c-7e92a8f0e155", + "id": "8d7564ca-5dde-4d3f-a9d9-a9a3866a905b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154416,7 +154416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cfe04e5-8fa7-4be6-80e9-df59d6152b4f", + "id": "2c925e6c-6788-4e96-87d4-fd04a78182cb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154473,7 +154473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f940da12-77f8-42ed-97e0-48ca7398a86e", + "id": "09e8285f-79aa-46d3-a0cd-dffea5dbc51b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154530,7 +154530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cfc38b3-e240-4921-a061-95efceba59ed", + "id": "85b3a10e-ca0c-48af-97d4-7458f5ee8425", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154593,7 +154593,7 @@ } }, { - "id": "c2e92d64-42af-47ea-b1ff-8169b1443997", + "id": "1b909789-64b4-4fbf-825b-9450ca77e72a", "name": "Get multi-report run task status", "request": { "name": "Get multi-report run task status", @@ -154622,7 +154622,7 @@ }, "response": [ { - "id": "f8022e92-8abf-489a-aaf1-a38690b4b06a", + "id": "358c9693-f099-4fdf-b309-9fc6d9dda36a", "name": "Status of the violation report run task for all policy run.", "originalRequest": { "url": { @@ -154665,7 +154665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fda2f075-2c32-4641-bc10-42940ce46f3c", + "id": "920eb896-4318-471c-85f8-747fb02f9f9f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -154708,7 +154708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0127c53b-139f-484a-a98c-046de6e24716", + "id": "5dab4f5c-8230-4e6e-be96-d6233973ae49", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154751,7 +154751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ed8b59d-7084-472e-bc29-478fc4f4cf05", + "id": "cd124921-6cf1-45b2-8ec3-450922b2b8f1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154794,7 +154794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "156436fd-1eff-4ab0-92d5-2a2335a706ed", + "id": "fb00c742-a484-4f3c-af5f-dca743cd42cb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154837,7 +154837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4fbfa97-2dda-467b-94bb-ad11b455d2c9", + "id": "1aea4af9-d3cf-47be-af91-b8502d592e02", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154886,7 +154886,7 @@ } }, { - "id": "5b32d4ca-4062-4abb-8da5-854dde41567e", + "id": "0161d07c-2903-4679-b04c-1df4856429f1", "name": "Download violation report", "request": { "name": "Download violation report", @@ -154928,7 +154928,7 @@ }, "response": [ { - "id": "1fc99216-c8c3-4080-9ca5-afd1d42dc2c5", + "id": "13471332-9411-42df-a795-b77ad3043bff", "name": "Returns the PolicyReport.zip that contains the violation report file.", "originalRequest": { "url": { @@ -154968,12 +154968,12 @@ "value": "application/zip" } ], - "body": "in aute elit ullamco", + "body": "magna dolore deserunt", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "71280618-4690-4393-ade0-09a4c1f429f0", + "id": "49e98345-311f-4589-8719-7a17918517c1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155018,7 +155018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7244d217-bb5d-4b66-aae1-8a556e644287", + "id": "bc40d89b-ae04-405d-97b9-a2b7f6be9740", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155063,7 +155063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ae75b3b-2cf6-4a75-bbff-8636f77c2401", + "id": "aa369368-64fe-4012-82af-7426093f49f9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155108,7 +155108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "526be146-2e0d-4a15-b7b8-9e8779a7717c", + "id": "b4b72df5-f474-4442-ac03-9fd36dece15b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -155153,7 +155153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87ee5a24-d677-448c-9710-6402263d3f35", + "id": "01c8fd02-8410-40a6-99b3-a04e4090fd58", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155198,7 +155198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b876172-ddf3-45e5-9192-f16f7d3124ca", + "id": "5094353e-b292-4faa-abb5-843bbbe76803", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155249,7 +155249,7 @@ } }, { - "id": "c3bdebc0-7b31-4f74-a7fb-142c96122476", + "id": "a498dcbf-3106-4d9c-92e8-7323750609b7", "name": "Download custom violation report", "request": { "name": "Download custom violation report", @@ -155302,7 +155302,7 @@ }, "response": [ { - "id": "908495a4-e80c-4f05-937c-8611589fbcf5", + "id": "81a83fc7-4696-45cc-83f8-fb4eb99e7ef7", "name": "Returns the zip file with given custom name that contains the violation report file.", "originalRequest": { "url": { @@ -155343,12 +155343,12 @@ "value": "application/zip" } ], - "body": "in aute elit ullamco", + "body": "magna dolore deserunt", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "5e318373-0c40-43b9-aca8-5f5e931322bc", + "id": "e892e7e2-c407-4bac-a53b-8f5dd02b4c91", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155394,7 +155394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5724db47-c1ab-4c57-8944-b7d3ca084183", + "id": "1f40727d-5233-4635-a58b-9a1f441278ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155440,7 +155440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ce960e8-0934-40a5-8398-9063778923dc", + "id": "a95543f7-19fe-4bb9-a780-2dc05e8f5842", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155486,7 +155486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2214f028-ca46-4801-bce6-7c3f15d918ee", + "id": "72929d01-b547-4b1b-9b2d-d0b69bb435f4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -155532,7 +155532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ba23235-554e-42da-8e54-a579051ecfc5", + "id": "f91907ac-e52c-4cbf-ba7f-f769358a029f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155578,7 +155578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e73f919-7b24-4c00-8863-1d18d4065e03", + "id": "d95fe469-7891-4192-8f8b-1b7e12cc67d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155636,7 +155636,7 @@ "description": "Use this API to check for current \"separation of duties\" (SOD) policy violations as well as potential future SOD policy violations. \nWith SOD violation functionality in place, administrators can get information about current SOD policy violations and predict whether an access change will trigger new violations, which helps to prevent them from occurring at all. \n\n\"Separation of duties\" refers to the concept that people shouldn't have conflicting sets of access - all their access should be configured in a way that protects your organization's assets and data. \nFor example, people who record monetary transactions shouldn't be able to issue payment for those transactions.\nAny changes to major system configurations should be approved by someone other than the person requesting the change. \n\nOrganizations can use \"separation of duties\" (SOD) policies to enforce and track their internal security rules throughout their tenants.\nThese SOD policies limit each user's involvement in important processes and protects the organization from individuals gaining excessive access. \n\nOnce a SOD policy is in place, if an identity has conflicting access items, a SOD violation will trigger. \nThese violations are included in SOD violation reports that other users will see in emails at regular intervals if they're subscribed to the SOD policy.\nThe other users can then better help to enforce these SOD policies.\n\nAdministrators can use the SOD violations APIs to check a set of identities for any current SOD violations, and they can use them to check whether adding an access item would potentially trigger a SOD violation. \nThis second option is a good way to prevent SOD violations from triggering at all. \n\nRefer to [Handling Policy Violations](https://documentation.sailpoint.com/saas/help/sod/policy-violations.html) for more information about SOD policy violations. \n", "item": [ { - "id": "c512c58a-36d8-4d0e-ba9b-55ddb408ef8c", + "id": "edf88459-a72b-42c1-a6a7-87078bdff4da", "name": "Predict SOD violations for identity.", "request": { "name": "Predict SOD violations for identity.", @@ -155679,7 +155679,7 @@ }, "response": [ { - "id": "a1da68b8-f6cb-40af-9a98-81b6b1f075fb", + "id": "a9ad8e9f-e8a0-44da-bd53-a18f594debdd", "name": "Violation Contexts", "originalRequest": { "url": { @@ -155736,7 +155736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3049d096-d66a-442c-959a-ff48ec28d8fc", + "id": "9a334dad-5ea2-4594-81eb-a145b8646f61", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155793,7 +155793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd79cac4-381f-40ee-9f92-b2b7caa1d9a1", + "id": "7b2b6ebb-1e09-4e66-9846-20d8dc85e99f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155850,7 +155850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0fb2e4a-4fab-4823-9cb0-510daeee63e4", + "id": "5e5b6af2-f291-409a-bd86-951cacbc2553", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155907,7 +155907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5f5cd5b-48f5-473e-916e-f86c77397e3c", + "id": "a37d100d-e0ec-4486-95ee-9b4f4d82bdf5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -155964,7 +155964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8f98cc2-a9d6-47b4-9b32-b117552a0a3f", + "id": "40909172-604f-4807-a541-af1f5b5b6e82", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156021,7 +156021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f7dd9da-c9c0-46be-b89f-cd3b2a66d2e9", + "id": "cbed019d-af1c-4ee6-9049-186916881cf6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156090,7 +156090,7 @@ "description": "Use this API to implement source usage insight functionality.\nWith this functionality in place, administrators can gather information and insights about how their tenants' sources are being used.\nThis allows organizations to get the information they need to start optimizing and securing source usage.\n", "item": [ { - "id": "9ad0b044-9695-4709-9a64-fcff102b3925", + "id": "e0b43eb2-b60f-40f1-b1e1-70474ca4e4f1", "name": "Finds status of source usage", "request": { "name": "Finds status of source usage", @@ -156132,7 +156132,7 @@ }, "response": [ { - "id": "c94edf64-4f7f-4095-8c6b-9a7cdf189d35", + "id": "f4c83b8b-0fa9-4e8d-87cf-0d5ec2a38405", "name": "Status of the source usage insights setup by IDN source ID.", "originalRequest": { "url": { @@ -156177,7 +156177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4105696d-cf21-4d81-baa2-4bfeb316fb37", + "id": "1c67b87e-8b21-4091-8a7d-ebfd224ffe0b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156222,7 +156222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4f12667-7b45-4988-bd75-0afae7278a07", + "id": "197b0347-2477-40fc-89a5-656c1e3f3b5f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156267,7 +156267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e0d7dd2-6d16-4da0-8e72-1a716cc25c91", + "id": "9dc43251-f633-47c8-92fb-cf540315a168", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156312,7 +156312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1fdd8e9-0b2f-4e33-be68-7ed17cbe0559", + "id": "0a0a71e3-1b19-4cdf-a8ff-57be9d33454f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156357,7 +156357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16e923f4-3e90-4a73-b123-dbccc71a1785", + "id": "856c14c4-070b-4322-bdc9-997536d1c27d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156408,7 +156408,7 @@ } }, { - "id": "994d8e0a-a5ff-4251-a693-c15229269e34", + "id": "75a7343b-81b2-495b-bf0b-de88fc816cb7", "name": "Returns source usage insights", "request": { "name": "Returns source usage insights", @@ -156487,7 +156487,7 @@ }, "response": [ { - "id": "d6f047c9-9963-4efb-a0f3-389729843675", + "id": "7bef0d14-9554-455f-a3b6-359092d64c5c", "name": "Summary of source usage insights for past 12 months.", "originalRequest": { "url": { @@ -156569,7 +156569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cac7488-e062-4047-af58-1e998b781dc0", + "id": "1b561e63-0c7f-446d-9be7-aef129e80915", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156651,7 +156651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afe74bd7-0f22-48ce-b393-20cbde133669", + "id": "2ae12440-29ff-4f33-ac5b-94afad5b3f78", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156733,7 +156733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d041741-0be7-4f9c-9f02-ca82d119f8d6", + "id": "bedc811e-f07a-4e4d-9b70-f88ca5f53449", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156815,7 +156815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c69640e0-7cee-4228-87a5-e630b72c69c7", + "id": "86c42c7e-53ec-4668-9d5e-75aa6b45ee2e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156897,7 +156897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f61b0126-1f8e-4071-a395-8f9c22ccf5cc", + "id": "5ee933d2-1ebf-4096-a884-0c5882e9d340", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156991,7 +156991,7 @@ "description": "Use this API to implement and customize source functionality.\nWith source functionality in place, organizations can use IdentityNow to connect their various sources and user data sets and manage access across all those different sources in a secure, scalable way.\n\n[Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html) refer to the IdentityNow representations for external applications, databases, and directory management systems that maintain their own sets of users, like Dropbox, GitHub, and Workday, for example.\nOrganizations may use hundreds, if not thousands, of different source systems, and any one employee within an organization likely has a different user record on each source, often with different permissions on many of those records.\nConnecting these sources to IdentityNow makes it possible to manage user access across them all.\nThen, if a new hire starts at an organization, IdentityNow can grant the new hire access to all the sources they need.\nIf an employee moves to a new department and needs access to new sources but no longer needs access to others, IdentityNow can grant the necessary access and revoke the unnecessary access for all the employee's various sources.\nIf an employee leaves the company, IdentityNow can revoke access to all the employee's various source accounts immediately.\nThese are just a few examples of the many ways that source functionality makes identity governance easier, more efficient, and more secure.\n\nIn IdentityNow, administrators can create configure, manage, and edit sources, and they can designate other users as source admins to be able to do so.\nThey can also designate users as source sub-admins, who can perform the same source actions but only on sources associated with their governance groups.\nAdmins go to Connections > Sources to see a list of the existing source representations in their organizations.\nThey can create new sources or select existing ones.\n\nTo create a new source, the following must be specified: Source Name, Description, Source Owner, and Connection Type.\nRefer to [Configuring a Source](https://documentation.sailpoint.com/saas/help/accounts/loading_data.html#configuring-a-source) for more information about the source configuration process.\n\nIdentityNow connects with its sources either by a direct communication with the source server (connection information specific to the source must be provided) or a flat file feed, a CSV file containing all the relevant information about the accounts to be loaded in.\nDifferent sources use different connectors to share data with IdentityNow, and each connector's setup process is specific to that connector.\nSailPoint has built a number of connectors to come out of the box and connect to the most common sources, and SailPoint actively maintains these connectors.\nRefer to [IdentityNow Connectors](https://documentation.sailpoint.com/connectors/identitynow/landingpages/help/landingpages/identitynow_connectivity_landing.html) for more information about these SailPoint supported connectors.\nRefer to the following links for more information about two useful connectors:\n\n- [JDBC Connector](https://documentation.sailpoint.com/connectors/jdbc/help/integrating_jdbc/introduction.html): This customizable connector an directly connect to databases that support JDBC (Java Database Connectivity).\n\n- [Web Services Connector](https://documentation.sailpoint.com/connectors/webservices/help/integrating_webservices/introduction.html): This connector can directly connect to databases that support Web Services.\n\nRefer to [SaaS Connectivity](https://developer.sailpoint.com/idn/docs/saas-connectivity) for more information about SailPoint's new connectivity framework that makes it easy to build and manage custom connectors to SaaS sources.\n\nWhen admins select existing sources, they can view the following information about the source:\n\n- Associated connections (any associated identity profiles, apps, or references to the source in a transform).\n\n- Associated user accounts. These accounts are linked to their identities - this provides a more complete picture of each user's access across sources.\n\n- Associated entitlements (sets of access rights on sources).\n\n- Associated access profiles (groupings of entitlements).\n\nThe user account data and the entitlements update with each data aggregation from the source.\nOrganizations generally run scheduled, automated data aggregations to ensure that their data is always in sync between their sources and their IdentityNow tenants so an access change on a source is detected quickly in IdentityNow.\nAdmins can view a history of these aggregations, and they can also run manual imports.\nRefer to [Loading Account Data](https://documentation.sailpoint.com/saas/help/accounts/loading_data.html) for more information about manual and scheduled aggregations.\n\nAdmins can also make changes to determine which user account data IdentityNow collects from the source and how it correlates that account data with identity data.\nTo define which account attributes the source shares with IdentityNow, admins can edit the account schema on the source.\nRefer to [Managing Source Account Schemas](https://documentation.sailpoint.com/saas/help/accounts/schema.html) for more information about source account schemas and how to edit them.\nTo define the mapping between the source account attributes and their correlating identity attributes, admins can edit the correlation configuration on the source.\nRefer to [Assigning Source Accounts to Identities](https://documentation.sailpoint.com/saas/help/accounts/correlation.html) for more information about this correlation process between source accounts and identities.\n\nAdmins can also delete sources, but they must first ensure that the sources no longer have any active connections: the source must not be associated with any identity profile or any app, and it must not be referenced by any transform.\nRefer to [Deleting Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html#deleting-sources) for more information about deleting sources.\n\nWell organized, mapped out connections between sources and IdentityNow are essential to achieving comprehensive identity access governance across all the source systems organizations need.\nRefer to [Managing Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html) for more information about all the different things admins can do with sources once they are connected.\n", "item": [ { - "id": "fd9b6287-2d5f-4747-a91c-659812f92169", + "id": "e88bc074-ed16-4911-84bd-f8195f4d161d", "name": "Lists all sources in IdentityNow.", "request": { "name": "Lists all sources in IdentityNow.", @@ -157075,7 +157075,7 @@ }, "response": [ { - "id": "7ea6baed-61bd-47e8-a448-a949849ff0c6", + "id": "23d2b848-c1f3-4b2f-a402-7925f56700ec", "name": "List of Source objects", "originalRequest": { "url": { @@ -157173,7 +157173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d09f01d0-3ac2-4b33-8276-f2b622958caa", + "id": "3069979f-9f1d-49b7-bf64-57d3d36add26", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157271,7 +157271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe6de028-ac5f-449c-ba15-f8ab103143a8", + "id": "a5f3387d-5b4e-4299-a51d-5aab34394161", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157369,7 +157369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25b74016-7578-46e3-8b06-478607197dae", + "id": "346e3b63-ef4e-49ed-8781-b659c3bb3cdd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157467,7 +157467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9466159c-b705-4484-9e3e-181f22536875", + "id": "73a52433-c7af-4f8e-8c91-30ac6855f603", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -157565,7 +157565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bade1ef-e7cc-4f76-9cf9-94f1b2a452ef", + "id": "31318c3b-208c-4838-b9c8-38fab05d8677", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157663,7 +157663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00c42098-db8b-422f-a552-991a180b4b90", + "id": "4bcf9322-35a3-4a49-bfd3-097c1e1526d3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157767,7 +157767,7 @@ } }, { - "id": "e2940b9c-85cc-4405-b61b-af6080eaedfb", + "id": "d0ad42c1-5c45-479f-87fb-fdc6f13ce770", "name": "Creates a source in IdentityNow.", "request": { "name": "Creates a source in IdentityNow.", @@ -157819,7 +157819,7 @@ }, "response": [ { - "id": "14b8c4cb-2d1b-462a-8328-baa21b30e1de", + "id": "13626f31-44b4-4018-bd4f-6c3bd004e47d", "name": "Created Source object. Any passwords will only show the the encrypted cipher-text, as they are not decrypt-able in IdentityNow cloud-based services, per IdentityNow security design.", "originalRequest": { "url": { @@ -157885,7 +157885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3f8d59a-8571-453b-8102-37d7a4e61080", + "id": "92471141-a99e-478d-b22f-e9ae01b9e89c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157951,7 +157951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0efd39d4-2d9a-4493-bcfb-cbbdf7122b6b", + "id": "92369205-10c8-4131-800b-9644149c2859", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158017,7 +158017,7 @@ "_postman_previewlanguage": "json" }, { - "id": "076564f2-6648-4f80-867e-c627bd250c94", + "id": "e11904c9-3640-4d19-b86b-a0393b986319", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158083,7 +158083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49b81afe-3291-4823-b560-41f8da05a911", + "id": "4249fb0a-50a8-4b83-8279-637a7b708837", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158149,7 +158149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "808a2863-9ed1-496b-a47b-1a308c9a1a6e", + "id": "24148442-75c6-49d6-bef2-d05cb70e29ca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158221,7 +158221,7 @@ } }, { - "id": "8642c4b5-1e94-484f-8922-a7b0485a7c91", + "id": "4e6aa6cb-febc-4d6d-b764-6a781b95ae42", "name": "Get Source by ID", "request": { "name": "Get Source by ID", @@ -158262,7 +158262,7 @@ }, "response": [ { - "id": "bb1fb59f-f9a5-46e0-b5a3-e1901960baff", + "id": "b5a73f38-c3c8-47e8-957f-0af9c58e8ad7", "name": "A Source object", "originalRequest": { "url": { @@ -158306,7 +158306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f30bf585-7a2d-4e2c-ae13-095ab3409236", + "id": "ce94bba8-fb7d-4fe7-a9eb-e415d6601bdb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158350,7 +158350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "341db04e-4bee-4b09-a898-b1779d15513f", + "id": "4e4efdbe-413b-457f-866a-9d76dba5acd2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158394,7 +158394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2a9ac94-ccd8-4380-b5f1-c5f7a688144b", + "id": "ab5e0240-d33e-42b9-a993-baec71222ccd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158438,7 +158438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14a7e26b-87de-47ef-88ea-46ae95495ba4", + "id": "822d5a34-63a1-4517-8f72-4a36936bd971", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -158482,7 +158482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9982003c-599b-452e-b966-765a245fb497", + "id": "4a1b7f57-9ce1-48df-bf6e-dc95a74c322a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158526,7 +158526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15bcaf28-6e87-48d8-8dab-41d78e6909d7", + "id": "e24956a2-ad67-4e70-af24-0344968b3cf7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158576,7 +158576,7 @@ } }, { - "id": "2b72737e-f22f-4a96-9690-0e30831675c7", + "id": "35c69531-dc62-4029-bbcf-0909376d2daf", "name": "Update Source (Full)", "request": { "name": "Update Source (Full)", @@ -158630,7 +158630,7 @@ }, "response": [ { - "id": "55a400f3-4b56-4d15-a925-b34541bb8caf", + "id": "de6bba31-015c-4937-a298-383a166b405b", "name": "Updated Source object. Any passwords will only show the the encrypted cipher-text, as they are not decrypt-able in IdentityNow cloud-based services, per IdentityNow security design.", "originalRequest": { "url": { @@ -158687,7 +158687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57f238d8-62f9-4add-8083-33ce027a64c9", + "id": "e778aae7-f3fc-42c6-bc1e-113fa980a728", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158744,7 +158744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9643a6a-b5bb-487c-8ba3-282a0e86ad89", + "id": "efdb16ec-04a8-42a0-84b1-17f170a79297", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158801,7 +158801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54625eaf-01e6-4a6a-b83b-8462cebd9ed0", + "id": "edaebdae-f88c-481b-8c7f-3eb234c5d850", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158858,7 +158858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1296f10b-4d59-4c0f-b963-4b6e3326a1ba", + "id": "e0da971e-9040-468b-a953-dbdafd18a82a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -158915,7 +158915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "442708cc-634a-4b2a-9e87-f78fbbf09877", + "id": "cbefd9a1-8a95-4fdf-b23a-9fc94ac2a621", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158972,7 +158972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fa7781a-beba-4199-bf5b-669d75e12ea7", + "id": "1b05952c-577e-4ee8-a703-eb90f1d22eec", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159035,7 +159035,7 @@ } }, { - "id": "d4fb34f7-ea1c-408c-bf4b-39ee4a895560", + "id": "b7026224-42d5-4644-af25-7beb53d362b2", "name": "Update Source (Partial)", "request": { "name": "Update Source (Partial)", @@ -159089,7 +159089,7 @@ }, "response": [ { - "id": "4647257b-34f5-45f0-ad66-32426e902c51", + "id": "87078128-fb51-4db4-8fac-c8ab70561c29", "name": "Edit the source description", "originalRequest": { "url": { @@ -159146,7 +159146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d58156f-e28d-429c-a5ac-a551dc5bbde0", + "id": "09b37dff-3a91-4d3d-9fb0-c27536701768", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -159203,7 +159203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6283fa5-fc03-4088-aa4b-854c40b7acc5", + "id": "e387d2dc-83ad-4b15-aff2-3467738c1a71", "name": "Edit source features", "originalRequest": { "url": { @@ -159260,7 +159260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "badff813-e103-4507-b504-08c1e50edfb9", + "id": "7428f51f-f5dd-4064-b7de-6ba0246ade1e", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -159317,7 +159317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6b256a4-7f2a-45e3-8436-46f6181315ea", + "id": "9ef4e5c8-b18b-4a84-803d-510be7d50f41", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -159374,7 +159374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc9edc28-e18c-4f9e-a492-cad65645db8f", + "id": "df042d2c-935b-4664-9859-2fbd4528b616", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -159431,7 +159431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d359a3f-486f-471e-8bb7-79c51579aad2", + "id": "7d883b05-34f7-4ce3-8866-cd5fff41ef7d", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -159488,7 +159488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c2983a4-199d-458d-85c7-c08892f14e8b", + "id": "491613d9-0507-4deb-a8e9-108f65222561", "name": "Edit source features", "originalRequest": { "url": { @@ -159545,7 +159545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9480e765-2adc-4f88-8496-6bc7cd1a2c9a", + "id": "b7091d4b-12a8-4ca8-a227-90da505f7d47", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -159602,7 +159602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da9593dc-72bf-4fc4-a1fb-a457ff5bc7eb", + "id": "ee2007ef-032c-440b-8cb3-6ed253090fb0", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -159659,7 +159659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79b1ce09-6c7b-4fab-a5d8-412fc9c270ae", + "id": "0046127c-2a93-4144-907b-1e40b0ff9378", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -159716,7 +159716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "599eb3e5-ec2e-44d3-b371-9f5aa1ecc841", + "id": "2d130861-9204-46d0-b4a1-a86bc4076e0e", "name": "Edit source features", "originalRequest": { "url": { @@ -159773,7 +159773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d653af55-82a0-43f0-917a-8c86a0dac3e4", + "id": "78c629cb-2867-4309-b41a-77341219f5a1", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -159830,7 +159830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfc76b12-19f5-4ed2-92e1-cbfbea3146c0", + "id": "51bb0b0e-82cb-4779-801c-3331763be937", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -159887,7 +159887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbafb700-3b68-4f72-bba2-c733d90c2f47", + "id": "9e23e769-78c8-4ca3-94b9-887f6045e8f7", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -159944,7 +159944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0540577d-9dd5-4631-a053-380a8017733a", + "id": "542b9464-ca7b-4c14-ab9d-30438082be34", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -160001,7 +160001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86ee3fae-c695-4c12-91b6-34ac1af6d7cd", + "id": "ff49c9ac-13e5-4d47-8ec7-8f85a1d67ea0", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -160058,7 +160058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a366a1ff-02a7-4540-9ebf-02216f44bfdf", + "id": "2763f60b-1441-42db-9755-271e330d38d3", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -160115,7 +160115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e318e89-2877-454f-a8e2-ef983d6ca3fe", + "id": "5c68e0d7-4de9-449c-a97b-e447191eff08", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -160172,7 +160172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bcefe77-aa82-4ddd-8748-d64bb3bebc74", + "id": "48e156af-d3c1-479d-999f-2177c5007cc6", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -160229,7 +160229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5731e418-2bc9-4d15-a15e-4efee8e2ceee", + "id": "fbf41345-c27a-44d2-bbd3-80f5bf1c4718", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -160286,7 +160286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98b93411-2ba2-4f3c-a97d-208d0b8868eb", + "id": "94a8de3c-c407-4018-a21b-f86b660b9503", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -160349,7 +160349,7 @@ } }, { - "id": "da5eadec-51f5-4039-93a5-3f7b89b127fe", + "id": "43ad47eb-6fde-43af-82d1-5739d10f234b", "name": "Delete Source by ID", "request": { "name": "Delete Source by ID", @@ -160390,7 +160390,7 @@ }, "response": [ { - "id": "5d27b01d-3b35-44d1-a88f-59091b39001a", + "id": "5ca3f37d-29d7-4165-9956-13c72a3fa20f", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -160434,7 +160434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "264dbb37-a4a8-4de7-b98d-2b9311869bb5", + "id": "fa22fbf7-47fa-4c6e-a0fc-3af729bdbfa9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160478,7 +160478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b670e66e-2c10-4262-8d9c-47061c523db5", + "id": "facb64eb-c376-4124-90df-c9a0cd689db2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160522,7 +160522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "214e99a8-3e8e-4d7b-8782-84cb0b4a1f41", + "id": "f663f79c-b316-4ab4-8a7f-6d401a7132e9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160566,7 +160566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f76b44ed-82e7-4721-9ebc-19d052434b8a", + "id": "78f3cdd0-8096-44b9-bb8d-22cedf333fd4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -160610,7 +160610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e013303-c98b-4c9a-9982-031e1daab300", + "id": "327fa874-9b29-4f12-9d81-c712fd319f0e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160654,7 +160654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ec9d1db-bad2-445f-97ff-e18753ce0077", + "id": "31ffe1dc-f3ab-495f-a4aa-6ef319f2d913", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160704,7 +160704,7 @@ } }, { - "id": "01022e6e-e746-470b-ba9b-689936852113", + "id": "b72b9548-aeea-47d3-b206-7cbf6495aa5c", "name": "Attribute Sync Config", "request": { "name": "Attribute Sync Config", @@ -160746,7 +160746,7 @@ }, "response": [ { - "id": "3d970c2c-dec5-427e-a650-ee921862b64d", + "id": "7d427de0-1b96-4e32-b52b-8a3c76306e3f", "name": "Attribute synchronization configuration for a source", "originalRequest": { "url": { @@ -160791,7 +160791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6bbc023-f444-4e5d-b3fe-21b087004f85", + "id": "4980e8c6-c15a-417d-a2e8-36dba78d2d30", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160836,7 +160836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb50bfdf-d4b9-4d48-8874-bb60c6a6f7f0", + "id": "77768538-2dc6-486c-8b44-252fc734ab41", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160881,7 +160881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71cc8a2a-b724-4baa-9eef-40433ec7fedd", + "id": "1e4795aa-5809-439a-a056-84f4248bffa0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160926,7 +160926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a482fdf2-3531-4765-9255-e90b64490b48", + "id": "3af61c4b-b963-4473-ab44-57870c22eb1f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -160971,7 +160971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e0e3aad-4e09-4e03-adb7-a0f2c4dfd257", + "id": "d9d92cbf-9bdc-4e52-ad6b-0f662e76d9a1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161016,7 +161016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60584fbf-e3f2-43de-ae25-192cc847ff7e", + "id": "3c7ed2e2-ecf8-4ca4-a6f3-c77b39778789", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161067,7 +161067,7 @@ } }, { - "id": "d40ed984-9f96-467d-8999-3a8fdd1304c6", + "id": "522195fb-070d-47ee-ae5e-1a1a2c9c65b6", "name": "Update Attribute Sync Config", "request": { "name": "Update Attribute Sync Config", @@ -161122,7 +161122,7 @@ }, "response": [ { - "id": "6b5ad869-1768-420a-a46b-818bd2d20078", + "id": "39a75b3a-12c2-4629-9f91-9339cae23bd3", "name": "Updated attribute synchronization configuration for a source", "originalRequest": { "url": { @@ -161180,7 +161180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbef9530-d76a-4f97-8a84-ac78dfae9c94", + "id": "d4c88bc2-3479-478f-b6b3-c2a9ad327551", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161238,7 +161238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9393fee2-a784-4761-b066-3800895ef9f2", + "id": "8093f750-b864-4c0d-8625-9f8ada71b06c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161296,7 +161296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "747ee643-7b0a-4e5d-a0dd-3309794b0682", + "id": "89cee73f-ed7a-4e1b-ac4a-7b8aa0132207", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161354,7 +161354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2a601c0-1e12-4805-a0a4-d0b56edd4712", + "id": "160a577d-5c49-42fa-8edc-0b61cfe4de84", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161412,7 +161412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36606a60-77bb-4464-9a0f-563f953be9c6", + "id": "ceb66fec-f7db-418e-af14-7c23e964fcd9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161470,7 +161470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "673940df-1099-4daf-b883-62bc63b7015f", + "id": "77c5565a-40b1-4e4a-9e81-d7c80a4e4f7d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161534,7 +161534,7 @@ } }, { - "id": "6abd3485-1f62-4327-8a04-f73648aa7227", + "id": "e1caf7fc-017c-45d2-8d9e-90c691e5f23c", "name": "Check connection for source connector.", "request": { "name": "Check connection for source connector.", @@ -161577,7 +161577,7 @@ }, "response": [ { - "id": "c0bf4049-9f3d-4594-b760-1c05f55c74fa", + "id": "7bc040c0-af1c-4bc4-af06-cd29326536e3", "name": "The result of checking connection to the source connector with response from it.", "originalRequest": { "url": { @@ -161623,7 +161623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e770a62f-a05f-4e8c-8682-b0d7aa1d74ff", + "id": "df26aa8d-acb9-473f-ba80-a27e6e3c2c75", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161669,7 +161669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dcb57f2-9359-4a04-a89a-090b76ef99b2", + "id": "2b57aadc-9665-4e5c-b9f0-f1619a1c3378", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161715,7 +161715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99dfc0b5-0079-4f2b-bb88-c04b47dfcf6e", + "id": "aa4737df-d320-4406-a649-42445e8cfc8d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161761,7 +161761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fe6c640-74d3-455a-b7e3-8e67a4b8f149", + "id": "266e757c-45a1-4e9e-ab5e-3e9970dbd413", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161807,7 +161807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d72cee3a-fe6d-4757-ae9c-e079b09af19c", + "id": "fd2f0690-dbd7-4807-90e9-420a19bd2d61", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161853,7 +161853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5dd9c70-76b4-4b75-8ce6-58422771fd86", + "id": "58f4fe68-1e35-4168-8d8c-84f724d317e9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161905,7 +161905,7 @@ } }, { - "id": "b8e7c82b-22d3-4c7f-9133-466b516342ca", + "id": "35ace283-d5f6-41ea-aa7d-d528a24e03cc", "name": "Peek source connector's resource objects", "request": { "name": "Peek source connector's resource objects", @@ -161961,7 +161961,7 @@ }, "response": [ { - "id": "0aef8856-4f90-4bf3-a321-219b1e84bb06", + "id": "d789b977-a4d5-4ac6-96a2-94e8fd1488d5", "name": "List of resource objects that was fetched from the source connector.", "originalRequest": { "url": { @@ -162015,12 +162015,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"ODS-AD-Test [source-999999]\",\n \"objectCount\": 25,\n \"elapsedMillis\": 1055,\n \"resourceObjects\": [\n {\n \"instance\": \"in Duis\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"adipisicing sunt ullamco Lorem\",\n \"name\": \"Aaron Carr\",\n \"objectType\": \"account\",\n \"incomplete\": false,\n \"incremental\": false,\n \"delete\": false,\n \"remove\": false,\n \"missing\": [\n \"missFieldOne\",\n \"missFieldTwo\"\n ],\n \"attributes\": {\n \"telephoneNumber\": \"12-(345)678-9012\",\n \"mail\": \"example@test.com\",\n \"displayName\": \"Aaron Carr\"\n },\n \"finalUpdate\": false\n },\n {\n \"instance\": \"Lorem ipsum velit occaecat in\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"veniam cillum id\",\n \"name\": \"Aaron Carr\",\n \"objectType\": \"account\",\n \"incomplete\": false,\n \"incremental\": false,\n \"delete\": false,\n \"remove\": false,\n \"missing\": [\n \"missFieldOne\",\n \"missFieldTwo\"\n ],\n \"attributes\": {\n \"telephoneNumber\": \"12-(345)678-9012\",\n \"mail\": \"example@test.com\",\n \"displayName\": \"Aaron Carr\"\n },\n \"finalUpdate\": false\n }\n ]\n}", + "body": "{\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"ODS-AD-Test [source-999999]\",\n \"objectCount\": 25,\n \"elapsedMillis\": 1055,\n \"resourceObjects\": [\n {\n \"instance\": \"sunt tempor quis aute\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"Du\",\n \"name\": \"Aaron Carr\",\n \"objectType\": \"account\",\n \"incomplete\": false,\n \"incremental\": false,\n \"delete\": false,\n \"remove\": false,\n \"missing\": [\n \"missFieldOne\",\n \"missFieldTwo\"\n ],\n \"attributes\": {\n \"telephoneNumber\": \"12-(345)678-9012\",\n \"mail\": \"example@test.com\",\n \"displayName\": \"Aaron Carr\"\n },\n \"finalUpdate\": false\n },\n {\n \"instance\": \"sunt magna in aute\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"tempor\",\n \"name\": \"Aaron Carr\",\n \"objectType\": \"account\",\n \"incomplete\": false,\n \"incremental\": false,\n \"delete\": false,\n \"remove\": false,\n \"missing\": [\n \"missFieldOne\",\n \"missFieldTwo\"\n ],\n \"attributes\": {\n \"telephoneNumber\": \"12-(345)678-9012\",\n \"mail\": \"example@test.com\",\n \"displayName\": \"Aaron Carr\"\n },\n \"finalUpdate\": false\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e051606-bbd6-40fe-bf9b-7200c63216d5", + "id": "79ff25fb-717c-49d8-8b5f-599e11beeae7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162079,7 +162079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14e53102-5462-428e-a373-fdf4de2f76df", + "id": "bff93a2c-28e7-4b8b-923b-3be35d570f85", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162138,7 +162138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec08a5b2-714d-4f88-b30b-fcb7bbfd3651", + "id": "b9f7723a-0fac-414a-8aa3-f60381e0458c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162197,7 +162197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c1fe0b3-4076-4e9b-b7ba-89a5550401e6", + "id": "c38f5bec-ebe6-4244-b95e-68720d2e5233", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -162256,7 +162256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ebe4d7f-097b-4bb2-8f0c-e931106d145b", + "id": "7e922cb3-5876-4cbf-a532-c4031fdd77a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162315,7 +162315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2a18614-1f9a-49a7-99a9-f118f7f8341b", + "id": "62f1a8cb-8edb-49ef-bcbd-cbdaa35b5022", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162380,7 +162380,7 @@ } }, { - "id": "a2fad380-7a51-4f97-a09a-c5f3f96a5c2c", + "id": "df901506-5513-405d-9a5c-1c5f5ba49fe5", "name": "Ping cluster for source connector", "request": { "name": "Ping cluster for source connector", @@ -162423,7 +162423,7 @@ }, "response": [ { - "id": "4356ae71-17b6-42e1-a70f-b7895b9ac776", + "id": "264baf71-456b-4d51-8dd9-66955018e5ae", "name": "The result of pinging connection with the source connector.", "originalRequest": { "url": { @@ -162469,7 +162469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "868ee475-1f65-44b5-8297-6741d50295fa", + "id": "a16060eb-d026-45bf-983e-609fe21a8311", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162515,7 +162515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc926187-34f2-4fef-9494-9b46493b717d", + "id": "563f9a18-5c66-4ccd-8496-e499b597c680", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162561,7 +162561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34d30a06-e5e5-429b-9b27-b84301dc70b0", + "id": "b728cf80-e444-413e-8f55-afd05c7ce8c6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162607,7 +162607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80911e56-80f4-48a4-9cf7-d0f091a1ea41", + "id": "8c9708e2-2540-4f92-8dfc-b647195f7dd9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -162653,7 +162653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea3b0229-d977-47ab-884f-9a044649f8e4", + "id": "8bd0869d-f59f-4295-9c64-b523f4f090f1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162699,7 +162699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d947c9f4-8994-4b2c-9186-b9149766a7a9", + "id": "d0fb3bbc-9ed7-40ff-aa0c-d10746c28a1c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162751,7 +162751,7 @@ } }, { - "id": "d3cec79d-e205-454e-a194-c9fc12210392", + "id": "0978d375-d42b-4743-83a6-e13f19adf53e", "name": "Test configuration for source connector", "request": { "name": "Test configuration for source connector", @@ -162794,7 +162794,7 @@ }, "response": [ { - "id": "96535c94-6464-4a28-897e-c5e79145ae89", + "id": "f25266dc-3684-4afe-9ecd-f92c30944e0b", "name": "The result of testing source connector configuration with response from it.", "originalRequest": { "url": { @@ -162840,7 +162840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93a0df74-2bfc-4cdd-89f0-ad4679f4d2d3", + "id": "4fbb7a50-17c6-4992-aae3-6bbb5ed4d60b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162886,7 +162886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3f1ef93-e788-4451-ba6b-983d8066e262", + "id": "9ed6ae73-44c9-4420-b1a8-eaa837b6e24a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162932,7 +162932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a06e7c4-f614-4bbb-9a28-5270663c88ff", + "id": "914a5a3a-d88e-4f07-a2f5-51fd6b995e28", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162978,7 +162978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b63315bf-a71f-41b9-b79a-b5bc0c299a92", + "id": "a8e6383e-7eaf-4d80-8416-dca020e5a3e8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163024,7 +163024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47d67749-d1d3-45fb-a0fe-181cfca0bd3a", + "id": "f40a59c4-a416-499d-ad8f-46829af065f4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163070,7 +163070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b3fed30-198c-4897-8d3f-3fe428a33ca6", + "id": "ca9d0996-0ecc-4f63-ab9d-2476baac473b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163122,7 +163122,7 @@ } }, { - "id": "efb8c734-827e-4b1c-8c19-b93c56e1da29", + "id": "f2d24f03-7b69-4469-a796-0911a07df867", "name": "Gets source config with language translations", "request": { "name": "Gets source config with language translations", @@ -163148,13 +163148,13 @@ "type": "text/plain" }, "key": "locale", - "value": "fi" + "value": "zh-CN" } ], "variable": [ { "type": "any", - "value": "in aute elit ullamco", + "value": "magna dolore deserunt", "key": "id", "disabled": true, "description": { @@ -163175,7 +163175,7 @@ }, "response": [ { - "id": "933cf7a6-f1c0-47a1-af91-2089c00f5350", + "id": "256a5f85-c254-4877-9553-b1e7ced6565a", "name": "A Connector Detail object", "originalRequest": { "url": { @@ -163196,7 +163196,7 @@ "type": "text/plain" }, "key": "locale", - "value": "fi" + "value": "zh-CN" } ], "variable": [] @@ -163226,12 +163226,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"JDBC\",\n \"sourceConfigXml\": \"
\\n\\t
\",\n \"sourceConfig\": \"cupidatat fugiat et\",\n \"directConnect\": true,\n \"fileUpload\": false,\n \"uploadedFiles\": \"minim qui esse amet pariatur\",\n \"connectorMetadata\": {\n \"supportedUI\": \"EXTJS\"\n }\n}", + "body": "{\n \"name\": \"JDBC\",\n \"sourceConfigXml\": \"
\\n\\t
\",\n \"sourceConfig\": \"nostrud ipsum\",\n \"directConnect\": true,\n \"fileUpload\": false,\n \"uploadedFiles\": \"deserunt sunt sint occaecat\",\n \"connectorMetadata\": {\n \"supportedUI\": \"EXTJS\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d674b149-f323-48ff-a95d-eea1534190d3", + "id": "35047035-0f6b-4158-a3d7-9aeddefe196c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163252,7 +163252,7 @@ "type": "text/plain" }, "key": "locale", - "value": "fi" + "value": "zh-CN" } ], "variable": [] @@ -163287,7 +163287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0180b89-2bca-4d1e-9862-5aa681cca86b", + "id": "6956de68-e47e-4f6e-bff5-d4802c44f63b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163308,7 +163308,7 @@ "type": "text/plain" }, "key": "locale", - "value": "fi" + "value": "zh-CN" } ], "variable": [] @@ -163343,7 +163343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91aefde4-54fa-4829-9324-deb01f360ebb", + "id": "a3721821-48b2-48b0-b636-6176459fb810", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163364,7 +163364,7 @@ "type": "text/plain" }, "key": "locale", - "value": "fi" + "value": "zh-CN" } ], "variable": [] @@ -163399,7 +163399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71e89aed-7234-4512-a5d4-cb8b60c279a7", + "id": "a7a382b3-14fd-49dd-9325-7fac651b5bf8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163420,7 +163420,7 @@ "type": "text/plain" }, "key": "locale", - "value": "fi" + "value": "zh-CN" } ], "variable": [] @@ -163455,7 +163455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1149903c-819e-42e9-ac95-f2e02128e9f1", + "id": "a07a8a4a-3c9d-455f-91ea-6d489bdd9156", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163476,7 +163476,7 @@ "type": "text/plain" }, "key": "locale", - "value": "fi" + "value": "zh-CN" } ], "variable": [] @@ -163517,7 +163517,7 @@ } }, { - "id": "2daeeecb-e91d-4c2a-9304-eed08fdab8a0", + "id": "30b03bda-1575-4b96-9b64-b0746d956aa2", "name": "Native Change Detection Configuration", "request": { "name": "Native Change Detection Configuration", @@ -163563,7 +163563,7 @@ }, "response": [ { - "id": "900b08dd-90d8-4668-a524-0731fdb65d9b", + "id": "057f0448-a94c-438a-a32f-b755b765bb64", "name": "Native change detection configuration for a source", "originalRequest": { "url": { @@ -163608,7 +163608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3be8e35-fdfa-4be9-b460-7ca824dbc278", + "id": "65d7c035-7f43-4300-b308-405d7ebcf483", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163653,7 +163653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc8796b1-8f6d-4b4d-9f91-2e1a14ae2760", + "id": "8ed5f231-f14b-46e5-af06-f84b3620c30a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163698,7 +163698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06b4134e-fbac-4da9-9805-55d30ebbe8de", + "id": "55936f8a-82f9-4e17-90a4-bb874352b19e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163743,7 +163743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03d830fb-9e04-4e09-a4a7-b8d98887f6ef", + "id": "1e3d4141-4183-4eed-bbf8-382ff4f61c0a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163788,7 +163788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15c9f66a-ec74-40c4-b501-041af837e2ad", + "id": "cef0c306-b467-4424-918e-433002102fbc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163833,7 +163833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30eacdca-23b2-42cb-acb0-86814c75a0c4", + "id": "0fd632d4-95d7-44fb-8bc9-11925baaea38", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163884,7 +163884,7 @@ } }, { - "id": "397d0a05-e111-4ce0-894e-c41e019661c1", + "id": "a8a20f5b-5711-4429-8d17-0c900fb54037", "name": "Update Native Change Detection Configuration", "request": { "name": "Update Native Change Detection Configuration", @@ -163943,7 +163943,7 @@ }, "response": [ { - "id": "e858342c-de94-4ce4-9131-8d380858276d", + "id": "7277ffc2-cd18-420f-817e-bbb16abd8760", "name": "Updated native change detection configuration for a source", "originalRequest": { "url": { @@ -164001,7 +164001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c133ad10-cbc7-4d01-9efc-8def9063941c", + "id": "317e4408-7a80-4a8b-a173-a07a28c00e8c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164059,7 +164059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a030177-6191-4ace-9d7c-e20f7579c8d2", + "id": "73788e27-cfbc-43eb-92ba-5b141a18a2cb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164117,7 +164117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b90651f-7fff-4a17-afb6-1f17fc66cb79", + "id": "caaf04ff-c221-4045-b78c-e0dac397127a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164175,7 +164175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "239842ad-025a-4e16-85ff-221de9aded9c", + "id": "46333d2d-a523-45d1-a7ca-4b8356c26bc3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164233,7 +164233,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc5033dd-3d42-4b7a-b6d1-87e0770f68c4", + "id": "ab29146f-df67-49d0-a76d-75a0674b0e51", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164291,7 +164291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02550ec0-3d31-41c1-9cac-085a8bbd278a", + "id": "c5d3f669-2c5c-488c-a6bf-6404c098ddfa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164355,7 +164355,7 @@ } }, { - "id": "7f09a819-1afd-4c0c-8d89-df97019147ce", + "id": "b991390e-2117-4d1b-a104-a2932177d452", "name": "Delete Native Change Detection Configuration", "request": { "name": "Delete Native Change Detection Configuration", @@ -164401,7 +164401,7 @@ }, "response": [ { - "id": "b7c8b1b5-a877-47df-87ec-5819d4738802", + "id": "036cdce2-f8df-4c48-b390-39bf0560e116", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -164436,7 +164436,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6b007386-f411-483a-a8f6-b6578d03a561", + "id": "ba1db389-14c4-4e21-88d4-6f7abb58b0f2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164481,7 +164481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "637be66b-d8c1-4d58-ba15-2b050860f395", + "id": "cf875cdc-ce8a-4aa6-a9b5-efcdb1d2f442", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164526,7 +164526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a78c846-ea79-45b1-9486-77afc7f91af8", + "id": "6ad5d8fc-6edd-4918-9046-33e2b6e66fd8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164571,7 +164571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ba10ebc-ca67-4db7-8c89-420925ca69d6", + "id": "7ef9f13c-5637-4eb6-8f82-79b0da9ed1d8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164616,7 +164616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c838c26b-1ae5-4894-9f8f-2132378ca515", + "id": "8b9cd495-2ee8-41dc-a110-7a43f4e8a328", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164661,7 +164661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc7b3d2d-a7f2-455d-b614-046d06a51044", + "id": "f0334473-080c-4fba-9c21-01c3425dd67e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164712,7 +164712,7 @@ } }, { - "id": "bda3c581-d4f4-40fa-b9e5-9228a74f42f5", + "id": "7def1cf8-1b75-4cab-bd39-44922b747d35", "name": "Lists ProvisioningPolicies", "request": { "name": "Lists ProvisioningPolicies", @@ -164754,7 +164754,7 @@ }, "response": [ { - "id": "2ded45bf-b629-474a-ac47-4e35262141e0", + "id": "58ff3c53-12f6-4b95-9570-3c0ea8918b4c", "name": "List of ProvisioningPolicyDto objects", "originalRequest": { "url": { @@ -164799,7 +164799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d66c26d8-62e7-4236-8674-bc62af83aae5", + "id": "bcd885d1-53a4-49f8-a26f-db68eb356add", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164844,7 +164844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "908eaa9e-c55f-402e-a281-2186a9898b3f", + "id": "5021612a-8ec3-4ec0-ba1b-8af239f75108", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164889,7 +164889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b6fb22f-a9ef-43d7-8e8a-4fa702db9882", + "id": "1c3f571b-6f5c-4888-9860-6704f0c0f2a7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164934,7 +164934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc43e016-e11e-440f-90aa-692823f45e8f", + "id": "dc1f660a-c918-46f8-92b1-2a0354d16f18", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164979,7 +164979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a63f97d-c62a-4efc-8875-1d33cac3ba7a", + "id": "d78ed90a-0bcd-4c84-a4fc-a57d722b7368", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165024,7 +165024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5ead560-b05a-4afd-aabf-13337a6e11f7", + "id": "13106250-04e8-4444-ba8f-6aa1648688ef", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165075,7 +165075,7 @@ } }, { - "id": "25b93263-771b-47ed-b407-8c36164e8085", + "id": "d8ea4b4e-2419-4b48-a3f0-2076175f8cbe", "name": "Create Provisioning Policy", "request": { "name": "Create Provisioning Policy", @@ -165130,7 +165130,7 @@ }, "response": [ { - "id": "04cd718c-0259-4f2d-ae5d-bcf4a0d55242", + "id": "486a3feb-0c44-4b15-a0c0-e87fe9e493ed", "name": "Created ProvisioningPolicyDto object", "originalRequest": { "url": { @@ -165188,7 +165188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ab5103d-e6d1-4ca7-b353-5793d20d0878", + "id": "dc48a7d1-9f7d-4c57-b07c-29ed3ea9b15d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165246,7 +165246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b170b731-cc13-49b8-9820-d8d606b1c282", + "id": "c33b6dc1-c4c2-4e21-9509-cc007a6fb917", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165304,7 +165304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f6b5ad0-106c-4d2e-a7bd-9c530a01a603", + "id": "b47bff93-f22a-4e2b-80b8-4d34552bad10", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165362,7 +165362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10d643c4-d4a7-4e90-a220-a09363f39e48", + "id": "50acd0a4-25ff-4848-bd54-84bb210bfc43", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165420,7 +165420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e93905bb-da28-49a1-9330-89b74c47e703", + "id": "ad76f5e1-c708-4350-b960-9882c4f0f218", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165478,7 +165478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd71ff49-6df3-426a-9441-e2b32c5cd5c5", + "id": "e31bccf1-ee89-4d97-a2bd-2b1f55e62e5c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165542,7 +165542,7 @@ } }, { - "id": "e1c92286-d254-431a-a8f6-7d695521e108", + "id": "f42c1061-cd11-4a47-af6c-77fc6538a74b", "name": "Get Provisioning Policy by UsageType", "request": { "name": "Get Provisioning Policy by UsageType", @@ -165595,7 +165595,7 @@ }, "response": [ { - "id": "e4ef13fe-557c-4f26-8d85-1e910b97d462", + "id": "e7c3325b-80ee-4e2c-bace-e222f5237e2d", "name": "The requested ProvisioningPolicyDto was successfully retrieved.", "originalRequest": { "url": { @@ -165641,7 +165641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74056379-ee86-44b6-9aa3-047a0e2a524d", + "id": "6c760c90-2c15-4e13-941e-c3e510aa0da9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165687,7 +165687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "302474ce-359e-4f59-ade9-e02c2103526d", + "id": "fa14ba0c-1a0d-41d0-9747-05b7a834add0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165733,7 +165733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9cb1193-ec67-40ef-b0c5-5d364b40ff0b", + "id": "89c55a82-4d00-47c4-a9df-78a4a8e00af2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165779,7 +165779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82f57ea2-0d72-47bf-8a96-ac9debfcd268", + "id": "eb88dd57-9366-47eb-b399-b8f0f188641c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165825,7 +165825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7316dcdc-3093-406a-98b9-e676db399ccd", + "id": "ff85698b-1445-467a-a0ed-3ff3f71aa8cd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165871,7 +165871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb99c7b1-504e-442e-8774-24f459d87a40", + "id": "7526cd3c-ca4c-4f8d-96e8-4ea57b483d42", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165923,7 +165923,7 @@ } }, { - "id": "712fa8c3-8710-44df-8911-b58ac921403d", + "id": "6639b4a0-34ba-4d00-85cf-b02f62a6fb32", "name": "Update Provisioning Policy by UsageType", "request": { "name": "Update Provisioning Policy by UsageType", @@ -165989,7 +165989,7 @@ }, "response": [ { - "id": "0454d7b2-049f-4ea0-94be-17b2711c8194", + "id": "5f54675a-e9c4-454b-be28-d63533e13dc7", "name": "The ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -166048,7 +166048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67c79022-ba2b-409c-aaf3-8417a95a60b2", + "id": "20ce211e-3df3-4523-8d37-3484177f8682", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166107,7 +166107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c37ddb0-629e-488e-b1ba-598b6c826e2c", + "id": "7470438c-abe0-489b-883f-0df06b244185", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166166,7 +166166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71cb6f80-8aac-49ac-9088-7637afda19d0", + "id": "f70ef4bb-b28e-4023-bfe4-8aa0e42cf1f4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166225,7 +166225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f98b980-ca13-46fa-9486-0f31a2e31956", + "id": "f4e4deb7-0218-46ad-bb3c-4843f78f025a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166284,7 +166284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02285cbe-7060-4532-b57c-9d9a8c3ee17d", + "id": "de6cabd9-3cc6-4e60-98b7-11b94f1768ea", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166343,7 +166343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ee856bc-445e-40aa-8ef4-db47d825d7af", + "id": "73b3b9bf-41ff-44b9-8550-359efe6388b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166408,7 +166408,7 @@ } }, { - "id": "979c00ae-0e08-441a-a7cb-84881c1c0484", + "id": "aafdf573-57df-48d2-bd04-ad574ba411b6", "name": "Partial update of Provisioning Policy", "request": { "name": "Partial update of Provisioning Policy", @@ -166474,7 +166474,7 @@ }, "response": [ { - "id": "bcd8d9e6-ca3f-445f-b513-1a29c6afabbb", + "id": "f452c8eb-80e6-4692-88b2-b63eac349ea5", "name": "The ProvisioningPolicyDto was successfully updated.", "originalRequest": { "url": { @@ -166533,7 +166533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63ebd54e-be7a-45dd-a82b-99170f0396a4", + "id": "e3147dde-158a-4605-8487-0a3ba492768e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166592,7 +166592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dee1db99-616d-4e20-a47d-a9834327d242", + "id": "7bf2edce-cff8-4e36-96ce-db6ba8e81458", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166651,7 +166651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cdc6fca-8d31-4003-b94a-eb2ebaad3361", + "id": "2afc68d3-56c7-4e29-8399-8df95b691c21", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166710,7 +166710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc4054a9-135b-4b0d-bee8-982519bb2afb", + "id": "d5604ff1-ce99-4e0f-81c3-5481205d8c5d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166769,7 +166769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8252a907-c994-4819-be38-3d27da7a7424", + "id": "e0c620cd-d936-4c19-bbb7-fbfaf817819f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166828,7 +166828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27979449-0dc0-4463-b60a-3c7b0fa85648", + "id": "d3aa50d4-6121-494c-bd51-333e5c541801", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166893,7 +166893,7 @@ } }, { - "id": "88db7afb-273c-4205-b8cf-d40fc4fa86cf", + "id": "53c2186f-b2cd-4b4f-8145-29f1061518b2", "name": "Delete Provisioning Policy by UsageType", "request": { "name": "Delete Provisioning Policy by UsageType", @@ -166946,7 +166946,7 @@ }, "response": [ { - "id": "10f1e74a-0128-4444-ba36-5d80151c0709", + "id": "fb3c3363-1186-485b-ae24-ce29139aa9a4", "name": "The ProvisioningPolicyDto was successfully deleted.", "originalRequest": { "url": { @@ -166982,7 +166982,7 @@ "_postman_previewlanguage": "text" }, { - "id": "69b81093-dbb2-4eae-b9eb-25fdd04ea5c9", + "id": "daf82c84-45e8-43f6-b50a-188ea290aa3b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167028,7 +167028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70559f26-ba0a-4ea0-9af6-9cb77764cc24", + "id": "5935110b-a1b8-4013-bbe3-d556bcd749e4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167074,7 +167074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d31870e-0c7b-4b71-91f8-1abc6382b6c4", + "id": "59d9fa77-780f-4f6c-a7c6-033c5b2633b5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167120,7 +167120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a446a984-fd01-4f4e-87f8-854014e11521", + "id": "17e779fb-8bf8-41c6-9e76-be615405d410", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -167166,7 +167166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4547dbea-c853-4b00-a29a-03ddbebe628a", + "id": "7a4e3839-92c1-473f-aeac-e4f941554573", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167212,7 +167212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07eaf1ca-9657-4888-af75-81771070d790", + "id": "2dce5be0-d68a-427c-be5b-57fac579596c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167264,7 +167264,7 @@ } }, { - "id": "ef29a2ff-221f-4824-88d3-77f152f61d07", + "id": "d0d5641a-602d-4b5f-9b57-95675d3c69ac", "name": "Bulk Update Provisioning Policies", "request": { "name": "Bulk Update Provisioning Policies", @@ -167320,7 +167320,7 @@ }, "response": [ { - "id": "dfc88f22-e60f-4744-a6f2-ae8965f506d6", + "id": "5b948016-954f-423f-b123-bcedd24111f9", "name": "A list of the ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -167379,7 +167379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2e58d6b-e363-4708-aa9e-f8bc702e30eb", + "id": "a30639b1-a3f0-4095-98b9-5b5ff550efd2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167438,7 +167438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36a2a372-391d-45ff-addb-ea564a18f730", + "id": "b6b6faa4-026d-4197-86f6-2f567da7daac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167497,7 +167497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcf8d8fa-e9fe-4e4c-baa8-ddbcabb26bae", + "id": "b4560c3d-a28e-4367-89a8-31dcbf50b56e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167556,7 +167556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11919765-28da-4c0c-87d7-12457168489b", + "id": "83adfa33-0806-44f8-9d1e-9f5e4b2b0cf6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -167615,7 +167615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e9d206f-d30f-4716-96b7-208e7135422e", + "id": "8bc08b81-457e-4582-a06a-acb383b76211", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167674,7 +167674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33e98ec6-f79f-4e8b-bc55-4f54af79ac94", + "id": "9dcdbae8-7f65-4931-8099-45fd797ff567", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167739,7 +167739,7 @@ } }, { - "id": "ff73c566-4126-453e-bbfa-57af03f9b636", + "id": "65b401dd-40fb-48a6-988e-31e2f068d671", "name": "Lists the Schemas that exist on the specified Source in IdentityNow.", "request": { "name": "Lists the Schemas that exist on the specified Source in IdentityNow.", @@ -167788,7 +167788,7 @@ }, "response": [ { - "id": "535e320c-7b81-4602-a361-e5778fde2e18", + "id": "193ae639-8d18-4766-960a-5e6fc04e69f7", "name": "The Schemas were successfully retrieved.", "originalRequest": { "url": { @@ -167843,7 +167843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c5e59fa-8b42-41ce-b65e-70d54c371f37", + "id": "e3704726-901e-428c-af2d-191b6149d9af", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167898,7 +167898,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63239ed2-3a3c-4996-99f6-fddeedeacf7f", + "id": "eb713df6-d24c-4cee-91da-3699f4260e24", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167953,7 +167953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4b7b2e3-e851-41a9-a8d9-f1ae3ecb188e", + "id": "3696baa8-da2c-4d34-adef-3275541a8da1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -168008,7 +168008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea9a68a4-65da-421d-ba71-d6785a2a07c5", + "id": "2db73a9d-23af-4453-8ae8-3f5e150d869f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168063,7 +168063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd568527-b41c-48be-92ea-14ee5766946d", + "id": "cb6087f3-0c86-48e1-b96a-45256da9b793", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168124,7 +168124,7 @@ } }, { - "id": "47eae4ae-b6a0-442c-b392-6294bcc5ba97", + "id": "f9821f96-e4c6-481c-8d09-29abe8ab1a4f", "name": "Creates a new Schema on the specified Source in IdentityNow.", "request": { "name": "Creates a new Schema on the specified Source in IdentityNow.", @@ -168176,7 +168176,7 @@ }, "response": [ { - "id": "a2ca7ab1-2f59-4bd7-a991-705b77414be1", + "id": "6f44eb42-27a0-4049-be92-7e4610cb4d30", "name": "The Schema was successfully created on the specified Source.", "originalRequest": { "url": { @@ -168234,7 +168234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d1e2aaa-36e8-4b96-a4b0-aa86d904f697", + "id": "9625ab4e-7a22-42f1-b099-6f297c8e4da5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168292,7 +168292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc42afc2-c3ab-404c-a05f-d2eeb2f655df", + "id": "2eb3bb5b-369b-4dfd-ad36-fb421d2e3389", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168350,7 +168350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "572748dd-cad0-451e-8392-858b96d330a1", + "id": "f7cfd59f-e791-404c-9857-4b0ff75719ec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168408,7 +168408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5539cf65-c40f-4ef3-89c6-1386129436fd", + "id": "d7d30b6b-e3ab-4aed-874a-7e9b737a377e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168466,7 +168466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2cc56b8-8cb1-41d6-b4a0-baf203ca7000", + "id": "2c9bb699-44bb-4fd9-b9c5-98fcb6cb1da7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168530,7 +168530,7 @@ } }, { - "id": "8004f0b4-2492-4d56-8425-14095d12a607", + "id": "bba7daa0-9f37-45ed-aa2f-5cbdc41c65a9", "name": "Get Source Schema by ID", "request": { "name": "Get Source Schema by ID", @@ -168583,7 +168583,7 @@ }, "response": [ { - "id": "556ac691-2c2a-4193-8b31-604606fd7cd7", + "id": "783afb09-eea1-4a4e-a581-c63ef129d6d5", "name": "The requested Schema was successfully retrieved.", "originalRequest": { "url": { @@ -168629,7 +168629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4add7fae-e5d4-4d8a-bd0f-abc58739b08e", + "id": "fbef0631-4070-4f31-8033-62570e5b99a8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168675,7 +168675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4647fc4b-01e9-49c1-8320-bc4c80dff0be", + "id": "5d80b23a-bb09-41dc-9eae-0165fc9b0ac0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168721,7 +168721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d882dfff-2d66-4eed-9aba-0f1e4ee42a7a", + "id": "1771f288-9822-44b7-916e-b9b8db8de6d7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168767,7 +168767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "780c7f88-8464-4cb8-a98e-70ade7ccc43d", + "id": "b9de9040-4638-4a4a-9540-7a6a552b1d16", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -168813,7 +168813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dea655d-b72a-4c6f-aba2-98478b199a02", + "id": "3a1356ad-5117-4e14-ab68-f4354e718358", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168859,7 +168859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91d3348b-fe78-4ad3-b0a0-71f5d92d176b", + "id": "2d6903fe-f814-4104-904c-01a07038adef", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168911,7 +168911,7 @@ } }, { - "id": "e5b88788-63f2-44cd-9cac-b5707005db09", + "id": "6510e205-d6d7-41e4-95d0-b70e5a7f12ce", "name": "Update Source Schema (Full)", "request": { "name": "Update Source Schema (Full)", @@ -168977,7 +168977,7 @@ }, "response": [ { - "id": "88cea45d-a4af-4972-8bc5-027e70c87533", + "id": "b9080c68-ddd6-47b5-b9bd-6fbadbec9863", "name": "The Schema was successfully replaced.", "originalRequest": { "url": { @@ -169036,7 +169036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60f5c68d-189c-4ddd-91f1-72ae8404922e", + "id": "ded6e22c-1fc5-4e35-9ad2-85a8700e4bae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169095,7 +169095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd003df5-6b88-4a11-adc1-f24eae375360", + "id": "9ec08897-c388-4565-8f42-8b24ec432f0f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169154,7 +169154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00607803-1010-4751-a604-5ae494940f8f", + "id": "b2a6b0ca-ac37-4330-b40a-6c28459b0b67", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169213,7 +169213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9756c75-4013-454a-8092-d2861c76a30b", + "id": "70a5f0e2-9c9b-4973-8970-c2b0c5c93e38", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -169272,7 +169272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95a2d485-6676-4b35-8862-56aaf460883f", + "id": "b0be8cd9-dbaa-4d85-b457-51267d6a4dfc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169331,7 +169331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9780d318-e475-4a6d-bd82-db2729d96e37", + "id": "09b31773-a71a-46f8-b802-b776dcac2e97", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169396,7 +169396,7 @@ } }, { - "id": "1cfa505b-18f3-47f7-9294-292d7c41d949", + "id": "0e8c4877-3230-4bf4-90f1-4a0876eb85f9", "name": "Update Source Schema (Partial)", "request": { "name": "Update Source Schema (Partial)", @@ -169462,7 +169462,7 @@ }, "response": [ { - "id": "6992d37d-9863-4bad-8b8a-2f9823c8dec3", + "id": "c2d185cb-5a9b-4569-b442-5f82e3df09dc", "name": "The Schema was successfully updated.", "originalRequest": { "url": { @@ -169521,7 +169521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6ab7945-efb9-4dce-8d00-cc1bc58be821", + "id": "7e43b547-99b7-4042-9ec6-c471bec19440", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169580,7 +169580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4327dec1-486d-4d3f-9158-72946532c1c0", + "id": "64b75b8f-7539-4d1d-b927-293114105ef8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169639,7 +169639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e6e01e5-d874-4b62-a617-96f244dec177", + "id": "78639baa-bf19-40ad-990b-ee29e87ce237", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169698,7 +169698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c82900d5-e21c-4025-8897-99b5ba460aaf", + "id": "2fc13093-c9ac-4f16-a626-2eb3d7b1a352", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -169757,7 +169757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76e702b1-3f0e-4ecf-a373-eb8349082ccb", + "id": "b5065df5-a1c4-4a93-9e28-39c10064cade", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169816,7 +169816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ba867d6-8a42-4016-b922-e2fe7e1be4db", + "id": "c1c1bcbe-b8aa-4d23-9e52-f003a47ef5d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169881,7 +169881,7 @@ } }, { - "id": "c4772d79-209f-4934-8752-610fa54d5aa0", + "id": "15d0434a-65a3-4c4b-bd0d-b104ac88e64f", "name": "Delete Source Schema by ID", "request": { "name": "Delete Source Schema by ID", @@ -169931,7 +169931,7 @@ }, "response": [ { - "id": "46888f14-ad4d-4976-899f-a0dcf4af214e", + "id": "3d0f992f-dcd3-4c99-99e3-4bbd73d8c651", "name": "The Schema was successfully deleted.", "originalRequest": { "url": { @@ -169967,7 +169967,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3e4fec23-5559-4fd7-bed5-149cb1380e4f", + "id": "d86b84f7-a173-4055-80e3-c90781618f0a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170013,7 +170013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "691fcbcb-0792-4baf-9917-82ef07ef317c", + "id": "89e3b9c8-46b5-4c92-a2bc-02024c986bbf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170059,7 +170059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "023f3308-3037-4c94-9666-2dde71728863", + "id": "2dac9898-61aa-4934-b692-72397efe8a20", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170105,7 +170105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09f0df9c-8177-4cad-93ff-9352de0ce699", + "id": "c46509eb-d9d2-428b-9ad9-691e6fef5ee7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -170151,7 +170151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42fa2336-c715-4eec-b7a2-f4d96eea890c", + "id": "2d8bf4d0-8914-435b-ba4f-7bfcc8f6b76f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170197,7 +170197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed65dbe2-88cb-4d96-b19c-4f960a27d8a4", + "id": "f99ea994-7a98-4a79-8e85-55684c6528a8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170249,7 +170249,7 @@ } }, { - "id": "3a9db26e-f8ac-4419-9efa-30a94ca6fe89", + "id": "5e3a5467-b047-4830-bc72-b77ddf3495cd", "name": "Downloads source accounts schema template", "request": { "name": "Downloads source accounts schema template", @@ -170289,7 +170289,7 @@ }, "response": [ { - "id": "88aacfa5-3f02-4a4d-979b-6e6fff8575a1", + "id": "426b098a-44a9-4284-a248-95774e117259", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -170335,7 +170335,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9a6c6a04-dfa8-49f3-a4e5-ad3f3b64b1ee", + "id": "2c25bd53-1a1a-4d12-ad4d-9b91b492d841", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170381,7 +170381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff7cab06-553c-4471-acfc-67e430fc7183", + "id": "689304eb-8533-4357-91ec-01167a8a346b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170427,7 +170427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89468d34-5b60-4859-86c9-13fdd193c319", + "id": "c5063c81-eb0f-4708-b954-f9f3b67a4483", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170473,7 +170473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d2bcb6d-66f4-4214-a302-62caf93c088d", + "id": "e8040b41-b46a-4534-b3e1-fa353b80c91b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -170519,7 +170519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e97fb20-04c2-485c-966d-294d5b2e23c2", + "id": "72f5e580-30ec-4e0b-a88e-3610404958c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170565,7 +170565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3104b3b-61ef-45ee-b86e-9424dd8e0b74", + "id": "d5807c82-343a-4b34-bd8e-c2c7c19ce748", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170617,7 +170617,7 @@ } }, { - "id": "6ff107fa-aa18-4d3c-9d6f-f1997b2ef095", + "id": "3b5349a3-8bdd-469f-8689-f7097340ce84", "name": "Uploads source accounts schema template", "request": { "name": "Uploads source accounts schema template", @@ -170669,7 +170669,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -170677,7 +170677,7 @@ }, "response": [ { - "id": "6ab2cbba-64a8-4b9c-ab34-a64285f03e8f", + "id": "96f0f446-b6d1-4192-91ed-ff08cc0b42b3", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -170721,7 +170721,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -170740,7 +170740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7a3a226-be09-4cec-9666-e44d83600450", + "id": "1087bda7-b9f3-4880-8f47-ec824411b7bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170784,7 +170784,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -170803,7 +170803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "330c9377-fc94-491b-9f14-257e0988018c", + "id": "9f917d2a-e995-4695-95cf-2b318238f42b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170847,7 +170847,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -170866,7 +170866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fafba89-8951-464f-9880-56846df56704", + "id": "7f7e8d3c-ac5e-446f-8fec-72a4a6bbc819", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170910,7 +170910,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -170929,7 +170929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80065b26-3a9d-488e-a6dc-5d718a329a97", + "id": "f154c0e9-a404-4921-8d51-9d8d31a79fd1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170973,7 +170973,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -170992,7 +170992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98c7d4f6-518e-4442-a447-e8b1b47191c2", + "id": "60d8e8a7-2c0a-4582-96cc-170d076371b1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171036,7 +171036,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -171061,7 +171061,7 @@ } }, { - "id": "4c81de0c-14d1-4af7-9168-8383a44ff40d", + "id": "dd2b0317-2edf-4681-9c23-6681af837dac", "name": "Downloads source entitlements schema template", "request": { "name": "Downloads source entitlements schema template", @@ -171111,7 +171111,7 @@ }, "response": [ { - "id": "d7b00b46-cf48-4e57-9b88-ab892b090a2a", + "id": "5cb35946-9fa0-443e-8141-0075b0255800", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -171167,7 +171167,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d49a0275-02e4-4acf-8c4d-23071082ff80", + "id": "a56d9ccb-a614-4d52-917d-7532a6f8a6bd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171223,7 +171223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51ce31db-14de-4bd4-95c0-1e9d90814c00", + "id": "a6c5d303-65b1-4607-ae9b-99dcac398793", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171279,7 +171279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e42be1d-29f0-4e21-80c8-d689d30587f7", + "id": "ef7b3e8c-2abc-4d40-97b2-38fd4afb31d7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171335,7 +171335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "586be633-c55e-42c3-ad84-21c8a9fc7574", + "id": "4efaf020-76f7-484d-9820-ff15b14f76b8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -171391,7 +171391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c347bff-1c3c-4633-8e58-307fed334cbf", + "id": "b51443e3-2d02-4495-811b-4472eb30acbf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171447,7 +171447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81366919-f4ab-4e97-80ad-a7f4c231bc64", + "id": "6812d686-672f-4c92-841b-c3833e2a7959", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171509,7 +171509,7 @@ } }, { - "id": "1e25e03e-9ee0-465f-b1aa-458345d64127", + "id": "bb7edfb8-b2a8-421f-bd0b-6abb941d5539", "name": "Uploads source entitlements schema template", "request": { "name": "Uploads source entitlements schema template", @@ -171571,7 +171571,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -171579,7 +171579,7 @@ }, "response": [ { - "id": "129e85bf-baad-4724-85c2-ff1f611c8a8e", + "id": "182cbcea-ae39-4017-b1dd-56d62b95dde3", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -171633,7 +171633,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -171652,7 +171652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba8a064e-e951-4619-9702-15ae5302429a", + "id": "ad60a762-8e86-4f11-b06f-dba4a767b885", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171706,7 +171706,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -171725,7 +171725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efb1a94a-52da-46e4-be02-dc59ba287ad8", + "id": "47f024d6-04ce-4221-8f77-455e2698086c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171779,7 +171779,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -171798,7 +171798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9235fac0-31dc-480e-93cf-946440f4371e", + "id": "885cf743-18dc-45ca-8dc9-b8f1ffd4ff72", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171852,7 +171852,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -171871,7 +171871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a44281bd-57ec-442a-a0b2-abe1d1671018", + "id": "6cdb8993-85eb-4626-a652-0103c4d83100", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171925,7 +171925,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -171944,7 +171944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0996f263-4567-440c-a45e-f36583fd5107", + "id": "2606933e-4f59-4c7d-8b10-808db01feae5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171998,7 +171998,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -172023,7 +172023,7 @@ } }, { - "id": "819cc07d-75b7-4433-86d6-012e6e322b56", + "id": "de2fe628-5a87-4350-9cf4-da55a5e5480e", "name": "Upload connector file to source", "request": { "name": "Upload connector file to source", @@ -172074,7 +172074,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -172082,7 +172082,7 @@ }, "response": [ { - "id": "4f89f6b0-2b1a-4a9d-9c7a-2946bbbbc229", + "id": "978bcd5c-6445-440d-b149-bb69a7b5a0e2", "name": "Uploaded the file successfully and sent all post-upload events", "originalRequest": { "url": { @@ -172125,7 +172125,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -172144,7 +172144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81684c6d-8b99-496e-bfb4-620569be7934", + "id": "03babf54-5f19-42cd-be56-05cefcd1dd1e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172187,7 +172187,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -172206,7 +172206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92d5f865-c8a5-4fdf-b3ba-785f6d165948", + "id": "2ee78294-99dc-41e3-9c13-6551874ee4a6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172249,7 +172249,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -172268,7 +172268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdb3714d-3ecd-437f-8972-749dd16c0b79", + "id": "f355b8b7-15e8-4f96-9584-678a2de37743", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172311,7 +172311,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -172330,7 +172330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "523e6d35-cecb-4507-8ad6-7e8035329932", + "id": "cbbd1db7-dfcb-4f77-b695-152aca08ce18", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172373,7 +172373,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -172392,7 +172392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8037efa-37c1-4b8f-bec4-6d84cf774fb8", + "id": "5eaa2fc9-8953-4562-968c-8541e1fdc505", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172435,7 +172435,7 @@ "type": "text/plain" }, "key": "file", - "value": "ad eiusmod", + "value": "elit in laborum Ut ", "type": "text" } ] @@ -172460,7 +172460,7 @@ } }, { - "id": "f2dc480f-f8fd-4b87-b9d1-67e475560dea", + "id": "5e3c5aa4-872d-4a35-8583-313d995e9c9d", "name": "Synchronize single source attributes.", "request": { "name": "Synchronize single source attributes.", @@ -172481,7 +172481,7 @@ "variable": [ { "type": "any", - "value": "in aute elit ullamco", + "value": "magna dolore deserunt", "key": "id", "disabled": true, "description": { @@ -172502,7 +172502,7 @@ }, "response": [ { - "id": "0b8f05c3-495d-43f6-b912-d0ad6f296a51", + "id": "56913f40-8617-4ae7-a5ee-5e87a2f8cd77", "name": "A Source Sync job", "originalRequest": { "url": { @@ -172547,7 +172547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88a27045-8a7e-42cc-bec9-6f74885002e9", + "id": "67de9192-ab33-4271-8708-109196ae5521", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172592,7 +172592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d562f32f-ce64-45a1-8a44-8fbfb7e74307", + "id": "65f1a2bb-31d5-4d41-990c-fc525f02ecb9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172637,7 +172637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "685fbc24-db17-4650-abce-c124a8b1510e", + "id": "98fcfa57-58e2-415b-824b-cfb5dede9285", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172682,7 +172682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d92f33a-6a38-44bb-8cbc-0c15300fd3bc", + "id": "349b06ba-8022-4f79-8ecc-dfd0323ed087", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -172727,7 +172727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8768b7b-234f-4f61-93d1-97906343a714", + "id": "e6512273-edb9-496a-9b19-b2557a7877c9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172772,7 +172772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbea6c91-10b1-44a3-a8c7-db960362d259", + "id": "63dd240d-9afc-4979-9d33-456c3a51587e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172823,7 +172823,7 @@ } }, { - "id": "9fe19526-2b93-45b5-932a-91caa16d8d5d", + "id": "35c508e4-a137-495a-82ac-3bef8263d593", "name": "Get Source Entitlement Request Configuration", "request": { "name": "Get Source Entitlement Request Configuration", @@ -172859,7 +172859,7 @@ }, "response": [ { - "id": "cefec471-6a4b-4ca4-be8f-ee0b0e6cc3fb", + "id": "0e3af21a-b60a-4094-84d9-5188a836acbf", "name": "Get default config", "originalRequest": { "url": { @@ -172904,7 +172904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91d2867d-18d2-4410-b153-5c8a322e604e", + "id": "da9da6e6-63eb-4517-aa0e-273f6df19759", "name": "Get config with one approval", "originalRequest": { "url": { @@ -172949,7 +172949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4e0618f-ad69-4e20-89d5-1abbc46f2517", + "id": "63375ef9-5184-4f27-a11d-45e85a5679cd", "name": "Get config with multiple approvals", "originalRequest": { "url": { @@ -172994,7 +172994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d778a9bb-24fe-4fde-ba3f-0ac9178edfe9", + "id": "894854e9-6759-4699-8074-9c4da47223e4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173039,7 +173039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8819de6-e2d8-4b74-a80b-7e53808453a5", + "id": "c929fbb8-9cda-457e-81c7-a1028117632b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173084,7 +173084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09b9f793-0323-4de7-a4a2-03e766b641d2", + "id": "9b98dfcd-614e-4d35-bf0c-89e21687b538", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173129,7 +173129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67ef34b7-f709-4326-82f1-55ddc93f1c97", + "id": "137ffa1a-9c47-4528-9914-b24a96433a94", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173174,7 +173174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bf2bc67-f3cd-45cb-b66a-49222e8d6a46", + "id": "021df3ec-df53-44e5-b590-485d11ab241d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173225,7 +173225,7 @@ } }, { - "id": "dcfc1153-1e4b-4a57-8f23-ee843b9c6d78", + "id": "c08d1500-3929-4c64-8c0b-e4790b692048", "name": "Update Source Entitlement Request Configuration", "request": { "name": "Update Source Entitlement Request Configuration", @@ -173274,7 +173274,7 @@ }, "response": [ { - "id": "c44ec4ab-b181-4ce1-910f-b45ff2505d38", + "id": "f310a164-5b24-41e1-a9b4-4102f608baf3", "name": "Set config with no approvals", "originalRequest": { "url": { @@ -173332,7 +173332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24674e53-3c37-4424-9f51-6e6940e126cb", + "id": "71d63b4a-dfcf-42fb-842b-96f7e5a7d99b", "name": "Set config with one approval", "originalRequest": { "url": { @@ -173390,7 +173390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12b28653-5773-4742-bfdd-9305c00905ca", + "id": "d5cc6cda-cf04-46ae-8127-30e9199cd418", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -173448,7 +173448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1bb2bb2-7bde-48d8-a060-34f5f158493b", + "id": "f07fe687-eff9-4d20-af6f-abfb4965227f", "name": "Set config with one approval", "originalRequest": { "url": { @@ -173506,7 +173506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "931c86ca-a04d-4c57-ac2a-3f8602b804ed", + "id": "46e5e6e9-8238-4ef3-97e1-e0b35e4297bc", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -173564,7 +173564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4ed4272-d0e3-4fdf-843c-bcfd763179e5", + "id": "1e32125d-ceb6-41f2-a4c8-a644c5a2e922", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -173622,7 +173622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "634b1958-3ac5-4c27-a2af-52a394beb1b9", + "id": "e4432d6a-acd5-43b6-bf43-9594a382b7bb", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -173680,7 +173680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e694729-1072-4e41-be2b-1d74f8a79867", + "id": "ad342d43-3425-4e6d-991b-d15ed62ea4f0", "name": "Set config with no approvals", "originalRequest": { "url": { @@ -173738,7 +173738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2a5425f-032b-4ceb-9546-1b79fe0977a7", + "id": "b4705686-4fb1-4989-a220-ec6664249259", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -173808,7 +173808,7 @@ "description": "Import and export configuration for some objects between tenants.", "item": [ { - "id": "402224b8-9cbc-467b-a9d5-4cb491eebfba", + "id": "c843fc56-814f-4eb9-81df-c1fc22e78b48", "name": "Initiates configuration objects export job", "request": { "name": "Initiates configuration objects export job", @@ -173851,7 +173851,7 @@ }, "response": [ { - "id": "16377ab5-e5d8-4be9-88fc-e2548611ce82", + "id": "0f92ef51-55df-4c51-b62b-624eafc869c6", "name": "Export all objects available", "originalRequest": { "url": { @@ -173908,7 +173908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2b03c84-24b2-4add-992e-2d650cf2f4e8", + "id": "d00818cf-3bd9-4eac-ac77-6666c2143be0", "name": "Export sources by ID", "originalRequest": { "url": { @@ -173965,7 +173965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31349f3c-d88d-4fd7-890a-5b58b18ff510", + "id": "dfa2961a-f3d3-4184-add5-59841fcde599", "name": "Export transforms by name", "originalRequest": { "url": { @@ -174022,7 +174022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f40177b0-7aad-4220-9d6e-e37e8df205f1", + "id": "949d1ce8-54ea-492b-86d9-bf32c9fb61e6", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -174079,7 +174079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a86ad9f0-348d-424c-9f7b-c7033ec1fa85", + "id": "306af9a8-de83-419b-8fa5-f349f117f5c0", "name": "Export sources by ID", "originalRequest": { "url": { @@ -174136,7 +174136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8126072a-0aa1-41f0-b94e-be8c811988c7", + "id": "0aad02d9-9cf4-42e5-ba14-5deb2bcc5532", "name": "Export transforms by name", "originalRequest": { "url": { @@ -174193,7 +174193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24e9d8ef-7c78-47dc-b254-3c15d62c8912", + "id": "1bba81ea-bb60-4ed0-8a7c-c1101c2867f4", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -174250,7 +174250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "205ad282-1d6c-4baa-8f88-4873591aacfa", + "id": "6f4959ce-8bf8-49ff-8d83-c3d7b63a8c1d", "name": "Export transforms by name", "originalRequest": { "url": { @@ -174307,7 +174307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f32733b-9d78-4dcd-8a50-d8ac5eaa9fef", + "id": "a50101b9-4010-4c60-ade0-1dc2035cb46a", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -174364,7 +174364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f98c339-29b7-4ea0-b9eb-9db897fd328c", + "id": "dd34537d-eda7-422a-827d-4cc3beabde21", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -174421,7 +174421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "117369f7-3552-47b5-a031-ee0b258561ba", + "id": "29970b82-23f8-499c-8224-6a84e55052d6", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -174478,7 +174478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a07ab45e-7fb2-4cd5-aa4d-74f3a809a7fb", + "id": "b9199c40-c972-4dd4-92e7-7bff7417324b", "name": "Export all objects available", "originalRequest": { "url": { @@ -174535,7 +174535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcff97cf-404c-4c0b-96dd-1f570cbc9b6b", + "id": "08131974-843e-4cd8-9b02-0fd981c73e0d", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -174598,7 +174598,7 @@ } }, { - "id": "6306d2e2-9e28-4120-bd9e-c3d32bdce1ca", + "id": "33f48b9a-ad62-4892-b3af-368a98d3d51c", "name": "Get export job status", "request": { "name": "Get export job status", @@ -174640,7 +174640,7 @@ }, "response": [ { - "id": "e8af6150-e453-403d-997a-fdd7446ba9aa", + "id": "02ed6215-80ad-47d3-a0f4-aaa4062e28c1", "name": "Export job status successfully returned.", "originalRequest": { "url": { @@ -174685,7 +174685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc4f8047-ce74-42ba-98d3-f0323690b9c8", + "id": "9facfbc1-df74-4914-b323-a499dc6a3133", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174730,7 +174730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d0069a8-759e-40de-96d4-8c358db765f3", + "id": "8833b26b-feb2-4444-836e-f7ee69a9e70a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174775,7 +174775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb3980ea-c970-4010-aaac-67ed5042ce16", + "id": "d89a4241-f1e0-4040-bbdb-b0016cea09ca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174820,7 +174820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e7c7a04-5886-47a4-973d-5336a7e95a91", + "id": "595077be-81cc-4070-88c8-240cbd6f7383", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -174865,7 +174865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0c8fc07-406c-4078-9083-d5e286f56662", + "id": "41acd5de-ac4f-41dc-8187-38d9f9e6b8ea", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174910,7 +174910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fbcd33d-d120-4ca1-8d8e-9542dd7f7a25", + "id": "83740bc6-d90c-444a-b561-ab96d3e9baad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174961,7 +174961,7 @@ } }, { - "id": "52703258-eda8-4fb0-ba4e-58297673f635", + "id": "dc748272-32fd-4541-897e-f32bc9c650c7", "name": "Download export job result.", "request": { "name": "Download export job result.", @@ -175004,7 +175004,7 @@ }, "response": [ { - "id": "77418aa2-8db4-4bec-abdd-1bd12728166b", + "id": "c6875eed-b8ed-4d89-b36a-8eb3c9fb94f2", "name": "Exported JSON objects.", "originalRequest": { "url": { @@ -175045,12 +175045,12 @@ "value": "application/json" } ], - "body": "{\n \"version\": 1,\n \"timestamp\": \"2021-05-11T22:23:16Z\",\n \"tenant\": \"sample-tenant\",\n \"description\": \"Export Job 1 Test\",\n \"options\": {\n \"excludeTypes\": [\n \"SOURCE\",\n \"SOURCE\"\n ],\n \"includeTypes\": [\n \"TRIGGER_SUBSCRIPTION\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"TRIGGER_SUBSCRIPTION\": {\n \"includedIds\": [\n \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\"\n ],\n \"includedNames\": [\n \"Test 2\"\n ]\n }\n }\n },\n \"objects\": [\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"Lorem_85\": false\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"nostrud_0\": \"irure deserunt tempor\"\n }\n }\n ]\n}", + "body": "{\n \"version\": 1,\n \"timestamp\": \"2021-05-11T22:23:16Z\",\n \"tenant\": \"sample-tenant\",\n \"description\": \"Export Job 1 Test\",\n \"options\": {\n \"excludeTypes\": [\n \"SOURCE\",\n \"SOURCE\"\n ],\n \"includeTypes\": [\n \"TRIGGER_SUBSCRIPTION\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"TRIGGER_SUBSCRIPTION\": {\n \"includedIds\": [\n \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\"\n ],\n \"includedNames\": [\n \"Test 2\"\n ]\n }\n }\n },\n \"objects\": [\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"id_d\": false\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"eu88c\": false\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e83b1d24-43f0-4f7e-98a3-8a73a4da417f", + "id": "4681ba19-3fca-4025-81d0-ef6511890ff3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -175096,7 +175096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3e693ef-4ea9-44b6-a180-ba23c60e2815", + "id": "cc471f33-e858-44e0-bb05-70c059bdf8cf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175142,7 +175142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7f23693-a38d-44d4-8df0-4c8d0b421ae7", + "id": "d0091332-646a-479d-8ceb-7a84c0079984", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175188,7 +175188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "504b7928-7a23-455b-8eba-c10c55085ac5", + "id": "fabc0deb-07e4-45db-95c8-797e0e22a5cc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -175234,7 +175234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5689d885-1c68-418d-bd2a-ca9676c374ac", + "id": "ade5334d-8372-4aa0-bc65-fc8b879d2e67", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175280,7 +175280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e24a9ba-aa4e-40f3-bc62-5b85ced5ef41", + "id": "ee608193-96a6-4e6a-97c1-0ea1a49daf9d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175332,7 +175332,7 @@ } }, { - "id": "6b7e355c-8106-4228-887f-e933357c096a", + "id": "a69c8769-777f-438d-8cf8-ab62d7fd7dd7", "name": "Initiates configuration objects import job", "request": { "name": "Initiates configuration objects import job", @@ -175381,7 +175381,7 @@ "type": "text/plain" }, "key": "data", - "value": "ullamco irure", + "value": "ad", "type": "text" }, { @@ -175398,7 +175398,7 @@ }, "response": [ { - "id": "212d002a-6225-4bd8-8438-8783e39ea157", + "id": "7e945dd3-9cbe-44a4-9a33-58fef83fc18a", "name": "Import job accepted and queued for processing.", "originalRequest": { "url": { @@ -175450,7 +175450,7 @@ "type": "text/plain" }, "key": "data", - "value": "ullamco irure", + "value": "ad", "type": "text" }, { @@ -175478,7 +175478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58a55d4a-2727-4686-abc6-af0ad43a29fe", + "id": "30e55092-dc3e-4aae-a0ed-2877cccda094", "name": "Client Error - Returned if the request body is invalid.\n", "originalRequest": { "url": { @@ -175530,7 +175530,7 @@ "type": "text/plain" }, "key": "data", - "value": "ullamco irure", + "value": "ad", "type": "text" }, { @@ -175558,7 +175558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b21676a-d162-4df2-9d1f-81f4bfe3d3e3", + "id": "d9953ffa-5937-40be-b9f0-967fbd9adac0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175610,7 +175610,7 @@ "type": "text/plain" }, "key": "data", - "value": "ullamco irure", + "value": "ad", "type": "text" }, { @@ -175638,7 +175638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b5c7561-e8f1-4916-a7b1-6018454dae1f", + "id": "b07ffa5e-fb14-42fc-9eec-2e887bf7eac9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175690,7 +175690,7 @@ "type": "text/plain" }, "key": "data", - "value": "ullamco irure", + "value": "ad", "type": "text" }, { @@ -175718,7 +175718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97e28792-9177-44e9-81f4-ab292337d602", + "id": "306d8968-05ab-45f9-a84a-6828c9cf5cbe", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -175770,7 +175770,7 @@ "type": "text/plain" }, "key": "data", - "value": "ullamco irure", + "value": "ad", "type": "text" }, { @@ -175798,7 +175798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0538d47a-8540-4a02-a411-4edb16908159", + "id": "0a7fe746-35ec-41cb-8f07-07a728a64e2e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175850,7 +175850,7 @@ "type": "text/plain" }, "key": "data", - "value": "ullamco irure", + "value": "ad", "type": "text" }, { @@ -175878,7 +175878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "094cce8c-bed7-480f-a252-32ae7e6bd71d", + "id": "eedf3afc-a8f6-4fe1-8aa2-aa049104ab20", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175930,7 +175930,7 @@ "type": "text/plain" }, "key": "data", - "value": "ullamco irure", + "value": "ad", "type": "text" }, { @@ -175964,7 +175964,7 @@ } }, { - "id": "9cbd1d5d-e45c-4b1f-bbc1-77e4499ba389", + "id": "f0c70863-3674-49c3-b498-829cd9159c6d", "name": "Get import job status", "request": { "name": "Get import job status", @@ -176006,7 +176006,7 @@ }, "response": [ { - "id": "4668f197-745e-47b2-a1a2-f470ae2eb653", + "id": "21f56fbf-9c76-4c59-a588-ff5aea013314", "name": "Import job status successfully returned.", "originalRequest": { "url": { @@ -176051,7 +176051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9901838f-52c9-4967-93b7-c9767d40ab78", + "id": "34e7d517-1fb3-4fb4-add6-9f1d4750ec3e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176096,7 +176096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb033586-86e8-48ea-b9e0-6e407bfbe09b", + "id": "0a7daf75-ed87-483a-be44-032d69222904", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176141,7 +176141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48a1ffe3-4314-4aca-af60-9008715cdd7e", + "id": "37d5fbad-95fd-49f8-9ffc-76ff9a5352d4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176186,7 +176186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e7fe5a7-7388-4be1-ba05-1c4ad18f088f", + "id": "d3d52856-4594-412e-a5c6-c7b1aa8bd59e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -176231,7 +176231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42f551ef-e192-4156-b7ac-6d53ba1fb8c7", + "id": "a6c1d65f-82f9-4c1e-bcc8-f673e2c278a1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176276,7 +176276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9278c68-9999-4f83-bb1d-9106ca347941", + "id": "31942b5b-bd3c-436f-830b-d3c246757081", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176327,7 +176327,7 @@ } }, { - "id": "34361272-db37-49a5-a091-d13384a13eed", + "id": "8fe959e5-ddb4-4334-a2c5-7dc8acf9c49f", "name": "Download import job result", "request": { "name": "Download import job result", @@ -176370,7 +176370,7 @@ }, "response": [ { - "id": "acf95654-1dc4-442e-8e06-479333431412", + "id": "ac32de5e-b0b5-4e49-b396-2f68e320cc07", "name": "Import results JSON object, containing detailed results of the import operation.", "originalRequest": { "url": { @@ -176411,12 +176411,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": {\n \"inef2\": {\n \"infos\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"exercitation_625\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"ea9\": {},\n \"velit83b\": {},\n \"cillum_30\": {},\n \"culpa9e\": {},\n \"enim7\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"do_317\": {},\n \"consecteturc\": {},\n \"sunt545\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"nulla_b\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"adcb3\": {},\n \"esta8\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"Ut8\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n }\n ]\n },\n \"mollitce1\": {\n \"infos\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"culpa6d\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"labore_2_3\": {},\n \"tempor_7\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"doa_a\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"laboris_4\": {},\n \"laboris_5b8\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"aute86\": {},\n \"esse_28\": {},\n \"cupidatat_35\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"laboris_74\": {},\n \"pariatur088\": {},\n \"deserunt_f\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n }\n ]\n }\n },\n \"exportJobId\": \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\"\n}", + "body": "{\n \"results\": {\n \"nisi_5\": {\n \"infos\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"cillum__\": {},\n \"in8\": {},\n \"ut846\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"in_dd\": {},\n \"Ut_6\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"veniam1f2\": {},\n \"do10\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"laboris_e8c\": {},\n \"pariatur_\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"ute9f\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"Duis_d\": {},\n \"Duis_0\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n }\n ]\n }\n },\n \"exportJobId\": \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "78215b2f-9c5d-4603-8e1d-69fbf85989e1", + "id": "704a3ec0-bc64-466a-bed5-6968f2f2cc45", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176462,7 +176462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2079df3c-fa81-4dcb-96de-9d28d33141b0", + "id": "caae484f-144b-40cb-b747-764a9a15e291", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176508,7 +176508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "caf177f3-e512-4e2d-a08b-4b17a204e422", + "id": "e0da0c5a-eb33-45e6-8642-af391206ab5d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176554,7 +176554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8017566-a682-4ecb-bae4-3e2cc413f07a", + "id": "65a2d779-eaed-4d6d-8944-95654c7181bc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -176600,7 +176600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20e6dc4b-a3bd-4d3a-bfa6-4624f4f72fa8", + "id": "bdf0fad0-0d19-4ebc-ad3e-66db104e2440", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176646,7 +176646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fb38410-e6cb-47c7-8f7c-35d49dee7cfa", + "id": "d6ce6521-ed31-46f9-91dc-dfb3d85f8c3c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176698,7 +176698,7 @@ } }, { - "id": "f6415c19-ce13-4da1-afa3-7d61cf6e4ef0", + "id": "272b8cc6-af9c-4250-8581-579ab0666776", "name": "Get config object details", "request": { "name": "Get config object details", @@ -176728,7 +176728,7 @@ }, "response": [ { - "id": "34323834-1691-4d2c-a4ab-0db7552ff99c", + "id": "0e2ca071-783d-4f7a-b50e-e127bfc4bf7c", "name": "Object configurations returned successfully.", "originalRequest": { "url": { @@ -176772,7 +176772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d22533f2-db25-4519-a05f-f2f74b0bd640", + "id": "84a1cfa2-8d68-4054-97bb-482136aef52c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176816,7 +176816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7f25c8d-85dd-4844-858a-8fe8704829db", + "id": "70f481b8-8c32-4aa3-a497-578d8e45d0b3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176860,7 +176860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a924359f-e5ca-460e-9eb4-fbbb2d68e23f", + "id": "7b7781bf-72c0-4bbb-a8b0-b422ef03cdec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176904,7 +176904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acfa1ea8-6f52-4fb5-a21e-35f5fd4c56a1", + "id": "d9c37036-54bf-4dcf-be55-450a2fbd02c9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -176948,7 +176948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "099c0a34-4500-4b8a-94de-942a81452b4b", + "id": "1e37cc22-0cb1-417f-bed2-17a0a980e510", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176992,7 +176992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbd32a0c-b6a9-4b51-8836-5d5bbfe64deb", + "id": "c3861402-5c28-477c-90cb-d68c0e0f8c49", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177048,7 +177048,7 @@ "description": "Use this API to implement object tagging functionality. \nWith object tagging functionality in place, any user in an organization can use tags as a way to group objects together and find them more quickly when the user searches IdentityNow. \n\nIn IdentityNow, users can search their tenants for information and add tags objects they find.\nTagging an object provides users with a way of grouping objects together and makes it easier to find these objects in the future. \n\nFor example, if a user is searching for an entitlement that grants a risky level of access to Active Directory, it's possible that the user may have to search through hundreds of entitlements to find the correct one. \nOnce the user finds that entitlement, the user can add a tag to the entitlement, \"AD_RISKY\" to make it easier to find the entitlement again.\nThe user can add the same tag to multiple objects the user wants to group together for an easy future search, and the user can also do so in bulk.\nWhen the user wants to find that tagged entitlement again, the user can search for \"tags:AD_RISKY\" to find all objects with that tag. \n\nWith the API, you can tag even more different object types than you can in IdentityNow (access profiles, entitlements, identities, and roles). \nYou can use the API to tag all these objects:\n\n- Access profiles \n\n- Applications \n\n- Certification campaigns\n\n- Entitlements\n\n- Identities \n\n- Roles \n\n- SOD (separation of duties) policies\n\n- Sources \n\nYou can also use the API to directly find, create, and manage tagged objects without using search queries. \n\nThere are limits to tags: \n\n- You can have up to 500 different tags in your tenant.\n\n- You can apply up to 30 tags to one object. \n\n- You can have up to 10,000 tag associations, pairings of 1 tag to 1 object, in your tenant. \n\nBecause of these limits, it is recommended that you work with your governance experts and security teams to establish a list of tags that are most expressive of governance objects and access managed by IdentityNow. \n\nThese are the types of information often expressed in tags: \n\n- Affected departments\n\n- Compliance and regulatory categories \n\n- Remediation urgency levels \n\n- Risk levels \n\nRefer to [Tagging Items in Search](https://documentation.sailpoint.com/saas/help/search/index.html?h=tags#tagging-items-in-search) for more information about tagging objects in IdentityNow. \n", "item": [ { - "id": "d6e7e6f4-1e63-43c8-afe5-4d2f30a8ede4", + "id": "8902f903-8286-4854-a9c6-1a07d9c9c416", "name": "List Tagged Objects", "request": { "name": "List Tagged Objects", @@ -177114,7 +177114,7 @@ }, "response": [ { - "id": "33c79c1b-af2e-4677-9268-5d593ad6487b", + "id": "a3118668-c9d6-45e8-aea1-381fd7e17950", "name": "List of all tagged objects.", "originalRequest": { "url": { @@ -177194,7 +177194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b43fb8ab-7707-4223-9bd4-3b64bf002544", + "id": "d4f3ddd4-41ec-4274-a38f-df6f902ca3d4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -177274,7 +177274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d7ff23c-37de-4608-be1b-788d3e125fa5", + "id": "f0a67fdf-2159-4b56-a0d4-fc85c9224522", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -177354,7 +177354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4edeac8c-87bf-4198-99b8-5bee82417f5d", + "id": "3fd609a8-56ea-42e9-9e62-06bbdf142c73", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -177434,7 +177434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85b8774a-a600-4d9d-a8fb-ca4e6c443b49", + "id": "4a904859-509f-47af-a1e3-27944261869d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -177514,7 +177514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b4a49e6-566a-4539-b7e9-a773288d6448", + "id": "0b7bdb48-460c-4a7d-a1ab-0a7aadee8cb1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177600,7 +177600,7 @@ } }, { - "id": "785de1f5-f4cd-4d70-8747-85c06ed4737d", + "id": "08818baa-b4b9-44a0-8cf2-4aff4d6625d0", "name": "Add Tag to Object", "request": { "name": "Add Tag to Object", @@ -177642,7 +177642,7 @@ }, "response": [ { - "id": "8dc19c19-4a69-46e5-bdce-de99dc6e2791", + "id": "8ddc019d-c7d1-44d9-8307-68f9b9971c00", "name": "Created.", "originalRequest": { "url": { @@ -177688,7 +177688,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0e34e4ae-aa2b-43b1-a108-1643876a04f8", + "id": "4803f433-4a5f-4365-8923-d65202bd33fc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -177744,7 +177744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9b463cf-22ee-4c19-8346-9ffd295d74db", + "id": "8172f1a4-7aae-4913-b148-efc4e140727b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -177800,7 +177800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0e3a35f-16b2-4ab2-9f54-8d7d74542645", + "id": "4cdeb8c0-4c5e-4e38-b12a-706fe3d135d6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -177856,7 +177856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53083a05-52d7-4adb-993c-e1cf31e1314a", + "id": "846c1b27-64a4-4084-b9ce-4866f02b9ac6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -177912,7 +177912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9ed5c47-d247-4c22-8e0e-5476f2f08832", + "id": "e6330ffc-5e29-42df-ae0d-6e586b02e350", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177974,7 +177974,7 @@ } }, { - "id": "fc5748a4-b075-4604-ba89-73803c5977d6", + "id": "96449b1a-2f14-4ada-8093-7221be956452", "name": "List Tagged Objects by Type", "request": { "name": "List Tagged Objects by Type", @@ -178052,7 +178052,7 @@ }, "response": [ { - "id": "4c55b23f-01b0-4712-a3df-10927a9f764f", + "id": "b05e1940-65a3-4275-9bcb-f73ac7259c57", "name": "List of all tagged objects for specified type.", "originalRequest": { "url": { @@ -178133,7 +178133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "974697ac-9594-4cf8-8e53-de81bf88b9f1", + "id": "1b8d4b30-243e-4e67-825d-68245093f8ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -178214,7 +178214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a039023-d52e-422b-853c-26ba08792087", + "id": "f6e393a8-309e-4f32-bf38-d254caaa7a5c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178295,7 +178295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ceda151b-c3c4-4065-9962-45cd416364b0", + "id": "dc1ae7fc-c830-47f2-9ca7-f89c8cee10cf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -178376,7 +178376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33e2af6e-8092-44ba-9d6f-e0134278f70c", + "id": "a0b9f792-6eff-4fa9-9a77-078898b187bd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -178457,7 +178457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1eb7bc79-5c83-42b3-af54-55da101b0b39", + "id": "ac152571-1284-47dc-bb5e-150a8d863970", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -178544,7 +178544,7 @@ } }, { - "id": "98939d22-605c-42f4-a9b1-dbaf128ed14a", + "id": "38084aa2-7e81-4869-87fb-15e46fd05696", "name": "Get Tagged Object", "request": { "name": "Get Tagged Object", @@ -178596,7 +178596,7 @@ }, "response": [ { - "id": "fdc60e96-b96a-480c-8c4a-a34d4187f671", + "id": "fd7172fa-e7a4-4240-82e2-864e5d9c5666", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -178641,7 +178641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d4cf37b-8e0f-4946-b22e-099ccf708fb8", + "id": "5733292f-950a-48af-b9b2-a2318f6d42e8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -178686,7 +178686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63b28fb1-46b2-4433-8a8f-43acb598a9d9", + "id": "31900a4a-020f-4811-aa5f-f9afcd5d4556", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178731,7 +178731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b199fa82-7a81-4bd4-b7a9-079988c628cf", + "id": "5069257a-9611-4647-8a7f-b2515ddb0b13", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -178776,7 +178776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d460472-25b7-40ac-ab10-7aed2a7d3751", + "id": "cbe326fa-95a6-4c28-9737-5368459ce99a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -178821,7 +178821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1622b941-f04b-448e-b384-18c9931823d4", + "id": "73b64574-83cc-4cbc-8397-d46d6355b684", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -178872,7 +178872,7 @@ } }, { - "id": "f76b24af-8e90-46e5-b574-85711561d1a8", + "id": "96aef622-0b71-4f87-98b7-9a7cdbcb9b39", "name": "Update Tagged Object", "request": { "name": "Update Tagged Object", @@ -178937,7 +178937,7 @@ }, "response": [ { - "id": "53c0cf62-05ff-4a83-b514-fc5c4a13c30d", + "id": "83797d20-4e47-497a-945c-047fdbb433f9", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -178995,7 +178995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c63c02cd-6095-460c-b02c-a19daea0b950", + "id": "01a1a307-cab9-4954-9a60-9c53138ae9b2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179053,7 +179053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7dc705a4-6334-4650-bc35-fd05d5444f1a", + "id": "737d8fce-7146-4d55-a109-6f65d1de8cb1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -179111,7 +179111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b088ce4-bc60-4d57-b76a-8878d4749629", + "id": "fee02e81-0dea-49f1-9d8c-76839ddd5665", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179169,7 +179169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39d0d269-5780-4b55-8427-1a486812c3a7", + "id": "414c8d94-3300-4f46-9ee5-5b63242f6e53", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179227,7 +179227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2801584b-933c-4dfc-b1b0-f3ac26dcb6e0", + "id": "0daa1786-c261-4fc7-8862-69be2b065177", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -179291,7 +179291,7 @@ } }, { - "id": "7eef1c9a-e7af-4e34-9036-fae4bc636b2d", + "id": "b982c2a9-964c-4f5c-a660-e89cf83c9181", "name": "Delete Tagged Object", "request": { "name": "Delete Tagged Object", @@ -179343,7 +179343,7 @@ }, "response": [ { - "id": "5b8c05f8-db98-4321-a7b7-999b4c7124cd", + "id": "2d4e4491-2f98-4bbb-a3fd-97c7a272249f", "name": "No content.", "originalRequest": { "url": { @@ -179378,7 +179378,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3b0fcfc5-b95e-46ef-a78f-b27ffa036cb6", + "id": "65d3e47f-e3ac-40b4-b61d-9ea7ef3bedb8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179423,7 +179423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f351c0ff-8491-4a3f-b7e2-646387d58b57", + "id": "926aa606-347b-4231-83f4-4c2913dc68bb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -179468,7 +179468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1099778e-243f-441b-84d3-fecf35920473", + "id": "43aff223-7aaa-406c-85fb-89e65c526e94", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179513,7 +179513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3edcf40-5c14-49aa-b83a-192ba63e7af1", + "id": "7d3a5948-216e-4bdc-be73-f0ba0dd81936", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179558,7 +179558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bc93c27-8d92-424c-91a9-eed0f91fe334", + "id": "5e1dadf7-2f01-437d-89ac-15dca07595dd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -179609,7 +179609,7 @@ } }, { - "id": "f23bdbea-0bc4-4b35-aafd-1971b9f566bd", + "id": "fc654d54-fa8a-4cbc-b778-798538ad92af", "name": "Tag Multiple Objects", "request": { "name": "Tag Multiple Objects", @@ -179652,7 +179652,7 @@ }, "response": [ { - "id": "2843e212-5bf3-4536-bcb1-289640ee4390", + "id": "64c17fb5-5b73-4dcb-8cd1-b379c11f097a", "name": "Request succeeded.", "originalRequest": { "url": { @@ -179709,7 +179709,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1051f516-ed3c-40d3-bfa3-89283c0b658d", + "id": "3c6e7be3-5696-4183-a463-360e54bd5789", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179766,7 +179766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2381f34-0353-4ef8-8419-c85493b48904", + "id": "4fe07fba-c905-4460-b084-9ff8ab668bc6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -179823,7 +179823,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74b90fb3-ba07-47fb-9df2-2143f70f90c6", + "id": "cc10ad92-87e2-4608-a95e-8b246970652d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179880,7 +179880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db280cff-5e47-4b62-9c90-284c01a5610f", + "id": "370f6814-e7dd-4885-aaf2-d490c891fafb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179937,7 +179937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a82fc58-6116-4c97-9ec8-73f06d0e3403", + "id": "088a820e-b2c8-4080-bd86-997146e8e8e0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180000,7 +180000,7 @@ } }, { - "id": "635061cc-52d3-400c-86a4-e66a92eef34e", + "id": "46976f35-a3a1-489a-83e3-ef6e31514b84", "name": "Remove Tags from Multiple Objects", "request": { "name": "Remove Tags from Multiple Objects", @@ -180043,7 +180043,7 @@ }, "response": [ { - "id": "289597bb-163f-4ea6-a80e-637fa2738519", + "id": "2f39de1e-8dc7-44db-a33f-3809aec7a1d9", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -180090,7 +180090,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2ce42a7f-4bde-48b0-80dd-5e973f672d11", + "id": "49c32e04-e93d-4d1c-a265-c1214b5654d9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -180147,7 +180147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dad031d1-21e9-469e-82f5-c0b5d2db249c", + "id": "b0e3e8a4-ecd4-4429-947f-0d49f828d688", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -180204,7 +180204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4b8ed43-7f30-49b0-b358-d0f8a3e5517d", + "id": "df50de9a-4316-461b-8164-ac97ef1a569c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -180261,7 +180261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b6a9a88-d9f4-4bc7-820c-3d50940ad43f", + "id": "50159b96-894a-41a7-836e-549b7c069dd9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -180318,7 +180318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c5b9c92-68fb-42b4-b1a4-f481e07d038e", + "id": "c1d9d127-0fd9-4c2c-859f-43a35282518a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180387,7 +180387,7 @@ "description": "", "item": [ { - "id": "6fc694e0-9b5b-4865-84ed-f447cd36462d", + "id": "0c85e8df-53d6-46bc-ad3f-ac9dc4ab8357", "name": "Get task status by ID.", "request": { "name": "Get task status by ID.", @@ -180428,7 +180428,7 @@ }, "response": [ { - "id": "e644863d-c3e9-453d-830a-f7f42fdf32a9", + "id": "cabf1b30-b6d7-4524-9956-6e1ec11fd84a", "name": "Responds with a TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -180472,7 +180472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d92e2d9c-aaf7-4563-9cb9-b1703f236ed5", + "id": "07922ab1-cdcf-49d2-aa34-59c26f911622", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -180516,7 +180516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f069c8c-5110-4c6d-96dd-065a869a90c1", + "id": "cf9915cb-c7cd-4b8f-8fd6-0c079ee43cea", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -180560,7 +180560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "757839a8-0417-4de3-98dd-0e5aaa878613", + "id": "ca7c83e2-7b9d-454b-b7da-e7f94618179d", "name": "Forbidden, generally due to a lack of security rights", "originalRequest": { "url": { @@ -180594,7 +180594,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9be3759a-d29c-4b57-8830-6875104d78a0", + "id": "4c1f0432-76a2-4713-bfd9-6ef12e04f7e3", "name": "TaskStatus with the given id was not found.", "originalRequest": { "url": { @@ -180628,7 +180628,7 @@ "_postman_previewlanguage": "text" }, { - "id": "71379d2d-3772-4693-81e6-8c5ccbbff5ab", + "id": "7e45696a-b48e-4ec3-be1d-8cb277deb0c8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -180672,7 +180672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72368c42-106e-4e25-93b5-913c0ce820d9", + "id": "941cf78e-beff-484c-9b15-cc9d1a41b353", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180722,7 +180722,7 @@ } }, { - "id": "fadef121-79e4-407e-8ed9-0876cd16fa6e", + "id": "96064033-42d6-43e4-918c-384788dc91a8", "name": "Update task status by ID", "request": { "name": "Update task status by ID", @@ -180776,7 +180776,7 @@ }, "response": [ { - "id": "b83e45ad-5634-461b-9a0d-9d0f7c701f8e", + "id": "1c7db7d0-7215-463a-8deb-528c5eb24cbb", "name": "Responds with the updated TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -180833,7 +180833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4eb6df4a-313f-43b1-9c70-a9c22d3e9ac2", + "id": "91c1b9b5-dbed-48a6-b7c2-1a24dca14557", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -180890,7 +180890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a763a40d-0275-4c48-99b0-e4029b981bfc", + "id": "15a81979-cfbc-450f-87d9-235ca27f8613", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -180947,7 +180947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edff38ea-1d6f-4fe9-9d09-16cc3cd4e4e9", + "id": "46467bed-9ba1-4d34-84b7-7e9134a1fa4b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -181004,7 +181004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "753fdfda-9d08-4e6a-8f5d-2a50218848d1", + "id": "cac89d0a-bb19-4372-a520-210e3b518835", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -181061,7 +181061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c0a9818-0e80-4b3b-8436-b5306ede4cf5", + "id": "97cc7902-0a16-4948-82fe-97e63c47e295", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -181118,7 +181118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d836fc7-91e4-40a6-9816-cf079357f6ad", + "id": "6f92ebe5-3fc4-47fb-a1dc-814fb78ba2c7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -181181,7 +181181,7 @@ } }, { - "id": "d8881fe2-f8ad-4a2f-a3f1-86c16e52bd92", + "id": "2ef0878a-9849-48dd-8c92-dde89c687340", "name": "Retrieve a task status list.", "request": { "name": "Retrieve a task status list.", @@ -181256,7 +181256,7 @@ }, "response": [ { - "id": "9ed8e0e9-d5e3-4342-a796-3d043135af62", + "id": "6bc945e3-65a1-45a7-b10e-b3b0ab9468c2", "name": "Responds with a TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -181345,7 +181345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3e71766-5809-4b4c-a395-b6fc44fa764b", + "id": "bb03341c-b52b-4a39-8154-44c575de3885", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -181434,7 +181434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e87481ff-718a-4ff1-b32f-74a41f74ebcd", + "id": "8d4aa9a8-9acd-4b35-a6d0-b2e24d3ba656", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -181523,7 +181523,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a13a922-045b-49a7-82b1-66d064b40888", + "id": "93ff05d6-84e2-45f0-9a19-9007fc2a4287", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -181612,7 +181612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed7d3422-f487-42b5-a131-28a0974cea75", + "id": "8089c43b-abe7-47a0-9940-8f1acc12b5e4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -181701,7 +181701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "758d48ef-60d9-4272-9220-2ee01800948b", + "id": "43bf4cf5-9931-4956-9d18-cb3ad1d0c2c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -181790,7 +181790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3eb913af-1394-40a4-8b88-a0d75600fbdf", + "id": "c24cadf6-4537-41d6-99cf-909a002542ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -181885,7 +181885,7 @@ } }, { - "id": "b18ef3bc-e7aa-4977-90a6-aeb559d37773", + "id": "20ee670a-f725-4a31-b2ce-af4a56df8e92", "name": "Retrieve a pending task list.", "request": { "name": "Retrieve a pending task list.", @@ -181943,7 +181943,7 @@ }, "response": [ { - "id": "d33660ad-c2b6-4c11-89ec-90b181bad6de", + "id": "c3178175-49e6-41ce-b5da-ab48092ad4b9", "name": "Responds with a list of TaskStatus for pending tasks.", "originalRequest": { "url": { @@ -182015,7 +182015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07835d78-577c-415b-a0ce-a8b9e7175a84", + "id": "fd5c94ae-d821-4e70-9881-288dd1328cd2", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -182077,7 +182077,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4203e250-ae74-4904-b82e-bc1099acce50", + "id": "408697aa-0778-4f57-829a-338ca8c34b28", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182149,7 +182149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46dcab63-f8b5-4e09-b985-0f7767430e63", + "id": "6c658a5b-33e5-48cc-84f8-db267663cdfa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182227,7 +182227,7 @@ } }, { - "id": "d08f0a1e-f778-4419-b4eb-bf121104ad23", + "id": "3fea26ed-0ce4-48fe-8b94-0bfea9b7ad56", "name": "Retrieve headers only for pending task list.", "request": { "name": "Retrieve headers only for pending task list.", @@ -182285,7 +182285,7 @@ }, "response": [ { - "id": "6ed9b745-aa0a-439d-80c6-b8305546185d", + "id": "a01a9e6b-9256-4ab0-acfc-9b739c240bd9", "name": "Responds with headers for List of TaskStatus for pending tasks.", "originalRequest": { "url": { @@ -182347,7 +182347,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c1455a65-0ddc-4ee3-b42e-6d835338f1c8", + "id": "03fa32ca-b254-43ad-b0f2-84d949926ed5", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -182409,7 +182409,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2ab4877b-9e15-4653-9de6-0ef6cc27c236", + "id": "d5ce98b2-933b-4235-8058-9a0ef10d70a5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182481,7 +182481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b6cc535-a247-4533-9ffd-9051fcbfb73c", + "id": "757c4a99-90d0-4f6e-ba33-8880f4a467a2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182565,7 +182565,7 @@ "description": "Operations for creating, managing, and deleting transforms", "item": [ { - "id": "008c7d8e-b259-421a-827d-4c5c4e356e35", + "id": "cb33bf42-4aca-4765-b193-25a0d2ee0c64", "name": "List transforms", "request": { "name": "List transforms", @@ -182640,7 +182640,7 @@ }, "response": [ { - "id": "43eb1e4a-7ff7-48fd-a315-901ef4977574", + "id": "b4014948-a1ef-4c36-b6ea-da3a569bc33a", "name": "A list of transforms matching the given criteria.", "originalRequest": { "url": { @@ -182729,7 +182729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f37fdd68-5a22-4c15-aa4c-397e6a4a15ef", + "id": "8569304d-d418-4fa1-a869-4740fb4c7970", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182818,7 +182818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d9dd7aa-1410-46f9-9b93-1a7f93055728", + "id": "21bd094f-729f-45cc-833e-384937306bb7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -182907,7 +182907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3eb7f7a8-4045-4d76-a191-54b379233411", + "id": "c0840e45-2934-4f22-812f-ac94f817680e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182996,7 +182996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1636bb77-6f9b-4b89-93d5-8ac309bc9a67", + "id": "6ef41192-8b09-42d1-95f2-8aecd78b4f5c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -183085,7 +183085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a716ed17-dbbc-4a0d-8542-a08766ee8f3b", + "id": "d92b90c0-de80-4a36-b764-e9b9ca4853dc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -183174,7 +183174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5405c37a-a62c-4060-b06f-4eff9ddcb7da", + "id": "2c89180b-c3c2-454f-b9e6-6761c9fa7c93", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -183269,7 +183269,7 @@ } }, { - "id": "3bbc9bdb-ab4e-4710-a61a-15e46c6669ab", + "id": "49355ffb-cedd-437d-9a91-5389c575a539", "name": "Create transform", "request": { "name": "Create transform", @@ -183311,7 +183311,7 @@ }, "response": [ { - "id": "d154ae88-ea53-4e1a-bd3e-4244d93c4563", + "id": "56fc272f-6362-40e8-8311-868ef54cd0c9", "name": "Indicates the transform was successfully created and returns its representation.", "originalRequest": { "url": { @@ -183367,7 +183367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d3f4f11-3585-4d77-a8f8-b5019ed8d67f", + "id": "726f0c66-4ea1-4d79-9c6b-4351b57cbccd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -183423,7 +183423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cb58730-354b-4217-852b-1a95a652659b", + "id": "f9685507-fcc5-4f4c-8923-308a96e07d1b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -183479,7 +183479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ff9ae67-9a1e-44df-b659-2a8accbf1184", + "id": "f6fd5446-d949-4240-9a22-0cc4dedb1b07", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183535,7 +183535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aed276c6-2f81-4cbe-87f2-85e34dd2ebdc", + "id": "7f5ba9bd-7142-4e14-b619-3d19f0bdb50c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -183591,7 +183591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f51ba50-fc6a-442f-94a1-23b3f1a6ba57", + "id": "72641c1f-8fc4-4501-8b48-cb00d3d0266e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -183647,7 +183647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de9b4042-734d-45e0-a7a9-4b1c21701b0b", + "id": "2c92832d-2474-41af-b747-9d322fa0641c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -183709,7 +183709,7 @@ } }, { - "id": "34f7de4c-f7a8-4f49-9129-38864a89751b", + "id": "d14bfc55-6c4e-43db-bfd9-e1dca2a2d1e2", "name": "Transform by ID", "request": { "name": "Transform by ID", @@ -183750,7 +183750,7 @@ }, "response": [ { - "id": "44ee243b-8f9a-4ee6-8f52-f7e287715353", + "id": "ec49cf0e-5a29-4434-80f9-819c23289055", "name": "Transform with the given ID", "originalRequest": { "url": { @@ -183794,7 +183794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b27c2443-c795-446d-9ef8-00dbf7019508", + "id": "4bd3ae1a-dd6b-4bd1-aaf4-ca722b3484fc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -183838,7 +183838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72fee73e-fbc6-415a-884b-175d69c1e474", + "id": "1fcae009-5cac-488c-b1ad-1ce5e0be2fcb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -183882,7 +183882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "200d088c-8c74-4678-bb4a-fbaca396202b", + "id": "4a556fea-bb5b-4e34-ac5e-d9f37357145c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183926,7 +183926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf341e0e-5079-47e8-8b31-2d2220524709", + "id": "3a3d7d5a-237f-4618-955c-f0423f0c6f70", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -183970,7 +183970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac96a933-82b3-4ff4-afb6-3a45c5d1f4de", + "id": "4c48285d-132a-49da-a5cc-c1fe71c21193", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -184014,7 +184014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12217054-bfb3-478a-a73d-51a02561dcb7", + "id": "2a5e5d25-d3a8-4529-a1c1-2ae220bb981d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -184064,7 +184064,7 @@ } }, { - "id": "0cd407f9-5ad8-47e5-a645-0ef820cc1725", + "id": "bf3f568e-613e-405b-b024-f308530a2994", "name": "Update a transform", "request": { "name": "Update a transform", @@ -184118,7 +184118,7 @@ }, "response": [ { - "id": "b1ee6a1b-cf55-465b-8ed7-8911abef347a", + "id": "3da91199-fe91-4718-a99e-f13f9a2b6e09", "name": "Indicates the transform was successfully updated and returns its new representation.", "originalRequest": { "url": { @@ -184175,7 +184175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a673b41d-0e85-4b90-87e1-3b1b0ba044ad", + "id": "009a31b5-39c8-4ee4-874c-2d7f2636b03b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -184232,7 +184232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eea5ea5d-3933-4cf0-97a0-83ab0555ea67", + "id": "bff65580-413e-4807-a793-40753a518e22", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -184289,7 +184289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "744d33e3-3fef-4180-84ad-10c4bf7840d2", + "id": "4d7e105b-13ea-4a32-9895-0c30419fcbac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -184346,7 +184346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee5038ac-987c-4179-abf1-cd5d9b79248f", + "id": "47a49fcd-c36d-4154-9d18-e117f8f930e7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -184403,7 +184403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a48f59a9-4cb6-4fdb-be11-99e8aad4efc9", + "id": "51275b9d-2632-4086-a9b4-04c5b74d3b8a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -184460,7 +184460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcf56c8a-16b4-4fe7-accd-8f2e5722024d", + "id": "6b7173c1-36df-449d-9fcf-fa80ddf500df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -184523,7 +184523,7 @@ } }, { - "id": "b4387f98-1afa-4fb6-948f-dca4645a1897", + "id": "40243a14-d9c2-4a4b-b6e6-41bffe26a945", "name": "Delete a transform", "request": { "name": "Delete a transform", @@ -184564,7 +184564,7 @@ }, "response": [ { - "id": "fd04bbd3-0f6d-4aa6-a126-33f4c5576d41", + "id": "b376f5a2-3657-4e32-9184-666590f4bc94", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -184598,7 +184598,7 @@ "_postman_previewlanguage": "text" }, { - "id": "cc4b9d80-e87c-41bd-bb3a-cb8ef5117f7a", + "id": "e8298eef-4692-4ee4-8e41-17a2447ef6db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -184642,7 +184642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69fb55bb-ff40-4044-a56c-207a3e429c17", + "id": "305e611e-9e41-45ff-86d9-500b969bdd38", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -184686,7 +184686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f11c208-53a8-4edb-ba55-7e73f3cd5f60", + "id": "35e48d09-7343-4444-96cb-4ca8c8911028", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -184730,7 +184730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "307715d7-af94-48d0-a9c2-94d8615cac6f", + "id": "f5dfb374-7edc-4905-a4db-9a1c226c0857", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -184774,7 +184774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09b266de-0f84-4e8d-be16-ff1ba4e53ddd", + "id": "d2dcb728-9173-463d-8c37-ee40f1d9977a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -184818,7 +184818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97253d71-ba90-4648-8d26-1eac62e2b272", + "id": "e3a595b4-eaca-4471-a7c0-b781d62f662f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -184874,7 +184874,7 @@ "description": "Event Triggers provide real-time updates to changes in IdentityNow so you can take action as soon as an event occurs, rather than poll an API endpoint for updates. IdentityNow provides a user interface within the admin console to create and manage trigger subscriptions. These endpoints allow for programatically creating and managing trigger subscriptions.\n\nThere are two types of event triggers:\n * `FIRE_AND_FORGET`: This trigger type will send a payload to each subscriber without needing a response. Each trigger of this type has a limit of **50 subscriptions**.\n * `REQUEST_RESPONSE`: This trigger type will send a payload to a subscriber and expect a response back. Each trigger of this type may only have **one subscription**.\n\n## Available Event Triggers\nProduction ready event triggers that are available in all tenants.\n\n| Name | ID | Type | Trigger condition |\n|-|-|-|-|\n| [Access Request Dynamic Approval](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/access-request-dynamic-approval) | idn:access-request-dynamic-approver | REQUEST_RESPONSE |After an access request is submitted. Expects the subscriber to respond with the ID of an identity or workgroup to add to the approval workflow. |\n| [Access Request Decision](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/access-request-decision) | idn:access-request-post-approval | FIRE_AND_FORGET | After an access request is approved. |\n| [Access Request Submitted](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/access-request-submitted) | idn:access-request-pre-approval | REQUEST_RESPONSE | After an access request is submitted. Expects the subscriber to respond with an approval decision. |\n| [Account Aggregation Completed](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/account-aggregation-completed) | idn:account-aggregation-completed | FIRE_AND_FORGET | After an account aggregation completed, terminated, failed. |\n| Account Attributes Changed | idn:account-attributes-changed | FIRE_AND_FORGET | After an account aggregation, and one or more account attributes have changed. |\n| Account Correlated | idn:account-correlated | FIRE_AND_FORGET | After an account is added to an identity. |\n| Accounts Collected for Aggregation | idn:aggregation-accounts-collected | FIRE_AND_FORGET | New, changed, and deleted accounts have been gathered during an aggregation and are being processed. |\n| Account Uncorrelated | idn:account-uncorrelated | FIRE_AND_FORGET | After an account is removed from an identity. |\n| Campaign Activated | idn:campaign-activated | FIRE_AND_FORGET | After a campaign is activated. |\n| Campaign Ended | idn:campaign-ended | FIRE_AND_FORGET | After a campaign ends. |\n| Campaign Generated | idn:campaign-generated | FIRE_AND_FORGET | After a campaign finishes generating. |\n| Certification Signed Off | idn:certification-signed-off | FIRE_AND_FORGET | After a certification is signed off by its reviewer. |\n| [Identity Attributes Changed](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/account-aggregation-completed) | idn:identity-attributes-changed | FIRE_AND_FORGET | After One or more identity attributes changed. |\n| [Identity Created](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/identity-created) | idn:identity-created | FIRE_AND_FORGET | After an identity is created. |\n| [Provisioning Action Completed](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/provisioning-completed) | idn:post-provisioning | FIRE_AND_FORGET | After a provisioning action completed on a source. |\n| [Scheduled Search](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/scheduled-search) | idn:saved-search-complete | FIRE_AND_FORGET | After a scheduled search completed. |\n| [Source Created](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/source-created) | idn:source-created | FIRE_AND_FORGET | After a source is created. |\n| [Source Deleted](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/source-deleted) | idn:source-deleted | FIRE_AND_FORGET | After a source is deleted. |\n| [Source Updated](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/source-updated) | idn:source-updated | FIRE_AND_FORGET | After configuration changes have been made to a source. |\n| [VA Cluster Status Change](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/va-cluster-status-change) | idn:va-cluster-status-change | FIRE_AND_FORGET | After the status of a VA cluster has changed. |\n\n## Early Access Event Triggers\nTriggers that are in-development and not ready for production use. Please contact support to enable these triggers in your tenant.\n\n| Name | ID | Type | Trigger condition |\n|-|-|-|-|\n| [Identity Deleted](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/identity-deleted) | idn:identity-deleted | FIRE_AND_FORGET | After an identity is deleted. |\n| [Source Account Created](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/source-account-created) | idn:source-account-created | FIRE_AND_FORGET | After a source account is created. |\n| [Source Account Deleted](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/source-account-deleted) | idn:source-account-deleted | FIRE_AND_FORGET | After a source account is deleted. |\n| [Source Account Updated](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/source-account-updated) | idn:source-account-updated | FIRE_AND_FORGET | After a source account is changed. |\n\nRefer to [Event Triggers](https://developer.sailpoint.com/idn/docs/event-triggers/) for more information about event triggers.\n", "item": [ { - "id": "79b8988b-0326-41a6-a826-d25603c0c9d5", + "id": "3a81780b-3a10-4797-b76c-12abb4d2a0fe", "name": "List Triggers", "request": { "name": "List Triggers", @@ -184949,7 +184949,7 @@ }, "response": [ { - "id": "73121bca-39ba-411a-98a0-33d255af475e", + "id": "9f83c75d-8232-48a6-a379-9ba813982959", "name": "List of triggers.", "originalRequest": { "url": { @@ -185038,7 +185038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "daebb1db-e978-4391-b909-780b598e9248", + "id": "b9366225-aaab-4aeb-920d-6428349f46f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -185127,7 +185127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2551082e-9c9a-4067-b657-e44336f3a93c", + "id": "d8eb0820-f02c-4aa1-bb30-b3a377e43631", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -185216,7 +185216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef9f60a0-ec93-4902-9fc8-63bacca66164", + "id": "438fb5e2-d6db-474a-81be-b4aae3f36bf8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -185305,7 +185305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2a86002-375f-4117-8917-9a73791ae72d", + "id": "3139e3d7-6bae-48d8-bc91-42c089b866a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -185394,7 +185394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2840602d-a57d-40fd-ae0a-3e5c5d535158", + "id": "080f5343-43c6-4384-a60d-359dd9f5b107", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -185489,7 +185489,7 @@ } }, { - "id": "49af6eb2-0913-4835-a464-a497ebb64813", + "id": "009ae3bb-f58d-42f6-802a-d78bc6abe890", "name": "Create a Subscription", "request": { "name": "Create a Subscription", @@ -185531,7 +185531,7 @@ }, "response": [ { - "id": "1a956831-93f3-4dac-b45f-d37b45ffd2f7", + "id": "909d76ad-d80b-4732-82bc-2ccd9701e3c7", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -185587,7 +185587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "496519ca-2ca4-4c0a-92f5-729724c3ca5e", + "id": "21477ea1-818d-4b8b-8f63-c5e79efa56db", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -185643,7 +185643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7da25d4a-3f5d-4c6d-9945-91ccf6504adf", + "id": "169d3b18-cc0b-444f-b009-bd2aacaf29d7", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -185699,7 +185699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d6e7a37-8507-45b8-9862-3cdb1573883a", + "id": "87c68446-1e53-42cf-b4ad-45929d46c06d", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -185755,7 +185755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6065130d-5af9-4352-a403-7c21f9bae29a", + "id": "9ad5b7cc-6379-4583-9479-6655f6dc2807", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -185811,7 +185811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "651858ac-6634-475b-801e-c1c26dc3a355", + "id": "522dfe21-8985-42bf-80ff-17cc1256b0ac", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -185867,7 +185867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e479bd4a-c09a-444e-850f-e12620108c7c", + "id": "04222c93-95ab-45fa-a2fc-3e9a7ca52b8a", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -185923,7 +185923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ae14a6c-6318-4936-a9cd-5c0436a0c377", + "id": "8b0a17e4-e299-4e7e-8b4c-ee4e19121fe5", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -185979,7 +185979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "776cde86-b3cf-4356-a189-d8f62d02db7d", + "id": "ef5148a2-2449-4d6e-ae5f-e9b73312789d", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -186041,7 +186041,7 @@ } }, { - "id": "009ec2aa-9b64-4ba1-ae02-4fd78ef205c0", + "id": "148b8e30-4b6d-40e1-8156-93c98a9ddc29", "name": "List Subscriptions", "request": { "name": "List Subscriptions", @@ -186116,7 +186116,7 @@ }, "response": [ { - "id": "bfe42511-3eb0-4054-9ef2-5d4f1a3e97a4", + "id": "878d44ad-dfa8-42db-9c99-388037c51dfe", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -186205,7 +186205,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d87e0453-1427-417b-8585-140214dde9b2", + "id": "dbac930f-f285-4f8a-b497-09a16d3ced78", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -186294,7 +186294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8af73ad4-1b7b-4ab7-a6e6-36f97931b1ce", + "id": "39d37cc0-a2f8-4337-a63b-cc6982b2c49a", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -186383,7 +186383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07e4aac8-878f-49d3-bdc8-8bb7fc0995ad", + "id": "15327fd0-127b-419d-8c6e-d477ec6f4bd8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -186472,7 +186472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78807f52-2a0c-4171-b29a-d330180bfcda", + "id": "ce9f8456-12b7-4259-81cd-ca6e13d289ea", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -186561,7 +186561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a48c17c2-c1ec-449f-af5d-a098fb87f769", + "id": "fb77e59b-d68f-45b8-a101-9fb64d33c5bb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -186650,7 +186650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "276a6ed6-5f6c-4208-a1fa-d7afd20e707e", + "id": "9f2417dc-57e3-4fc3-8487-afe07d5221be", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -186739,7 +186739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32c232f6-0261-4b98-8b7a-7d159fbaa9b2", + "id": "c9ad6cac-f764-44c2-bb2a-a57b99897c33", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -186834,7 +186834,7 @@ } }, { - "id": "79407496-bd11-4597-bdf0-05dbe2c0c380", + "id": "459caa9e-bc02-45c4-a678-b616512f5a0c", "name": "Update a Subscription", "request": { "name": "Update a Subscription", @@ -186888,7 +186888,7 @@ }, "response": [ { - "id": "b239f8f2-1f0b-4e4b-b751-04a1fbf5a884", + "id": "c60b27d0-c798-4f9e-a298-4fbc453594b7", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -186945,7 +186945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2db0397-c2ab-4e40-b472-3c0a7d9bf109", + "id": "b83ad152-db9e-4518-b8f1-879acb45613f", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -187002,7 +187002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e291171-68d9-4e2e-9b63-70800ad16c30", + "id": "145bd24e-c04a-430a-b6fe-4d3b2fe2d9c5", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -187059,7 +187059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28ae6c8a-02d0-432b-b38a-5be145c43e61", + "id": "dedaa2ba-5624-48b3-9baf-f1149b6be762", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -187116,7 +187116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10e98b5f-171b-4fba-a401-33bbb0425abe", + "id": "9d221e64-fa31-496d-b774-e65820dcf4e8", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -187173,7 +187173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80283c63-08bb-4ea7-93f8-f0ade566e5f2", + "id": "8053fa1e-7287-4cbc-b94b-fa3d0f1da1ff", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -187230,7 +187230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73468608-92ae-4661-baf3-6893715c4cea", + "id": "5ede0e9f-f6ca-4e95-98b7-0965fe72082a", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -187287,7 +187287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04f3e0f6-673d-4803-ba8f-a31e8cea2bf7", + "id": "6e56f5b3-9a25-4c96-8e2f-b54d4df3688e", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -187344,7 +187344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22981f8a-10f7-4db4-af22-64695a3d319b", + "id": "91101466-c6f3-4ab4-b5fb-c9099bc144d5", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -187401,7 +187401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebf06013-6e09-49d2-a7aa-7e447d5a0ebe", + "id": "b1fa0c17-4334-48ba-8635-9c67358d3b00", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -187464,7 +187464,7 @@ } }, { - "id": "14646709-6a61-4093-8230-e06b6170878d", + "id": "6d9e947f-7163-4493-9e57-f275534a18bf", "name": "Patch a Subscription", "request": { "name": "Patch a Subscription", @@ -187518,7 +187518,7 @@ }, "response": [ { - "id": "eb3827f9-e6e5-45ee-8cb7-41c4a5f882c9", + "id": "55eb470b-9429-49a1-93fc-d0dc70ce11ab", "name": "Updated subscription.", "originalRequest": { "url": { @@ -187575,7 +187575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2961dc36-19fa-4f01-aaac-9c4ec85e9f5d", + "id": "0de7ea3c-8ed0-449c-8056-dfa7fb023327", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -187632,7 +187632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f8edf9d-e345-4a89-9ade-3e9dc2455e90", + "id": "897bab47-49e6-49e5-b15a-596117df77ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -187689,7 +187689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da9c145f-64e2-4ba2-ba70-789da00e9703", + "id": "a80a303a-216c-4b17-89c2-e2be23a57c3e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -187746,7 +187746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0676d177-1435-4dfa-8d85-f92c672bfb42", + "id": "c555f51f-632f-406a-9b00-e11d048d8cd6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -187803,7 +187803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fca48722-12ab-4783-b681-a90a0980b2d3", + "id": "cde9c4b6-4d58-4968-b3cd-19f92f64d276", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -187860,7 +187860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd6c2f4d-9833-4662-9353-1a3b21ae3be5", + "id": "7ac5b2d0-2088-42e2-84cb-bd9da579e3e3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -187923,7 +187923,7 @@ } }, { - "id": "01da7f2b-f8cb-4e8f-9954-d35390d6ed2d", + "id": "bc1995fb-a7ee-4484-9510-737541acabaa", "name": "Delete a Subscription", "request": { "name": "Delete a Subscription", @@ -187964,7 +187964,7 @@ }, "response": [ { - "id": "9b343c97-2d3f-4c24-b36f-7115394d9d67", + "id": "05f84561-c6ff-4b46-9a25-a5e48943de31", "name": "Subscription is deleted successfully.", "originalRequest": { "url": { @@ -187998,7 +187998,7 @@ "_postman_previewlanguage": "text" }, { - "id": "182dfb72-dc3e-4c96-9636-bc1826d092b4", + "id": "01e7045a-de53-4c73-abdd-238c3d6e8b55", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -188042,7 +188042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7d19b94-2757-40af-a143-b6a63dfda659", + "id": "ba4f7edc-6e9c-46db-9b94-275afcde1b19", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -188086,7 +188086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "096d1067-17b0-42d4-95be-56abda641a26", + "id": "5674059e-f12f-4d7d-a69e-42141701caea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -188130,7 +188130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1b5df0a-f7fa-4f1a-9f3b-46d39d66bade", + "id": "ed97ace4-8f1c-4d39-aa1d-34a30d025963", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -188174,7 +188174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dab89fa6-a44e-4e81-b2b7-34364d1aa577", + "id": "090bcb03-3c0b-42a6-8e1d-c4d7f803c7c9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -188218,7 +188218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77bcecf2-9df7-4cfe-82c0-ff9edc2bb677", + "id": "f06ce00b-7850-4534-a341-dd64cbdce317", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -188268,7 +188268,7 @@ } }, { - "id": "fae91b14-1839-4839-9dbc-efc86ccae4f0", + "id": "0e37789e-86fa-4e92-b860-c7aaf4af921c", "name": "Validate a Subscription Filter", "request": { "name": "Validate a Subscription Filter", @@ -188311,7 +188311,7 @@ }, "response": [ { - "id": "1627ef75-e894-4cfa-a3e3-cd64a79638d1", + "id": "b3e89f2c-e7f1-4cc2-bfa8-fc9462b3195c", "name": "Boolean whether specified filter expression is valid against the input.", "originalRequest": { "url": { @@ -188368,7 +188368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38d0fa8c-b807-49e4-a500-c39e507d142e", + "id": "f43f8ff6-3699-45a2-a792-da8522d645fa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -188425,7 +188425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1a3fccf-a25a-4cf6-b21c-07f3daa6f74e", + "id": "d9c982c1-0606-4087-96e2-3a17faa11913", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -188482,7 +188482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "880e1d67-8fab-4116-b32a-ae9d71ba64bc", + "id": "b0713944-782c-4cc5-9a3f-8dab065fe1f2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -188539,7 +188539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c679b5f9-8365-4cad-acd7-4d2f031243ad", + "id": "781bfd68-bf98-4d6d-b7ca-7e541f0a9a2d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -188596,7 +188596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddadc956-893e-4947-b399-ddd7dee4854e", + "id": "9f4fe1cd-145d-4731-ad03-2c98bddeaf5d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -188659,7 +188659,7 @@ } }, { - "id": "d9d480f4-80f5-41d5-baff-1bd71ee73f8a", + "id": "e4045347-2433-4b53-a77b-8a6a3433c016", "name": "List Latest Invocation Statuses", "request": { "name": "List Latest Invocation Statuses", @@ -188735,7 +188735,7 @@ }, "response": [ { - "id": "4dd51dab-5f19-41f7-a6b9-2d84badf4433", + "id": "6395cb66-4e00-42c6-9a42-ab65d4f740b7", "name": "List of latest invocation statuses.", "originalRequest": { "url": { @@ -188825,7 +188825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe39bf96-c5c7-4b98-b85f-622f85cd5ff7", + "id": "045d6155-8fef-4542-affd-50d205996690", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -188915,7 +188915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "672ccbea-47e9-4b99-89df-1487719fcfdb", + "id": "9bb28ae9-ae23-4bd3-9daa-d0294c043967", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -189005,7 +189005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27588c9f-8b65-4f2c-ab62-82e26945c9fb", + "id": "5c7d745b-994a-4c8e-a849-bffff77d02c3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -189095,7 +189095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95ae73a6-cc9e-4a67-a6de-fb0db039051b", + "id": "ae6a6bf4-8cd9-4ceb-a72c-8486bf7492b2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -189185,7 +189185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2e68ad6-52dd-4c91-8b83-7220594a16c7", + "id": "0c8cf82d-0a79-4213-a7a2-fafd7d03de90", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -189281,7 +189281,7 @@ } }, { - "id": "b8fefe1b-1713-4f3e-8297-500bd8ec2ad8", + "id": "3c970fdc-fcd5-4a48-9c3d-a8262daeaf44", "name": "Complete Trigger Invocation", "request": { "name": "Complete Trigger Invocation", @@ -189336,7 +189336,7 @@ }, "response": [ { - "id": "38252043-1076-40cf-9967-de38316285d9", + "id": "f6bb8f68-0c0a-4a2a-b85f-fc267ead25f3", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -189384,7 +189384,7 @@ "_postman_previewlanguage": "text" }, { - "id": "99985a9b-5f81-4104-b20c-d92e507b2b9e", + "id": "3d4de51e-49a3-4e89-96b6-cb2da6c2ff1f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -189442,7 +189442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5137b5c8-a24c-418f-a7a4-133a881e17ee", + "id": "834fb94d-a9bf-4bfd-a10e-85eac66b25ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -189500,7 +189500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d571ffb3-f209-4231-844e-844d84570103", + "id": "7b701ec9-a6df-461a-a00f-b119fcbf3623", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -189558,7 +189558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16b594d6-20d5-4a6f-b72b-a12fd11ee269", + "id": "ace8c511-7055-4926-afdf-c6312fa43172", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -189616,7 +189616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "664dcaa0-f82d-424e-b523-9e79f5a04fdb", + "id": "405f63bc-d76e-4f9a-a13f-cb52747f7dda", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -189680,7 +189680,7 @@ } }, { - "id": "3b4cd539-6d73-4cc1-b7b7-0a71e4c63b06", + "id": "f061ab3d-f622-40b4-a2d3-be7de886166e", "name": "Start a Test Invocation", "request": { "name": "Start a Test Invocation", @@ -189723,7 +189723,7 @@ }, "response": [ { - "id": "8a59fd1f-54dc-4bf2-b374-e3c09f9bcb49", + "id": "526ba774-5b73-4fc2-a3c4-ea23117141b7", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -189780,7 +189780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f2c64fb-26b6-44bb-a10f-90f535cedda3", + "id": "37451b77-b574-46f8-9a0f-cde58d2a0b5d", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -189837,7 +189837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e8fcb2c-a14b-4fb2-a46f-20efd45e2814", + "id": "3dd4a93c-16c8-45f1-ab69-c3ee11bc3bd2", "name": "Trigger invocation is skipped, because tenant has not subscribed to the specified trigger.", "originalRequest": { "url": { @@ -189884,7 +189884,7 @@ "_postman_previewlanguage": "text" }, { - "id": "76a02b6c-38ac-4e14-8e91-77e68368da3c", + "id": "a9e0c98f-4772-4390-be56-27ac05b5941c", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -189941,7 +189941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "153b812b-fc68-48bd-b9c2-efbeb2b669ba", + "id": "ba2d5bd0-9c37-42d0-924c-dd242178527b", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -189998,7 +189998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1cccae9-a362-4dd6-8b9b-46e1433dfd9b", + "id": "20613909-caee-44d5-b0c7-65e8485638f0", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -190055,7 +190055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03b4e7b3-0c73-4261-b932-ad57a39e7e07", + "id": "c6d7cd2b-67ea-4288-8274-c3f5ae37d6bc", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -190112,7 +190112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a685cd4d-8c79-4158-801f-b320d23e91dd", + "id": "4075b8fc-289d-4750-a400-f73845d74d8e", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -190181,7 +190181,7 @@ "description": "Use this API to implement work item functionality.\nWith this functionality in place, users can manage their work items (tasks).\n\nWork items refer to the tasks users see in IdentityNow's Task Manager.\nThey can see the pending work items they need to complete, as well as the work items they have already completed.\nTask Manager lists the work items along with the involved sources, identities, accounts, and the timestamp when the work item was created.\nFor example, a user may see a pending 'Create an Account' work item for the identity Fred.Astaire in GitHub for Fred's GitHub account, fred-astaire-sp.\nOnce the user completes the work item, the work item will be listed with his or her other completed work items.\n\nTo complete work items, users can use their dashboards and select the 'My Tasks' widget.\nThe widget will list any work items they need to complete, and they can select the work item from the list to review its details.\nWhen they complete the work item, they can select 'Mark Complete' to add it to their list of completed work items.\n\nRefer to [Task Manager](https://documentation.sailpoint.com/saas/user-help/task_manager.html) for more information about work items, including the different types of work items users may need to complete.\n", "item": [ { - "id": "fa139376-ee17-4634-b8e2-ce213497192d", + "id": "f945d477-f5c7-4e0b-a4aa-29494afb8b5b", "name": "List Work Items", "request": { "name": "List Work Items", @@ -190231,7 +190231,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -190247,7 +190247,7 @@ }, "response": [ { - "id": "046df7a5-2d91-4073-b2bf-8e45bc747b4e", + "id": "fb6ff30f-5627-4bcd-988f-220893cb70aa", "name": "List of work items", "originalRequest": { "url": { @@ -190292,7 +190292,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -190327,7 +190327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96d57312-5648-4c5f-8d62-2f0663bd52f7", + "id": "c15899a8-d812-43d6-8763-7d1618d3cd40", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -190372,7 +190372,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -190407,7 +190407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7ac25e4-b3b1-4001-9563-d77b28623baf", + "id": "60f997f0-0f62-410b-b5b8-dc7401bf75f0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -190452,7 +190452,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -190487,7 +190487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f51f9582-7067-46ae-8012-a3fc632a0fe2", + "id": "b7e7c0c1-7c82-486e-bd12-05f58e30d325", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -190532,7 +190532,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -190573,7 +190573,7 @@ } }, { - "id": "4687a474-83cb-4b90-9e4a-79844a52d8c9", + "id": "1101ec76-86dc-4ecc-aba0-36641d746d69", "name": "Completed Work Items", "request": { "name": "Completed Work Items", @@ -190597,7 +190597,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -190640,7 +190640,7 @@ }, "response": [ { - "id": "9636a8db-39dc-4164-9bb4-94466dc54560", + "id": "aec65949-1d97-4463-a083-9c1f8a96f1bc", "name": "List of completed work items.", "originalRequest": { "url": { @@ -190659,7 +190659,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -190721,7 +190721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fc530b9-c04a-4882-aedf-44030d57d8c1", + "id": "791d344d-1202-40e3-abc7-9c8ff1b780b3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -190740,7 +190740,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -190802,7 +190802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a8b9891-e40a-43f6-b855-5843e6ea53b0", + "id": "7042e13f-2f2e-4fb3-b0cb-0b48ef710ea1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -190821,7 +190821,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -190883,7 +190883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b8402b3-fa6f-4839-a0ef-c9b95be9f8dd", + "id": "d0302f50-1a8e-4c0a-bd17-66941f5a0300", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -190902,7 +190902,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" }, { "disabled": true, @@ -190970,7 +190970,7 @@ } }, { - "id": "03e7b352-dea3-418e-9ae6-3f3fdfb4405d", + "id": "1c5f3535-4d4f-4441-89c0-2071f385d59e", "name": "Count Work Items", "request": { "name": "Count Work Items", @@ -190994,7 +190994,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -191010,7 +191010,7 @@ }, "response": [ { - "id": "a763830e-8ecb-4c18-9f34-2ca1d8ab9173", + "id": "4c2fc1a2-339b-4c8c-a076-d65777bd6624", "name": "List of work items", "originalRequest": { "url": { @@ -191029,7 +191029,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -191064,7 +191064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ea9242f-ac10-40fa-bf39-4d3abce8b2ef", + "id": "463dc0c6-9aef-442b-a32f-6ee26c14a491", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191083,7 +191083,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -191118,7 +191118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0319a91-4fec-4d4f-ac61-63aa1c9f5ef0", + "id": "9afbf565-a15a-49da-9289-cbe91d2c3d29", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -191137,7 +191137,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -191172,7 +191172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "372431d2-9487-4c1e-b2f5-59e7299d0890", + "id": "d119a6fc-8f42-4af9-84df-72a112fccb59", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -191191,7 +191191,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -191232,7 +191232,7 @@ } }, { - "id": "7965ba93-e555-4e4e-a1ae-641a9f90361c", + "id": "fc5c70c9-b275-4d03-bd47-66cc5ac6df1a", "name": "Count Completed Work Items", "request": { "name": "Count Completed Work Items", @@ -191257,7 +191257,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -191273,7 +191273,7 @@ }, "response": [ { - "id": "b8121ea3-0b47-46ac-84fa-fb6c0e93f2e4", + "id": "484e83f9-65d3-4018-a6c8-b4014097e516", "name": "List of work items", "originalRequest": { "url": { @@ -191293,7 +191293,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -191328,7 +191328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1af498b-6b37-42c7-8ad5-86c9e00bc8f5", + "id": "b0765f94-65ea-420e-acb4-487476fe849f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191348,7 +191348,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -191383,7 +191383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9362938-3fe9-4064-849c-93f8b98ba48b", + "id": "8b7e2320-ce7e-4ef4-bc6f-8f37e91329cd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -191403,7 +191403,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -191438,7 +191438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1df38bb5-c8bf-41f1-ae99-01eb870e93a8", + "id": "3274a730-a618-43e5-8ccb-8754d6aa2e21", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -191458,7 +191458,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -191499,7 +191499,7 @@ } }, { - "id": "4160eebf-b392-4ed7-946f-3dc977f1f521", + "id": "616612f0-e0a2-4854-b170-b34c2e052cad", "name": "Work Items Summary", "request": { "name": "Work Items Summary", @@ -191523,7 +191523,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -191539,7 +191539,7 @@ }, "response": [ { - "id": "66b929b8-eb45-4269-a11f-ebb605cf70b2", + "id": "f277f264-8790-4c49-9f33-c31459dfb335", "name": "List of work items", "originalRequest": { "url": { @@ -191558,7 +191558,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -191593,7 +191593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afc802eb-737d-4acc-bc93-f73003d5dc7a", + "id": "9314b0f5-36bb-42d0-b828-956f699e1b5f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191612,7 +191612,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -191647,7 +191647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adc886b9-3f84-4ea9-a544-c9aa739a83e4", + "id": "b749a892-67cc-4bbf-8cea-cab537749586", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -191666,7 +191666,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -191701,7 +191701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b04c006c-c13a-4d30-bfaf-041e37e9d847", + "id": "9b99d6f2-df45-4709-ae4f-2da3b74a1676", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -191720,7 +191720,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -191761,7 +191761,7 @@ } }, { - "id": "0fc0e778-155a-4cb4-8504-1061bad55c9b", + "id": "3e9fce04-9d2f-4c55-a7fe-24a433ee3e05", "name": "Get a Work Item", "request": { "name": "Get a Work Item", @@ -191785,13 +191785,13 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [ { "type": "any", - "value": "in aute elit ullamco", + "value": "magna dolore deserunt", "key": "id", "disabled": true, "description": { @@ -191812,7 +191812,7 @@ }, "response": [ { - "id": "d8345284-8c04-4438-836f-f5c41d90fbb8", + "id": "396e5ef5-b3b1-459d-959e-5a9e31d07700", "name": "The work item with the given ID.", "originalRequest": { "url": { @@ -191831,7 +191831,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -191866,7 +191866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf82147c-ad59-4bb7-9b8d-ca9870e5c56e", + "id": "810d8f21-3061-4489-aa44-85eb5bf309e4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191885,7 +191885,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -191920,7 +191920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bec99132-4368-4512-ace1-7c9ba9eb8a8d", + "id": "4afa1173-1620-4cd6-9c91-13b48d34c280", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -191939,7 +191939,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -191974,7 +191974,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ccdc0e0-4f26-42e1-bcb7-425d90242205", + "id": "195f9301-d2a4-495c-b249-f100d1c86a07", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -191993,7 +191993,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "in aute elit ullamco" + "value": "magna dolore deserunt" } ], "variable": [] @@ -192034,7 +192034,7 @@ } }, { - "id": "77f9aeee-fb98-491d-81ba-2dec13f107eb", + "id": "79dd3789-6322-4780-b144-a966b7855c08", "name": "Complete a Work Item", "request": { "name": "Complete a Work Item", @@ -192075,7 +192075,7 @@ }, "response": [ { - "id": "151fd640-75d3-4058-b26f-7689791c5d60", + "id": "ad3221c1-857f-4fda-985f-93f804bc95ed", "name": "A WorkItems object", "originalRequest": { "url": { @@ -192119,7 +192119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64ef67b4-a373-4f94-b6d6-a37ab17a588f", + "id": "5e9480e0-d079-4d11-ac29-377bb2a2b2f6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -192163,7 +192163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ad3b4ed-b2dd-47d6-b359-bb41cb2dd385", + "id": "3feb45c6-ffad-42ed-aa89-5973e283e073", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -192207,7 +192207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71a7ed5c-0660-4b63-87a7-42ca12831326", + "id": "9ad6e862-1332-4dff-81b8-5744bae96b16", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -192257,7 +192257,7 @@ } }, { - "id": "3f0f5ea8-a9d3-47a1-ad74-0bb99e7c2180", + "id": "cb010fce-01ca-4253-82a1-886803e76ebc", "name": "Forward a Work Item", "request": { "name": "Forward a Work Item", @@ -192312,7 +192312,7 @@ }, "response": [ { - "id": "e7001a20-127b-4e9c-b362-57815634abe6", + "id": "eac8dde0-1a7c-40c3-845c-6f0b945941f1", "name": "Success, but no data is returned.", "originalRequest": { "url": { @@ -192360,7 +192360,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a78887c9-2790-4057-aa89-bc20a2f7ca20", + "id": "3a954327-d51e-4a91-99ff-0d901ba2a5cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -192418,7 +192418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3e8ece6-3c21-4716-ae9c-c907afdfc182", + "id": "f03d09d4-4a1d-4c74-ad4d-2e70fe2ed5ce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -192476,7 +192476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38b522f9-ea2c-487c-94c8-9741c4362e46", + "id": "7599739a-5534-449a-aa75-2dbb730c5869", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -192534,7 +192534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "734e319e-8f43-4c9b-829c-e26309e78234", + "id": "30b32312-5c7d-4a33-9b52-a3a41b9a918e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -192592,7 +192592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4887e3b7-d4ea-455e-a35f-aa5342f4e22d", + "id": "32053fc1-4466-431c-ab0f-f6591d109fb4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -192656,7 +192656,7 @@ } }, { - "id": "4d0ce695-ee2a-4df8-9ec1-42cae0adc31b", + "id": "69d28116-7988-4203-96d0-1b21b9c55944", "name": "Approve an Approval Item", "request": { "name": "Approve an Approval Item", @@ -192709,7 +192709,7 @@ }, "response": [ { - "id": "92e5c17d-904f-4e39-9b0c-34847aafda9c", + "id": "a807f22d-cbc0-4cdf-a905-cdecb397aec9", "name": "A work items details object.", "originalRequest": { "url": { @@ -192755,7 +192755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd9cf5f1-c755-4b73-b79f-ae7c545195b2", + "id": "72bb5dea-598a-405b-9be2-abcd36ee60de", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -192801,7 +192801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96b7092b-d3d1-4374-86cb-648715892c0f", + "id": "bb8f1dfe-4db9-4805-be06-7247acb87099", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -192847,7 +192847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c56e31a8-b81a-4664-ae44-2d9ccd77cbc8", + "id": "75fe4cfd-069d-4c8a-af04-488f0460b8ff", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -192899,7 +192899,7 @@ } }, { - "id": "1dedb2a0-2222-4d64-a596-5749906fc13e", + "id": "5f152d03-0b95-47c1-b196-bc8caeccd647", "name": "Reject an Approval Item", "request": { "name": "Reject an Approval Item", @@ -192952,7 +192952,7 @@ }, "response": [ { - "id": "ab2107f3-2b53-42e5-90dc-05c5957e5a5b", + "id": "7158b5c1-50fb-41cf-bc7b-fa73dee4a9f1", "name": "A work items details object.", "originalRequest": { "url": { @@ -192998,7 +192998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3cfd30f-a7c9-4f5b-b496-c28c035d16a8", + "id": "dc6fd738-a0cb-44d0-aa19-22162cb683b8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -193044,7 +193044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66bd0e24-5f34-4fef-b2a3-2a1bd37c06e4", + "id": "4faea60d-50c1-432b-a806-5b254b6c98ec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -193090,7 +193090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50217715-9ab5-4d0a-8e45-e85758bfc51e", + "id": "a55632bd-15b2-4dc7-b26d-358a026c678b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -193142,7 +193142,7 @@ } }, { - "id": "cac01ae6-5214-4b60-ab51-809911203738", + "id": "fbe7b8ce-3583-4e3d-9419-4ae21562c966", "name": "Bulk approve Approval Items", "request": { "name": "Bulk approve Approval Items", @@ -193184,7 +193184,7 @@ }, "response": [ { - "id": "b3d03e97-9f59-42fa-bbc6-66933b1ae0d9", + "id": "488d01fe-68e2-40a6-9224-06dcb0ba6cf2", "name": "A work items details object.", "originalRequest": { "url": { @@ -193229,7 +193229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "758f98cd-bb1d-4aec-95ba-c4a779521565", + "id": "20d0a18a-a65b-432d-945e-c304f5d1e013", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -193274,7 +193274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be262e55-bb97-4fcf-a177-bbb4446726af", + "id": "10aa5dd1-aef1-464e-a01e-8837612fa2ab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -193319,7 +193319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "270ae61f-26a9-4c89-8b2b-abccfc1f96b8", + "id": "ab4038a6-5696-4821-8502-b0cf26c91cd0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -193370,7 +193370,7 @@ } }, { - "id": "d8feac5e-b4f0-49ad-8f6f-9355a7823a92", + "id": "32ae60c0-20a5-48a8-8a7d-3a9a828fd94c", "name": "Bulk reject Approval Items", "request": { "name": "Bulk reject Approval Items", @@ -193412,7 +193412,7 @@ }, "response": [ { - "id": "1db8df49-66d8-4161-9a68-87edad7f3230", + "id": "d37792ae-41ce-4cdd-bae9-fdaea6f100d5", "name": "A work items details object.", "originalRequest": { "url": { @@ -193457,7 +193457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f59345d-acde-43d7-85c2-43ad8040a598", + "id": "27cbee22-f6f3-4d8b-8730-b3df1c2c251a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -193502,7 +193502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ac3a921-7e6b-42ae-b116-556e966c921b", + "id": "30ae7a45-7991-4c0d-9a5f-0acbc345a319", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -193547,7 +193547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ef59a73-c8ee-43c0-a1d7-190bdd09b6f5", + "id": "71ad3975-21e2-4550-8f79-f0e720bcd1d0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -193598,7 +193598,7 @@ } }, { - "id": "8324ab37-6391-47c0-8194-1902d040294f", + "id": "5e4290d3-8012-4128-b948-031a494f6803", "name": "Submit Account Selections", "request": { "name": "Submit Account Selections", @@ -193653,7 +193653,7 @@ }, "response": [ { - "id": "1cbce205-c4b3-49f1-a985-15b4594108c6", + "id": "21c8c40e-ae2c-4dcd-8ff6-1cce23f25f17", "name": "A work items details object.", "originalRequest": { "url": { @@ -193711,7 +193711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d943701f-8697-4309-b036-805f980a010d", + "id": "662dfe4b-0b2b-450a-b6d3-e5bdb41f71c3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -193769,7 +193769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "117692f0-74a0-4969-be24-a8ce49b4cbd1", + "id": "b65f83b7-6e24-4216-90a3-0b778eadc6ca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -193827,7 +193827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd89d0ba-4a1a-441f-a28a-89a3f274256b", + "id": "d5ae3554-8147-45ab-9fd0-4957a6622b8f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -193897,7 +193897,7 @@ "description": "Use this API to implement work reassignment functionality.\n\nWork Reassignment allows access request reviews, certifications, and manual provisioning tasks assigned to a user to be reassigned to a different user. This is primarily used for:\n\n- Temporarily redirecting work for users who are out of office, such as on vacation or sick leave\n- Permanently redirecting work for users who should not be assigned these tasks at all, such as senior executives or service identities\n\nUsers can define reassignments for themselves, managers can add them for their team members, and administrators can configure them on any user’s behalf. Work assigned during the specified reassignment timeframes will be automatically reassigned to the designated user as it is created.\n\nRefer to [Work Reassignment](https://documentation.sailpoint.com/saas/help/users/work_reassignment.html) for more information about this topic.\n", "item": [ { - "id": "c0b33029-b120-47d7-b514-1d2ff5ab9c9d", + "id": "d5de6223-b5e7-4624-a68c-765ed74c0aa5", "name": "List Reassignment Config Types", "request": { "name": "List Reassignment Config Types", @@ -193927,7 +193927,7 @@ }, "response": [ { - "id": "b33a340c-9041-43af-803b-e99b45d8de96", + "id": "af9ec26a-23dd-46b4-b011-7258514be900", "name": "List of Reassignment Configuration Types", "originalRequest": { "url": { @@ -193971,7 +193971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a22c6c5f-348a-4a6c-b0a3-a86538a2ea96", + "id": "f8040859-fe45-416f-9230-7a304cefb6e3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -194015,7 +194015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ca69d70-d765-4c15-87be-9f7f173d7f7a", + "id": "6135520f-50ce-4d93-ae9d-d648fb0fb679", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -194059,7 +194059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "388b87d9-fb3e-4dcf-82ca-b52a7aa63037", + "id": "1738caac-e080-4b7d-ab7d-6d71563c068a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -194103,7 +194103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "891b8030-1948-469e-8a54-6be484530555", + "id": "216d234b-e874-471f-a4d6-0b95de73d964", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -194147,7 +194147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35c8b8ca-3b61-4238-a5cd-bda9f4526482", + "id": "adbc43c4-7a5d-4851-9402-a5895c1fc9c7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -194197,7 +194197,7 @@ } }, { - "id": "b90617df-1d17-4a89-8435-315acee09803", + "id": "8a43bcb4-e1ca-4e63-8336-2b468931b2b6", "name": "List Reassignment Configurations", "request": { "name": "List Reassignment Configurations", @@ -194226,7 +194226,7 @@ }, "response": [ { - "id": "a94f170a-6e76-4f68-9297-6677493aa566", + "id": "75a47057-34bd-4325-9a30-0400d656ecc8", "name": "A list of Reassignment Configurations for an org", "originalRequest": { "url": { @@ -194269,7 +194269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10b8fd4a-c78e-47da-b70a-22fa5260a391", + "id": "46c569e1-f54b-40d3-896d-4dd37ab0d286", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -194312,7 +194312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e06e4fb-f3b3-446e-9f98-445ffafbcdb2", + "id": "3c912705-4934-491e-997d-e52b0b688bbd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -194355,7 +194355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6397d78-a6d6-4060-aadd-4e6a7fb95f5e", + "id": "32dffccf-d346-44bc-9120-0f4f78ed59a4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -194398,7 +194398,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3de99587-7fc4-479f-b293-b602f4c07cbb", + "id": "bb8079c9-fc65-4623-ae94-87625e05ccf6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -194441,7 +194441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aae12775-3905-434d-ba35-369e6f33e123", + "id": "9b1ddd9a-c22a-451b-a2de-bc7fdf911c4b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -194484,7 +194484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afb528d8-84a2-46ec-9ff0-567fff4a173d", + "id": "a7e92b2f-da27-438c-954b-472d253169af", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -194533,7 +194533,7 @@ } }, { - "id": "98b39606-5417-4dad-857d-30b8bd720a81", + "id": "a99119b9-8cec-478c-88c3-1f3cded713ea", "name": "Create a Reassignment Configuration", "request": { "name": "Create a Reassignment Configuration", @@ -194575,7 +194575,7 @@ }, "response": [ { - "id": "7ff59fe2-ce50-42b0-a604-6c1b7a0f56b3", + "id": "4e24726b-949c-4386-b188-87e9259715e2", "name": "The newly created Reassignment Configuration object", "originalRequest": { "url": { @@ -194631,7 +194631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "628d5b9f-8bcb-4cb2-acad-2c03078019f7", + "id": "4c193f4e-ff33-43cc-9323-e839eaaddb77", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -194687,7 +194687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0f0c489-acaf-4ec8-b741-7d59b19e91b4", + "id": "e75df31e-c768-4eb0-b35b-37e4b85de4bb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -194743,7 +194743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c13077a4-260e-4bfb-912e-db91bf2a8a44", + "id": "0a60f659-dfa1-47f0-b250-45841d826eea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -194799,7 +194799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "281af8ae-6872-488c-90a9-0c2f925bb36f", + "id": "939c5ea8-e627-46cf-9902-130a86573778", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -194855,7 +194855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c52b072e-8eb0-4728-9c63-068e30a8ce7f", + "id": "a7596935-329f-44aa-8887-a3892d4dd6a4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -194917,7 +194917,7 @@ } }, { - "id": "31399bf6-f93b-41f2-bfa5-d888da5d4f41", + "id": "684acfa1-5896-480b-a77c-d3979ba43e44", "name": "Get Reassignment Configuration", "request": { "name": "Get Reassignment Configuration", @@ -194958,7 +194958,7 @@ }, "response": [ { - "id": "a2a8c79a-0117-4c97-97ad-e0377d2eb242", + "id": "cac7658d-02c9-45ca-b9e0-9ce9402c8b7b", "name": "Reassignment Configuration for an identity", "originalRequest": { "url": { @@ -195002,7 +195002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcba9924-0090-4445-9150-f706e92038dc", + "id": "8acc1d22-d703-4082-9e10-dc5bb27ff498", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195046,7 +195046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "314078a9-231f-4ebd-9192-dead0d9e14fb", + "id": "4836cfa8-5120-4026-8eb5-bd777fdd19e6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -195090,7 +195090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ede9e3f-4c87-465f-8ebf-de158843a09c", + "id": "14f9551f-371c-4c14-8ca8-5f02a800b251", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195134,7 +195134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eadf06a5-e848-4051-b148-012ffd256a1b", + "id": "78686eef-9de0-41bb-8cc0-be8654d81c74", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -195178,7 +195178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1af8f1b0-bb73-41dc-93af-7bcbdbf34d37", + "id": "8c08cb69-421c-4037-928e-2fe85917704a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -195222,7 +195222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f11f6189-79a2-4daf-a7c0-32fff79d7040", + "id": "8f02265d-4f7a-43a3-b543-5e7a7ce6c6d2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -195272,7 +195272,7 @@ } }, { - "id": "aec5bc34-4116-49d9-8daa-296ca3d5e1f7", + "id": "e892a33b-8de6-4a6a-98a9-7ca35eccc1cc", "name": "Update Reassignment Configuration", "request": { "name": "Update Reassignment Configuration", @@ -195326,7 +195326,7 @@ }, "response": [ { - "id": "613672a4-c191-440b-8f98-a7ac3c499b8f", + "id": "45086413-23b4-4a8b-a7d6-e1c4cb03acdb", "name": "Reassignment Configuration updated", "originalRequest": { "url": { @@ -195383,7 +195383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e06e7c1-1bd2-437e-8b47-c96539ae17f4", + "id": "9dfecfdb-63e0-4614-a64a-f8e0611d144f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195440,7 +195440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c5c53e1-ed5d-4f69-b4f0-2171df2c9fdc", + "id": "80f5037d-2b66-4cc1-97c3-84894c833e03", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -195497,7 +195497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b04d8e2-7a66-4a7e-b8b3-bffea669af4b", + "id": "20691f28-8cbb-4bbd-81f1-54b701a1ce43", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195554,7 +195554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8046ff1a-377c-40a7-a158-e411ba26ae55", + "id": "6e33e7c0-a040-4031-9cb7-61eeb61b2eeb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -195611,7 +195611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e67476ce-d62a-4abc-8ecb-f715559edc78", + "id": "bcdc5b86-baa3-430e-807c-873d6d6b9b46", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -195674,7 +195674,7 @@ } }, { - "id": "7eb1be22-da10-44dc-a53b-0fc8deacd7fe", + "id": "31440d64-df93-420b-b3ba-ec8d6a20ddb4", "name": "Delete Reassignment Configuration", "request": { "name": "Delete Reassignment Configuration", @@ -195715,7 +195715,7 @@ }, "response": [ { - "id": "ac609056-76d3-43eb-9967-fc907a75d49c", + "id": "fa26218d-7349-49c5-9ff4-525984070820", "name": "Reassignment Configuration deleted", "originalRequest": { "url": { @@ -195749,7 +195749,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2277fc9d-8b4c-4bac-9428-5bde8e487fb3", + "id": "d681ebb4-49dc-4d82-89f8-aa5aa1a69a56", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195793,7 +195793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8609b6b-62f2-4f19-b1e5-c6d7c75bf671", + "id": "d65c81c6-97f2-4175-a0cf-1a2e023f5f4a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -195837,7 +195837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e6cf579-4074-456c-af5e-8f178708afd1", + "id": "1919ea0c-e935-4050-86bb-b65e7a0876f7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195881,7 +195881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ca8346f-9d2e-4504-ac82-21fa247a6896", + "id": "7fc276a1-d38b-4cc9-8127-cec71ed4710f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -195925,7 +195925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cac0d7d2-cb0f-46cc-93cb-5ee837cefc7a", + "id": "ae29933f-31e1-4400-9a51-cf545f240d0c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -195975,7 +195975,7 @@ } }, { - "id": "07d9a15a-2e17-4e47-bfda-8db4a652e668", + "id": "011d8d7a-bb7d-4182-b633-181136f14202", "name": "Evaluate Reassignment Configuration", "request": { "name": "Evaluate Reassignment Configuration", @@ -196038,7 +196038,7 @@ }, "response": [ { - "id": "97efe13d-84d5-4837-b644-3b0d5b62a809", + "id": "2b3515d5-c411-4c30-b8ab-dce3c2bceb39", "name": "Evaluate response when no Reassignment Configuration is found", "originalRequest": { "url": { @@ -196094,7 +196094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "714ac812-b743-4663-bd51-16abc5f980ec", + "id": "ee330182-75a7-4665-a182-fdd5e680a165", "name": "Evaluate response when a long Reassignment trail is found", "originalRequest": { "url": { @@ -196150,7 +196150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67aa2f3b-9994-49e7-b16a-a53e09eaa49c", + "id": "802617d9-624a-4362-a2c9-9ba3bc894e93", "name": "Evaluate response when a self-review is found and manager or org admin escalation is applied", "originalRequest": { "url": { @@ -196206,7 +196206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4342c6c4-6bae-4c29-9b10-fb0645d4d605", + "id": "b2a90943-e0c4-4e7d-b634-bb95068c4759", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -196262,7 +196262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7dae5ff6-870f-4814-8a82-b3be94c8011b", + "id": "e854e76f-5f9a-4331-8baa-e123b7bc0229", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -196318,7 +196318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3835888-2a9d-4731-99b5-6180d2654659", + "id": "82add4b4-6bc0-4999-a3af-e4a46ce54800", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -196374,7 +196374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "660f3cc6-c855-4dff-82a8-349de2948d18", + "id": "d6693202-6269-4ee0-aa92-34efce85331c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -196430,7 +196430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d73828a1-50d8-4989-b8b9-89bd3de6f57e", + "id": "8a18077f-9819-4711-8c05-28d3ef43f993", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -196492,7 +196492,7 @@ } }, { - "id": "356c6023-d642-44d4-a76d-8f0e87a50961", + "id": "46fd87e0-952d-41d6-85bf-0ac9b03ca9aa", "name": "Get Tenant-wide Reassignment Configuration settings", "request": { "name": "Get Tenant-wide Reassignment Configuration settings", @@ -196522,7 +196522,7 @@ }, "response": [ { - "id": "436b05b9-8709-4d63-833b-0c2e31497168", + "id": "dfe4aafc-86ed-4120-9e0e-0d8588b452c8", "name": "Tenant-wide Reassignment Configuration settings", "originalRequest": { "url": { @@ -196566,7 +196566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41246b89-ecc8-4b43-b62a-da96e27cb63e", + "id": "9c2e3306-8e4f-40b1-9d64-6f4327bc16a9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -196610,7 +196610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3decb489-50d4-4479-93ef-9c130dcc5a43", + "id": "2c394531-3cb5-413c-81a6-5ae2ebcb142d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -196654,7 +196654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef7892bf-fa18-4e41-866f-bd14074ea4fe", + "id": "535ffe88-fc4d-4db7-987a-062b880c5099", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -196698,7 +196698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "831dd63b-5cb8-485b-8a1e-5b23d5bb711e", + "id": "9fea6dd3-325e-49b1-b73e-ddf1622ba33b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -196742,7 +196742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dafd06a8-1da1-439f-86e5-1c5f306daacc", + "id": "51a07b0f-ae1b-465c-b676-05a60ee01885", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -196786,7 +196786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5789240-cf24-42b6-8206-90197043fd07", + "id": "d658b4e8-6a55-4814-81b6-fdd64ab21462", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -196836,7 +196836,7 @@ } }, { - "id": "b59be185-648f-456f-a34f-a116fd044db2", + "id": "4e887698-f899-41c2-b433-574292132a31", "name": "Update Tenant-wide Reassignment Configuration settings", "request": { "name": "Update Tenant-wide Reassignment Configuration settings", @@ -196879,7 +196879,7 @@ }, "response": [ { - "id": "baa481cc-ed65-404a-baff-22348bdc8d94", + "id": "b2bf60cd-e0e2-43f1-9a01-1bc76886ffcb", "name": "Tenant-wide Reassignment Configuration settings", "originalRequest": { "url": { @@ -196936,7 +196936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da90f991-089d-4dda-83a7-53724d6f157c", + "id": "539bfb6d-cb9e-4adc-b02f-06c399b85ec6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -196993,7 +196993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b478c061-2ae8-4cba-8828-61a883dd0e89", + "id": "50e0da00-7f51-4c2e-9ce3-b4ac12131319", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -197050,7 +197050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1870351d-cc1c-4bc7-940a-d8e3e5f96b8c", + "id": "743e5a58-b5ee-49ef-9ebb-9e036e1d7472", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -197107,7 +197107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "249544d1-1d2c-4912-8868-4c1c9bfa24f7", + "id": "03a2bc4e-f0f6-4fe6-91fc-c3f47cccd2a4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -197164,7 +197164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c58cc457-e1ec-42b6-9bc9-32dbf032ffde", + "id": "0280a080-9d86-44e8-bbef-ed90b3121c64", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -197233,7 +197233,7 @@ "description": "Workflows allow administrators to create custom automation scripts directly within IdentityNow. These automation scripts respond to [event triggers](https://developer.sailpoint.com/idn/docs/event-triggers#how-to-get-started-with-event-triggers) and perform a series of actions to perform tasks that are either too cumbersome or not available in the IdentityNow UI. Workflows can be configured via a graphical user interface within IdentityNow, or by creating and uploading a JSON formatted script to the Workflow service. The Workflows API collection provides the necessary functionality to create, manage, and test your workflows via REST.\n", "item": [ { - "id": "36f92c66-e0a9-44ba-bbd2-9c5653885904", + "id": "a1dfffdd-de9a-4244-8e7d-83dbc6328453", "name": "Create Workflow", "request": { "name": "Create Workflow", @@ -197275,7 +197275,7 @@ }, "response": [ { - "id": "ed1d105b-f782-4349-9b14-8d8facce95af", + "id": "715fec80-0bd2-494e-8c9b-638a23af5970", "name": "Event Trigger", "originalRequest": { "url": { @@ -197331,7 +197331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3216ea7d-2601-4495-8873-48903ad2a7d3", + "id": "4b26404c-1dc0-4705-9d42-055bf7b0dae5", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -197387,7 +197387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae49aa2a-286f-4daa-8b1d-fdc372a27d3e", + "id": "28a1161e-71e5-442f-aead-043636ea3b99", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -197443,7 +197443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a974f94a-6fe6-4943-b5e1-5ac69efd8b11", + "id": "24dc5f41-c2b3-4d0d-9cd7-03a4f8387253", "name": "Event Trigger", "originalRequest": { "url": { @@ -197499,7 +197499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7cd39e2-26be-48cc-bb5b-7f44594ee8e2", + "id": "903d0a3e-40a6-4900-9ed0-343e7e2c8153", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -197555,7 +197555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b92a3bf-62bf-44b0-939d-94d324671e30", + "id": "16b592eb-316f-4641-afc2-43c1df25be57", "name": "Event Trigger", "originalRequest": { "url": { @@ -197611,7 +197611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b74db38-679d-4014-af2a-78ce1af00d4a", + "id": "230c55d4-6140-4197-934d-52f79cd18d14", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -197673,7 +197673,7 @@ } }, { - "id": "6d256d16-40a2-476a-b574-be93770c75d6", + "id": "1c37e83a-1e53-4988-808b-f3b9220b3c36", "name": "List Workflows", "request": { "name": "List Workflows", @@ -197702,7 +197702,7 @@ }, "response": [ { - "id": "311831f9-ce21-47f5-bc74-ad0c2b078ea4", + "id": "b81a0f45-eafb-40e0-9311-6fad6a164ac3", "name": "List of workflows", "originalRequest": { "url": { @@ -197745,7 +197745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b86d343b-698e-49cb-a025-8abff15250e2", + "id": "d4483c0d-335b-46d0-ad82-3c55c781b90c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -197788,7 +197788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af55f41b-21d8-4027-8e6d-c06ff8229206", + "id": "52a1d6c6-6848-4bee-b217-cfc1257d9c3a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -197831,7 +197831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07f0bbe5-15c2-4126-bcad-04b939c011a7", + "id": "8421a3c0-91b3-48a4-b74f-257de7176862", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -197874,7 +197874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ba3eb0b-ec32-4a42-a514-6726f8d2ebb4", + "id": "5513bb41-10f9-4c3b-80eb-251e1d7b12cd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -197917,7 +197917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33084f4a-b18c-42ab-ae9a-60ba2b948d52", + "id": "4f426ad1-c642-4b10-8dff-b3309e61d965", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -197966,7 +197966,7 @@ } }, { - "id": "150c7454-9e6d-409b-a063-2d8bf6f852cd", + "id": "5e10eed9-3ffa-4dd8-9fa6-6640dffcf5f8", "name": "Get Workflow By Id", "request": { "name": "Get Workflow By Id", @@ -198007,7 +198007,7 @@ }, "response": [ { - "id": "d19096a6-ac1e-4394-87fc-80e0b4f8a2d5", + "id": "642a0eed-9395-4c62-91d8-6a6415217a03", "name": "The workflow object", "originalRequest": { "url": { @@ -198051,7 +198051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4b3712b-56de-42a6-8edd-8d7127278c2e", + "id": "90cea852-ed5c-485d-b3c1-eb94fd418b02", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -198095,7 +198095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6eabaeaf-f2ed-441f-b393-0754bca88960", + "id": "d79f54ed-2ddb-4b34-b4c2-a087307e8490", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -198139,7 +198139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a785609a-61ed-4c85-b042-879dd100bf0e", + "id": "cacc0be7-60d8-4122-a060-5cfd9e27cf0b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -198183,7 +198183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2612c01-dd6d-4460-a47e-2d312bf8f188", + "id": "36dd607c-1163-482c-ad85-6e71e4acb88d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -198227,7 +198227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7051f162-8b29-4e81-a0bc-07849cb1e93a", + "id": "db90c018-8d26-4726-a394-2b9408d37a9a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -198277,7 +198277,7 @@ } }, { - "id": "7d8bcc45-a628-4dd7-a8d3-4add4fc28d59", + "id": "05ee1c8c-310d-4c7f-a467-b87fd02f99f6", "name": "Update Workflow", "request": { "name": "Update Workflow", @@ -198331,7 +198331,7 @@ }, "response": [ { - "id": "b914b939-3dc7-4f42-9012-cf1174217e31", + "id": "9291c5dd-8d77-424d-8b90-8092c4c86c29", "name": "The Workflow object", "originalRequest": { "url": { @@ -198388,7 +198388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be0324a5-6f36-448e-a3d6-48ac76aac17d", + "id": "e0c54ece-e4a2-4fa1-a194-4776cfef82bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -198445,7 +198445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8131e2ec-6da1-4635-93ef-9a2ba742d643", + "id": "c0deea9a-b24b-4f1c-b966-c138095a99bf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -198502,7 +198502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84d9610e-a626-469b-a8f4-e0c667e62be2", + "id": "6e1b963e-2275-4bbc-b515-3a3bb1d0e0a4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -198559,7 +198559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97e56d67-ed6d-48f5-a1a9-8f42401d9c3f", + "id": "206e93ee-1702-47d3-a6c8-5dda7423e840", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -198616,7 +198616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d7c517a-d2a3-42e8-885b-629c08af46e9", + "id": "86848d3b-b90a-498a-a474-080378d3e4d0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -198679,7 +198679,7 @@ } }, { - "id": "c99ff790-242a-449e-8206-53e67f9f4b96", + "id": "f14bbcd9-0466-458c-99f2-ea5ff7514e8f", "name": "Patch Workflow", "request": { "name": "Patch Workflow", @@ -198733,7 +198733,7 @@ }, "response": [ { - "id": "555667fc-db65-4eb1-8eb5-2b61a80d2c35", + "id": "1da23332-7507-4ce4-a01d-ca10e3470a8c", "name": "The Workflow object", "originalRequest": { "url": { @@ -198790,7 +198790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8ed4dc9-7c78-4d3d-9647-aa0102d384b0", + "id": "9c271363-e685-4171-9f71-f86934b9ca82", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -198847,7 +198847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "321253dd-cff5-48e3-8c65-16aaf13db2dd", + "id": "5ca1a2f3-228e-4e57-8820-729484606e4c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -198904,7 +198904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3e9ff8d-d5ba-441c-a265-3d22e47bc49e", + "id": "c58d76a3-f120-4154-897d-9983ca4ad07e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -198961,7 +198961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13fbd218-cba1-43af-9d42-6bc081a3ccd1", + "id": "1e3d8b5b-9e20-46fe-9afb-6f8fd815dcfb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -199018,7 +199018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "667bbd90-ed21-4ab5-baba-75f8b5932c58", + "id": "a0964e8e-b09a-4dfe-aab2-45f1a4df90b1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -199081,7 +199081,7 @@ } }, { - "id": "b151ddfc-af22-45c3-bbce-7e93f7a057e7", + "id": "89cf4706-d9f9-47ca-93dd-b9d000fe16f6", "name": "Delete Workflow By Id", "request": { "name": "Delete Workflow By Id", @@ -199122,7 +199122,7 @@ }, "response": [ { - "id": "0b8001f2-2bd9-4669-97af-76157c4d4f17", + "id": "a961cbee-0f3f-4030-ba82-72fbf158e451", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -199156,7 +199156,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f3e1655b-107c-4162-8459-bcd18395ea3f", + "id": "739def29-641d-47c7-8898-64097ea81638", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -199200,7 +199200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e3d5da9-e3c5-4e5c-9ae8-83bcbeb96ee8", + "id": "28967d14-2dec-4493-bf49-6730ba7a0ffa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -199244,7 +199244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5da0f059-cfcc-4faa-bdc9-2ee192c4c8a5", + "id": "4c7b94f3-935d-4266-a554-72287e011fbf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -199288,7 +199288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40e489ac-b528-4024-9f03-8a9eec211f5f", + "id": "a3a27b28-38bf-47bb-b961-30342a5d442e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -199332,7 +199332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8b04a09-c3ac-468a-b9d8-e03e43de0c9c", + "id": "b90b3fd3-1739-484b-852b-db8c7b0dc4dd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -199382,7 +199382,7 @@ } }, { - "id": "4c8ec844-59f8-477e-88fa-7cf62e9e9462", + "id": "19c1b91e-c2d2-43a5-b65b-578f4eafb9cd", "name": "Test Workflow By Id", "request": { "name": "Test Workflow By Id", @@ -199437,7 +199437,7 @@ }, "response": [ { - "id": "127bcc73-367c-4e0e-abd6-73e8dff0f036", + "id": "0646a06d-a5ac-4912-845e-f2d5c4794aa9", "name": "The Workflow object", "originalRequest": { "url": { @@ -199495,7 +199495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16b1ee4a-475a-41e2-84e7-1dfd7eb275f2", + "id": "1c172453-4bf0-4629-ad6c-1f9c5f887d5e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -199553,7 +199553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f47fe93d-9682-48fa-9cf8-fe03fe6a1839", + "id": "358e4045-2fed-4855-90d8-2ac7784daf28", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -199611,7 +199611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c49c1440-4255-4dc5-aa7d-901381448c32", + "id": "d86f9895-bac1-4205-8ecf-803a2f58f5a0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -199669,7 +199669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fa6fb71-52e8-4cec-a0e3-90cd0fa14730", + "id": "6e94b5bf-7ec9-48ab-80d0-21e2f0701d8b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -199727,7 +199727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30dde63a-f243-4aa6-b7d1-3c7192a56811", + "id": "930bb3e2-9ba3-4be6-bd1f-2828fd13384c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -199791,7 +199791,7 @@ } }, { - "id": "802acc93-a7d1-430f-85e3-9c51050781ff", + "id": "e9f1be22-1e41-4400-8a38-47917128a5c9", "name": "List Workflow Executions", "request": { "name": "List Workflow Executions", @@ -199870,7 +199870,7 @@ }, "response": [ { - "id": "092b7368-3192-45f3-ad7a-c73ec783167c", + "id": "4e014619-1723-4c2a-977a-ab4629eb52b4", "name": "List of workflow executions for the given workflow", "originalRequest": { "url": { @@ -199952,7 +199952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "346415fe-54be-4a60-bd16-27e18b7ca25c", + "id": "988e4ec8-62a5-4021-9dd3-525c0a20a659", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -200034,7 +200034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e3beda7-3f3b-4e90-9a6b-f8a15bd94649", + "id": "f9f2fc80-f3c7-43f4-bd7f-73abbe492441", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -200116,7 +200116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb4512ea-240d-4313-86cc-8e031008ee26", + "id": "15cb0f78-41af-4fd7-931e-51ca3a078c9f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -200198,7 +200198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2549b131-c300-40ed-8996-904002311d8e", + "id": "c1592926-fac0-4a10-bb1c-0d0115da1138", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -200280,7 +200280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4c21a4b-b0af-4759-941f-c468fd02ba1d", + "id": "24f6c386-d9a5-40fa-bdad-ca884105ac53", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -200362,7 +200362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8b224df-f5e7-4858-a48f-30905b425479", + "id": "058a550d-9221-4bf3-a958-784077b91d00", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -200450,7 +200450,7 @@ } }, { - "id": "f4cbca50-13c4-4dbb-a03a-b4d2d66952c6", + "id": "77248dc8-4c42-4bb9-ba0a-63a8c04ef2b3", "name": "Get a Workflow Execution", "request": { "name": "Get a Workflow Execution", @@ -200491,7 +200491,7 @@ }, "response": [ { - "id": "0b752105-d896-44ed-9033-de3f1dfaa7ce", + "id": "ef4e9623-0f60-4f3c-80f3-e11d174b16b9", "name": "The workflow execution", "originalRequest": { "url": { @@ -200535,7 +200535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59416ade-ec4f-459f-889e-95fc824efc99", + "id": "0e43a717-460b-4715-a3bc-bf7aebfde2cf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -200579,7 +200579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eaea12f7-2621-4032-8cf8-078bf909836c", + "id": "1f0879f7-2e7c-41a0-bb37-cec9217a45dc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -200623,7 +200623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51c99785-2416-4b74-aeb8-39470d0aa0ba", + "id": "79221ffc-9b57-4797-898c-15445b01f941", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -200667,7 +200667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cff7747-2dd4-489d-b247-304a429f9f6d", + "id": "5e234e63-1c0e-473f-9feb-e11108290ac0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -200711,7 +200711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3a4e038-2788-41ee-a5af-524e08983027", + "id": "45dbf875-87f9-45d9-87fe-acac71fd88a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -200755,7 +200755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4af4870-c8a9-4293-87e8-af2051f976f0", + "id": "207eaa6a-c338-47b9-9fb3-eeecdca956d9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -200805,7 +200805,7 @@ } }, { - "id": "303a61f0-e7d0-4a93-8125-ac4cc5c1fcfb", + "id": "916c2c16-95ed-49f2-a10a-ace99595cfdf", "name": "Get Workflow Execution History", "request": { "name": "Get Workflow Execution History", @@ -200847,7 +200847,7 @@ }, "response": [ { - "id": "56d9ba07-c5a6-4104-8ec0-611c5f1bd8ad", + "id": "867008d5-5d7c-4913-a21e-08d7fea46b49", "name": "List of workflow execution events for the given workflow execution", "originalRequest": { "url": { @@ -200892,7 +200892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "610f043a-d7a2-40ea-9c66-df7aaa9e149c", + "id": "ca6f9e1d-0d84-4282-a96d-a9be9a4aeed9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -200937,7 +200937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3359a9c5-dc52-45da-8b6b-3f6fe4760fa5", + "id": "6e23799f-4370-4f9c-bbde-038d217c2db5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -200982,7 +200982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01384b81-4367-4e69-b7e4-178d3c444eb9", + "id": "598dd229-c957-4fca-b7d6-839325ee8544", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -201027,7 +201027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84bc4708-5639-4001-abff-ab11f1c78507", + "id": "dfcf40ac-68c2-406b-80a0-de59ae012a8e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -201072,7 +201072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "736d7a39-dd3d-44dc-827b-813572dd56e7", + "id": "875f1999-c8ee-495e-8c4b-a4098d24a5d5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -201117,7 +201117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9352cd1-3374-4a00-a216-052869ebff19", + "id": "09706155-8a91-4960-8106-02722ef20e3a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -201168,7 +201168,7 @@ } }, { - "id": "410b1f17-22da-4a42-ad9f-50643954fabd", + "id": "63b892d9-5f36-424a-9922-8c58a69ed1d4", "name": "Cancel Workflow Execution by ID", "request": { "name": "Cancel Workflow Execution by ID", @@ -201210,7 +201210,7 @@ }, "response": [ { - "id": "8f91dcdb-4564-494a-9b8c-929d91e76446", + "id": "36b69cd9-c2eb-4924-9daf-78e59bb89a83", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -201245,7 +201245,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ad63dfd8-fd48-4545-979d-666a2afe39d9", + "id": "c14ce5f7-cd82-493a-8578-8c23cd707c4d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -201290,7 +201290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cd48799-51c4-466a-9d2c-d8751bdd0c9d", + "id": "ba83f3fd-6f6e-47e6-bd90-23bdedbf3c18", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -201335,7 +201335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b15c700-02f0-4e87-a39a-6b229351200c", + "id": "c0bf469b-5622-40c4-99a8-db07562edb2c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -201380,7 +201380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "381d5b50-5410-4573-b308-7d07f8b418b3", + "id": "0efbc4b2-afef-4cfb-8257-1a8df2eff631", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -201425,7 +201425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50cffc9d-cd6f-49ce-b2b8-83b39a056c56", + "id": "1ee1e5aa-51f4-4f26-afaf-32824b2cde0d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -201470,7 +201470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eac24452-d7dd-47fc-ad25-3542bdac28ec", + "id": "267de836-f931-4cd7-8cb0-4dc43aaf0da1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -201521,7 +201521,7 @@ } }, { - "id": "51683578-a8ba-435f-8a35-9db95683ce27", + "id": "a56beb5b-8b4d-4e54-84cd-749ee1855853", "name": "List Complete Workflow Library", "request": { "name": "List Complete Workflow Library", @@ -201569,7 +201569,7 @@ }, "response": [ { - "id": "7262cbb0-fb9b-4788-b8c3-cec7b1da82a8", + "id": "09497444-676c-472e-a13f-a3282503c852", "name": "List of workflow steps", "originalRequest": { "url": { @@ -201631,7 +201631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4c4c274-ae72-4251-afa9-1126dd6d357c", + "id": "ebf4d2e3-fd08-4713-84fd-8e569ac2c0c1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -201693,7 +201693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85d40ec3-892e-4a9f-a1e8-a1c1366233e1", + "id": "4fc4227a-6a1f-44cc-83e9-9f2a897d2cea", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -201755,7 +201755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56bf918c-d68d-4f88-b606-108a39f1f0d6", + "id": "c1f6faab-6dc6-4e1a-a92f-f4a674f2d66c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -201817,7 +201817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07b70b2f-2eda-4253-a633-d915a5bb0b5e", + "id": "72ac2bc4-4a47-4874-b4d3-02f6f358c6d1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -201879,7 +201879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cba4b3ad-b723-4a68-8720-48d55f35e71c", + "id": "5564ddd2-4e68-4879-92c5-5de21a816fb0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -201947,7 +201947,7 @@ } }, { - "id": "2730e725-364c-49bb-8589-cf5f63828c51", + "id": "63b023d4-9b62-4c34-a309-03a6e4a9d754", "name": "List Workflow Library Actions", "request": { "name": "List Workflow Library Actions", @@ -202005,7 +202005,7 @@ }, "response": [ { - "id": "108c9ab1-80ba-49d0-aa53-5a41dd52eacc", + "id": "50a14bfb-f6dc-4f9d-9bb5-c0fdd94fda0e", "name": "List of workflow actions", "originalRequest": { "url": { @@ -202077,7 +202077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d1b35c8-84ed-4fcf-90ab-17fbf2bc0188", + "id": "90ede510-a98e-4fdb-a705-2967ec49d8d3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -202149,7 +202149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a1ba743-bdd4-4d18-b62a-208a7317ed57", + "id": "f7dfcf93-7d58-432d-9ae7-f1e5876aa2f3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -202221,7 +202221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fed2fc6-668a-4500-a98c-368072b5d80d", + "id": "c9d517c4-c98e-44b0-86d2-b879b5c89e68", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -202293,7 +202293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14d5d4e4-cd28-441a-b406-eaa8b2c5490a", + "id": "5a2610fe-d452-42fa-bc04-cfbdce39bbfa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -202365,7 +202365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d14d7271-6de0-4f00-b61d-1d488ed97890", + "id": "35cf115a-017b-4885-ae29-44f875d547ea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -202443,7 +202443,7 @@ } }, { - "id": "cf1d3f83-8373-4a41-b2c1-d9407732493d", + "id": "e27256be-0e58-40db-b0df-3a3cf576bd28", "name": "List Workflow Library Triggers", "request": { "name": "List Workflow Library Triggers", @@ -202501,7 +202501,7 @@ }, "response": [ { - "id": "76afa672-b8d1-4d14-8c76-fa7f35549216", + "id": "9636d960-aa04-44f9-a7b6-dfe5ba06a57c", "name": "List of workflow triggers", "originalRequest": { "url": { @@ -202573,7 +202573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "921ba3f4-73e0-4fdd-903c-047d86eca0bf", + "id": "83710bdd-4f5e-4447-84ec-da9bfbb62769", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -202645,7 +202645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15c4a3d2-c9e7-451b-a5e1-84331c2f4282", + "id": "062dd297-b7b3-47a1-861e-13d160d5cc8b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -202717,7 +202717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "290ef372-62e4-4f29-9084-be4d2bb17f40", + "id": "1abe055e-421a-4004-a163-4af02f1d96d0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -202789,7 +202789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f459820-c24d-43a9-b326-e50f9de984c7", + "id": "9a194039-b59a-4512-bf70-7181e1b4be26", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -202861,7 +202861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c5a8766-bad7-408d-bdd9-51b9cbb52aa0", + "id": "5127e8ca-1ed4-49cc-805d-a4878d0634b3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -202939,7 +202939,7 @@ } }, { - "id": "43ab9a70-d88c-484f-aa10-bbe5a515a0a6", + "id": "87f5e5a9-8c20-471e-b091-fa81637d2ea4", "name": "List Workflow Library Operators", "request": { "name": "List Workflow Library Operators", @@ -202969,7 +202969,7 @@ }, "response": [ { - "id": "e1f2d4ef-b9fe-49d3-a648-b9d35bfa57a1", + "id": "d84b3154-ae1b-44cd-ba44-c7cf1d73eb54", "name": "List of workflow operators", "originalRequest": { "url": { @@ -203013,7 +203013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81865f7d-16bf-4948-9744-18f0aff9355c", + "id": "28649faa-50a0-4f40-904e-7663d8d12cd5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -203057,7 +203057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c039855a-387c-4b15-aec1-cda22430ece4", + "id": "26d802b3-0cf4-41a2-9b1d-1519c2d59735", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -203101,7 +203101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04acb10c-e296-4e49-805f-ed94296d016e", + "id": "529e56c2-5463-408d-8363-75cf9bdec692", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -203145,7 +203145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e84dd3c6-a58c-4d5a-ae99-805aeba3295a", + "id": "67254cbf-9882-4e58-91e3-e0d928f03157", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -203189,7 +203189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ef9933a-2c44-4c52-97b4-5c5878cd1ab6", + "id": "3fb59049-3126-4945-a626-7551a728aa5b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -203239,7 +203239,7 @@ } }, { - "id": "36907b54-ece1-4887-bb84-7ffb01a986e6", + "id": "9c4b99c2-d661-4c25-8bf8-65cf6457cab5", "name": "Generate External Trigger OAuth Client", "request": { "name": "Generate External Trigger OAuth Client", @@ -203282,7 +203282,7 @@ }, "response": [ { - "id": "328c3427-35c1-4458-b5cd-1959156691ea", + "id": "96288163-15f0-4acb-87d9-88ac026a870b", "name": "The OAuth Client object", "originalRequest": { "url": { @@ -203328,7 +203328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6840c4d-d297-4338-9dc9-16c6594fe8e1", + "id": "675d4c89-cc3b-42f7-a031-45be7506ac43", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -203374,7 +203374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11199a9e-9bc6-444b-a61f-2f289a778f34", + "id": "456f9e15-a8d7-4e38-bb24-430031dcda12", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -203420,7 +203420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abd21dd6-c96e-412c-9dcf-cf852b8543fc", + "id": "d315924d-8cdb-4384-ae8e-ef60a5ade9de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -203466,7 +203466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51b340e3-a357-4417-a853-0915561476fb", + "id": "fb46ce4f-0e71-4efa-8733-d2727330e246", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -203512,7 +203512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "807c8aec-aed9-495a-bda0-5958a4bfc1cd", + "id": "571b2558-c27e-46d7-9892-ca3829eac836", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -203564,7 +203564,7 @@ } }, { - "id": "5c857a5c-29ad-40a2-9852-6befd1aedcc8", + "id": "dfdf3774-4e2a-428f-ac83-2bb206a2efa8", "name": "Execute Workflow via External Trigger", "request": { "name": "Execute Workflow via External Trigger", @@ -203620,7 +203620,7 @@ }, "response": [ { - "id": "1c6cce8d-ca24-4688-a077-fad8a0857985", + "id": "a075d97c-ad93-40fb-9f3a-46f7d78c426a", "name": "The Workflow object", "originalRequest": { "url": { @@ -203679,7 +203679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17c368d9-88f4-4141-8280-454b2b2cdfa0", + "id": "940f6b68-7a60-401c-82bf-59e3cc6266ef", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -203738,7 +203738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdb9bc64-7113-4347-8d80-f40eed10aba7", + "id": "b5190147-52e7-4014-a6b6-ea1f75414d14", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -203797,7 +203797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3818080-f3b5-4ef2-918c-d2fbad1132b8", + "id": "60ba272e-9f2f-426a-a5e8-351ca769bd23", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -203856,7 +203856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4712c404-14b3-4141-935e-6b0bbd9b70b3", + "id": "4f48d35c-b88e-4ab5-b9ef-19ac7e294ef0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -203915,7 +203915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37053a5f-1105-4345-b7fe-117a8cbdde6b", + "id": "887fdd48-9da0-40d5-80da-1d2d03ca620a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -203980,7 +203980,7 @@ } }, { - "id": "4126a91a-d3bd-4a8d-83cd-7861636f957e", + "id": "d3572aa3-6a18-4a7c-9202-1888cb20d08b", "name": "Test Workflow via External Trigger", "request": { "name": "Test Workflow via External Trigger", @@ -204037,7 +204037,7 @@ }, "response": [ { - "id": "c36ec244-1e40-45da-84df-c70f17c99e1c", + "id": "c36fea8f-3213-4024-b483-d5644a72e258", "name": "Responds with the test input", "originalRequest": { "url": { @@ -204097,7 +204097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b85f5ac-939b-4bb7-afa7-8c8e2db32a70", + "id": "0ef34eea-e573-476f-a0a9-8f45f77d2791", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -204157,7 +204157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "733ffe8c-02ac-484f-886d-bf21709d214d", + "id": "9c7f931f-01b8-4b11-8bb4-3616e3c52db1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -204217,7 +204217,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95b49e72-e247-4569-a0e9-997816748ced", + "id": "baf1d1f5-c38b-4d02-a341-da20ae84a925", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -204277,7 +204277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c28e71d-620f-4553-bef0-0d563bd75824", + "id": "5255b596-b74e-4af1-b779-ce6c40b3d60f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -204337,7 +204337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d18a469f-b8fb-4c6e-81ed-285f574dc162", + "id": "e5a5ee5e-0bd9-45e7-9cda-111cde7ebbc4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -204483,7 +204483,7 @@ } ], "info": { - "_postman_id": "71f8ce4d-6ad7-4076-87cf-da4244a681a5", + "_postman_id": "0590bcdf-81b9-4349-b4e8-11692c525f6d", "name": "IdentityNow Beta API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": { diff --git a/postman/collections/sailpoint-api-nerm.json b/postman/collections/sailpoint-api-nerm.json index 98f728f..7d548bf 100644 --- a/postman/collections/sailpoint-api-nerm.json +++ b/postman/collections/sailpoint-api-nerm.json @@ -5,7 +5,7 @@ "description": "", "item": [ { - "id": "ae366810-b4be-4e34-bc6d-fc0bb77a813c", + "id": "8fa21a60-b4e7-4c2a-b937-7256937a788d", "name": "Create a new user", "request": { "name": "Create a new user", @@ -48,7 +48,7 @@ }, "response": [ { - "id": "e9a59821-0384-43dd-9c95-73de2a2cfd63", + "id": "f0c3f265-1c01-4340-b1c9-4f4875cc227e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -99,12 +99,12 @@ "value": "application/json" } ], - "body": "{\n \"user\": {\n \"id\": \"urn:uuid:74df0573-841b-f44a-c4ef-733f0c612851\",\n \"uid\": \"consecteturconsectetur aute sedi\",\n \"name\": \"irure \",\n \"email\": \"O57gQy3u@MWSMcqxnTTYNvNnoKIuUYacihKMO.zgd\",\n \"type\": \"NeprofileUser\",\n \"title\": \"dolore culpa ipsum qui\",\n \"status\": \"Disabled\",\n \"login\": \"id reprehenderit incididunt\",\n \"last_login\": \"1983-06-20T01:50:32.483Z\",\n \"cookies_accepted_at\": \"1983-10-07T11:13:27.403Z\",\n \"preferred_language\": \"ea\"\n }\n}", + "body": "{\n \"user\": {\n \"id\": \"urn:uuid:7b77fd6c-7990-c51d-9dcd-456f1dc39972\",\n \"uid\": \"Ut veniam ipsum magnareprehender\",\n \"name\": \"ex labore\",\n \"email\": \"MH5l5zqhgtNXM@BqPmHu.yfp\",\n \"type\": \"NeprofileUser\",\n \"title\": \"officia magna Excepteur aliquip\",\n \"status\": \"Active\",\n \"login\": \"nisi eu\",\n \"last_login\": \"1988-12-02T08:56:14.693Z\",\n \"cookies_accepted_at\": \"1950-10-28T16:59:08.845Z\",\n \"preferred_language\": \"magna id eiusmod\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "010a2dad-abd5-4a63-9456-551b466cc061", + "id": "c7263108-e8b8-4860-9c77-38ad6a58891e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -160,7 +160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "740dff21-3125-4bab-a8a6-ea92c8c6fa0d", + "id": "5c4aa59d-1212-4c3c-be00-771ba8b8f86f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -222,7 +222,7 @@ } }, { - "id": "67e25510-a5c2-45d7-8a42-2676496cdccf", + "id": "e46a4497-8ddc-4114-8b9e-57f701e7fd4f", "name": "Get users", "request": { "name": "Get users", @@ -272,7 +272,7 @@ "type": "text/plain" }, "key": "name", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -281,7 +281,7 @@ "type": "text/plain" }, "key": "login", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -290,7 +290,7 @@ "type": "text/plain" }, "key": "title", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -299,7 +299,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "Terminated" }, { "disabled": false, @@ -308,7 +308,7 @@ "type": "text/plain" }, "key": "email", - "value": "yAGLnDoL1Kl1fD@UkuMP.zz" + "value": "kqgQEg8IOrjFILz@kyoxoGayijaNbGMTaoNZJhhEiRkjumm.vm" }, { "disabled": false, @@ -334,7 +334,7 @@ }, "response": [ { - "id": "49831da0-1e3b-45d9-bf94-6e4a5eb3aba2", + "id": "2f733534-6319-46dc-94e8-ae641176f1b4", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -379,7 +379,7 @@ "type": "text/plain" }, "key": "name", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -388,7 +388,7 @@ "type": "text/plain" }, "key": "login", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -397,7 +397,7 @@ "type": "text/plain" }, "key": "title", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -406,7 +406,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "Terminated" }, { "disabled": false, @@ -415,7 +415,7 @@ "type": "text/plain" }, "key": "email", - "value": "yAGLnDoL1Kl1fD@UkuMP.zz" + "value": "kqgQEg8IOrjFILz@kyoxoGayijaNbGMTaoNZJhhEiRkjumm.vm" }, { "disabled": false, @@ -454,12 +454,12 @@ "value": "application/json" } ], - "body": "{\n \"users\": [\n {\n \"id\": \"urn:uuid:5ada9ddf-f98b-5100-5275-0a80ecf94552\",\n \"uid\": \"voluptate dolore dolor Ut deseru\",\n \"name\": \"ess\",\n \"email\": \"NOVQ7ikYPlm7HsW@jr.wokf\",\n \"type\": \"NeprofileUser\",\n \"title\": \"ut voluptate\",\n \"status\": \"Active\",\n \"login\": \"cupidatat ullamco irure\",\n \"last_login\": \"2014-04-27T08:37:46.671Z\",\n \"cookies_accepted_at\": \"1951-02-07T13:59:57.761Z\",\n \"preferred_language\": \"commodo culpa proident\"\n },\n {\n \"id\": \"24350ffe-fe0b-7419-208a-9e5e817a268c\",\n \"uid\": \"aliquip Ut enimdolore aliquip re\",\n \"name\": \"deserunt Ut aliqua dolore consectetur\",\n \"email\": \"sMzn1@idvZrUSaeuKKpjMlgvTnkgZMBByOt.ba\",\n \"type\": \"NeprofileUser\",\n \"title\": \"in\",\n \"status\": \"Active\",\n \"login\": \"Lorem\",\n \"last_login\": \"2002-01-23T01:10:04.323Z\",\n \"cookies_accepted_at\": \"2023-04-18T12:42:38.690Z\",\n \"preferred_language\": \"officia fugiat aliquip\"\n }\n ],\n \"_metadata\": {\n \"limit\": -87407258,\n \"offset\": 56628262,\n \"total\": -61679419,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"users\": [\n {\n \"id\": \"urn:uuid:a8ffd00f-b974-3bac-55d8-c1f71cb8e596\",\n \"uid\": \"enim Duis Loremsed proidentest d\",\n \"name\": \"labore ullamco Lorem non Duis\",\n \"email\": \"YnF7ss-7rUV@TWkRVYWjuKOutEBuxdfWDSoxGUJFVu.sqxg\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Duis\",\n \"status\": \"Disabled\",\n \"login\": \"amet sit cupidatat quis\",\n \"last_login\": \"1984-04-22T23:19:44.689Z\",\n \"cookies_accepted_at\": \"1992-03-07T01:24:04.684Z\",\n \"preferred_language\": \"non Excepteur ut laborum\"\n },\n {\n \"id\": \"urn:uuid:352905d4-e20e-af8f-c6b0-6d35d7938e29\",\n \"uid\": \"Excepteur aliquip fugiat docupid\",\n \"name\": \"cillum\",\n \"email\": \"xKIKVEbEXHrE2V@YjSGWNSwSqUjpmivUhTsSovBu.tni\",\n \"type\": \"NeprofileUser\",\n \"title\": \"ex anim\",\n \"status\": \"Active\",\n \"login\": \"irure D\",\n \"last_login\": \"2014-03-08T06:23:42.076Z\",\n \"cookies_accepted_at\": \"1971-05-18T00:26:57.719Z\",\n \"preferred_language\": \"eiusmod esse sunt voluptate\"\n }\n ],\n \"_metadata\": {\n \"limit\": -90640229,\n \"offset\": -87483408,\n \"total\": -35832573,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ca0e8be2-2fe2-4d0a-82f7-9f8083cc7a5d", + "id": "ebdffb5d-9e50-4ecf-a0d1-48913a42b92f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -504,7 +504,7 @@ "type": "text/plain" }, "key": "name", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -513,7 +513,7 @@ "type": "text/plain" }, "key": "login", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -522,7 +522,7 @@ "type": "text/plain" }, "key": "title", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -531,7 +531,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "Terminated" }, { "disabled": false, @@ -540,7 +540,7 @@ "type": "text/plain" }, "key": "email", - "value": "yAGLnDoL1Kl1fD@UkuMP.zz" + "value": "kqgQEg8IOrjFILz@kyoxoGayijaNbGMTaoNZJhhEiRkjumm.vm" }, { "disabled": false, @@ -584,7 +584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92cd1489-7b54-45ba-9346-5acca0848168", + "id": "c4213010-b066-4189-8807-f3fe148af65f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -629,7 +629,7 @@ "type": "text/plain" }, "key": "name", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -638,7 +638,7 @@ "type": "text/plain" }, "key": "login", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -647,7 +647,7 @@ "type": "text/plain" }, "key": "title", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -656,7 +656,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "Terminated" }, { "disabled": false, @@ -665,7 +665,7 @@ "type": "text/plain" }, "key": "email", - "value": "yAGLnDoL1Kl1fD@UkuMP.zz" + "value": "kqgQEg8IOrjFILz@kyoxoGayijaNbGMTaoNZJhhEiRkjumm.vm" }, { "disabled": false, @@ -715,7 +715,7 @@ } }, { - "id": "f56d0b28-08ec-4217-a897-a121fedf3b5a", + "id": "29143ea9-7244-41f0-85f2-6996017b90c5", "name": "Create multiple new users", "request": { "name": "Create multiple new users", @@ -758,7 +758,7 @@ }, "response": [ { - "id": "3d96e535-d95f-4f37-8ebf-c449cb35fe90", + "id": "8b086b39-94ca-483f-bea5-884ccf5da7da", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -809,12 +809,12 @@ "value": "application/json" } ], - "body": "{\n \"users\": [\n {\n \"id\": \"urn:uuid:91836fb0-b0f2-7a7e-2fda-0d81ede1632f\",\n \"uid\": \"nulla do Utoccaecatlaboris exerc\",\n \"name\": \"minim irure aliqua\",\n \"email\": \"V32@ZkZLzVuQQwcMVRgjFP.zpet\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Lorem exercitation labore dolore\",\n \"status\": \"Disabled\",\n \"login\": \"officia dolore\",\n \"last_login\": \"1973-03-01T04:20:33.266Z\",\n \"cookies_accepted_at\": \"1974-08-05T09:40:07.274Z\",\n \"preferred_language\": \"reprehenderit laboris dolore incididunt\"\n },\n {\n \"id\": \"c52619dc-2d84-d2e1-2a16-e42492ec4128\",\n \"uid\": \"ea ut veniameudolor labore nulla\",\n \"name\": \"enim\",\n \"email\": \"8XhLbbiW3Vi@RKEAvcfrCvrQ.llpv\",\n \"type\": \"NeprofileUser\",\n \"title\": \"tempor proident esse\",\n \"status\": \"Active\",\n \"login\": \"proident velit\",\n \"last_login\": \"2014-10-23T13:48:07.554Z\",\n \"cookies_accepted_at\": \"2014-03-21T19:52:07.439Z\",\n \"preferred_language\": \"nulla elit\"\n }\n ]\n}", + "body": "{\n \"users\": [\n {\n \"id\": \"urn:uuid:224de03c-6d84-de48-39dd-860264bb4cfb\",\n \"uid\": \"sint elit cupidatataliqua veniam\",\n \"name\": \"elit ut et minim\",\n \"email\": \"c19j07uGi9a@DwjHCZbsLHdyxoyuBoNTxcyWerI.tk\",\n \"type\": \"NeprofileUser\",\n \"title\": \"con\",\n \"status\": \"Active\",\n \"login\": \"ut aliquip reprehenderit\",\n \"last_login\": \"1969-04-23T18:22:50.566Z\",\n \"cookies_accepted_at\": \"1950-10-11T00:39:22.190Z\",\n \"preferred_language\": \"dolore voluptate d\"\n },\n {\n \"id\": \"urn:uuid:707677a4-d78b-4800-4644-238d288a14ce\",\n \"uid\": \"dolore eiusmod consectetur etin \",\n \"name\": \"pariatur deserunt\",\n \"email\": \"YPPCNYwfdO@afNxTzzlPhLl.pg\",\n \"type\": \"NeprofileUser\",\n \"title\": \"sit do labore consectetur\",\n \"status\": \"Active\",\n \"login\": \"cupidatat non nostrud\",\n \"last_login\": \"1983-04-06T08:26:40.765Z\",\n \"cookies_accepted_at\": \"2012-10-17T09:43:02.007Z\",\n \"preferred_language\": \"ea\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6cdf7c37-9063-49a2-850e-2195c441b9e4", + "id": "ee7fb1a4-2967-486c-ae1b-85af4b8b83a7", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -870,7 +870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87a8b2bb-56f4-472e-8243-1b61e5c91ff4", + "id": "6203a9bf-2698-44be-b8a7-975b9ca1b446", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -932,7 +932,7 @@ } }, { - "id": "4b7b930e-6c79-41da-834c-9db801d3bbf0", + "id": "4a06f179-75e0-4386-9ddc-1b5631d1baae", "name": "Update multiple users", "request": { "name": "Update multiple users", @@ -975,7 +975,7 @@ }, "response": [ { - "id": "7a6988e7-2142-409a-bbdd-fd3724abaf63", + "id": "ed703f8f-46fb-4002-b5f3-3b0b4681860d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1026,12 +1026,12 @@ "value": "application/json" } ], - "body": "{\n \"users\": [\n {\n \"id\": \"urn:uuid:91836fb0-b0f2-7a7e-2fda-0d81ede1632f\",\n \"uid\": \"nulla do Utoccaecatlaboris exerc\",\n \"name\": \"minim irure aliqua\",\n \"email\": \"V32@ZkZLzVuQQwcMVRgjFP.zpet\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Lorem exercitation labore dolore\",\n \"status\": \"Disabled\",\n \"login\": \"officia dolore\",\n \"last_login\": \"1973-03-01T04:20:33.266Z\",\n \"cookies_accepted_at\": \"1974-08-05T09:40:07.274Z\",\n \"preferred_language\": \"reprehenderit laboris dolore incididunt\"\n },\n {\n \"id\": \"c52619dc-2d84-d2e1-2a16-e42492ec4128\",\n \"uid\": \"ea ut veniameudolor labore nulla\",\n \"name\": \"enim\",\n \"email\": \"8XhLbbiW3Vi@RKEAvcfrCvrQ.llpv\",\n \"type\": \"NeprofileUser\",\n \"title\": \"tempor proident esse\",\n \"status\": \"Active\",\n \"login\": \"proident velit\",\n \"last_login\": \"2014-10-23T13:48:07.554Z\",\n \"cookies_accepted_at\": \"2014-03-21T19:52:07.439Z\",\n \"preferred_language\": \"nulla elit\"\n }\n ]\n}", + "body": "{\n \"users\": [\n {\n \"id\": \"urn:uuid:224de03c-6d84-de48-39dd-860264bb4cfb\",\n \"uid\": \"sint elit cupidatataliqua veniam\",\n \"name\": \"elit ut et minim\",\n \"email\": \"c19j07uGi9a@DwjHCZbsLHdyxoyuBoNTxcyWerI.tk\",\n \"type\": \"NeprofileUser\",\n \"title\": \"con\",\n \"status\": \"Active\",\n \"login\": \"ut aliquip reprehenderit\",\n \"last_login\": \"1969-04-23T18:22:50.566Z\",\n \"cookies_accepted_at\": \"1950-10-11T00:39:22.190Z\",\n \"preferred_language\": \"dolore voluptate d\"\n },\n {\n \"id\": \"urn:uuid:707677a4-d78b-4800-4644-238d288a14ce\",\n \"uid\": \"dolore eiusmod consectetur etin \",\n \"name\": \"pariatur deserunt\",\n \"email\": \"YPPCNYwfdO@afNxTzzlPhLl.pg\",\n \"type\": \"NeprofileUser\",\n \"title\": \"sit do labore consectetur\",\n \"status\": \"Active\",\n \"login\": \"cupidatat non nostrud\",\n \"last_login\": \"1983-04-06T08:26:40.765Z\",\n \"cookies_accepted_at\": \"2012-10-17T09:43:02.007Z\",\n \"preferred_language\": \"ea\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d2b54d3a-9abd-4914-ba03-bb4f484b2f8d", + "id": "16ef38c1-ed16-4976-8693-0b4577c2110b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1087,7 +1087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8445da0-4373-431d-a1d1-94c8899244fd", + "id": "0d22c573-0296-45cb-ab99-ec3111dda81e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1149,7 +1149,7 @@ } }, { - "id": "3b625b3c-d232-4bd1-aaaf-c3fab0593722", + "id": "e6abeab1-2135-4e31-8d82-f1eaa23c974d", "name": "Find user by id", "request": { "name": "Find user by id", @@ -1191,7 +1191,7 @@ }, "response": [ { - "id": "21ce2479-28f6-4956-b253-2c2a4a36f0fa", + "id": "f8549bb0-1841-4aa8-8738-2536b172e0c0", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1230,12 +1230,12 @@ "value": "application/json" } ], - "body": "{\n \"user\": {\n \"id\": \"urn:uuid:74df0573-841b-f44a-c4ef-733f0c612851\",\n \"uid\": \"consecteturconsectetur aute sedi\",\n \"name\": \"irure \",\n \"email\": \"O57gQy3u@MWSMcqxnTTYNvNnoKIuUYacihKMO.zgd\",\n \"type\": \"NeprofileUser\",\n \"title\": \"dolore culpa ipsum qui\",\n \"status\": \"Disabled\",\n \"login\": \"id reprehenderit incididunt\",\n \"last_login\": \"1983-06-20T01:50:32.483Z\",\n \"cookies_accepted_at\": \"1983-10-07T11:13:27.403Z\",\n \"preferred_language\": \"ea\"\n }\n}", + "body": "{\n \"user\": {\n \"id\": \"urn:uuid:7b77fd6c-7990-c51d-9dcd-456f1dc39972\",\n \"uid\": \"Ut veniam ipsum magnareprehender\",\n \"name\": \"ex labore\",\n \"email\": \"MH5l5zqhgtNXM@BqPmHu.yfp\",\n \"type\": \"NeprofileUser\",\n \"title\": \"officia magna Excepteur aliquip\",\n \"status\": \"Active\",\n \"login\": \"nisi eu\",\n \"last_login\": \"1988-12-02T08:56:14.693Z\",\n \"cookies_accepted_at\": \"1950-10-28T16:59:08.845Z\",\n \"preferred_language\": \"magna id eiusmod\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a6463ec1-1681-4c24-ae97-aa3ace0b77df", + "id": "ff16c1ae-c1bc-469f-a668-7de01a9901e2", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1279,7 +1279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92df4031-9d6c-4be9-bb82-6d69f4ab8db8", + "id": "489b7348-81e3-4476-9d83-fae03f0ab1b5", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1329,7 +1329,7 @@ } }, { - "id": "b1a46c60-321d-4976-b8b2-f233672f0c66", + "id": "b09b160c-1497-44bd-af57-71ea11c1a8f7", "name": "Update a user by id", "request": { "name": "Update a user by id", @@ -1384,7 +1384,7 @@ }, "response": [ { - "id": "6109bc68-013d-4c20-9089-6528677cacb6", + "id": "4d6f29d5-5e93-4cee-8fe6-3e09c0774baa", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1436,12 +1436,12 @@ "value": "application/json" } ], - "body": "{\n \"user\": {\n \"id\": \"urn:uuid:74df0573-841b-f44a-c4ef-733f0c612851\",\n \"uid\": \"consecteturconsectetur aute sedi\",\n \"name\": \"irure \",\n \"email\": \"O57gQy3u@MWSMcqxnTTYNvNnoKIuUYacihKMO.zgd\",\n \"type\": \"NeprofileUser\",\n \"title\": \"dolore culpa ipsum qui\",\n \"status\": \"Disabled\",\n \"login\": \"id reprehenderit incididunt\",\n \"last_login\": \"1983-06-20T01:50:32.483Z\",\n \"cookies_accepted_at\": \"1983-10-07T11:13:27.403Z\",\n \"preferred_language\": \"ea\"\n }\n}", + "body": "{\n \"user\": {\n \"id\": \"urn:uuid:7b77fd6c-7990-c51d-9dcd-456f1dc39972\",\n \"uid\": \"Ut veniam ipsum magnareprehender\",\n \"name\": \"ex labore\",\n \"email\": \"MH5l5zqhgtNXM@BqPmHu.yfp\",\n \"type\": \"NeprofileUser\",\n \"title\": \"officia magna Excepteur aliquip\",\n \"status\": \"Active\",\n \"login\": \"nisi eu\",\n \"last_login\": \"1988-12-02T08:56:14.693Z\",\n \"cookies_accepted_at\": \"1950-10-28T16:59:08.845Z\",\n \"preferred_language\": \"magna id eiusmod\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "48976646-279e-4c0b-b38b-a181ed57b836", + "id": "7d7beab9-5d30-41d9-ba6d-dc685bbe6d09", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1498,7 +1498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ee11c68-8ed8-4c48-988d-8a44b85727e9", + "id": "6934924a-436b-4178-bc20-5fdff7201cde", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1561,7 +1561,7 @@ } }, { - "id": "04da5519-38ec-4512-889c-5a8e92c356ee", + "id": "9c416773-37bd-4975-a81a-7a5a3d4dfb12", "name": "Delete a user", "request": { "name": "Delete a user", @@ -1603,7 +1603,7 @@ }, "response": [ { - "id": "5141beca-2413-4da7-a7ed-5bab6e9412bb", + "id": "a679c7f7-c0c7-48b6-8768-983f72606169", "name": "Info about the operation", "originalRequest": { "url": { @@ -1647,7 +1647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58d808fe-d82d-4f54-aa18-8c445e7a4898", + "id": "088b87e0-0f55-451d-8133-48dcccfdb63c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1691,7 +1691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37d01843-ff95-428b-ac12-73eaf881c580", + "id": "0a2efc7a-ae6c-4dfe-8b76-f26ded97fb26", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1741,7 +1741,7 @@ } }, { - "id": "029c279e-d96c-4467-aa46-e0d50cf252af", + "id": "1454c900-bacb-4022-bb98-df422f8ec68e", "name": "Retrieves the URL of the user avatar", "request": { "name": "Retrieves the URL of the user avatar", @@ -1784,7 +1784,7 @@ }, "response": [ { - "id": "2e61e11b-6a0c-4a17-89a6-b0aed2777da4", + "id": "2cf95c29-7bad-4f6c-8c7b-baffe2e92a49", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1824,12 +1824,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"tempor ex ut\"\n}", + "body": "{\n \"url\": \"sunt officia cupidatat pariatur in\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "838b30cc-8f25-4341-bbb9-8b3d677f677a", + "id": "75678a17-6e42-4131-b7ae-6690f1116015", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1874,7 +1874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43624246-f724-4fd8-b764-f16e0fce6f83", + "id": "999c6800-9970-43ca-aa89-7dbf786fbf17", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1925,7 +1925,7 @@ } }, { - "id": "31ab58a9-c112-498c-a726-b9a310c0669d", + "id": "708028d2-c9bb-4f3e-8e57-683ef3062cf0", "name": "Uploads a new user avatar", "request": { "name": "Uploads a new user avatar", @@ -1976,7 +1976,7 @@ "type": "text/plain" }, "key": "file", - "value": "sun", + "value": "ad sint ea", "type": "text" } ] @@ -1985,7 +1985,7 @@ }, "response": [ { - "id": "c1afdada-2df9-4884-baeb-c678d6c64376", + "id": "54b85bc9-69fd-4a35-b091-638e2413af39", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -2028,7 +2028,7 @@ "type": "text/plain" }, "key": "file", - "value": "sun", + "value": "ad sint ea", "type": "text" } ] @@ -2042,12 +2042,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"tempor ex ut\"\n}", + "body": "{\n \"url\": \"sunt officia cupidatat pariatur in\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c7e8b74-5fc5-4cd6-a24a-99a94e26b7f1", + "id": "252ff32a-0990-43d8-81cd-3b41d6d05e0c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2090,7 +2090,7 @@ "type": "text/plain" }, "key": "file", - "value": "sun", + "value": "ad sint ea", "type": "text" } ] @@ -2109,7 +2109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a52f7f67-0129-440b-a4c3-3f581f08676a", + "id": "3d7e2adf-8a05-4cd2-afa2-0e5a513b6834", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -2152,7 +2152,7 @@ "type": "text/plain" }, "key": "file", - "value": "sun", + "value": "ad sint ea", "type": "text" } ] @@ -2183,7 +2183,7 @@ "description": "", "item": [ { - "id": "aa4830b5-4d1a-4923-83bf-77ed8d82e859", + "id": "43bf10b1-5012-46f0-a72f-c9a075a743cb", "name": "Create a new user-manager relationship", "request": { "name": "Create a new user-manager relationship", @@ -2214,7 +2214,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:d7e9a2e1-4584-6ba5-9e80-897599d9f280\",\n \"manager_id\": \"urn:uuid:068c73fc-aa1f-35a1-7f4e-bf5c9b2646a6\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"cc7946ad-5d7a-ca66-9388-c44ba150e566\",\n \"manager_id\": \"8ea50652-4c23-bdab-e8ab-791fbdbe1c15\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2226,7 +2226,7 @@ }, "response": [ { - "id": "feaf4e2a-9c05-4036-b564-ff85f853726d", + "id": "412f7543-1dfb-4a52-aa76-78ef7d880346", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -2260,7 +2260,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:d7e9a2e1-4584-6ba5-9e80-897599d9f280\",\n \"manager_id\": \"urn:uuid:068c73fc-aa1f-35a1-7f4e-bf5c9b2646a6\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"cc7946ad-5d7a-ca66-9388-c44ba150e566\",\n \"manager_id\": \"8ea50652-4c23-bdab-e8ab-791fbdbe1c15\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2277,12 +2277,12 @@ "value": "application/json" } ], - "body": "{\n \"user_manager\": {\n \"id\": \"urn:uuid:634f9443-bf8b-1aec-0f49-7c2900f3d990\",\n \"uid\": \"nulla dolor magna incididuntDuis\",\n \"user_id\": \"urn:uuid:a5d38ac9-bfad-140c-f41f-c46e940f93a7\",\n \"manager_id\": \"b4b4f30b-6c4d-0cc6-b4cc-b7a2009b50a2\"\n }\n}", + "body": "{\n \"user_manager\": {\n \"id\": \"4d8144e9-de8b-dac9-c918-a05820207b7a\",\n \"uid\": \"qui dolore ut ipsumvelit irure p\",\n \"user_id\": \"7f7ea0e6-4f00-2b90-ffde-f283ec68c426\",\n \"manager_id\": \"urn:uuid:1c075f35-42a9-d795-c585-3eccd7b4bc93\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1eaed90-82ca-4ae3-8934-224efc3ed531", + "id": "4e7e8198-3436-45ab-b2ff-824f82f0f024", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2316,7 +2316,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:d7e9a2e1-4584-6ba5-9e80-897599d9f280\",\n \"manager_id\": \"urn:uuid:068c73fc-aa1f-35a1-7f4e-bf5c9b2646a6\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"cc7946ad-5d7a-ca66-9388-c44ba150e566\",\n \"manager_id\": \"8ea50652-4c23-bdab-e8ab-791fbdbe1c15\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2338,7 +2338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9765eca7-7067-4dc6-ae0b-ddc3364b3d69", + "id": "7c7c1e1a-50a7-40c6-af29-7c65372c95c5", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -2372,7 +2372,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:d7e9a2e1-4584-6ba5-9e80-897599d9f280\",\n \"manager_id\": \"urn:uuid:068c73fc-aa1f-35a1-7f4e-bf5c9b2646a6\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"cc7946ad-5d7a-ca66-9388-c44ba150e566\",\n \"manager_id\": \"8ea50652-4c23-bdab-e8ab-791fbdbe1c15\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2400,7 +2400,7 @@ } }, { - "id": "47668d90-ce42-4f14-bbb0-dffbc343b94b", + "id": "c07cd291-e947-4e5f-a1fd-366d04679e4a", "name": "Get user-manager relationships", "request": { "name": "Get user-manager relationships", @@ -2459,7 +2459,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -2485,7 +2485,7 @@ }, "response": [ { - "id": "2e8052c1-115a-4944-bb06-113293d580e1", + "id": "696c8bf8-adf2-4c9b-b132-9b3c91680818", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -2539,7 +2539,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -2578,12 +2578,12 @@ "value": "application/json" } ], - "body": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:e330b0be-8445-931d-8ab6-5796c81e2764\",\n \"uid\": \"idcupidatatdolore culpa consequa\",\n \"user_id\": \"e22177c4-5010-0cf2-468d-523c69dd2d25\",\n \"manager_id\": \"e6f368b2-5bd7-ac85-b6ec-8a08ef423b2c\"\n },\n {\n \"id\": \"23b084e9-8771-41e0-f1a2-aa85dde5fbec\",\n \"uid\": \"veniam occaecat enim anim noncil\",\n \"user_id\": \"896f003f-5042-de85-0275-dec3bb982914\",\n \"manager_id\": \"urn:uuid:22f29ecb-51c5-2dcd-b1da-dcbbfa972b3d\"\n }\n ],\n \"_metadata\": {\n \"limit\": 73483398,\n \"offset\": 57307267,\n \"total\": 15290509,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"user_managers\": [\n {\n \"id\": \"818482d6-39ee-7b3a-7726-0fb70d8f6691\",\n \"uid\": \"quis eiusmod aliquaaliquiplaboru\",\n \"user_id\": \"eb8ebec7-ac6a-bac5-76ce-8c821447f104\",\n \"manager_id\": \"urn:uuid:4b53c33b-20a4-6404-fd92-fdcb61b400f8\"\n },\n {\n \"id\": \"urn:uuid:0e824f6f-20ac-9958-2322-5aa85ed6c7d5\",\n \"uid\": \"culpa cillumincididunt labore do\",\n \"user_id\": \"urn:uuid:1eca4b4f-935b-99be-7c5e-0c208809dd87\",\n \"manager_id\": \"330e73e0-814e-cf5f-66ed-41585074cd4d\"\n }\n ],\n \"_metadata\": {\n \"limit\": -72031284,\n \"offset\": 45604510,\n \"total\": -45237511,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e17a957b-8696-48eb-9f7b-57f196504bbb", + "id": "34ce1616-87ff-4c62-976a-8ceba162d95c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2637,7 +2637,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -2681,7 +2681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1be7e564-d38b-4f6b-8468-30342355f6c8", + "id": "9f758579-4747-43f9-b549-01638012bfaf", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -2735,7 +2735,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -2785,7 +2785,7 @@ } }, { - "id": "87c4aa64-7573-4cc4-a4c4-8cc8d37e9938", + "id": "fdb2b058-2446-4543-a53a-0b02f8680bdc", "name": "Create multiple new user-manager relationships", "request": { "name": "Create multiple new user-manager relationships", @@ -2816,7 +2816,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"a23106b3-9b90-3c41-cc6d-56b4ce8cdc80\",\n \"manager_id\": \"73b7773d-f0f6-4eea-2bc3-940ecd1ff0e7\"\n },\n {\n \"user_id\": \"e2d4534b-a80f-4810-7a00-d81fd1628a1f\",\n \"manager_id\": \"urn:uuid:c11d9e19-082a-3446-f6d3-6d9e334bc5ba\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"a63c4ae4-4fa6-4e6b-8e0f-ea4378a73205\",\n \"manager_id\": \"urn:uuid:1bec0d43-d11b-5b06-e34e-f3626d5c7920\"\n },\n {\n \"user_id\": \"urn:uuid:7d0e932d-37a7-6f10-462b-1565ae9c44be\",\n \"manager_id\": \"urn:uuid:fb778d33-a705-215b-2f60-9d4d9f036a41\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2828,7 +2828,7 @@ }, "response": [ { - "id": "961e3b62-6f99-4cef-a35d-608fe9a60db5", + "id": "637d7a91-2219-4c6f-9e2f-0ccd5d06144e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -2862,7 +2862,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"a23106b3-9b90-3c41-cc6d-56b4ce8cdc80\",\n \"manager_id\": \"73b7773d-f0f6-4eea-2bc3-940ecd1ff0e7\"\n },\n {\n \"user_id\": \"e2d4534b-a80f-4810-7a00-d81fd1628a1f\",\n \"manager_id\": \"urn:uuid:c11d9e19-082a-3446-f6d3-6d9e334bc5ba\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"a63c4ae4-4fa6-4e6b-8e0f-ea4378a73205\",\n \"manager_id\": \"urn:uuid:1bec0d43-d11b-5b06-e34e-f3626d5c7920\"\n },\n {\n \"user_id\": \"urn:uuid:7d0e932d-37a7-6f10-462b-1565ae9c44be\",\n \"manager_id\": \"urn:uuid:fb778d33-a705-215b-2f60-9d4d9f036a41\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2884,7 +2884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23541d63-e0a9-43ea-b6da-6aa8b13e228c", + "id": "3782f1b6-2037-4b5d-a1c8-bf988d3b5fb8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2918,7 +2918,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"a23106b3-9b90-3c41-cc6d-56b4ce8cdc80\",\n \"manager_id\": \"73b7773d-f0f6-4eea-2bc3-940ecd1ff0e7\"\n },\n {\n \"user_id\": \"e2d4534b-a80f-4810-7a00-d81fd1628a1f\",\n \"manager_id\": \"urn:uuid:c11d9e19-082a-3446-f6d3-6d9e334bc5ba\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"a63c4ae4-4fa6-4e6b-8e0f-ea4378a73205\",\n \"manager_id\": \"urn:uuid:1bec0d43-d11b-5b06-e34e-f3626d5c7920\"\n },\n {\n \"user_id\": \"urn:uuid:7d0e932d-37a7-6f10-462b-1565ae9c44be\",\n \"manager_id\": \"urn:uuid:fb778d33-a705-215b-2f60-9d4d9f036a41\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2940,7 +2940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "864acfaa-4d94-4573-9245-5ed7e41e3625", + "id": "8be9b821-9732-4481-a971-b995f01ae0e8", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -2974,7 +2974,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"a23106b3-9b90-3c41-cc6d-56b4ce8cdc80\",\n \"manager_id\": \"73b7773d-f0f6-4eea-2bc3-940ecd1ff0e7\"\n },\n {\n \"user_id\": \"e2d4534b-a80f-4810-7a00-d81fd1628a1f\",\n \"manager_id\": \"urn:uuid:c11d9e19-082a-3446-f6d3-6d9e334bc5ba\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"a63c4ae4-4fa6-4e6b-8e0f-ea4378a73205\",\n \"manager_id\": \"urn:uuid:1bec0d43-d11b-5b06-e34e-f3626d5c7920\"\n },\n {\n \"user_id\": \"urn:uuid:7d0e932d-37a7-6f10-462b-1565ae9c44be\",\n \"manager_id\": \"urn:uuid:fb778d33-a705-215b-2f60-9d4d9f036a41\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3002,7 +3002,7 @@ } }, { - "id": "4b443fdd-c0bb-4dab-8ea9-09d895ae0883", + "id": "a1073884-766c-4ef4-b432-257a270baa1e", "name": "Update multiple user-manager relationships", "request": { "name": "Update multiple user-manager relationships", @@ -3033,7 +3033,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:688da6bf-aadc-0366-eea3-c77edf9f77cd\",\n \"user_id\": \"8f067805-fd09-8829-01f5-c0e38d2ab9fd\",\n \"manager_id\": \"1a764431-720e-804f-2f62-7df65e65e4c7\"\n },\n {\n \"id\": \"a1ed9105-0567-7764-8192-232e7e993049\",\n \"user_id\": \"urn:uuid:61e7536a-e306-d204-aaae-0b578a4eda10\",\n \"manager_id\": \"f731f614-a204-9080-ee46-57f84a3bc468\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:649435ca-5fc8-1866-e3f3-e18fe945ed00\",\n \"user_id\": \"urn:uuid:62b5f237-d945-dd81-d7a9-4137c248c03d\",\n \"manager_id\": \"urn:uuid:6b69a034-0613-b58a-ae73-620d64e9e67c\"\n },\n {\n \"id\": \"508b77de-7aea-c7f9-1e1a-27b265418f5c\",\n \"user_id\": \"555d7954-7bd1-b1a6-7e65-0f00f2cf49ec\",\n \"manager_id\": \"urn:uuid:4d11bb35-efb2-9ee5-b5e6-c87bb01377f6\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3045,7 +3045,7 @@ }, "response": [ { - "id": "070590c7-8c4a-4916-ad3c-592bedc64483", + "id": "19f6bd4b-c0d6-4fe9-9dbc-db2a0326c8a0", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3079,7 +3079,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:688da6bf-aadc-0366-eea3-c77edf9f77cd\",\n \"user_id\": \"8f067805-fd09-8829-01f5-c0e38d2ab9fd\",\n \"manager_id\": \"1a764431-720e-804f-2f62-7df65e65e4c7\"\n },\n {\n \"id\": \"a1ed9105-0567-7764-8192-232e7e993049\",\n \"user_id\": \"urn:uuid:61e7536a-e306-d204-aaae-0b578a4eda10\",\n \"manager_id\": \"f731f614-a204-9080-ee46-57f84a3bc468\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:649435ca-5fc8-1866-e3f3-e18fe945ed00\",\n \"user_id\": \"urn:uuid:62b5f237-d945-dd81-d7a9-4137c248c03d\",\n \"manager_id\": \"urn:uuid:6b69a034-0613-b58a-ae73-620d64e9e67c\"\n },\n {\n \"id\": \"508b77de-7aea-c7f9-1e1a-27b265418f5c\",\n \"user_id\": \"555d7954-7bd1-b1a6-7e65-0f00f2cf49ec\",\n \"manager_id\": \"urn:uuid:4d11bb35-efb2-9ee5-b5e6-c87bb01377f6\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3101,7 +3101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e7b2774-9782-4e51-95a4-c1938d80d803", + "id": "2d782458-27d4-4756-8b5d-b253e73d5cb6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3135,7 +3135,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:688da6bf-aadc-0366-eea3-c77edf9f77cd\",\n \"user_id\": \"8f067805-fd09-8829-01f5-c0e38d2ab9fd\",\n \"manager_id\": \"1a764431-720e-804f-2f62-7df65e65e4c7\"\n },\n {\n \"id\": \"a1ed9105-0567-7764-8192-232e7e993049\",\n \"user_id\": \"urn:uuid:61e7536a-e306-d204-aaae-0b578a4eda10\",\n \"manager_id\": \"f731f614-a204-9080-ee46-57f84a3bc468\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:649435ca-5fc8-1866-e3f3-e18fe945ed00\",\n \"user_id\": \"urn:uuid:62b5f237-d945-dd81-d7a9-4137c248c03d\",\n \"manager_id\": \"urn:uuid:6b69a034-0613-b58a-ae73-620d64e9e67c\"\n },\n {\n \"id\": \"508b77de-7aea-c7f9-1e1a-27b265418f5c\",\n \"user_id\": \"555d7954-7bd1-b1a6-7e65-0f00f2cf49ec\",\n \"manager_id\": \"urn:uuid:4d11bb35-efb2-9ee5-b5e6-c87bb01377f6\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3157,7 +3157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ee3adae-6d9d-42fa-ad96-9a1aecfc25be", + "id": "ead4fe5b-bda7-4006-b098-248eb25b284e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -3191,7 +3191,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:688da6bf-aadc-0366-eea3-c77edf9f77cd\",\n \"user_id\": \"8f067805-fd09-8829-01f5-c0e38d2ab9fd\",\n \"manager_id\": \"1a764431-720e-804f-2f62-7df65e65e4c7\"\n },\n {\n \"id\": \"a1ed9105-0567-7764-8192-232e7e993049\",\n \"user_id\": \"urn:uuid:61e7536a-e306-d204-aaae-0b578a4eda10\",\n \"manager_id\": \"f731f614-a204-9080-ee46-57f84a3bc468\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:649435ca-5fc8-1866-e3f3-e18fe945ed00\",\n \"user_id\": \"urn:uuid:62b5f237-d945-dd81-d7a9-4137c248c03d\",\n \"manager_id\": \"urn:uuid:6b69a034-0613-b58a-ae73-620d64e9e67c\"\n },\n {\n \"id\": \"508b77de-7aea-c7f9-1e1a-27b265418f5c\",\n \"user_id\": \"555d7954-7bd1-b1a6-7e65-0f00f2cf49ec\",\n \"manager_id\": \"urn:uuid:4d11bb35-efb2-9ee5-b5e6-c87bb01377f6\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3219,7 +3219,7 @@ } }, { - "id": "2373a988-2ff3-4112-b8d6-c27cfbcd6500", + "id": "8ad57801-876f-4bc3-b212-8a4fdc2713b5", "name": "Find user-manager relationship by id", "request": { "name": "Find user-manager relationship by id", @@ -3261,7 +3261,7 @@ }, "response": [ { - "id": "03c9b882-703a-46d0-b146-6d852a0d7d2d", + "id": "d4e5b9e1-afa7-49a5-9aba-a31865279d43", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3300,12 +3300,12 @@ "value": "application/json" } ], - "body": "{\n \"user_manager\": {\n \"id\": \"urn:uuid:634f9443-bf8b-1aec-0f49-7c2900f3d990\",\n \"uid\": \"nulla dolor magna incididuntDuis\",\n \"user_id\": \"urn:uuid:a5d38ac9-bfad-140c-f41f-c46e940f93a7\",\n \"manager_id\": \"b4b4f30b-6c4d-0cc6-b4cc-b7a2009b50a2\"\n }\n}", + "body": "{\n \"user_manager\": {\n \"id\": \"4d8144e9-de8b-dac9-c918-a05820207b7a\",\n \"uid\": \"qui dolore ut ipsumvelit irure p\",\n \"user_id\": \"7f7ea0e6-4f00-2b90-ffde-f283ec68c426\",\n \"manager_id\": \"urn:uuid:1c075f35-42a9-d795-c585-3eccd7b4bc93\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fbe54947-e7f1-455f-a487-b13022aca300", + "id": "de909526-fe43-49c6-9669-a603456fd718", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3349,7 +3349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96226740-b6dd-4737-8e35-86c9df4dcd5e", + "id": "3c3fcbfb-98cd-4cba-92e6-68b69b8b2f36", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -3399,7 +3399,7 @@ } }, { - "id": "bdd6cf62-86ca-4964-94ae-0c6a583aa415", + "id": "e0e34305-cc4d-427c-8eb5-c58e8d23248a", "name": "Update a user-manager relationship by id", "request": { "name": "Update a user-manager relationship by id", @@ -3442,7 +3442,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:d7e9a2e1-4584-6ba5-9e80-897599d9f280\",\n \"manager_id\": \"urn:uuid:068c73fc-aa1f-35a1-7f4e-bf5c9b2646a6\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"cc7946ad-5d7a-ca66-9388-c44ba150e566\",\n \"manager_id\": \"8ea50652-4c23-bdab-e8ab-791fbdbe1c15\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3454,7 +3454,7 @@ }, "response": [ { - "id": "b8701a30-61d5-4519-b6f9-3778c0ee209f", + "id": "5649ae00-6b0e-463a-acb8-06c0b33f6d8b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3489,7 +3489,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:d7e9a2e1-4584-6ba5-9e80-897599d9f280\",\n \"manager_id\": \"urn:uuid:068c73fc-aa1f-35a1-7f4e-bf5c9b2646a6\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"cc7946ad-5d7a-ca66-9388-c44ba150e566\",\n \"manager_id\": \"8ea50652-4c23-bdab-e8ab-791fbdbe1c15\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3506,12 +3506,12 @@ "value": "application/json" } ], - "body": "{\n \"user_manager\": {\n \"id\": \"urn:uuid:634f9443-bf8b-1aec-0f49-7c2900f3d990\",\n \"uid\": \"nulla dolor magna incididuntDuis\",\n \"user_id\": \"urn:uuid:a5d38ac9-bfad-140c-f41f-c46e940f93a7\",\n \"manager_id\": \"b4b4f30b-6c4d-0cc6-b4cc-b7a2009b50a2\"\n }\n}", + "body": "{\n \"user_manager\": {\n \"id\": \"4d8144e9-de8b-dac9-c918-a05820207b7a\",\n \"uid\": \"qui dolore ut ipsumvelit irure p\",\n \"user_id\": \"7f7ea0e6-4f00-2b90-ffde-f283ec68c426\",\n \"manager_id\": \"urn:uuid:1c075f35-42a9-d795-c585-3eccd7b4bc93\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9ce2dfd1-9148-4745-8bea-4d4c3b046bbc", + "id": "cc7007e4-a39c-4875-ab9d-06cffca37250", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3546,7 +3546,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:d7e9a2e1-4584-6ba5-9e80-897599d9f280\",\n \"manager_id\": \"urn:uuid:068c73fc-aa1f-35a1-7f4e-bf5c9b2646a6\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"cc7946ad-5d7a-ca66-9388-c44ba150e566\",\n \"manager_id\": \"8ea50652-4c23-bdab-e8ab-791fbdbe1c15\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3568,7 +3568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fdc2bc8-3b29-4ce0-a845-366fecc5e42d", + "id": "7dd601e8-8755-4d4c-93de-e5fee07717c7", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -3603,7 +3603,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:d7e9a2e1-4584-6ba5-9e80-897599d9f280\",\n \"manager_id\": \"urn:uuid:068c73fc-aa1f-35a1-7f4e-bf5c9b2646a6\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"cc7946ad-5d7a-ca66-9388-c44ba150e566\",\n \"manager_id\": \"8ea50652-4c23-bdab-e8ab-791fbdbe1c15\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3637,7 +3637,7 @@ "description": "", "item": [ { - "id": "49925102-af80-4f49-bb71-190e6d8f9627", + "id": "c0d9eb5d-aa4d-4a90-a585-340880e90bea", "name": "Get roles", "request": { "name": "Get roles", @@ -3704,7 +3704,7 @@ }, "response": [ { - "id": "5d858019-c1da-44c2-93ba-f2f2bbe53aa9", + "id": "aef0dc29-db33-41f7-86e0-3b162f12415f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3779,12 +3779,12 @@ "value": "application/json" } ], - "body": "{\n \"roles\": [\n {\n \"id\": \"urn:uuid:396533c8-735c-3a2e-4e06-5e94312acd06\",\n \"uid\": \"adipisicing esseconsequatdolore \",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"urn:uuid:c5525f31-1bd4-6882-6461-1e6122b89f28\",\n \"uid\": \"cupidatat aliquipfugiat incididu\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ],\n \"_metadata\": {\n \"limit\": 29436219,\n \"offset\": -85418664,\n \"total\": 15914874,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"roles\": [\n {\n \"id\": \"68a97f57-3b40-af85-c179-b93efab46d42\",\n \"uid\": \"culpa irureut proident dolore la\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"fa9c5efe-196e-813a-c145-5b27b3aca1e3\",\n \"uid\": \"exercitation Utaliqua laborissit\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ],\n \"_metadata\": {\n \"limit\": -75443103,\n \"offset\": 9939655,\n \"total\": -18122274,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f2a9dc6b-4398-4360-ab98-c9c3ca08b0ee", + "id": "8640c27a-81dc-4a95-928c-8c21af862e9f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3864,7 +3864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7015423-9cbf-4e5a-97b4-f6d627f67028", + "id": "a45eb209-54f4-43fa-8106-4a23f2762ea3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -3950,7 +3950,7 @@ } }, { - "id": "cd5524fe-d48f-4db8-a75c-adccaee693a6", + "id": "844202c4-bba0-428e-90f7-f8e3a4ed9328", "name": "Create multiple new roles", "request": { "name": "Create multiple new roles", @@ -3981,7 +3981,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"uid\": \"ametreprehenderit dolorequi aute\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"iruread nullasunt Duis nostrud c\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"uid\": \"deseruntsint in enim reprehender\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"laborum laboris eairure adipisic\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3993,7 +3993,7 @@ }, "response": [ { - "id": "43fc7cb8-e4f0-4bc5-b6fb-2b26202c71cf", + "id": "b340f7a9-c23e-423f-a814-6d426a6fc49f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4027,7 +4027,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"uid\": \"ametreprehenderit dolorequi aute\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"iruread nullasunt Duis nostrud c\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"uid\": \"deseruntsint in enim reprehender\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"laborum laboris eairure adipisic\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -4044,12 +4044,12 @@ "value": "application/json" } ], - "body": "{\n \"roles\": [\n {\n \"id\": \"3927550d-0711-b0f3-152a-7002ca8c20d1\",\n \"uid\": \"laboris Excepteur officia iddese\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"urn:uuid:99259a62-b770-9b9f-82bc-afab172d3728\",\n \"uid\": \"ullamco aute do aliquipin Duisin\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", + "body": "{\n \"roles\": [\n {\n \"id\": \"urn:uuid:6869da4e-22d4-5bc7-ae7f-c8cc3bd51e6f\",\n \"uid\": \"ullamco et proident aliquip sunt\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"8f58ab9f-12be-a707-06b0-63ec362829dc\",\n \"uid\": \"ea consequatLorem dolore nulla l\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eda3727e-7706-4c25-bcbe-befcd532c6e6", + "id": "0f3ffab2-2860-4d84-9c36-0a8477b38a8e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4083,7 +4083,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"uid\": \"ametreprehenderit dolorequi aute\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"iruread nullasunt Duis nostrud c\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"uid\": \"deseruntsint in enim reprehender\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"laborum laboris eairure adipisic\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -4105,7 +4105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24a75985-95e3-49aa-96b7-f75906b2750b", + "id": "c52f77af-fb87-4024-9c3a-b939799e4398", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4139,7 +4139,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"uid\": \"ametreprehenderit dolorequi aute\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"iruread nullasunt Duis nostrud c\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"uid\": \"deseruntsint in enim reprehender\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"laborum laboris eairure adipisic\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -4167,7 +4167,7 @@ } }, { - "id": "8e57485d-6d00-46c9-9b00-57d7269434ca", + "id": "bb1164d0-1e6a-4534-887f-d484c7c38910", "name": "Update multiple roles", "request": { "name": "Update multiple roles", @@ -4210,7 +4210,7 @@ }, "response": [ { - "id": "8445b24b-8f8e-4b23-b04c-826c911ccee0", + "id": "43162ac6-7a24-4c2e-8ad2-5bae1e6fd6af", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4261,12 +4261,12 @@ "value": "application/json" } ], - "body": "{\n \"roles\": [\n {\n \"id\": \"3927550d-0711-b0f3-152a-7002ca8c20d1\",\n \"uid\": \"laboris Excepteur officia iddese\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"urn:uuid:99259a62-b770-9b9f-82bc-afab172d3728\",\n \"uid\": \"ullamco aute do aliquipin Duisin\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", + "body": "{\n \"roles\": [\n {\n \"id\": \"urn:uuid:6869da4e-22d4-5bc7-ae7f-c8cc3bd51e6f\",\n \"uid\": \"ullamco et proident aliquip sunt\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"8f58ab9f-12be-a707-06b0-63ec362829dc\",\n \"uid\": \"ea consequatLorem dolore nulla l\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e9c0cca3-16ca-44d1-9910-ca640df29059", + "id": "03ad3df2-7b25-49da-be7e-ba376d53d118", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4322,7 +4322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93b0673f-7160-429b-a2bd-c47785e751ca", + "id": "8dd603e9-50ec-4e49-aeb0-75f217414a78", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4384,7 +4384,7 @@ } }, { - "id": "74c79581-4225-4a6f-9de6-6706a2bdc7b8", + "id": "8e35f3e9-e047-489d-8573-ff0518da19bb", "name": "Create a new role", "request": { "name": "Create a new role", @@ -4415,7 +4415,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"incididunt ea ex auteesse anim p\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"eiusmod deseruntest irure nostru\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4427,7 +4427,7 @@ }, "response": [ { - "id": "f4948755-b417-44d5-8eeb-3ef1d0a99797", + "id": "12a82701-8f43-4fc4-adb7-26b1a8cbd7f3", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4461,7 +4461,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"incididunt ea ex auteesse anim p\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"eiusmod deseruntest irure nostru\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4478,12 +4478,12 @@ "value": "application/json" } ], - "body": "{\n \"role\": {\n \"id\": \"urn:uuid:e78ceb44-9fa3-9f1b-8b87-567f2f7a187c\",\n \"uid\": \"ad estin enimdolore ipsum cupida\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "body": "{\n \"role\": {\n \"id\": \"5afc58cc-ecec-664e-4934-11eea8156c22\",\n \"uid\": \"sint sed laboris ut mollitculpaL\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ed60df1b-a053-44ec-8d97-5510a1d006d1", + "id": "4ee7e0ec-9c7e-4c62-bcd7-483ba30ce44e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4517,7 +4517,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"incididunt ea ex auteesse anim p\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"eiusmod deseruntest irure nostru\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4539,7 +4539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d531b646-98f7-4580-ab75-adf6b2c13521", + "id": "6703d691-4942-44c6-840d-a258c66a0045", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4573,7 +4573,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"incididunt ea ex auteesse anim p\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"eiusmod deseruntest irure nostru\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4601,7 +4601,7 @@ } }, { - "id": "69792e46-709f-4c28-a210-625b745511dc", + "id": "b93cdabc-4c46-4dcc-adbe-9a00fdfadada", "name": "Find role by id", "request": { "name": "Find role by id", @@ -4643,7 +4643,7 @@ }, "response": [ { - "id": "f9d20ded-0057-42e0-b00b-036eb6f3da67", + "id": "3a565a00-541b-4ead-9ace-55c4910bd011", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4682,12 +4682,12 @@ "value": "application/json" } ], - "body": "{\n \"role\": {\n \"id\": \"urn:uuid:e78ceb44-9fa3-9f1b-8b87-567f2f7a187c\",\n \"uid\": \"ad estin enimdolore ipsum cupida\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "body": "{\n \"role\": {\n \"id\": \"5afc58cc-ecec-664e-4934-11eea8156c22\",\n \"uid\": \"sint sed laboris ut mollitculpaL\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e3474cd-377e-4bac-ba67-26df33232540", + "id": "61587041-194e-49c4-be00-ede92e6454c1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4731,7 +4731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6193dfb4-528f-43d7-bacb-5eebbe219b18", + "id": "5f8811ed-a476-4e0d-99f5-6c2c944ab32f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4781,7 +4781,7 @@ } }, { - "id": "3c454970-9bd2-4693-b63b-f43214200cb5", + "id": "981ddffd-8b0d-4189-8b70-6e8d287c368e", "name": "Update an existing role", "request": { "name": "Update an existing role", @@ -4836,7 +4836,7 @@ }, "response": [ { - "id": "7eaec97d-8701-443e-a983-a913d531db3b", + "id": "a0153d11-a7ae-4792-abc3-bdb12f3e3f78", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4888,12 +4888,12 @@ "value": "application/json" } ], - "body": "{\n \"role\": {\n \"id\": \"urn:uuid:e78ceb44-9fa3-9f1b-8b87-567f2f7a187c\",\n \"uid\": \"ad estin enimdolore ipsum cupida\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "body": "{\n \"role\": {\n \"id\": \"5afc58cc-ecec-664e-4934-11eea8156c22\",\n \"uid\": \"sint sed laboris ut mollitculpaL\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f3c4d60b-fede-449b-aeb6-6cf1be57ec52", + "id": "0b491f26-000c-436e-b4af-1f453792ee51", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4950,7 +4950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c262ddc7-094b-4886-a4c9-d5c92f9aabdd", + "id": "4ab3fc81-32c1-4f73-aa54-956edfd1f067", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5019,7 +5019,7 @@ "description": "", "item": [ { - "id": "c00e82fd-8605-4d42-b5e9-a096ba0c8ee0", + "id": "32202062-8e1c-458f-b0da-0dbbf3af7545", "name": "Create a permission", "request": { "name": "Create a permission", @@ -5062,7 +5062,7 @@ }, "response": [ { - "id": "d2d414d3-08e5-40f2-bc82-c3b785d0f1a1", + "id": "4a2d1faf-3745-40e5-96dd-35e51411c6fd", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -5118,7 +5118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c70013c2-b62a-46a3-8882-9a1ed31ba4e0", + "id": "df71cd7e-463c-402a-a75a-cce25b41b8b8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5174,7 +5174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf0040be-a79b-4262-85a7-e3e5cce2275a", + "id": "04271eb8-d55f-4e0f-97a8-fc4d7d598865", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5242,7 +5242,7 @@ "description": "", "item": [ { - "id": "8c138882-6eae-411e-b8c9-bbe779ec3757", + "id": "7e7a33d6-979f-4f26-a282-8733c2bd3064", "name": "Assign a new role to a user", "request": { "name": "Assign a new role to a user", @@ -5273,7 +5273,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:c1662fd7-1206-6220-55ea-c7c8f48210cb\",\n \"role_id\": \"urn:uuid:c41ba3da-38e8-490f-0c88-1e7694f0579d\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:331b040e-e61c-0cc2-cb59-4a9a9afc1489\",\n \"role_id\": \"urn:uuid:7d464046-d05d-5fc0-024c-70f8c2df09c9\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5285,7 +5285,7 @@ }, "response": [ { - "id": "1d28124d-d964-4645-871c-5096dd4dbb89", + "id": "f10fa82a-ca2b-4c80-9aaa-1118c0c057c8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -5319,7 +5319,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:c1662fd7-1206-6220-55ea-c7c8f48210cb\",\n \"role_id\": \"urn:uuid:c41ba3da-38e8-490f-0c88-1e7694f0579d\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:331b040e-e61c-0cc2-cb59-4a9a9afc1489\",\n \"role_id\": \"urn:uuid:7d464046-d05d-5fc0-024c-70f8c2df09c9\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5336,12 +5336,12 @@ "value": "application/json" } ], - "body": "{\n \"user_role\": {\n \"id\": \"58905cf9-5d33-c65f-fe47-d48a39422950\",\n \"uid\": \"consecteturcillumea veniam ex ut\",\n \"user_id\": \"b7fa39d0-a9ca-922d-1ad9-abaad4248a06\",\n \"role_id\": \"a480b52f-bec9-0b9c-a008-74ea37dfe09e\"\n }\n}", + "body": "{\n \"user_role\": {\n \"id\": \"d0d90474-2fe6-bf0e-978e-2ec8e612e7c9\",\n \"uid\": \"eiusmod exercitation quis deseru\",\n \"user_id\": \"4084c655-e18b-3174-1544-6db4e759da0d\",\n \"role_id\": \"a1dd1697-8e75-7630-46c2-0d8048c9189e\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d91dd1c1-236a-429f-a2ea-4493fbb31764", + "id": "b363836d-5d95-43a3-bda4-79abe3e3c2e6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5375,7 +5375,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:c1662fd7-1206-6220-55ea-c7c8f48210cb\",\n \"role_id\": \"urn:uuid:c41ba3da-38e8-490f-0c88-1e7694f0579d\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:331b040e-e61c-0cc2-cb59-4a9a9afc1489\",\n \"role_id\": \"urn:uuid:7d464046-d05d-5fc0-024c-70f8c2df09c9\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5397,7 +5397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fa3463b-87cd-4772-84ba-070ca21dae1a", + "id": "5eb17801-b907-4f85-984d-2943eba8680a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5431,7 +5431,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:c1662fd7-1206-6220-55ea-c7c8f48210cb\",\n \"role_id\": \"urn:uuid:c41ba3da-38e8-490f-0c88-1e7694f0579d\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:331b040e-e61c-0cc2-cb59-4a9a9afc1489\",\n \"role_id\": \"urn:uuid:7d464046-d05d-5fc0-024c-70f8c2df09c9\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5459,7 +5459,7 @@ } }, { - "id": "49095ac5-f95a-47d9-92e2-168ea1e2f7ee", + "id": "d8db159b-e83c-455b-bede-8ecd0a5eacfc", "name": "Get user role pairings", "request": { "name": "Get user role pairings", @@ -5518,7 +5518,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -5544,7 +5544,7 @@ }, "response": [ { - "id": "c908a2c7-282c-4407-a8de-3be9298bd52f", + "id": "18e3e4d6-39ea-40cd-b360-dc351d59bc98", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -5598,7 +5598,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -5637,12 +5637,12 @@ "value": "application/json" } ], - "body": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:e53ffef5-d29a-a64a-30a9-d45b6283f85d\",\n \"uid\": \"amet Lorem consectetur innon cul\",\n \"user_id\": \"82534400-c18c-5f69-f055-ef7e0f03e470\",\n \"role_id\": \"urn:uuid:ccef1b05-51de-96a4-3b67-39e4b3690225\"\n },\n {\n \"id\": \"ef9311ef-7de4-7dcb-2387-548ecb13fc74\",\n \"uid\": \"Excepteurut ametconsecteturlabor\",\n \"user_id\": \"urn:uuid:6f8373a3-d010-812a-1ee6-5e5791edd9f2\",\n \"role_id\": \"urn:uuid:8106bc1f-2a17-5c10-c70a-4546096380a9\"\n }\n ],\n \"_metadata\": {\n \"limit\": 29603318,\n \"offset\": -5966978,\n \"total\": -62634460,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:8ab8a92d-32da-0178-4c85-4172a25e0044\",\n \"uid\": \"utest dolore suntmollit ipsum Lo\",\n \"user_id\": \"503a3718-52a5-35c1-e049-fd148f6478cd\",\n \"role_id\": \"urn:uuid:b4064d64-002a-fdae-8956-5e4c7e7511a9\"\n },\n {\n \"id\": \"52a8224b-b8b7-a643-533d-9d847d4d64ef\",\n \"uid\": \"dolor dolore mollitculpa aliqua \",\n \"user_id\": \"urn:uuid:9154c32c-9ddd-a6a1-82bc-963f0debcb6a\",\n \"role_id\": \"0db114a4-f6b5-fb23-6399-4df874a76702\"\n }\n ],\n \"_metadata\": {\n \"limit\": 62211644,\n \"offset\": 34919152,\n \"total\": 48221454,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "513f83a8-74f6-48df-b12a-96347a27565d", + "id": "f356c5ea-5687-4ff3-bc1f-165db4b73857", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5696,7 +5696,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -5740,7 +5740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ca7e3ac-7a7c-4bc5-84a5-5020c2e816d7", + "id": "e091afe1-1cff-461b-aeb3-ce8a0c1b349f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5794,7 +5794,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -5844,7 +5844,7 @@ } }, { - "id": "3e5264e8-10b1-4a4f-8c45-41386170944a", + "id": "9f15f443-6879-4c24-b658-576549a95d5d", "name": "Create multiple new user role pairings", "request": { "name": "Create multiple new user role pairings", @@ -5875,7 +5875,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:cc324f92-6bd7-2c9d-1c0e-d3762e0d6aab\",\n \"role_id\": \"49cfd7dd-fe71-c62c-e65f-73fe2973e194\"\n },\n {\n \"user_id\": \"9ce7eb34-43cc-159d-f816-539ec3804f22\",\n \"role_id\": \"urn:uuid:257b324b-8062-8d69-52f5-893b765676cb\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:0ceb8132-c7d9-3aa5-9b44-cb011b8522aa\",\n \"role_id\": \"urn:uuid:97e525aa-5b05-a6cc-d5b2-df5bf11e566f\"\n },\n {\n \"user_id\": \"urn:uuid:80c18e6f-2967-132b-0143-e95a601ad00b\",\n \"role_id\": \"urn:uuid:2df1866a-28ca-1a08-4ddc-731b0b0fc724\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -5887,7 +5887,7 @@ }, "response": [ { - "id": "36d79a3c-c18e-48ca-8b6c-a9f0c1831510", + "id": "25ef630a-5c36-4038-b24a-1a458afe0889", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -5921,7 +5921,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:cc324f92-6bd7-2c9d-1c0e-d3762e0d6aab\",\n \"role_id\": \"49cfd7dd-fe71-c62c-e65f-73fe2973e194\"\n },\n {\n \"user_id\": \"9ce7eb34-43cc-159d-f816-539ec3804f22\",\n \"role_id\": \"urn:uuid:257b324b-8062-8d69-52f5-893b765676cb\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:0ceb8132-c7d9-3aa5-9b44-cb011b8522aa\",\n \"role_id\": \"urn:uuid:97e525aa-5b05-a6cc-d5b2-df5bf11e566f\"\n },\n {\n \"user_id\": \"urn:uuid:80c18e6f-2967-132b-0143-e95a601ad00b\",\n \"role_id\": \"urn:uuid:2df1866a-28ca-1a08-4ddc-731b0b0fc724\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -5938,12 +5938,12 @@ "value": "application/json" } ], - "body": "{\n \"user_roles\": [\n {\n \"id\": \"2014d09d-c095-f081-880c-3639ef4e31d3\",\n \"uid\": \"magna consecteturLoremsint tempo\",\n \"user_id\": \"urn:uuid:019756ff-18eb-44fa-6df2-349030c3b0f8\",\n \"role_id\": \"6193f17d-5198-563f-6ca9-da08e018bb1c\"\n },\n {\n \"id\": \"2ae5122b-2be3-8f6b-a2ac-3dbddd7d8e3b\",\n \"uid\": \"dolor veniamvoluptate sit quis s\",\n \"user_id\": \"urn:uuid:f7c46ed9-c27c-0822-7afc-fde78c854821\",\n \"role_id\": \"095f2dea-3c74-88c9-13fa-d279f7d89c81\"\n }\n ]\n}", + "body": "{\n \"user_roles\": [\n {\n \"id\": \"edb2cacc-6654-2e25-4e8c-ad828846375e\",\n \"uid\": \"adipisicing Lorem nisi dolorein \",\n \"user_id\": \"153ec0eb-1356-768d-3c3f-93ea3ab96ff3\",\n \"role_id\": \"5ae4c3a1-66f2-fe9a-7d29-bb4b14edc9bc\"\n },\n {\n \"id\": \"urn:uuid:88ba3596-6da9-fab0-c0d7-8006639a33d6\",\n \"uid\": \"exaute ametveniam suntesse nulla\",\n \"user_id\": \"urn:uuid:c1eb50ed-b165-066b-546a-ac5353ef43f6\",\n \"role_id\": \"30b06744-3608-7595-a81c-3c7a670170d0\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cae7825e-5b59-4830-8219-6a201acabe05", + "id": "2cb93f23-9091-4263-be55-858f6d1fe7ca", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5977,7 +5977,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:cc324f92-6bd7-2c9d-1c0e-d3762e0d6aab\",\n \"role_id\": \"49cfd7dd-fe71-c62c-e65f-73fe2973e194\"\n },\n {\n \"user_id\": \"9ce7eb34-43cc-159d-f816-539ec3804f22\",\n \"role_id\": \"urn:uuid:257b324b-8062-8d69-52f5-893b765676cb\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:0ceb8132-c7d9-3aa5-9b44-cb011b8522aa\",\n \"role_id\": \"urn:uuid:97e525aa-5b05-a6cc-d5b2-df5bf11e566f\"\n },\n {\n \"user_id\": \"urn:uuid:80c18e6f-2967-132b-0143-e95a601ad00b\",\n \"role_id\": \"urn:uuid:2df1866a-28ca-1a08-4ddc-731b0b0fc724\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -5999,7 +5999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5eca77c-3d7b-4916-9bef-3735bf338176", + "id": "cdaebf0f-dbf3-4251-965c-116ca3cf096b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6033,7 +6033,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:cc324f92-6bd7-2c9d-1c0e-d3762e0d6aab\",\n \"role_id\": \"49cfd7dd-fe71-c62c-e65f-73fe2973e194\"\n },\n {\n \"user_id\": \"9ce7eb34-43cc-159d-f816-539ec3804f22\",\n \"role_id\": \"urn:uuid:257b324b-8062-8d69-52f5-893b765676cb\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:0ceb8132-c7d9-3aa5-9b44-cb011b8522aa\",\n \"role_id\": \"urn:uuid:97e525aa-5b05-a6cc-d5b2-df5bf11e566f\"\n },\n {\n \"user_id\": \"urn:uuid:80c18e6f-2967-132b-0143-e95a601ad00b\",\n \"role_id\": \"urn:uuid:2df1866a-28ca-1a08-4ddc-731b0b0fc724\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6061,7 +6061,7 @@ } }, { - "id": "33c76f8a-115e-48bd-9df3-86db74e124dd", + "id": "7b7b94a4-f42c-4ed7-9eb6-f56909eca862", "name": "Update multiple user role pairings", "request": { "name": "Update multiple user role pairings", @@ -6092,7 +6092,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"id\": \"8b077f6e-b6e6-1841-4b7a-5fed720de37e\",\n \"user_id\": \"e99aa162-1df8-15a1-b2f4-fd082f04c0e3\",\n \"role_id\": \"4f6eab19-c49d-432d-5c53-379cfbc57fee\"\n },\n {\n \"id\": \"2c1cb1b2-9128-1072-91f2-c0b5d2157b5a\",\n \"user_id\": \"urn:uuid:66e93b7a-5094-2ad9-afd4-73b64527780a\",\n \"role_id\": \"7480eb2c-9d68-9c36-c1a6-23ae26412d63\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:7171a473-f5fd-e79f-6f5f-7423f00e5845\",\n \"user_id\": \"cdf5e4ba-cd18-aa4e-3c08-30b32fa9335a\",\n \"role_id\": \"urn:uuid:c7a0e155-c100-0cab-641d-242f73c11c0b\"\n },\n {\n \"id\": \"urn:uuid:a38a0906-344c-7db1-f2a5-e104e2794859\",\n \"user_id\": \"urn:uuid:cc07f493-2a60-ac93-2248-c0d78e4e8388\",\n \"role_id\": \"3140a5b1-3a2d-cc89-e3ff-da05f4ec012d\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6104,7 +6104,7 @@ }, "response": [ { - "id": "5f8a5d8e-ea17-4d93-9a69-dadeb48ff63f", + "id": "50763a33-f041-464f-a4a0-bddb30ce1954", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -6138,7 +6138,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"id\": \"8b077f6e-b6e6-1841-4b7a-5fed720de37e\",\n \"user_id\": \"e99aa162-1df8-15a1-b2f4-fd082f04c0e3\",\n \"role_id\": \"4f6eab19-c49d-432d-5c53-379cfbc57fee\"\n },\n {\n \"id\": \"2c1cb1b2-9128-1072-91f2-c0b5d2157b5a\",\n \"user_id\": \"urn:uuid:66e93b7a-5094-2ad9-afd4-73b64527780a\",\n \"role_id\": \"7480eb2c-9d68-9c36-c1a6-23ae26412d63\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:7171a473-f5fd-e79f-6f5f-7423f00e5845\",\n \"user_id\": \"cdf5e4ba-cd18-aa4e-3c08-30b32fa9335a\",\n \"role_id\": \"urn:uuid:c7a0e155-c100-0cab-641d-242f73c11c0b\"\n },\n {\n \"id\": \"urn:uuid:a38a0906-344c-7db1-f2a5-e104e2794859\",\n \"user_id\": \"urn:uuid:cc07f493-2a60-ac93-2248-c0d78e4e8388\",\n \"role_id\": \"3140a5b1-3a2d-cc89-e3ff-da05f4ec012d\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6155,12 +6155,12 @@ "value": "application/json" } ], - "body": "{\n \"user_roles\": [\n {\n \"id\": \"2014d09d-c095-f081-880c-3639ef4e31d3\",\n \"uid\": \"magna consecteturLoremsint tempo\",\n \"user_id\": \"urn:uuid:019756ff-18eb-44fa-6df2-349030c3b0f8\",\n \"role_id\": \"6193f17d-5198-563f-6ca9-da08e018bb1c\"\n },\n {\n \"id\": \"2ae5122b-2be3-8f6b-a2ac-3dbddd7d8e3b\",\n \"uid\": \"dolor veniamvoluptate sit quis s\",\n \"user_id\": \"urn:uuid:f7c46ed9-c27c-0822-7afc-fde78c854821\",\n \"role_id\": \"095f2dea-3c74-88c9-13fa-d279f7d89c81\"\n }\n ]\n}", + "body": "{\n \"user_roles\": [\n {\n \"id\": \"edb2cacc-6654-2e25-4e8c-ad828846375e\",\n \"uid\": \"adipisicing Lorem nisi dolorein \",\n \"user_id\": \"153ec0eb-1356-768d-3c3f-93ea3ab96ff3\",\n \"role_id\": \"5ae4c3a1-66f2-fe9a-7d29-bb4b14edc9bc\"\n },\n {\n \"id\": \"urn:uuid:88ba3596-6da9-fab0-c0d7-8006639a33d6\",\n \"uid\": \"exaute ametveniam suntesse nulla\",\n \"user_id\": \"urn:uuid:c1eb50ed-b165-066b-546a-ac5353ef43f6\",\n \"role_id\": \"30b06744-3608-7595-a81c-3c7a670170d0\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "df6ca180-ba32-40ea-be74-2f8e6d8ceeb7", + "id": "c3eb2394-8dba-4998-b5b1-e9dfc1c665bb", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6194,7 +6194,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"id\": \"8b077f6e-b6e6-1841-4b7a-5fed720de37e\",\n \"user_id\": \"e99aa162-1df8-15a1-b2f4-fd082f04c0e3\",\n \"role_id\": \"4f6eab19-c49d-432d-5c53-379cfbc57fee\"\n },\n {\n \"id\": \"2c1cb1b2-9128-1072-91f2-c0b5d2157b5a\",\n \"user_id\": \"urn:uuid:66e93b7a-5094-2ad9-afd4-73b64527780a\",\n \"role_id\": \"7480eb2c-9d68-9c36-c1a6-23ae26412d63\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:7171a473-f5fd-e79f-6f5f-7423f00e5845\",\n \"user_id\": \"cdf5e4ba-cd18-aa4e-3c08-30b32fa9335a\",\n \"role_id\": \"urn:uuid:c7a0e155-c100-0cab-641d-242f73c11c0b\"\n },\n {\n \"id\": \"urn:uuid:a38a0906-344c-7db1-f2a5-e104e2794859\",\n \"user_id\": \"urn:uuid:cc07f493-2a60-ac93-2248-c0d78e4e8388\",\n \"role_id\": \"3140a5b1-3a2d-cc89-e3ff-da05f4ec012d\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6216,7 +6216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25e26f10-82bb-42b3-950c-3dc471242753", + "id": "33a47469-c73c-48ff-a986-ad344fb3cfcb", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6250,7 +6250,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"id\": \"8b077f6e-b6e6-1841-4b7a-5fed720de37e\",\n \"user_id\": \"e99aa162-1df8-15a1-b2f4-fd082f04c0e3\",\n \"role_id\": \"4f6eab19-c49d-432d-5c53-379cfbc57fee\"\n },\n {\n \"id\": \"2c1cb1b2-9128-1072-91f2-c0b5d2157b5a\",\n \"user_id\": \"urn:uuid:66e93b7a-5094-2ad9-afd4-73b64527780a\",\n \"role_id\": \"7480eb2c-9d68-9c36-c1a6-23ae26412d63\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:7171a473-f5fd-e79f-6f5f-7423f00e5845\",\n \"user_id\": \"cdf5e4ba-cd18-aa4e-3c08-30b32fa9335a\",\n \"role_id\": \"urn:uuid:c7a0e155-c100-0cab-641d-242f73c11c0b\"\n },\n {\n \"id\": \"urn:uuid:a38a0906-344c-7db1-f2a5-e104e2794859\",\n \"user_id\": \"urn:uuid:cc07f493-2a60-ac93-2248-c0d78e4e8388\",\n \"role_id\": \"3140a5b1-3a2d-cc89-e3ff-da05f4ec012d\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6278,7 +6278,7 @@ } }, { - "id": "3bf3c6e6-8e0f-4f32-945e-278bbe5d3778", + "id": "0d7b475c-eec4-40ba-a093-1565f890f53e", "name": "Find user role pairing by id", "request": { "name": "Find user role pairing by id", @@ -6320,7 +6320,7 @@ }, "response": [ { - "id": "0f848811-03e8-4503-a537-2e1e62e5288f", + "id": "0c288a50-ab4b-4d25-af53-06e8ccd8d19d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -6359,12 +6359,12 @@ "value": "application/json" } ], - "body": "{\n \"user_role\": {\n \"id\": \"58905cf9-5d33-c65f-fe47-d48a39422950\",\n \"uid\": \"consecteturcillumea veniam ex ut\",\n \"user_id\": \"b7fa39d0-a9ca-922d-1ad9-abaad4248a06\",\n \"role_id\": \"a480b52f-bec9-0b9c-a008-74ea37dfe09e\"\n }\n}", + "body": "{\n \"user_role\": {\n \"id\": \"d0d90474-2fe6-bf0e-978e-2ec8e612e7c9\",\n \"uid\": \"eiusmod exercitation quis deseru\",\n \"user_id\": \"4084c655-e18b-3174-1544-6db4e759da0d\",\n \"role_id\": \"a1dd1697-8e75-7630-46c2-0d8048c9189e\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ff593502-4426-445a-9ab7-1e3ce671a727", + "id": "824a27ac-d698-44b9-bc3e-68028c37721b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6408,7 +6408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e532b1b0-4a45-4867-bb86-7f13a3930823", + "id": "a6ed9d5a-5d0f-4e4f-a0d9-facbee94ad22", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6458,7 +6458,7 @@ } }, { - "id": "c4c15d2a-7f9e-4a5d-9b04-ea54df64d729", + "id": "f4ab3c3a-f302-4146-9299-b587024208c2", "name": "Update a user role pairing by id", "request": { "name": "Update a user role pairing by id", @@ -6501,7 +6501,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:c1662fd7-1206-6220-55ea-c7c8f48210cb\",\n \"role_id\": \"urn:uuid:c41ba3da-38e8-490f-0c88-1e7694f0579d\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:331b040e-e61c-0cc2-cb59-4a9a9afc1489\",\n \"role_id\": \"urn:uuid:7d464046-d05d-5fc0-024c-70f8c2df09c9\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6513,7 +6513,7 @@ }, "response": [ { - "id": "1b51322e-c9b2-409a-a3c5-ebb0b3f93032", + "id": "ef506001-a173-489e-bad7-3417dcba1442", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -6548,7 +6548,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:c1662fd7-1206-6220-55ea-c7c8f48210cb\",\n \"role_id\": \"urn:uuid:c41ba3da-38e8-490f-0c88-1e7694f0579d\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:331b040e-e61c-0cc2-cb59-4a9a9afc1489\",\n \"role_id\": \"urn:uuid:7d464046-d05d-5fc0-024c-70f8c2df09c9\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6565,12 +6565,12 @@ "value": "application/json" } ], - "body": "{\n \"user_role\": {\n \"id\": \"58905cf9-5d33-c65f-fe47-d48a39422950\",\n \"uid\": \"consecteturcillumea veniam ex ut\",\n \"user_id\": \"b7fa39d0-a9ca-922d-1ad9-abaad4248a06\",\n \"role_id\": \"a480b52f-bec9-0b9c-a008-74ea37dfe09e\"\n }\n}", + "body": "{\n \"user_role\": {\n \"id\": \"d0d90474-2fe6-bf0e-978e-2ec8e612e7c9\",\n \"uid\": \"eiusmod exercitation quis deseru\",\n \"user_id\": \"4084c655-e18b-3174-1544-6db4e759da0d\",\n \"role_id\": \"a1dd1697-8e75-7630-46c2-0d8048c9189e\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1841a3e8-ad5f-468d-abc8-b31e023049b2", + "id": "f605e16a-f3e6-45ad-85d9-94ac3c28c466", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6605,7 +6605,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:c1662fd7-1206-6220-55ea-c7c8f48210cb\",\n \"role_id\": \"urn:uuid:c41ba3da-38e8-490f-0c88-1e7694f0579d\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:331b040e-e61c-0cc2-cb59-4a9a9afc1489\",\n \"role_id\": \"urn:uuid:7d464046-d05d-5fc0-024c-70f8c2df09c9\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6627,7 +6627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64fc0a55-a9c2-43d4-bfba-cc118074d452", + "id": "d82732ca-de0c-4372-ad44-1d4e943371a8", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6662,7 +6662,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:c1662fd7-1206-6220-55ea-c7c8f48210cb\",\n \"role_id\": \"urn:uuid:c41ba3da-38e8-490f-0c88-1e7694f0579d\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:331b040e-e61c-0cc2-cb59-4a9a9afc1489\",\n \"role_id\": \"urn:uuid:7d464046-d05d-5fc0-024c-70f8c2df09c9\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6690,7 +6690,7 @@ } }, { - "id": "eab97374-b04c-472a-8eaf-a76f45b8acca", + "id": "86ab6f9d-e95c-4d04-b30b-1db111c3e621", "name": "Delete a user role assignment", "request": { "name": "Delete a user role assignment", @@ -6732,7 +6732,7 @@ }, "response": [ { - "id": "95bf46af-2e56-4c10-bcfd-89e0ed3dda0d", + "id": "10826b5e-8deb-41a5-b871-0a1cc82237d2", "name": "User role was destroyed", "originalRequest": { "url": { @@ -6776,7 +6776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c801174b-1edf-4c6c-9709-09567b85f83a", + "id": "2fc7feef-8e1f-4df9-af1f-87120d884e57", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6820,7 +6820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eaa9b697-7162-4c8a-86e0-79d494ab5a9b", + "id": "1e345d94-5306-45a0-86e0-d98b9530bc7e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6876,7 +6876,7 @@ "description": "", "item": [ { - "id": "60354e4a-c499-4ff6-87f0-ba2d0ac352b7", + "id": "fde84ecf-0f02-4f2f-8fb2-c174856ea7d1", "name": "Get attribute data in bulk", "request": { "name": "Get attribute data in bulk", @@ -6926,7 +6926,7 @@ "type": "text/plain" }, "key": "label", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -6935,7 +6935,7 @@ "type": "text/plain" }, "key": "data_type", - "value": "owner select" + "value": "profile search" }, { "disabled": false, @@ -6961,7 +6961,7 @@ }, "response": [ { - "id": "f82d38eb-459c-435c-897f-d161f60b0eb0", + "id": "71aba4d9-cbcf-45d3-b3d7-64065f7e4a73", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7006,7 +7006,7 @@ "type": "text/plain" }, "key": "label", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -7015,7 +7015,7 @@ "type": "text/plain" }, "key": "data_type", - "value": "owner select" + "value": "profile search" }, { "disabled": false, @@ -7054,12 +7054,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attributes\": [\n {\n \"id\": \"urn:uuid:2971d454-b826-89fd-4a6b-256f1781c84d\",\n \"uid\": \"in quiin nisiquis laborum enim d\",\n \"label\": \"in con\",\n \"description\": \"eiusmod do nisi\",\n \"tool_tip\": \"eu quis sunt et ut\",\n \"crypt\": true,\n \"archived\": false,\n \"archived_on\": \"1973-12-05T21:44:30.180Z\",\n \"created_at\": \"1957-01-11T01:24:29.723Z\",\n \"updated_at\": \"2000-09-01T18:48:43.611Z\",\n \"date_format\": \"mm-dd-yyyy\",\n \"selectable_status\": \"tempor anim sint cillum\",\n \"risk_score_setting\": \"est fugiat\",\n \"risk_type\": \"esse eu deserunt sed\",\n \"ownership_driver\": false,\n \"allow_multiple_selections\": false,\n \"filtered_by_ne_attribute\": false,\n \"filtering_ne_attribute_id\": \"urn:uuid:08ab3a74-9eba-b71a-134b-135b3bcc0533\",\n \"ne_attribute_filter_id\": \"108300db-fcb3-a227-050d-6b5cae4c76eb\",\n \"reverse_association_attribute_id\": \"urn:uuid:d6f4c858-36c3-d702-11a7-d2034a33ed2f\",\n \"profile_type_id\": \"urn:uuid:38578259-2b1f-6b48-ad8a-6686213bf821\",\n \"legacy_id\": 84829042,\n \"tmp_created_at\": \"2016-03-24T20:31:19.937Z\",\n \"tmp_updated_at\": \"1978-07-06T13:10:31.799Z\"\n },\n {\n \"id\": \"urn:uuid:b405c347-c1cb-3558-e30a-f05b4d422da7\",\n \"uid\": \"veniam dolor idminim deseruntqui\",\n \"label\": \"cupidatat culpa aliquip reprehenderit est\",\n \"description\": \"labore fugiat quis nulla\",\n \"tool_tip\": \"enim fugiat dolore quis\",\n \"crypt\": false,\n \"archived\": true,\n \"archived_on\": \"1946-07-31T18:09:00.736Z\",\n \"created_at\": \"1994-01-23T05:12:08.883Z\",\n \"updated_at\": \"2009-04-02T21:52:58.453Z\",\n \"date_format\": \"mm-dd-yyyy\",\n \"selectable_status\": \"id sed\",\n \"risk_score_setting\": \"adipisicing consequat in amet aliqua\",\n \"risk_type\": \"in\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": false,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"urn:uuid:215059d4-50c7-fa81-1ad0-cbef583d1106\",\n \"ne_attribute_filter_id\": \"48da1674-f7fa-dfe6-62ed-d22d333aad13\",\n \"reverse_association_attribute_id\": \"ea8dcc02-0bc4-b171-405e-a136220e2ba4\",\n \"profile_type_id\": \"a8806003-9a88-f529-66b5-091e95273093\",\n \"legacy_id\": 20309348,\n \"tmp_created_at\": \"2012-08-02T07:00:41.430Z\",\n \"tmp_updated_at\": \"1972-07-09T12:13:12.215Z\"\n }\n ],\n \"_metadata\": {\n \"limit\": -23370255,\n \"offset\": 45886327,\n \"total\": 67610419,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"ne_attributes\": [\n {\n \"id\": \"1a9f76f3-8f18-1fad-3f8e-7b37203515d6\",\n \"uid\": \"cupidatat nulla eaex in sit anim\",\n \"label\": \"est et\",\n \"description\": \"officia sed\",\n \"tool_tip\": \"dolore ad esse Ut exercitation\",\n \"crypt\": false,\n \"archived\": true,\n \"archived_on\": \"2009-01-18T04:59:37.075Z\",\n \"created_at\": \"1997-01-15T03:01:18.097Z\",\n \"updated_at\": \"1985-04-28T23:59:56.966Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"non quis\",\n \"risk_score_setting\": \"sed laboris eiusmod quis in\",\n \"risk_type\": \"dolore\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": false,\n \"filtered_by_ne_attribute\": false,\n \"filtering_ne_attribute_id\": \"urn:uuid:cdbaab59-f3da-1eda-c905-ebb1a5913cbd\",\n \"ne_attribute_filter_id\": \"7500073a-cfd7-3dac-ea0f-d057ff04af9f\",\n \"reverse_association_attribute_id\": \"urn:uuid:09d53f71-ce95-eeb4-417b-99e75a67c416\",\n \"profile_type_id\": \"urn:uuid:00c4baf3-4254-e193-cd55-c3e8d93148b0\",\n \"legacy_id\": -24764442,\n \"tmp_created_at\": \"1996-10-10T14:58:29.022Z\",\n \"tmp_updated_at\": \"1971-07-13T15:32:13.897Z\"\n },\n {\n \"id\": \"urn:uuid:9d07a20e-f756-112f-ad99-214ecb9397ed\",\n \"uid\": \"laboris ametexercitation ad eius\",\n \"label\": \"eiusmod nisi ad\",\n \"description\": \"et ut\",\n \"tool_tip\": \"anim commodo\",\n \"crypt\": true,\n \"archived\": false,\n \"archived_on\": \"1991-06-17T09:39:20.638Z\",\n \"created_at\": \"1990-12-06T08:51:25.439Z\",\n \"updated_at\": \"1997-01-29T03:59:12.349Z\",\n \"date_format\": \"mm-dd-yyyy\",\n \"selectable_status\": \"dolore irure sit consectetur\",\n \"risk_score_setting\": \"adipisicing veniam Excepteur sed\",\n \"risk_type\": \"veniam velit\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": false,\n \"filtered_by_ne_attribute\": false,\n \"filtering_ne_attribute_id\": \"urn:uuid:7b852a3e-c6de-330c-c25d-a1361632daa9\",\n \"ne_attribute_filter_id\": \"e6a372d4-2075-fab9-234a-63f54eb0fb99\",\n \"reverse_association_attribute_id\": \"0cc54d39-8e41-d121-5ea0-75602d49432a\",\n \"profile_type_id\": \"fc3bd19a-1292-aeb2-e3c6-b455f51b3460\",\n \"legacy_id\": -91428997,\n \"tmp_created_at\": \"2009-10-06T14:39:41.784Z\",\n \"tmp_updated_at\": \"1999-09-11T08:08:57.124Z\"\n }\n ],\n \"_metadata\": {\n \"limit\": -75016052,\n \"offset\": -57157747,\n \"total\": 38516135,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "311d9261-77ed-4acc-a7dc-4e09e2d4804a", + "id": "f54e70de-9239-4744-8c21-a47714da8978", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7104,7 +7104,7 @@ "type": "text/plain" }, "key": "label", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -7113,7 +7113,7 @@ "type": "text/plain" }, "key": "data_type", - "value": "owner select" + "value": "profile search" }, { "disabled": false, @@ -7157,7 +7157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "012871f9-73fd-422b-99d8-d7026d9d1535", + "id": "b89d370e-37ce-49aa-a4f6-125d3dfd0765", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7202,7 +7202,7 @@ "type": "text/plain" }, "key": "label", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -7211,7 +7211,7 @@ "type": "text/plain" }, "key": "data_type", - "value": "owner select" + "value": "profile search" }, { "disabled": false, @@ -7261,7 +7261,7 @@ } }, { - "id": "a30134eb-20db-4dfe-a1fe-110209216525", + "id": "c25d125f-a567-432d-943d-ac868d75537b", "name": "Find attribute data by id", "request": { "name": "Find attribute data by id", @@ -7303,7 +7303,7 @@ }, "response": [ { - "id": "d0e7b2d0-b01a-4e86-ac7c-05a5bc13addf", + "id": "73322793-8e02-4d83-ba00-47ff39b2fdaa", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7342,12 +7342,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute\": {\n \"id\": \"urn:uuid:4b5d7764-ee0a-77e3-93b1-4274bc7f4f8c\",\n \"uid\": \"magna mollitofficia id quiselit \",\n \"label\": \"eu qui in sunt\",\n \"description\": \"cul\",\n \"tool_tip\": \"nulla dolor labore de\",\n \"crypt\": true,\n \"archived\": false,\n \"archived_on\": \"1993-08-09T01:00:33.111Z\",\n \"created_at\": \"2010-04-16T15:40:42.517Z\",\n \"updated_at\": \"1979-07-31T06:26:09.151Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"quis ipsum dolore Ut\",\n \"risk_score_setting\": \"esse mollit dolore labore ipsum\",\n \"risk_type\": \"et\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"3b036e7b-f5c3-736e-7eb6-ac8f6d458297\",\n \"ne_attribute_filter_id\": \"6d35caaf-7f80-285c-5b69-5bde279368ca\",\n \"reverse_association_attribute_id\": \"db2e3173-0f09-3d36-87e6-f9841c3a88ea\",\n \"profile_type_id\": \"urn:uuid:dbd34ae3-ba9f-39bb-5edc-7a5e73f31421\",\n \"legacy_id\": -15628674,\n \"tmp_created_at\": \"2005-07-08T06:20:28.390Z\",\n \"tmp_updated_at\": \"2008-12-02T10:26:07.446Z\"\n }\n}", + "body": "{\n \"ne_attribute\": {\n \"id\": \"932695a6-f297-01de-491b-4bc5e281cd65\",\n \"uid\": \"dolor aute reprehenderitaliqua a\",\n \"label\": \"labore\",\n \"description\": \"in dolore laboris\",\n \"tool_tip\": \"amet qui elit Ut Duis\",\n \"crypt\": true,\n \"archived\": true,\n \"archived_on\": \"1952-06-18T15:39:20.057Z\",\n \"created_at\": \"1948-06-08T15:30:09.009Z\",\n \"updated_at\": \"1960-09-05T15:46:38.521Z\",\n \"date_format\": \"dd-mm-yyyy\",\n \"selectable_status\": \"cupidatat\",\n \"risk_score_setting\": \"veniam eu sed enim ad\",\n \"risk_type\": \"voluptate id sunt\",\n \"ownership_driver\": false,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": false,\n \"filtering_ne_attribute_id\": \"0ca4477d-b1fe-9816-b43e-260202d8c7c9\",\n \"ne_attribute_filter_id\": \"urn:uuid:28a1db9b-c271-de4d-13be-85805c1d7765\",\n \"reverse_association_attribute_id\": \"b7a86424-16cb-52d4-f9cf-611fa83648c5\",\n \"profile_type_id\": \"urn:uuid:905afd84-72d8-6e05-3d01-186a1709d60e\",\n \"legacy_id\": -47539920,\n \"tmp_created_at\": \"1999-03-06T21:04:33.314Z\",\n \"tmp_updated_at\": \"1963-03-06T13:04:41.022Z\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3c337528-db39-42c5-889b-a8ef07bc7977", + "id": "2b7e4107-65d6-41cc-9973-bfa5591c0474", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7391,7 +7391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5cbce57-4015-44ad-ac96-27d7cedec3b4", + "id": "241159a9-dc22-4820-bbce-cec6235ee10b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7447,7 +7447,7 @@ "description": "", "item": [ { - "id": "d31b35dc-c360-44fa-ba24-773aef590016", + "id": "335242a2-19c6-4765-b83a-87ac6ce2fb73", "name": "Add a value to an option based attribute", "request": { "name": "Add a value to an option based attribute", @@ -7478,7 +7478,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:7cd6c835-20c9-a4f0-1339-69ab475d182b\",\n \"option\": \"et in\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:8d14877e-5ec9-0c25-8c4a-6cc757c5173b\",\n \"option\": \"exercitation dolor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7490,7 +7490,7 @@ }, "response": [ { - "id": "1026917f-17ec-4c99-ba93-1a5e0e1b2fb5", + "id": "f32408c6-2545-4ae9-9b99-4fd151e5ea40", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7524,7 +7524,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:7cd6c835-20c9-a4f0-1339-69ab475d182b\",\n \"option\": \"et in\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:8d14877e-5ec9-0c25-8c4a-6cc757c5173b\",\n \"option\": \"exercitation dolor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7541,12 +7541,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_option\": {\n \"id\": \"92c8a9ad-dc5c-1646-38e7-cb2fffb59a89\",\n \"uid\": \"incididunt Lorem proidentauteinc\",\n \"ne_attribute_id\": \"1f30f121-b1e3-c025-1966-ebfc40a18a6b\",\n \"option\": \"Excepteur commodo ad\"\n }\n}", + "body": "{\n \"ne_attribute_option\": {\n \"id\": \"urn:uuid:c6ea7c5e-bbcd-f035-231d-9c2704b35d4d\",\n \"uid\": \"sint autelaboreLorem magna auteu\",\n \"ne_attribute_id\": \"7cb003f2-1556-67aa-ec77-e78069a3eba7\",\n \"option\": \"sint ut qui\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "292cf638-7f79-41a6-8fd4-a81f9b4d3b85", + "id": "6a785677-6870-4817-b66b-478b20636b1e", "name": "Invalid input", "originalRequest": { "url": { @@ -7576,7 +7576,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:7cd6c835-20c9-a4f0-1339-69ab475d182b\",\n \"option\": \"et in\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:8d14877e-5ec9-0c25-8c4a-6cc757c5173b\",\n \"option\": \"exercitation dolor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7598,7 +7598,7 @@ } }, { - "id": "83191544-dcac-4138-aa44-5aed8b1d5c48", + "id": "df4f5720-8c04-4b05-bb91-a3e84a4d4396", "name": "Get option based attribute values", "request": { "name": "Get option based attribute values", @@ -7674,7 +7674,7 @@ }, "response": [ { - "id": "ccc02593-5b24-4ac0-8ddf-f98250ef3e61", + "id": "7063670c-9e3e-447c-a6b3-62f1081e3354", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7758,12 +7758,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"7f2fa52f-bdc6-46bf-909d-0d3decdf77a2\",\n \"uid\": \"aute esse non eusint ineiusmod d\",\n \"ne_attribute_id\": \"urn:uuid:8c637659-298f-a331-5c14-ed6cd061e860\",\n \"option\": \"in velit dolor\"\n },\n {\n \"id\": \"urn:uuid:d51b1a2d-b5af-7fcb-3517-d6d5179f2253\",\n \"uid\": \"ad officiadolore occaecat non Lo\",\n \"ne_attribute_id\": \"7fc40798-6f20-8f00-6456-cb926ed991b4\",\n \"option\": \"reprehenderit commodo\"\n }\n ],\n \"_metadata\": {\n \"limit\": -93986340,\n \"offset\": 91844314,\n \"total\": 64516832,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:3cb64e3d-90cb-c22c-04db-5837c5223a2d\",\n \"uid\": \"minimid dolore esse veniam utsed\",\n \"ne_attribute_id\": \"urn:uuid:50b4f11a-0aac-8956-f574-97b78dab2408\",\n \"option\": \"enim aute\"\n },\n {\n \"id\": \"9c9a398f-c400-39ca-d1a2-0202eb46ae51\",\n \"uid\": \"commodo veniampariatur doconsequ\",\n \"ne_attribute_id\": \"1dbc9e7d-ef9b-b8ad-4fc5-0055e9388433\",\n \"option\": \"exercitation ex magna amet\"\n }\n ],\n \"_metadata\": {\n \"limit\": 68194130,\n \"offset\": 5293188,\n \"total\": 15089520,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "716e69ef-47b4-4e56-a2ed-fac07bff957c", + "id": "06e39236-7893-4941-9316-6aff3e156c5c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7852,7 +7852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2023dc8-6554-4520-afdb-6314e29cf9db", + "id": "edf992e9-1c7f-4545-9081-b4adccbe42ea", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7947,7 +7947,7 @@ } }, { - "id": "c498d15a-a6dc-4852-9b1f-8b32871fc816", + "id": "6d05b529-20f5-44a0-991d-485d857db58a", "name": "Create multiple new option based attribute values", "request": { "name": "Create multiple new option based attribute values", @@ -7978,7 +7978,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"urn:uuid:429b1e62-2d36-fc91-1b35-93455f27202f\",\n \"option\": \"officia ea ex nostrud\"\n },\n {\n \"ne_attribute_id\": \"urn:uuid:efe2b308-e06d-b29b-0781-6f0d973d875d\",\n \"option\": \"qui ex\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"9888815a-5812-d4ef-909f-0f5e7e98f4ea\",\n \"option\": \"Lorem\"\n },\n {\n \"ne_attribute_id\": \"urn:uuid:7d59a462-66cd-8d71-8a47-9299a27e450a\",\n \"option\": \"velit\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -7990,7 +7990,7 @@ }, "response": [ { - "id": "67a30070-1e6f-4fd2-b67c-1f8f539cb0af", + "id": "aac3acdd-9ffe-4f35-b197-c483bc18b63a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8024,7 +8024,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"urn:uuid:429b1e62-2d36-fc91-1b35-93455f27202f\",\n \"option\": \"officia ea ex nostrud\"\n },\n {\n \"ne_attribute_id\": \"urn:uuid:efe2b308-e06d-b29b-0781-6f0d973d875d\",\n \"option\": \"qui ex\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"9888815a-5812-d4ef-909f-0f5e7e98f4ea\",\n \"option\": \"Lorem\"\n },\n {\n \"ne_attribute_id\": \"urn:uuid:7d59a462-66cd-8d71-8a47-9299a27e450a\",\n \"option\": \"velit\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8041,12 +8041,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:8d6009f9-2d41-c6c2-418d-ad9631beeb23\",\n \"uid\": \"laboris in ea proident mollitcom\",\n \"ne_attribute_id\": \"f1195c5b-f8b1-7ccb-c561-b536e35ad974\",\n \"option\": \"labore Excepteur dolor qu\"\n },\n {\n \"id\": \"urn:uuid:67f54447-7470-ae4a-32c2-5ee92dc3a20c\",\n \"uid\": \"adipisicing in velit Duis animci\",\n \"ne_attribute_id\": \"urn:uuid:4f00e126-2321-6192-7836-6689ca4a7a78\",\n \"option\": \"labore nostrud aliquip sint\"\n }\n ]\n}", + "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:805b6354-f215-17c3-d360-2a9fff317759\",\n \"uid\": \"aliqua consectetur commodosed vo\",\n \"ne_attribute_id\": \"b0e146be-9b06-f2c2-6f0e-6aff743c0abb\",\n \"option\": \"id fugiat dolor consequat\"\n },\n {\n \"id\": \"0e28d016-bc3b-b480-5d33-809d214aa4f2\",\n \"uid\": \"exercitationenim aliquip pariatu\",\n \"ne_attribute_id\": \"urn:uuid:9d921652-7075-703a-81fe-bbbd30bc9f12\",\n \"option\": \"nulla incididunt quis\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a963c7c2-bf43-4c75-a7c5-8e8f24f3775f", + "id": "6ea32057-6a3f-4b76-9808-98db595727b3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8080,7 +8080,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"urn:uuid:429b1e62-2d36-fc91-1b35-93455f27202f\",\n \"option\": \"officia ea ex nostrud\"\n },\n {\n \"ne_attribute_id\": \"urn:uuid:efe2b308-e06d-b29b-0781-6f0d973d875d\",\n \"option\": \"qui ex\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"9888815a-5812-d4ef-909f-0f5e7e98f4ea\",\n \"option\": \"Lorem\"\n },\n {\n \"ne_attribute_id\": \"urn:uuid:7d59a462-66cd-8d71-8a47-9299a27e450a\",\n \"option\": \"velit\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8102,7 +8102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fef6b13-b9b5-4b01-9370-b425557ddba1", + "id": "b7b2e042-2d91-447b-a725-ff05e2f4a10d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8136,7 +8136,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"urn:uuid:429b1e62-2d36-fc91-1b35-93455f27202f\",\n \"option\": \"officia ea ex nostrud\"\n },\n {\n \"ne_attribute_id\": \"urn:uuid:efe2b308-e06d-b29b-0781-6f0d973d875d\",\n \"option\": \"qui ex\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"9888815a-5812-d4ef-909f-0f5e7e98f4ea\",\n \"option\": \"Lorem\"\n },\n {\n \"ne_attribute_id\": \"urn:uuid:7d59a462-66cd-8d71-8a47-9299a27e450a\",\n \"option\": \"velit\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8164,7 +8164,7 @@ } }, { - "id": "e3c63b07-5e9a-45dc-8ff9-21c745d9161e", + "id": "90faf9df-a6c0-4b74-ada5-3ef5c88e0baa", "name": "Update multiple option based attribute values", "request": { "name": "Update multiple option based attribute values", @@ -8195,7 +8195,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:bb4f89d0-e175-d6fa-fae3-8196045a742d\",\n \"ne_attribute_id\": \"urn:uuid:0fd168b5-6686-9336-33a4-64dc4048fbcf\",\n \"option\": \"sunt qui\"\n },\n {\n \"id\": \"urn:uuid:88f8e2f9-086d-e72b-f784-b0c9b5fc1e2c\",\n \"ne_attribute_id\": \"c5bdb4c9-ca69-5246-2982-916662995b11\",\n \"option\": \"dolore tempor ex cillum ipsum\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"c9ab18db-406c-219f-0cf1-ffb8e8dfd4a0\",\n \"ne_attribute_id\": \"urn:uuid:09ed474c-8fae-2f31-7fa2-706fa1d12eb9\",\n \"option\": \"ad est sed voluptate\"\n },\n {\n \"id\": \"a8b6801e-0681-ad83-55e1-37fc8fe0153e\",\n \"ne_attribute_id\": \"30f566e7-6fce-5463-57c0-ceb07870c16a\",\n \"option\": \"aliqua nulla\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8207,7 +8207,7 @@ }, "response": [ { - "id": "939bdd7d-e31a-4c76-b26b-00450a8bc59b", + "id": "5abce967-379f-4097-87bc-f96adb8b5595", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8241,7 +8241,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:bb4f89d0-e175-d6fa-fae3-8196045a742d\",\n \"ne_attribute_id\": \"urn:uuid:0fd168b5-6686-9336-33a4-64dc4048fbcf\",\n \"option\": \"sunt qui\"\n },\n {\n \"id\": \"urn:uuid:88f8e2f9-086d-e72b-f784-b0c9b5fc1e2c\",\n \"ne_attribute_id\": \"c5bdb4c9-ca69-5246-2982-916662995b11\",\n \"option\": \"dolore tempor ex cillum ipsum\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"c9ab18db-406c-219f-0cf1-ffb8e8dfd4a0\",\n \"ne_attribute_id\": \"urn:uuid:09ed474c-8fae-2f31-7fa2-706fa1d12eb9\",\n \"option\": \"ad est sed voluptate\"\n },\n {\n \"id\": \"a8b6801e-0681-ad83-55e1-37fc8fe0153e\",\n \"ne_attribute_id\": \"30f566e7-6fce-5463-57c0-ceb07870c16a\",\n \"option\": \"aliqua nulla\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8258,12 +8258,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:8d6009f9-2d41-c6c2-418d-ad9631beeb23\",\n \"uid\": \"laboris in ea proident mollitcom\",\n \"ne_attribute_id\": \"f1195c5b-f8b1-7ccb-c561-b536e35ad974\",\n \"option\": \"labore Excepteur dolor qu\"\n },\n {\n \"id\": \"urn:uuid:67f54447-7470-ae4a-32c2-5ee92dc3a20c\",\n \"uid\": \"adipisicing in velit Duis animci\",\n \"ne_attribute_id\": \"urn:uuid:4f00e126-2321-6192-7836-6689ca4a7a78\",\n \"option\": \"labore nostrud aliquip sint\"\n }\n ]\n}", + "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:805b6354-f215-17c3-d360-2a9fff317759\",\n \"uid\": \"aliqua consectetur commodosed vo\",\n \"ne_attribute_id\": \"b0e146be-9b06-f2c2-6f0e-6aff743c0abb\",\n \"option\": \"id fugiat dolor consequat\"\n },\n {\n \"id\": \"0e28d016-bc3b-b480-5d33-809d214aa4f2\",\n \"uid\": \"exercitationenim aliquip pariatu\",\n \"ne_attribute_id\": \"urn:uuid:9d921652-7075-703a-81fe-bbbd30bc9f12\",\n \"option\": \"nulla incididunt quis\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9f0eed5b-db3c-4314-803a-2983c92c4cbb", + "id": "738f369a-4809-4ae2-ae04-6cbdcf5f0346", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8297,7 +8297,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:bb4f89d0-e175-d6fa-fae3-8196045a742d\",\n \"ne_attribute_id\": \"urn:uuid:0fd168b5-6686-9336-33a4-64dc4048fbcf\",\n \"option\": \"sunt qui\"\n },\n {\n \"id\": \"urn:uuid:88f8e2f9-086d-e72b-f784-b0c9b5fc1e2c\",\n \"ne_attribute_id\": \"c5bdb4c9-ca69-5246-2982-916662995b11\",\n \"option\": \"dolore tempor ex cillum ipsum\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"c9ab18db-406c-219f-0cf1-ffb8e8dfd4a0\",\n \"ne_attribute_id\": \"urn:uuid:09ed474c-8fae-2f31-7fa2-706fa1d12eb9\",\n \"option\": \"ad est sed voluptate\"\n },\n {\n \"id\": \"a8b6801e-0681-ad83-55e1-37fc8fe0153e\",\n \"ne_attribute_id\": \"30f566e7-6fce-5463-57c0-ceb07870c16a\",\n \"option\": \"aliqua nulla\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8319,7 +8319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2486e21d-f4cd-4468-81ee-5b77ec1ffb34", + "id": "ed243c69-dbf4-4be4-b2ab-461926b68954", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8353,7 +8353,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:bb4f89d0-e175-d6fa-fae3-8196045a742d\",\n \"ne_attribute_id\": \"urn:uuid:0fd168b5-6686-9336-33a4-64dc4048fbcf\",\n \"option\": \"sunt qui\"\n },\n {\n \"id\": \"urn:uuid:88f8e2f9-086d-e72b-f784-b0c9b5fc1e2c\",\n \"ne_attribute_id\": \"c5bdb4c9-ca69-5246-2982-916662995b11\",\n \"option\": \"dolore tempor ex cillum ipsum\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"c9ab18db-406c-219f-0cf1-ffb8e8dfd4a0\",\n \"ne_attribute_id\": \"urn:uuid:09ed474c-8fae-2f31-7fa2-706fa1d12eb9\",\n \"option\": \"ad est sed voluptate\"\n },\n {\n \"id\": \"a8b6801e-0681-ad83-55e1-37fc8fe0153e\",\n \"ne_attribute_id\": \"30f566e7-6fce-5463-57c0-ceb07870c16a\",\n \"option\": \"aliqua nulla\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8381,7 +8381,7 @@ } }, { - "id": "e0bef3f4-0b5b-48ab-b285-90a89d6c5035", + "id": "66ba0e72-75ff-44fd-a2c0-122de5fa5f40", "name": "Find option based attribute value by id", "request": { "name": "Find option based attribute value by id", @@ -8423,7 +8423,7 @@ }, "response": [ { - "id": "9eed029e-387d-41d2-af6b-56c4361b623b", + "id": "3bf14ece-d5df-48b3-90c4-040c9089ef0f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8462,12 +8462,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_option\": {\n \"id\": \"92c8a9ad-dc5c-1646-38e7-cb2fffb59a89\",\n \"uid\": \"incididunt Lorem proidentauteinc\",\n \"ne_attribute_id\": \"1f30f121-b1e3-c025-1966-ebfc40a18a6b\",\n \"option\": \"Excepteur commodo ad\"\n }\n}", + "body": "{\n \"ne_attribute_option\": {\n \"id\": \"urn:uuid:c6ea7c5e-bbcd-f035-231d-9c2704b35d4d\",\n \"uid\": \"sint autelaboreLorem magna auteu\",\n \"ne_attribute_id\": \"7cb003f2-1556-67aa-ec77-e78069a3eba7\",\n \"option\": \"sint ut qui\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "81364248-d2b5-4267-91d7-79f6fd0a4318", + "id": "4e13d258-d615-4e20-8622-3b3ec0e04ef7", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8511,7 +8511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcf6afc5-6f7b-4633-880d-77bc8bf8c548", + "id": "a7f410de-0b95-4c1f-a3a5-acbe2c6d69cc", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8561,7 +8561,7 @@ } }, { - "id": "54a22ebe-6a28-4322-a90e-5a2238201b26", + "id": "f3a55f83-036d-4fe4-831f-f356c430ed16", "name": "Update a option based attribute value by id", "request": { "name": "Update a option based attribute value by id", @@ -8604,7 +8604,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:7cd6c835-20c9-a4f0-1339-69ab475d182b\",\n \"option\": \"et in\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:8d14877e-5ec9-0c25-8c4a-6cc757c5173b\",\n \"option\": \"exercitation dolor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8616,7 +8616,7 @@ }, "response": [ { - "id": "241908a7-6c64-470c-86dc-3d585c02b083", + "id": "f139efab-395a-4628-a99d-2ee61ef66ad0", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8651,7 +8651,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:7cd6c835-20c9-a4f0-1339-69ab475d182b\",\n \"option\": \"et in\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:8d14877e-5ec9-0c25-8c4a-6cc757c5173b\",\n \"option\": \"exercitation dolor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8668,12 +8668,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_option\": {\n \"id\": \"92c8a9ad-dc5c-1646-38e7-cb2fffb59a89\",\n \"uid\": \"incididunt Lorem proidentauteinc\",\n \"ne_attribute_id\": \"1f30f121-b1e3-c025-1966-ebfc40a18a6b\",\n \"option\": \"Excepteur commodo ad\"\n }\n}", + "body": "{\n \"ne_attribute_option\": {\n \"id\": \"urn:uuid:c6ea7c5e-bbcd-f035-231d-9c2704b35d4d\",\n \"uid\": \"sint autelaboreLorem magna auteu\",\n \"ne_attribute_id\": \"7cb003f2-1556-67aa-ec77-e78069a3eba7\",\n \"option\": \"sint ut qui\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4852d0ec-ae14-466b-b4aa-32364805ee5e", + "id": "683df460-69ab-4402-ad48-0cf211b529e2", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8708,7 +8708,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:7cd6c835-20c9-a4f0-1339-69ab475d182b\",\n \"option\": \"et in\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:8d14877e-5ec9-0c25-8c4a-6cc757c5173b\",\n \"option\": \"exercitation dolor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8730,7 +8730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92972100-2251-4a4d-bb73-548a61a0e03c", + "id": "94a2fe81-1db9-4867-a036-1f904fdb227e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8765,7 +8765,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:7cd6c835-20c9-a4f0-1339-69ab475d182b\",\n \"option\": \"et in\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:8d14877e-5ec9-0c25-8c4a-6cc757c5173b\",\n \"option\": \"exercitation dolor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8793,7 +8793,7 @@ } }, { - "id": "c6ee938e-593c-4132-bc2c-8a261d516e55", + "id": "fb8e7ed4-ed5c-4bbd-9bfc-2e57a3c90a74", "name": "Delete a option based attribute value by id", "request": { "name": "Delete a option based attribute value by id", @@ -8835,7 +8835,7 @@ }, "response": [ { - "id": "a1489fe0-03ba-48f9-ae5b-f03d50dc9254", + "id": "57c5df25-2706-43bd-9d8b-b60cd1bccf48", "name": "Confirmation of a deleted object", "originalRequest": { "url": { @@ -8879,7 +8879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72e556a4-b1c7-4263-bacb-8c5be1667286", + "id": "cff53d7c-613f-422f-95b6-1a7607a9dded", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8923,7 +8923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "000a0f13-56bd-489e-a2cd-1682f70fab40", + "id": "86430d67-cb5b-4f5c-9944-d60db63c0760", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8979,7 +8979,7 @@ "description": "", "item": [ { - "id": "8e7fe583-4e00-4876-97bc-1306fb1a7050", + "id": "d9566469-a5ff-442f-9ec8-ffd0bae5dcc4", "name": "Create a profile page", "request": { "name": "Create a profile page", @@ -9023,7 +9023,7 @@ }, "response": [ { - "id": "7338d848-949b-4958-b9fe-7816f2316462", + "id": "58363796-b340-40c3-825f-b6c0b2047898", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9080,7 +9080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6eb4f6c-e49f-46e7-aeb1-6ca0f11f248a", + "id": "edb1aa60-7ea4-4bb0-9517-8f85aed1b30b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9137,7 +9137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43d328f4-fbdf-413b-8a25-c54f00db9cd7", + "id": "9b1ae385-bf03-498d-94a3-72177fc98535", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9200,7 +9200,7 @@ } }, { - "id": "dd322879-1124-47c5-b544-a6469fb93487", + "id": "6053eaa4-0df7-414b-b30e-100473c642cc", "name": "Create a workflow page", "request": { "name": "Create a workflow page", @@ -9244,7 +9244,7 @@ }, "response": [ { - "id": "1deef751-a4e1-46b6-ba6c-0b645d6b5852", + "id": "bc7736c2-00e0-4935-b8ad-b0b4add1c162", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9301,7 +9301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ed3075f-d393-46ca-9212-20ec34d9d2aa", + "id": "e169b140-df80-45d5-8fb5-6b6fe4fe9116", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9358,7 +9358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "899247ef-7c43-449d-8021-6229e0ce3f5a", + "id": "feabc4be-7d46-4210-9370-e54d144b49e1", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9427,7 +9427,7 @@ "description": "", "item": [ { - "id": "51e6bfad-78a9-4708-b04b-e679f2f64d5a", + "id": "dfe4a978-8fe3-4a89-9530-ad6717156b53", "name": "Create a profile type", "request": { "name": "Create a profile type", @@ -9458,7 +9458,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliqua iruredeseruntdolor offici\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"laboreveniam ut dolore commodoet\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"do est nostrud Duisincididunt ul\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"quis exincididunt aliqua fugiatU\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", + "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"dolor aliquip pariatur dolore su\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"velit esse consequat proident pa\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"sed ut sintsunt eiusmoddo exdese\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"et pariaturUt sintsint esse Exce\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9470,7 +9470,7 @@ }, "response": [ { - "id": "3dc87c8c-9684-4575-94cd-19b825e3b8e9", + "id": "1e3a54f1-23e8-4eb6-90c0-df190774704f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9504,7 +9504,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliqua iruredeseruntdolor offici\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"laboreveniam ut dolore commodoet\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"do est nostrud Duisincididunt ul\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"quis exincididunt aliqua fugiatU\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", + "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"dolor aliquip pariatur dolore su\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"velit esse consequat proident pa\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"sed ut sintsunt eiusmoddo exdese\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"et pariaturUt sintsint esse Exce\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9521,12 +9521,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ad exercitation Loremproidentdol\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"do laborelabore quis consequatpr\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ullamco aliquip magna quisvolupt\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in consectetur situt reprehender\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"qui eapariatur magna officia con\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", + "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliqua irureofficia commodo sunt\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"magna Ut ea aliquamollit officia\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"dolore minim cupidatatlaborum pa\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nulla magnadeserunt Utullamco do\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nostrud aliquipcommodooccaecat E\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0ec832b5-48a0-4c95-94d6-271b074e7dd6", + "id": "7e92c151-4bf8-45e2-a847-c266e69ef529", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9560,7 +9560,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliqua iruredeseruntdolor offici\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"laboreveniam ut dolore commodoet\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"do est nostrud Duisincididunt ul\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"quis exincididunt aliqua fugiatU\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", + "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"dolor aliquip pariatur dolore su\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"velit esse consequat proident pa\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"sed ut sintsunt eiusmoddo exdese\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"et pariaturUt sintsint esse Exce\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9582,7 +9582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edb22862-2405-4075-aa9b-bb9b62e32f53", + "id": "2c64919c-9ce2-403f-abe9-bd15511f67c4", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9616,7 +9616,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliqua iruredeseruntdolor offici\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"laboreveniam ut dolore commodoet\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"do est nostrud Duisincididunt ul\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"quis exincididunt aliqua fugiatU\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", + "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"dolor aliquip pariatur dolore su\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"velit esse consequat proident pa\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"sed ut sintsunt eiusmoddo exdese\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"et pariaturUt sintsint esse Exce\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9644,7 +9644,7 @@ } }, { - "id": "8680515a-305f-4ced-980a-df2590c04b7a", + "id": "53eef3a2-4dd5-4222-8baf-615a132c3a57", "name": "Get profile types", "request": { "name": "Get profile types", @@ -9694,7 +9694,7 @@ "type": "text/plain" }, "key": "name", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -9729,7 +9729,7 @@ }, "response": [ { - "id": "55711621-94c2-4fff-b814-9764f73cd7ee", + "id": "2eec924d-01a1-49a6-a76a-b8b5536f275b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9774,7 +9774,7 @@ "type": "text/plain" }, "key": "name", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -9822,12 +9822,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_types\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"sunt exercitation occaecat deser\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"tempor reprehenderit eiusmod ali\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"sed voluptate autedeserunt fugia\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in amet eiusmod quidolor nostrud\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nulla quis pariatur ipsumesse nu\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"qui magna etullamco amet elitqui\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"adipisicing ad in Lorem nostrudm\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"dolore ad dolor id sedqui offici\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nulla occaecatUt nostrud culpa c\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"anim voluptate ullamco quis nost\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n ],\n \"_metadata\": {\n \"limit\": 25956991,\n \"offset\": 37200906,\n \"total\": -90292783,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"profile_types\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"dolorquis voluptate esse pariatu\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ad do nullapariaturculpa ad cons\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliquip id proident auteet cillu\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"dolore commodo dolorsint autevel\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"officia ea non veniamnisi ea ex \",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"tempor reprehenderit minim quisv\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"do anim dolor nostrud sintaliqua\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"do Loremmagna deserunt tempor es\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"occaecat quis commodo Utsed in r\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in auteipsum adipisicing consect\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n ],\n \"_metadata\": {\n \"limit\": 16462759,\n \"offset\": -97855011,\n \"total\": 6049406,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9959a38d-3e21-4b44-8662-40a97999fb30", + "id": "2cd695b8-cf2f-4352-bc25-cb249f5c2e70", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9872,7 +9872,7 @@ "type": "text/plain" }, "key": "name", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -9925,7 +9925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcbc3df6-26e6-44bf-bcd4-b606dfe47890", + "id": "f9c28558-c319-4dd4-9db1-65bf49f1d0f9", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9970,7 +9970,7 @@ "type": "text/plain" }, "key": "name", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -10029,7 +10029,7 @@ } }, { - "id": "55118c2d-9b21-4434-819d-eafb92e0a34f", + "id": "e74fb54d-4e5b-422a-afcb-ff8d6947767a", "name": "Find profile type by id", "request": { "name": "Find profile type by id", @@ -10071,7 +10071,7 @@ }, "response": [ { - "id": "403f00f6-6f01-43d0-8dbb-e32b4e69bdc2", + "id": "044408e9-a5d2-44af-b784-9f5b9075db6a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10110,12 +10110,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ad exercitation Loremproidentdol\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"do laborelabore quis consequatpr\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ullamco aliquip magna quisvolupt\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in consectetur situt reprehender\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"qui eapariatur magna officia con\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", + "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliqua irureofficia commodo sunt\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"magna Ut ea aliquamollit officia\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"dolore minim cupidatatlaborum pa\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nulla magnadeserunt Utullamco do\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nostrud aliquipcommodooccaecat E\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3c1c2fe9-d2fa-44a7-bfe7-9e924113a3dd", + "id": "27aa1ff2-e09d-43d5-8f93-65676d6c009a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10159,7 +10159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cec3fcf4-e03b-4274-80ea-7799be668322", + "id": "a466b80d-c83a-4b4b-80ee-5949d553c8a6", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10209,7 +10209,7 @@ } }, { - "id": "71d1e529-8e1a-4544-9a29-e02409704263", + "id": "c66e1512-b5ec-4dc4-803f-f18399389b53", "name": "Update a profile type by id", "request": { "name": "Update a profile type by id", @@ -10252,7 +10252,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"doloread culpaex ipsum Ut aliqua\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"officia id Loremsint Excepteur d\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"anim sed ut exercitation Duisrep\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"occaecat culpa amet laborumipsum\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", + "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliquip dolor doloranim exercita\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"minimpariatur exercitationdolor \",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliquip cillum aute enimea eu si\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Lorem non eumagna exercitation a\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -10264,7 +10264,7 @@ }, "response": [ { - "id": "98bd45ca-10f1-49a4-adc4-2a5144956f4b", + "id": "18a37285-0148-4316-ab4d-56ef3aa6380d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10299,7 +10299,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"doloread culpaex ipsum Ut aliqua\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"officia id Loremsint Excepteur d\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"anim sed ut exercitation Duisrep\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"occaecat culpa amet laborumipsum\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", + "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliquip dolor doloranim exercita\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"minimpariatur exercitationdolor \",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliquip cillum aute enimea eu si\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Lorem non eumagna exercitation a\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -10316,12 +10316,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ad exercitation Loremproidentdol\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"do laborelabore quis consequatpr\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ullamco aliquip magna quisvolupt\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in consectetur situt reprehender\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"qui eapariatur magna officia con\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", + "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliqua irureofficia commodo sunt\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"magna Ut ea aliquamollit officia\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"dolore minim cupidatatlaborum pa\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nulla magnadeserunt Utullamco do\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nostrud aliquipcommodooccaecat E\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8eba904b-0955-4576-8680-86d5b3819424", + "id": "76d69637-67ea-4157-bb19-21ae3dda61bb", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10356,7 +10356,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"doloread culpaex ipsum Ut aliqua\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"officia id Loremsint Excepteur d\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"anim sed ut exercitation Duisrep\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"occaecat culpa amet laborumipsum\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", + "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliquip dolor doloranim exercita\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"minimpariatur exercitationdolor \",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliquip cillum aute enimea eu si\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Lorem non eumagna exercitation a\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -10378,7 +10378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18737f56-4d8a-4cd3-854d-41323586cc9b", + "id": "624aa1b1-a1f1-454c-915a-e26406130612", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10413,7 +10413,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"doloread culpaex ipsum Ut aliqua\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"officia id Loremsint Excepteur d\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"anim sed ut exercitation Duisrep\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"occaecat culpa amet laborumipsum\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", + "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliquip dolor doloranim exercita\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"minimpariatur exercitationdolor \",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aliquip cillum aute enimea eu si\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Lorem non eumagna exercitation a\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -10441,7 +10441,7 @@ } }, { - "id": "0cc6449b-d93a-460f-b5e5-51f41db36c99", + "id": "d533bceb-7b92-49c1-82bc-9fd56d7c69e8", "name": "Delete profile type", "request": { "name": "Delete profile type", @@ -10483,7 +10483,7 @@ }, "response": [ { - "id": "5f4e1f51-e95e-4eac-915d-a3a9005db3e1", + "id": "3b332bfd-55f5-4601-86be-8255bdd8fd57", "name": "Info about the operation", "originalRequest": { "url": { @@ -10527,7 +10527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ab2fedd-791f-48bb-96f5-96e84d47702a", + "id": "13a7699e-7e87-4c1b-b32a-45eae6e84342", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10571,7 +10571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "469a1b93-df57-4e36-bf8f-fa4853d98621", + "id": "aa114ebf-4e80-43de-8ad8-00b21f7dd47f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10627,7 +10627,7 @@ "description": "", "item": [ { - "id": "37cf6c06-4cc8-44b0-90ae-ad8fdfabfeea", + "id": "77969d92-4c13-4099-bae1-b3e5ba6248ba", "name": "profile_types/ne_attributes synced status", "request": { "name": "profile_types/ne_attributes synced status", @@ -10725,7 +10725,7 @@ }, "response": [ { - "id": "45146eb2-6e69-4f11-b745-e1ead004bf0f", + "id": "f0dc7826-9f06-4024-8fea-4f151d8e41fc", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10811,12 +10811,12 @@ "value": "application/json" } ], - "body": "{\n \"form\": {\n \"count\": 5,\n \"records\": [\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"nullaest irure eu autenostrud do\",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n },\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"nisi officia ut suntincididunt i\",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n }\n ]\n }\n}", + "body": "{\n \"form\": {\n \"count\": 5,\n \"records\": [\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"amet incididunt aliquip quistemp\",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n },\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"sed culpa amet idminim nulla eiu\",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f88c4636-1dc1-4135-84d1-3f53f8b81fa9", + "id": "55a1a354-e293-48c5-8c20-a1f9e7ad6aa7", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10907,7 +10907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f263e3e5-971d-4d8b-9a78-2936709a91dd", + "id": "d6357a68-fde0-433a-8794-63287e60ec88", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11004,7 +11004,7 @@ } }, { - "id": "5e652ff0-62b4-4f79-b2f4-73a1e4d605bd", + "id": "449ab145-576f-42ff-bade-80f94150057f", "name": "Create a synced attribute", "request": { "name": "Create a synced attribute", @@ -11054,7 +11054,7 @@ }, "response": [ { - "id": "63514263-9262-43ad-a24c-1fe666914468", + "id": "78a91a34-03c7-4d16-94fe-bf53fd852e52", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11112,7 +11112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8db5d7be-d308-430b-985b-0bcba5f3a4a2", + "id": "6d975d3c-4b84-4cb1-8929-bcc1f92d592c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11170,7 +11170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "543cea1d-8fb6-4b1c-a5c1-4ba65c2c3432", + "id": "82c0aaba-2550-43da-8776-1f0dc19073ac", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11234,7 +11234,7 @@ } }, { - "id": "32de0abb-dfc1-4608-bb3c-7a20cc48febe", + "id": "7bed5a6b-bd11-48de-8fc6-e102fc8439e8", "name": "Delete synced attribute", "request": { "name": "Delete synced attribute", @@ -11288,7 +11288,7 @@ }, "response": [ { - "id": "0c50b567-405c-4c5d-876f-9a86db6d573f", + "id": "0ba7d248-595a-4e14-9318-7dbb2f6a29e7", "name": "Info about the operation", "originalRequest": { "url": { @@ -11334,7 +11334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b441dc52-eac4-4b7f-ba26-067bbdd0573c", + "id": "83027720-fb3c-4814-912e-cf68c07b910b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11380,7 +11380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cfd29c0-d418-4072-8056-7aa4b5de1c5a", + "id": "b40e72d3-4bab-4d26-9e57-87d54e88eddc", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11438,7 +11438,7 @@ "description": "", "item": [ { - "id": "13b3b257-fbff-4979-b875-a049c09f3176", + "id": "09061090-4e8b-432e-92de-8282a4838ccf", "name": "Create a profile type role", "request": { "name": "Create a profile type role", @@ -11481,7 +11481,7 @@ }, "response": [ { - "id": "dca8ccdd-adbc-478d-85dd-8ff28a528118", + "id": "a307be8b-0a2f-4cba-99d2-283619eb665a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11537,7 +11537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03b53e7d-416e-489c-9ff0-10d2ccf54dc2", + "id": "3e054a11-76c4-4dbc-a26e-e63d35973974", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11593,7 +11593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa5e01e8-4ed5-4ae1-ae80-3536a44d0693", + "id": "f0cdac3e-0a3a-42d2-aa76-5df6ffe6275a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11661,7 +11661,7 @@ "description": "", "item": [ { - "id": "ab8c656d-66af-457c-b1e0-430f9300ecee", + "id": "a1eadb77-924e-4e1d-8897-874dce4161b1", "name": "Create a profile", "request": { "name": "Create a profile", @@ -11692,7 +11692,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"voluptate eiusmod proident\",\n \"profile_type_id\": \"ad2f83d3-59cf-6f10-3758-3ca07bffd474\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"commodo Ut\",\n \"profile_type_id\": \"urn:uuid:e39f0595-462a-564a-2775-92aa272b36b3\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -11704,7 +11704,7 @@ }, "response": [ { - "id": "381c4b3b-5247-43f3-8132-790c8ec11f81", + "id": "67b09e76-a851-413f-a031-9e65fe369a65", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11738,7 +11738,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"voluptate eiusmod proident\",\n \"profile_type_id\": \"ad2f83d3-59cf-6f10-3758-3ca07bffd474\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"commodo Ut\",\n \"profile_type_id\": \"urn:uuid:e39f0595-462a-564a-2775-92aa272b36b3\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -11755,12 +11755,12 @@ "value": "application/json" } ], - "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"exdolorecillum consecteturlabori\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"culpa labore laborumaliqua ex et\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ec11ee2a-4205-4d0f-8601-b2737fdca767", + "id": "81582d07-ce64-47de-906d-333fad5a361a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11794,7 +11794,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"voluptate eiusmod proident\",\n \"profile_type_id\": \"ad2f83d3-59cf-6f10-3758-3ca07bffd474\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"commodo Ut\",\n \"profile_type_id\": \"urn:uuid:e39f0595-462a-564a-2775-92aa272b36b3\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -11816,7 +11816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4eeba126-9544-4dd2-8ba5-f4cbcc27a5d9", + "id": "5068c0f3-9aa4-4aa5-910b-a6c020e914f6", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11850,7 +11850,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"voluptate eiusmod proident\",\n \"profile_type_id\": \"ad2f83d3-59cf-6f10-3758-3ca07bffd474\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"commodo Ut\",\n \"profile_type_id\": \"urn:uuid:e39f0595-462a-564a-2775-92aa272b36b3\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -11878,7 +11878,7 @@ } }, { - "id": "8a6bc6ef-b5db-42f0-b154-703fe292e3ce", + "id": "ab7e5ed2-df33-46f7-aad8-5b67f04d2fcc", "name": "Get profiles", "request": { "name": "Get profiles", @@ -11937,7 +11937,7 @@ "type": "text/plain" }, "key": "name", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -11946,7 +11946,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -11955,7 +11955,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "Terminated" }, { "disabled": false, @@ -11981,7 +11981,7 @@ }, "response": [ { - "id": "6a600dd3-338d-4d3e-8085-ff3b73eb855e", + "id": "35ba29f7-ded5-4368-83ca-a945b9c12d72", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12035,7 +12035,7 @@ "type": "text/plain" }, "key": "name", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -12044,7 +12044,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -12053,7 +12053,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "Terminated" }, { "disabled": false, @@ -12092,12 +12092,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"laborisid ad aliqua voluptate qu\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut culpa nullacupidatat in enimd\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ],\n \"_metadata\": {\n \"limit\": 31037970,\n \"offset\": -89757446,\n \"total\": 78880514,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"dolor ullamcodolor sedExcepteur \",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nullain inconsectetur pariaturnu\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ],\n \"_metadata\": {\n \"limit\": 98620522,\n \"offset\": -30600221,\n \"total\": 871728,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a4d2c2e4-a6b7-45e6-9646-9ae36970c66e", + "id": "5b8fb6f7-a031-4bba-8746-a4e165070029", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12151,7 +12151,7 @@ "type": "text/plain" }, "key": "name", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -12160,7 +12160,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -12169,7 +12169,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "Terminated" }, { "disabled": false, @@ -12213,7 +12213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ea4e43f-a5d1-46cc-bfc0-af4a7509a70a", + "id": "ecb825d8-b413-4a90-9139-9277e6ef64d9", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12267,7 +12267,7 @@ "type": "text/plain" }, "key": "name", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -12276,7 +12276,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -12285,7 +12285,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "Terminated" }, { "disabled": false, @@ -12335,7 +12335,7 @@ } }, { - "id": "b6cca04f-c104-4d2d-8f5e-42c8422cf2da", + "id": "2e26c09f-0755-4b52-a286-a4054a2098d1", "name": "Create multiple profiles", "request": { "name": "Create multiple profiles", @@ -12366,7 +12366,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"tempor veniam id non\",\n \"profile_type_id\": \"bb83ab25-b2f1-051f-ed5f-8bb0dcab622f\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"sit eiusmod ex do\",\n \"profile_type_id\": \"urn:uuid:4b84a0d4-5d5a-c77f-8d19-df51905c6107\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"name\": \"sint culpa u\",\n \"profile_type_id\": \"73b5721a-9d54-e24d-8190-a9700e035fec\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"Duis Excepteur aliquip\",\n \"profile_type_id\": \"6b009229-3e78-4a9e-bec5-3191d356487b\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12378,7 +12378,7 @@ }, "response": [ { - "id": "54343984-44df-40d7-8a97-d6c1141c5687", + "id": "693a9e3a-69e9-4b58-b514-2f022a7c80a2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12412,7 +12412,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"tempor veniam id non\",\n \"profile_type_id\": \"bb83ab25-b2f1-051f-ed5f-8bb0dcab622f\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"sit eiusmod ex do\",\n \"profile_type_id\": \"urn:uuid:4b84a0d4-5d5a-c77f-8d19-df51905c6107\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"name\": \"sint culpa u\",\n \"profile_type_id\": \"73b5721a-9d54-e24d-8190-a9700e035fec\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"Duis Excepteur aliquip\",\n \"profile_type_id\": \"6b009229-3e78-4a9e-bec5-3191d356487b\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12429,12 +12429,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Excepteur laborumnostrud mollit \",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut officia irure deserunt adea s\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Excepteur laboris veliteaaliqua \",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"sit eanulla id cillum enim repre\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "359cf999-8151-4920-9173-5433ce142233", + "id": "dcdf0baa-7dcc-4fe2-a899-e96aa7d84d32", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12468,7 +12468,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"tempor veniam id non\",\n \"profile_type_id\": \"bb83ab25-b2f1-051f-ed5f-8bb0dcab622f\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"sit eiusmod ex do\",\n \"profile_type_id\": \"urn:uuid:4b84a0d4-5d5a-c77f-8d19-df51905c6107\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"name\": \"sint culpa u\",\n \"profile_type_id\": \"73b5721a-9d54-e24d-8190-a9700e035fec\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"Duis Excepteur aliquip\",\n \"profile_type_id\": \"6b009229-3e78-4a9e-bec5-3191d356487b\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12490,7 +12490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7638470-abf1-4d0e-bd20-3c47f1e062a9", + "id": "aea88aa5-501f-4339-a32c-d2ce5d7d533a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12524,7 +12524,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"tempor veniam id non\",\n \"profile_type_id\": \"bb83ab25-b2f1-051f-ed5f-8bb0dcab622f\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"sit eiusmod ex do\",\n \"profile_type_id\": \"urn:uuid:4b84a0d4-5d5a-c77f-8d19-df51905c6107\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"name\": \"sint culpa u\",\n \"profile_type_id\": \"73b5721a-9d54-e24d-8190-a9700e035fec\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"Duis Excepteur aliquip\",\n \"profile_type_id\": \"6b009229-3e78-4a9e-bec5-3191d356487b\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12552,7 +12552,7 @@ } }, { - "id": "a408d1c8-7af4-4dcd-9e98-7dc9f424d35f", + "id": "ded4d395-2c67-4a58-a88b-43fa01358aa0", "name": "Update multiple profiles", "request": { "name": "Update multiple profiles", @@ -12583,7 +12583,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"15d84756-32ac-4ef1-7203-ab9639d8e53a\",\n \"name\": \"culpa incididunt elit quis\",\n \"profile_type_id\": \"f1c35124-5bb9-6649-e8da-79f13a5e5e77\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"691b8283-6728-5cfd-6200-21b7641ed678\",\n \"name\": \"cupidatat in sed occaecat esse\",\n \"profile_type_id\": \"urn:uuid:3fcc6f9d-0569-562e-62a2-92c14b2edc6f\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:454e3fdc-9f52-74af-3c54-aa24228e9267\",\n \"name\": \"ut Ut ipsum commodo\",\n \"profile_type_id\": \"7f327497-17fa-4edb-b631-d4c104859d37\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"urn:uuid:b8a7f063-2c77-f940-2b86-a9491684fa7c\",\n \"name\": \"sit est\",\n \"profile_type_id\": \"ff51c314-34da-8525-84e2-d844d0f1c321\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12595,7 +12595,7 @@ }, "response": [ { - "id": "ed316115-19ad-4f72-beb7-b4262a8398e7", + "id": "26cd9fb9-09e1-4044-b405-c1f20d3d4f88", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12629,7 +12629,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"15d84756-32ac-4ef1-7203-ab9639d8e53a\",\n \"name\": \"culpa incididunt elit quis\",\n \"profile_type_id\": \"f1c35124-5bb9-6649-e8da-79f13a5e5e77\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"691b8283-6728-5cfd-6200-21b7641ed678\",\n \"name\": \"cupidatat in sed occaecat esse\",\n \"profile_type_id\": \"urn:uuid:3fcc6f9d-0569-562e-62a2-92c14b2edc6f\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:454e3fdc-9f52-74af-3c54-aa24228e9267\",\n \"name\": \"ut Ut ipsum commodo\",\n \"profile_type_id\": \"7f327497-17fa-4edb-b631-d4c104859d37\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"urn:uuid:b8a7f063-2c77-f940-2b86-a9491684fa7c\",\n \"name\": \"sit est\",\n \"profile_type_id\": \"ff51c314-34da-8525-84e2-d844d0f1c321\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12646,12 +12646,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Excepteur laborumnostrud mollit \",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut officia irure deserunt adea s\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Excepteur laboris veliteaaliqua \",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"sit eanulla id cillum enim repre\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "87cf53d4-66af-42e6-9b47-9d91f8e1fb32", + "id": "207040c6-5045-47b5-8cb5-cd9ab1e475ed", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12685,7 +12685,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"15d84756-32ac-4ef1-7203-ab9639d8e53a\",\n \"name\": \"culpa incididunt elit quis\",\n \"profile_type_id\": \"f1c35124-5bb9-6649-e8da-79f13a5e5e77\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"691b8283-6728-5cfd-6200-21b7641ed678\",\n \"name\": \"cupidatat in sed occaecat esse\",\n \"profile_type_id\": \"urn:uuid:3fcc6f9d-0569-562e-62a2-92c14b2edc6f\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:454e3fdc-9f52-74af-3c54-aa24228e9267\",\n \"name\": \"ut Ut ipsum commodo\",\n \"profile_type_id\": \"7f327497-17fa-4edb-b631-d4c104859d37\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"urn:uuid:b8a7f063-2c77-f940-2b86-a9491684fa7c\",\n \"name\": \"sit est\",\n \"profile_type_id\": \"ff51c314-34da-8525-84e2-d844d0f1c321\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12707,7 +12707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52f83512-eebe-4a29-9f3f-bdde49476ca3", + "id": "143c21c9-1f68-4408-b046-f472e7f91c1f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12741,7 +12741,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"15d84756-32ac-4ef1-7203-ab9639d8e53a\",\n \"name\": \"culpa incididunt elit quis\",\n \"profile_type_id\": \"f1c35124-5bb9-6649-e8da-79f13a5e5e77\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"691b8283-6728-5cfd-6200-21b7641ed678\",\n \"name\": \"cupidatat in sed occaecat esse\",\n \"profile_type_id\": \"urn:uuid:3fcc6f9d-0569-562e-62a2-92c14b2edc6f\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:454e3fdc-9f52-74af-3c54-aa24228e9267\",\n \"name\": \"ut Ut ipsum commodo\",\n \"profile_type_id\": \"7f327497-17fa-4edb-b631-d4c104859d37\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"urn:uuid:b8a7f063-2c77-f940-2b86-a9491684fa7c\",\n \"name\": \"sit est\",\n \"profile_type_id\": \"ff51c314-34da-8525-84e2-d844d0f1c321\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12769,7 +12769,7 @@ } }, { - "id": "8dbea0b9-c0dd-4663-ae68-9829b5d3ed29", + "id": "0f28d1ba-b492-4d0d-a1cc-374e81aff713", "name": "Delete multiple profiles", "request": { "name": "Delete multiple profiles", @@ -12800,7 +12800,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"1068b7e0-20c4-a7a8-2b6a-0e0f6ace0ac0\"\n },\n {\n \"id\": \"urn:uuid:41853652-f8f8-e82a-dd5d-9049531e7eb8\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:92d076a8-989b-7fbc-81cb-528785bf71e9\"\n },\n {\n \"id\": \"urn:uuid:db3cd3c0-86e0-9d1b-d0cf-a444a4a1df65\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12812,7 +12812,7 @@ }, "response": [ { - "id": "380980e2-1d67-488a-b739-d9c0eeb8a83c", + "id": "4597c18c-43f4-42bb-9909-07544640b90f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12846,7 +12846,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"1068b7e0-20c4-a7a8-2b6a-0e0f6ace0ac0\"\n },\n {\n \"id\": \"urn:uuid:41853652-f8f8-e82a-dd5d-9049531e7eb8\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:92d076a8-989b-7fbc-81cb-528785bf71e9\"\n },\n {\n \"id\": \"urn:uuid:db3cd3c0-86e0-9d1b-d0cf-a444a4a1df65\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12863,12 +12863,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Excepteur laborumnostrud mollit \",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut officia irure deserunt adea s\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Excepteur laboris veliteaaliqua \",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"sit eanulla id cillum enim repre\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b754835c-e155-42a1-9db7-9fcf4d964893", + "id": "2117b6ad-dd25-403c-8955-7fca98f4dc56", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12902,7 +12902,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"1068b7e0-20c4-a7a8-2b6a-0e0f6ace0ac0\"\n },\n {\n \"id\": \"urn:uuid:41853652-f8f8-e82a-dd5d-9049531e7eb8\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:92d076a8-989b-7fbc-81cb-528785bf71e9\"\n },\n {\n \"id\": \"urn:uuid:db3cd3c0-86e0-9d1b-d0cf-a444a4a1df65\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12924,7 +12924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b91e6cfb-52ee-4fb5-9ebf-6a5dfc6e8a75", + "id": "7c817885-4d54-4055-99fd-c65304021742", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12958,7 +12958,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"1068b7e0-20c4-a7a8-2b6a-0e0f6ace0ac0\"\n },\n {\n \"id\": \"urn:uuid:41853652-f8f8-e82a-dd5d-9049531e7eb8\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:92d076a8-989b-7fbc-81cb-528785bf71e9\"\n },\n {\n \"id\": \"urn:uuid:db3cd3c0-86e0-9d1b-d0cf-a444a4a1df65\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12986,7 +12986,7 @@ } }, { - "id": "52ff7157-553b-43ec-8b32-0f4e2cd8ca0f", + "id": "d4a4feb5-3069-4a31-9bfc-e8d5bea8064a", "name": "Find profile by id", "request": { "name": "Find profile by id", @@ -13028,7 +13028,7 @@ }, "response": [ { - "id": "f8bda159-c566-4935-b668-b0af564fd2e8", + "id": "be447ab9-35be-4fdc-8f93-8b00811a4bb5", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13067,12 +13067,12 @@ "value": "application/json" } ], - "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"exdolorecillum consecteturlabori\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"culpa labore laborumaliqua ex et\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "83efc355-dde7-4a63-b100-adbad76db4a9", + "id": "54ba4932-0956-4f39-992a-4f4158ed663a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13116,7 +13116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26078fe7-1b5e-40cb-8d12-591ab26778e9", + "id": "ed303da7-d590-4f69-94b5-201be1f2a1ac", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13166,7 +13166,7 @@ } }, { - "id": "428076bb-2e5b-4667-a518-13b34ebe63cf", + "id": "36a7cc38-8330-433c-8c75-0471837e9093", "name": "Update a profile by id", "request": { "name": "Update a profile by id", @@ -13209,7 +13209,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"enim aute\",\n \"profile_type_id\": \"9c0d3fe7-5f99-3717-7090-c3e1f640132b\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"elit\",\n \"profile_type_id\": \"urn:uuid:061fac57-2112-f2cb-5b24-724afcbf461d\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -13221,7 +13221,7 @@ }, "response": [ { - "id": "4df34023-d721-48f4-a3a7-d237938588cc", + "id": "bcb7b10b-1c9e-4d94-9e71-7d65f57e7990", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13256,7 +13256,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"enim aute\",\n \"profile_type_id\": \"9c0d3fe7-5f99-3717-7090-c3e1f640132b\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"elit\",\n \"profile_type_id\": \"urn:uuid:061fac57-2112-f2cb-5b24-724afcbf461d\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -13273,12 +13273,12 @@ "value": "application/json" } ], - "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"exdolorecillum consecteturlabori\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"culpa labore laborumaliqua ex et\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6ccf9404-db9c-45fb-9ebb-44d2dbbe8072", + "id": "bf665395-5a74-4174-a09c-d38984323e4a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13313,7 +13313,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"enim aute\",\n \"profile_type_id\": \"9c0d3fe7-5f99-3717-7090-c3e1f640132b\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"elit\",\n \"profile_type_id\": \"urn:uuid:061fac57-2112-f2cb-5b24-724afcbf461d\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -13335,7 +13335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54bd8cf1-d20a-4901-a490-7668d59f3aed", + "id": "baf16bcb-31b7-46e4-ab82-5a20c938169e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13370,7 +13370,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"enim aute\",\n \"profile_type_id\": \"9c0d3fe7-5f99-3717-7090-c3e1f640132b\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"elit\",\n \"profile_type_id\": \"urn:uuid:061fac57-2112-f2cb-5b24-724afcbf461d\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -13398,7 +13398,7 @@ } }, { - "id": "fe9d7da5-6430-45b5-b943-866a462e6eac", + "id": "4b8c6c92-26b4-4d16-8f3b-4c64f796fdd0", "name": "Delete a single profile", "request": { "name": "Delete a single profile", @@ -13440,7 +13440,7 @@ }, "response": [ { - "id": "fcfca948-b4ce-47ca-8985-20eef75246e9", + "id": "6bec9c35-7374-4851-bdfb-75dc36e21348", "name": "The Profile was successfully deleted.", "originalRequest": { "url": { @@ -13474,7 +13474,7 @@ "_postman_previewlanguage": "text" }, { - "id": "241b7550-0ad4-45f6-9c5b-5e0ea524e595", + "id": "792e12f9-a8c0-4df8-a8eb-60637aa6d12d", "name": "Error deleting Profile", "originalRequest": { "url": { @@ -13513,12 +13513,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": \"in quis et\"\n}", + "body": "{\n \"error\": \"est elit\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2156987c-3777-4fc5-b5df-94997fe795b3", + "id": "77004918-4dd7-47d1-8669-2cc3ebc0f909", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13568,7 +13568,7 @@ } }, { - "id": "09c30f42-5972-4d0e-b7ba-1e902f629769", + "id": "d9df861c-1518-4e83-80e2-cecb3f3801ab", "name": "Retrieves the URL of an attachment attribute value from a profile", "request": { "name": "Retrieves the URL of an attachment attribute value from a profile", @@ -13622,7 +13622,7 @@ }, "response": [ { - "id": "1d24500d-a32a-44e2-8d22-ec150f6fe5e2", + "id": "780a4140-5eab-420c-8466-faa4a9cf872c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13663,12 +13663,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"tempor ex ut\"\n}", + "body": "{\n \"url\": \"sunt officia cupidatat pariatur in\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "48a069d7-51e4-473c-a16a-c40c36493d82", + "id": "18c9fb0d-4f15-46cb-8ac7-b3572cb01413", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13714,7 +13714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3f4c3e1-0cac-4c2d-85fe-3e7b23bd552a", + "id": "da7f3ee9-118f-44e7-9b0a-2de4b9415d0a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13766,7 +13766,7 @@ } }, { - "id": "642dc618-8497-4272-9fb3-0413cb1a9d76", + "id": "c0970497-3be9-48da-9a2f-1684309352ad", "name": "Uploads a new attachment attribute value to a profile", "request": { "name": "Uploads a new attachment attribute value to a profile", @@ -13828,7 +13828,7 @@ "type": "text/plain" }, "key": "file", - "value": "sun", + "value": "ad sint ea", "type": "text" } ] @@ -13837,7 +13837,7 @@ }, "response": [ { - "id": "19aef5d0-73e5-436a-9757-c91295e30567", + "id": "690bac09-2407-476f-a4ba-23bd97cdf591", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13881,7 +13881,7 @@ "type": "text/plain" }, "key": "file", - "value": "sun", + "value": "ad sint ea", "type": "text" } ] @@ -13895,12 +13895,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"tempor ex ut\"\n}", + "body": "{\n \"url\": \"sunt officia cupidatat pariatur in\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9d7f1a59-e001-4335-b50a-dc46a3947a5b", + "id": "357321bd-8602-4c13-9b22-a412370e15ef", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13944,7 +13944,7 @@ "type": "text/plain" }, "key": "file", - "value": "sun", + "value": "ad sint ea", "type": "text" } ] @@ -13963,7 +13963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb338699-107b-4f10-b41a-a69d3b831863", + "id": "c258ad45-5866-419e-bcb9-aa91a45ef161", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14007,7 +14007,7 @@ "type": "text/plain" }, "key": "file", - "value": "sun", + "value": "ad sint ea", "type": "text" } ] @@ -14032,7 +14032,7 @@ } }, { - "id": "d2ff6d4e-425e-4cba-bcbf-dc769bd21786", + "id": "5476e6be-6ba4-4672-b273-b0d9ce3aeed3", "name": "Retrieves the URL of the profile avatar", "request": { "name": "Retrieves the URL of the profile avatar", @@ -14075,7 +14075,7 @@ }, "response": [ { - "id": "8a7dbb1c-678c-4104-9491-b353fc56816b", + "id": "fadebc2f-033c-4989-8bbd-2182f72c64a3", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14115,12 +14115,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"tempor ex ut\"\n}", + "body": "{\n \"url\": \"sunt officia cupidatat pariatur in\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fad0096a-ff95-4c20-8b72-77aca814f13e", + "id": "f7f51064-8440-46c6-bc83-ac98bc614c19", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14165,7 +14165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4b3b9ae-41c7-4483-90b8-72570ca2ee7d", + "id": "fc0c457b-817c-4041-b682-d5a2bb450785", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14216,7 +14216,7 @@ } }, { - "id": "8bc09701-4eed-4dc1-8cf8-d0e386d1577d", + "id": "3d8e52f4-66bc-45dd-b5c7-75e53f7010da", "name": "Uploads a new profile avatar", "request": { "name": "Uploads a new profile avatar", @@ -14267,7 +14267,7 @@ "type": "text/plain" }, "key": "file", - "value": "sun", + "value": "ad sint ea", "type": "text" } ] @@ -14276,7 +14276,7 @@ }, "response": [ { - "id": "ec85903f-fb97-4f30-8b8c-c4a51677d8da", + "id": "8e65b931-2792-4d9d-8f70-07b23791a5b6", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14319,7 +14319,7 @@ "type": "text/plain" }, "key": "file", - "value": "sun", + "value": "ad sint ea", "type": "text" } ] @@ -14333,12 +14333,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"tempor ex ut\"\n}", + "body": "{\n \"url\": \"sunt officia cupidatat pariatur in\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a9835535-eeeb-4e2c-9a0c-e31cda70c6f8", + "id": "e1d67ab0-0ba8-4adc-b2c4-ce4e9a9bc416", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14381,7 +14381,7 @@ "type": "text/plain" }, "key": "file", - "value": "sun", + "value": "ad sint ea", "type": "text" } ] @@ -14400,7 +14400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84e610fd-78a8-444e-a170-0f301c99066f", + "id": "8fc07517-7e5f-4b56-9e9b-b1da4206abb6", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14443,7 +14443,7 @@ "type": "text/plain" }, "key": "file", - "value": "sun", + "value": "ad sint ea", "type": "text" } ] @@ -14474,7 +14474,7 @@ "description": "", "item": [ { - "id": "ee7c54a6-904e-4594-a752-b23af6cc79ae", + "id": "7d25a0c0-3277-42a8-ab85-6d95154b1629", "name": "Get risk score data in bulk", "request": { "name": "Get risk score data in bulk", @@ -14524,7 +14524,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -14533,7 +14533,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "WorkflowSession" + "value": "Profile" }, { "disabled": false, @@ -14542,7 +14542,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -14551,7 +14551,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -14560,7 +14560,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -14586,7 +14586,7 @@ }, "response": [ { - "id": "7178ab8e-8bc2-4790-8ff7-0a8b5b07deeb", + "id": "4addd204-0f95-40ee-a8a9-6a9d5ccf9dbe", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14631,7 +14631,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -14640,7 +14640,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "WorkflowSession" + "value": "Profile" }, { "disabled": false, @@ -14649,7 +14649,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -14658,7 +14658,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -14667,7 +14667,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -14706,12 +14706,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_scores\": [\n {\n \"id\": \"9ace28fc-6013-5c93-b505-6104efc6c995\",\n \"uid\": \"eiusmod proidentveniam consequat\",\n \"object_id\": \"228af8a6-c545-6354-16cf-71d27c4c4a85\",\n \"object_type\": \"WorkflowSession\",\n \"overall_score\": 149513082.4,\n \"overall_risk_level_id\": \"f382dad9-db8a-6d0e-f747-942ea7ae9758\",\n \"impact_score\": 28374799.16,\n \"impact_risk_level_id\": \"urn:uuid:cd081636-d5a4-09ed-89c5-68d3ffbaf54f\",\n \"probability_score\": 194463026.88,\n \"probability_risk_level_id\": \"urn:uuid:a78371c2-4128-f76d-47bb-9d2f9f3b100e\"\n },\n {\n \"id\": \"e0419b27-a9d3-cb2d-70fc-c3bdd07044eb\",\n \"uid\": \"officia ex sed sunt laborenostru\",\n \"object_id\": \"urn:uuid:c005f5e4-6714-4698-8650-15eea146e75f\",\n \"object_type\": \"Profile\",\n \"overall_score\": 57903460.22,\n \"overall_risk_level_id\": \"e46bb643-1f6c-d5e9-2d61-d5ba5d5dafd3\",\n \"impact_score\": 52325934.85,\n \"impact_risk_level_id\": \"urn:uuid:1677b0a5-4e06-17fa-963a-f4e1224fa36a\",\n \"probability_score\": 10026039.31,\n \"probability_risk_level_id\": \"urn:uuid:5ce75065-ed6c-404b-8096-7f7fe97938bb\"\n }\n ],\n \"_metadata\": {\n \"limit\": 46851050,\n \"offset\": -1932492,\n \"total\": 97503695,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"risk_scores\": [\n {\n \"id\": \"42d25e27-ca58-586f-afd3-25a9373ec129\",\n \"uid\": \"deserunt labore anim pariatursit\",\n \"object_id\": \"f25dcf22-ff5b-4dc3-3918-b7c1073e8a08\",\n \"object_type\": \"Profile\",\n \"overall_score\": 184244017.36,\n \"overall_risk_level_id\": \"urn:uuid:02bd5281-73eb-5808-ce61-5fc052cd18c5\",\n \"impact_score\": 160718431.8,\n \"impact_risk_level_id\": \"urn:uuid:51ae93a2-474d-4b42-a0bb-60711ac4bc2e\",\n \"probability_score\": 90434933.9,\n \"probability_risk_level_id\": \"18483eca-6090-1bbc-7b71-0d6c91b2cbdf\"\n },\n {\n \"id\": \"urn:uuid:e208e38a-51dc-e138-73a4-77e74f364c5d\",\n \"uid\": \"officia inirure utelit eiusmodve\",\n \"object_id\": \"53808e85-3cbc-ccd3-b34f-b329c8a56c3c\",\n \"object_type\": \"Profile\",\n \"overall_score\": 65932793.14,\n \"overall_risk_level_id\": \"urn:uuid:54bf7577-f260-c474-d7c1-81df16c81434\",\n \"impact_score\": 160613495.03,\n \"impact_risk_level_id\": \"urn:uuid:011a97f9-1462-1b96-d139-159c215311a5\",\n \"probability_score\": 133925298.51,\n \"probability_risk_level_id\": \"urn:uuid:a22de308-ded3-7bfc-015a-a10fbb7ff7a3\"\n }\n ],\n \"_metadata\": {\n \"limit\": 77135177,\n \"offset\": -89405722,\n \"total\": -52870175,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "044091cf-7eb8-4ff9-b8a5-4cd408454e52", + "id": "7a54f70c-9d75-4690-b75a-5890b55e4f54", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14756,7 +14756,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -14765,7 +14765,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "WorkflowSession" + "value": "Profile" }, { "disabled": false, @@ -14774,7 +14774,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -14783,7 +14783,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -14792,7 +14792,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -14836,7 +14836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40540ddb-db49-40b4-9392-877de2d171ea", + "id": "3ecd1559-3fd5-49c1-b225-2d052a10e1e3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14881,7 +14881,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -14890,7 +14890,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "WorkflowSession" + "value": "Profile" }, { "disabled": false, @@ -14899,7 +14899,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -14908,7 +14908,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -14917,7 +14917,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -14967,7 +14967,7 @@ } }, { - "id": "412e2cdc-182a-4a79-ac0f-f3b68d65c503", + "id": "d65373ec-2289-4dc1-a560-8e2737d045f3", "name": "Find risk score data by id", "request": { "name": "Find risk score data by id", @@ -15009,7 +15009,7 @@ }, "response": [ { - "id": "fb0fa642-7e09-4902-b61b-d16ff78c945b", + "id": "56d627ab-df2f-4ae9-b054-80227ac958b2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15048,12 +15048,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_score\": {\n \"id\": \"fd118b28-abd8-4f06-eaca-e14e2ab93546\",\n \"uid\": \"officia dolordolor aliquip ametu\",\n \"object_id\": \"dd9e12b8-92df-d365-0816-bc52f6e390ed\",\n \"object_type\": \"Profile\",\n \"overall_score\": 12257452.36,\n \"overall_risk_level_id\": \"urn:uuid:47b29ca3-0a0d-8f30-ce7c-d5b816036fc9\",\n \"impact_score\": 156331874.16,\n \"impact_risk_level_id\": \"5e536fea-93e2-6267-f680-c3c4ea6672d4\",\n \"probability_score\": 74339634.7,\n \"probability_risk_level_id\": \"urn:uuid:1a736805-26ec-4952-692f-820ffcb87896\"\n }\n}", + "body": "{\n \"risk_score\": {\n \"id\": \"urn:uuid:1eb392b1-1fd6-0e9a-fe8f-30cda97fb605\",\n \"uid\": \"elit cupidatatdolorullamco deser\",\n \"object_id\": \"dbbaa087-4855-9736-804d-c7c9dcd22fc2\",\n \"object_type\": \"Profile\",\n \"overall_score\": 115611574.98,\n \"overall_risk_level_id\": \"8e86c62e-f9b5-2a54-aeeb-3a8ca9e58bad\",\n \"impact_score\": 27915406.1,\n \"impact_risk_level_id\": \"urn:uuid:94fae14e-01bc-69ab-65e8-28867e21b912\",\n \"probability_score\": 43165056.2,\n \"probability_risk_level_id\": \"urn:uuid:cbb0ad92-16e5-836e-e949-62daf649f00d\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0d2ae964-199b-412b-bad8-1010d9a3e3cc", + "id": "66977a71-deba-406f-850d-f6081c9429a3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15097,7 +15097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55cec142-4d15-4466-bcad-8fcaa00ef234", + "id": "2d467433-6b17-43ad-9dc1-766a36fdbd98", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15153,7 +15153,7 @@ "description": "", "item": [ { - "id": "48b4448f-be94-4a1c-a76d-f8dbf2252694", + "id": "2359b298-32bd-4579-9dd8-852df0e5fbe6", "name": "Get risk level data in bulk", "request": { "name": "Get risk level data in bulk", @@ -15203,7 +15203,7 @@ "type": "text/plain" }, "key": "label", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -15229,7 +15229,7 @@ }, "response": [ { - "id": "e1c6805a-e023-4d08-8f0f-588d5b43d702", + "id": "7606c10d-65a3-437e-b97b-2a97b4c9b88d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15274,7 +15274,7 @@ "type": "text/plain" }, "key": "label", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -15313,12 +15313,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_levels\": [\n {\n \"id\": \"urn:uuid:0d6b33d0-7ac7-b8f9-e657-987bac6b0360\",\n \"uid\": \"cupidatat sed incididunt ut etin\",\n \"label\": \"aliqua quis et Ut\",\n \"points\": 80885767.67,\n \"order\": 32432524\n },\n {\n \"id\": \"urn:uuid:0351619a-8993-1e1e-c165-ca6735d82342\",\n \"uid\": \"dolor elit eunisi enim proident \",\n \"label\": \"labore magna Lorem sint quis\",\n \"points\": 185893729.73,\n \"order\": 15641864\n }\n ],\n \"_metadata\": {\n \"limit\": 79595375,\n \"offset\": -49436933,\n \"total\": -28453562,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"risk_levels\": [\n {\n \"id\": \"urn:uuid:f13c4840-5451-0b9b-3ec3-d0f5b54ebeaa\",\n \"uid\": \"id tempor deseruntcupidatat quis\",\n \"label\": \"cupidata\",\n \"points\": 110950508.21000001,\n \"order\": 1075272\n },\n {\n \"id\": \"urn:uuid:ee68b183-3daf-17c8-15ec-afd3df1daf05\",\n \"uid\": \"nostrud Lorem ea dolor velitcons\",\n \"label\": \"dolor proident cupidatat ut\",\n \"points\": 143847364.87,\n \"order\": 95935486\n }\n ],\n \"_metadata\": {\n \"limit\": 79608486,\n \"offset\": -46443658,\n \"total\": -38900485,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3039946d-dcc6-4ccf-a57d-460263abb629", + "id": "541e274a-5ab7-4b13-a4b5-52be1eac32bf", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15363,7 +15363,7 @@ "type": "text/plain" }, "key": "label", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -15407,7 +15407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ae3be14-cdb7-4785-9f86-d9cfa20f8b40", + "id": "af260295-0734-4d4a-adbe-af381b49cd42", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15452,7 +15452,7 @@ "type": "text/plain" }, "key": "label", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" }, { "disabled": false, @@ -15502,7 +15502,7 @@ } }, { - "id": "40d4b131-6991-4f33-a0ea-808029fe7e0d", + "id": "9aef2b4c-522a-4201-b153-f788b4f7fcd4", "name": "Find risk level data by id", "request": { "name": "Find risk level data by id", @@ -15544,7 +15544,7 @@ }, "response": [ { - "id": "7afe2f30-a661-4d49-802e-ac2a3d568ea1", + "id": "48b2d624-c679-4849-abeb-c122ad7a0bdc", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15583,12 +15583,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_level\": {\n \"id\": \"bb98150d-6812-283a-f035-a302ebd42d09\",\n \"uid\": \"inaliquip mollitut ullamco culpa\",\n \"label\": \"deserunt ea non Ut\",\n \"points\": 88956007.79,\n \"order\": 44815430\n }\n}", + "body": "{\n \"risk_level\": {\n \"id\": \"65aa2c65-f849-70b9-83a3-b0c5a24413ce\",\n \"uid\": \"qui doad in commodo veniamaute a\",\n \"label\": \"non cupidatat laborum\",\n \"points\": 135517501.99,\n \"order\": 97605679\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9f4f44df-1186-462b-ae8d-fddd00181059", + "id": "9d2b24ea-ce97-401c-bfc1-31368305b05e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15632,7 +15632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f43b1f8d-eed1-4d13-8957-d8a3b9d5bc16", + "id": "1309243a-e847-4ff4-922a-317b949f61b5", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15688,7 +15688,7 @@ "description": "", "item": [ { - "id": "aa805262-3358-4339-a4dd-575d19762b94", + "id": "9a556381-4a81-4b10-9a54-8ebe28219ba5", "name": "Create a user-profile contributor relationship", "request": { "name": "Create a user-profile contributor relationship", @@ -15719,7 +15719,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"3b4710af-813e-2931-c2d4-eb0c355299a3\",\n \"profile_id\": \"urn:uuid:50b217da-8d8a-5d2e-015d-5e3bd1701656\",\n \"ne_attribute_id\": \"a3b3288b-932c-c3bd-1378-77eb65c71993\",\n \"relationship_type\": \"contributor\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:56df77c6-cd9c-5d37-1e33-3d0e6195657e\",\n \"profile_id\": \"urn:uuid:64670ca7-6b06-c3f8-cd00-266f6638903c\",\n \"ne_attribute_id\": \"897c0e40-6ed5-3c64-7605-d836bf477550\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -15731,7 +15731,7 @@ }, "response": [ { - "id": "2ea63025-aee5-4580-b60d-e73de9783992", + "id": "bb2d10d6-a59d-46b6-8d2a-a9bb6711a659", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15765,7 +15765,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"3b4710af-813e-2931-c2d4-eb0c355299a3\",\n \"profile_id\": \"urn:uuid:50b217da-8d8a-5d2e-015d-5e3bd1701656\",\n \"ne_attribute_id\": \"a3b3288b-932c-c3bd-1378-77eb65c71993\",\n \"relationship_type\": \"contributor\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:56df77c6-cd9c-5d37-1e33-3d0e6195657e\",\n \"profile_id\": \"urn:uuid:64670ca7-6b06-c3f8-cd00-266f6638903c\",\n \"ne_attribute_id\": \"897c0e40-6ed5-3c64-7605-d836bf477550\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -15782,12 +15782,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profile\": {\n \"id\": \"d37bdf81-95b2-5d05-651e-3298ac510ffd\",\n \"uid\": \"Loremaliqua nonLorem aliqua offi\",\n \"user_id\": \"bb61c29b-b64c-c2a9-53ac-ab8207176fb1\",\n \"profile_id\": \"82bba2cd-99f5-7663-f8d7-863035369498\",\n \"ne_attribute_id\": \"urn:uuid:c7e22fff-e65a-2da9-80ff-6c34220ec250\",\n \"relationship_type\": \"owner\"\n }\n}", + "body": "{\n \"user_profile\": {\n \"id\": \"4c682d85-513c-2423-85a8-1a245f4c133e\",\n \"uid\": \"dolorqui culpa consequatculpa te\",\n \"user_id\": \"f7cc3ab4-1902-5539-75bb-08585a9b61a8\",\n \"profile_id\": \"urn:uuid:aa0c37ce-0cd3-6d95-fc53-4c0d5f431bcf\",\n \"ne_attribute_id\": \"6d3aeb08-dd29-462e-31f9-b25d1b39bf49\",\n \"relationship_type\": \"owner\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d7493df4-5db8-4c44-9636-62fdb66c5a68", + "id": "4c56819a-4a93-4181-88a1-ef5c23754235", "name": "Invalid input", "originalRequest": { "url": { @@ -15817,7 +15817,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"3b4710af-813e-2931-c2d4-eb0c355299a3\",\n \"profile_id\": \"urn:uuid:50b217da-8d8a-5d2e-015d-5e3bd1701656\",\n \"ne_attribute_id\": \"a3b3288b-932c-c3bd-1378-77eb65c71993\",\n \"relationship_type\": \"contributor\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:56df77c6-cd9c-5d37-1e33-3d0e6195657e\",\n \"profile_id\": \"urn:uuid:64670ca7-6b06-c3f8-cd00-266f6638903c\",\n \"ne_attribute_id\": \"897c0e40-6ed5-3c64-7605-d836bf477550\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -15839,7 +15839,7 @@ } }, { - "id": "4afe5a4e-5c58-463e-b148-8a89b7439297", + "id": "5755ad5f-c719-4a3e-9a95-554672f76e61", "name": "Get user-profile contributor relationships", "request": { "name": "Get user-profile contributor relationships", @@ -15942,7 +15942,7 @@ }, "response": [ { - "id": "c79b103f-e740-46b4-86bb-ffc4f26bf3d3", + "id": "9929b5d1-da3d-4d07-a537-fedc9c55cd12", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16053,12 +16053,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"fbd7cc3e-358e-dc8e-0797-6da3ec207809\",\n \"uid\": \"dolore Duis sintoccaecat Duiscon\",\n \"user_id\": \"urn:uuid:e505eb5c-c1a1-c9ca-148b-dc79a7f2a2d6\",\n \"profile_id\": \"urn:uuid:93c978f7-6be7-84c5-1c04-3c89926c3bab\",\n \"ne_attribute_id\": \"84e641ee-250d-ca7c-1228-f0dce45f369c\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"93032d6c-67fe-539f-e65e-b5edf8e05502\",\n \"uid\": \"ea proident deseruntcillumex nis\",\n \"user_id\": \"urn:uuid:e4a0cc37-ddb4-127a-4901-ca1f9c5ce032\",\n \"profile_id\": \"urn:uuid:f034e009-242f-1869-22ef-e6e45fdd045d\",\n \"ne_attribute_id\": \"a03f93cf-3a93-312a-6871-423316969618\",\n \"relationship_type\": \"contributor\"\n }\n ],\n \"_metadata\": {\n \"limit\": 50722406,\n \"offset\": 73386061,\n \"total\": -1388644,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:b4d8b289-376d-6b2d-8ff9-466154da78d0\",\n \"uid\": \"veniamExcepteur magna suntsuntnu\",\n \"user_id\": \"d34ffb8d-bb8f-6855-afde-786b925f4b4c\",\n \"profile_id\": \"5a5a3e2c-5347-e0d7-3b43-1b884f57820c\",\n \"ne_attribute_id\": \"71106760-c136-b057-a015-9a66493fdb62\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"23cd7d61-21c0-f76b-e165-ecfc0bb3287c\",\n \"uid\": \"veniam cillumsed Ut nondolore pa\",\n \"user_id\": \"urn:uuid:3b685321-4dfe-96a1-fc13-a00aee16ada2\",\n \"profile_id\": \"03ba2d57-220b-5a62-8946-4100b121dcb5\",\n \"ne_attribute_id\": \"urn:uuid:11875770-d323-7731-96d7-bd5a340b52e0\",\n \"relationship_type\": \"contributor\"\n }\n ],\n \"_metadata\": {\n \"limit\": 67521947,\n \"offset\": 71720088,\n \"total\": 33359533,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cc21b1cb-98dc-4238-aa0e-df49fb9f51c4", + "id": "be2a0cb7-9d8a-47bd-b927-acaa1122052c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16174,7 +16174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd00c153-aed3-4c65-a0fe-02101f7b9517", + "id": "da1b0662-6904-4ac1-a0f1-aa5c42d21842", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -16296,7 +16296,7 @@ } }, { - "id": "57e3b44c-9134-47a4-afb2-5414557be9dc", + "id": "7c20797b-b81b-4348-96bf-40a84090d03e", "name": "Create multiple user-profile contributor relationships", "request": { "name": "Create multiple user-profile contributor relationships", @@ -16327,7 +16327,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:f2b217a4-3503-d271-2cc5-dff87930c3cb\",\n \"profile_id\": \"40519749-eef8-d046-42ee-e9d9f1e6081a\",\n \"ne_attribute_id\": \"5f1b0a7d-9496-4184-fabb-5469895fd780\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"urn:uuid:7fe437f5-2de6-31b0-2a6e-bff8ae74e23e\",\n \"profile_id\": \"urn:uuid:03323c5b-7892-ffe2-d951-2ef4cec2bdc1\",\n \"ne_attribute_id\": \"urn:uuid:3127d11a-e944-b27c-bee2-68de63d6fb23\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"f579ef50-100c-98b0-1394-2298674ec6fd\",\n \"profile_id\": \"90f6c63d-291f-7f8c-ffbb-91cb081d6197\",\n \"ne_attribute_id\": \"urn:uuid:28cc9bf9-af1c-4b76-af2f-f1531bb7e622\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"urn:uuid:9a135dc1-cb7d-7726-cff6-a7074771b5dc\",\n \"profile_id\": \"urn:uuid:c1edab89-8ca9-5634-9e64-bad3e5339166\",\n \"ne_attribute_id\": \"fe860bce-e764-e01f-33ea-338b7419a45c\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16339,7 +16339,7 @@ }, "response": [ { - "id": "f46e477d-6528-4399-b013-b8a6ee2eefc3", + "id": "338e3e88-d7c3-4623-b201-90c9839c8f30", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16373,7 +16373,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:f2b217a4-3503-d271-2cc5-dff87930c3cb\",\n \"profile_id\": \"40519749-eef8-d046-42ee-e9d9f1e6081a\",\n \"ne_attribute_id\": \"5f1b0a7d-9496-4184-fabb-5469895fd780\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"urn:uuid:7fe437f5-2de6-31b0-2a6e-bff8ae74e23e\",\n \"profile_id\": \"urn:uuid:03323c5b-7892-ffe2-d951-2ef4cec2bdc1\",\n \"ne_attribute_id\": \"urn:uuid:3127d11a-e944-b27c-bee2-68de63d6fb23\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"f579ef50-100c-98b0-1394-2298674ec6fd\",\n \"profile_id\": \"90f6c63d-291f-7f8c-ffbb-91cb081d6197\",\n \"ne_attribute_id\": \"urn:uuid:28cc9bf9-af1c-4b76-af2f-f1531bb7e622\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"urn:uuid:9a135dc1-cb7d-7726-cff6-a7074771b5dc\",\n \"profile_id\": \"urn:uuid:c1edab89-8ca9-5634-9e64-bad3e5339166\",\n \"ne_attribute_id\": \"fe860bce-e764-e01f-33ea-338b7419a45c\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16390,12 +16390,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"14b37737-2cdd-dd9e-fc43-f8d2b1aca7ca\",\n \"uid\": \"elit nostrud sint inveniam in te\",\n \"user_id\": \"urn:uuid:c10486fd-41af-cf3c-7624-b44abd355fb1\",\n \"profile_id\": \"urn:uuid:248838c8-3576-6020-5e5a-d73752ac4bbc\",\n \"ne_attribute_id\": \"urn:uuid:abdfa447-5da6-f581-12d7-ee60711f40e6\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:79dbd00a-a32c-1c1e-0731-9cf368b8db85\",\n \"uid\": \"labore qui eu ullamco inelit pro\",\n \"user_id\": \"urn:uuid:5abc61ee-19a5-da69-dac1-a9661ee4aed4\",\n \"profile_id\": \"urn:uuid:6ff0a4a4-f181-f960-1a52-0ebe7369aa22\",\n \"ne_attribute_id\": \"urn:uuid:863553e0-202d-5d82-f4d3-b3d03acf7bb7\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:8802887f-1212-0683-8860-cd60e2831c6f\",\n \"uid\": \"commodo labore do etquis fugiat \",\n \"user_id\": \"dae6cf77-88f2-a3fc-7162-6b42e96c26d3\",\n \"profile_id\": \"urn:uuid:d159c82c-cfaa-8e68-0d22-9f11db88018b\",\n \"ne_attribute_id\": \"cf7b694a-ad35-6241-6484-e6b0c2f8eb75\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:d0db3e12-c235-c9dd-6035-52cc12e20ecc\",\n \"uid\": \"consecteturlaborum sedaute magna\",\n \"user_id\": \"urn:uuid:4943bed7-9c68-ed83-e658-8d7579603388\",\n \"profile_id\": \"urn:uuid:c9656d66-2d0c-86d8-96f4-4b6962d1da83\",\n \"ne_attribute_id\": \"fc702ca3-8872-3b32-3aca-f155f86a26bb\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4a84386a-35f6-41a9-8c77-0cc5b692ce86", + "id": "7256371c-5d6c-460c-ab06-b8ac6711f6b6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16429,7 +16429,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:f2b217a4-3503-d271-2cc5-dff87930c3cb\",\n \"profile_id\": \"40519749-eef8-d046-42ee-e9d9f1e6081a\",\n \"ne_attribute_id\": \"5f1b0a7d-9496-4184-fabb-5469895fd780\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"urn:uuid:7fe437f5-2de6-31b0-2a6e-bff8ae74e23e\",\n \"profile_id\": \"urn:uuid:03323c5b-7892-ffe2-d951-2ef4cec2bdc1\",\n \"ne_attribute_id\": \"urn:uuid:3127d11a-e944-b27c-bee2-68de63d6fb23\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"f579ef50-100c-98b0-1394-2298674ec6fd\",\n \"profile_id\": \"90f6c63d-291f-7f8c-ffbb-91cb081d6197\",\n \"ne_attribute_id\": \"urn:uuid:28cc9bf9-af1c-4b76-af2f-f1531bb7e622\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"urn:uuid:9a135dc1-cb7d-7726-cff6-a7074771b5dc\",\n \"profile_id\": \"urn:uuid:c1edab89-8ca9-5634-9e64-bad3e5339166\",\n \"ne_attribute_id\": \"fe860bce-e764-e01f-33ea-338b7419a45c\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16451,7 +16451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d28f2bce-ab84-4c46-9730-05096eb00a35", + "id": "2fcdbe77-5979-49cf-8d42-acc62468ce20", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -16485,7 +16485,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:f2b217a4-3503-d271-2cc5-dff87930c3cb\",\n \"profile_id\": \"40519749-eef8-d046-42ee-e9d9f1e6081a\",\n \"ne_attribute_id\": \"5f1b0a7d-9496-4184-fabb-5469895fd780\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"urn:uuid:7fe437f5-2de6-31b0-2a6e-bff8ae74e23e\",\n \"profile_id\": \"urn:uuid:03323c5b-7892-ffe2-d951-2ef4cec2bdc1\",\n \"ne_attribute_id\": \"urn:uuid:3127d11a-e944-b27c-bee2-68de63d6fb23\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"f579ef50-100c-98b0-1394-2298674ec6fd\",\n \"profile_id\": \"90f6c63d-291f-7f8c-ffbb-91cb081d6197\",\n \"ne_attribute_id\": \"urn:uuid:28cc9bf9-af1c-4b76-af2f-f1531bb7e622\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"urn:uuid:9a135dc1-cb7d-7726-cff6-a7074771b5dc\",\n \"profile_id\": \"urn:uuid:c1edab89-8ca9-5634-9e64-bad3e5339166\",\n \"ne_attribute_id\": \"fe860bce-e764-e01f-33ea-338b7419a45c\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16513,7 +16513,7 @@ } }, { - "id": "08b7b665-9441-4680-9084-233fe8a14ecd", + "id": "362febe0-b0ba-4e8c-81f4-27cc047ecd0d", "name": "Update multiple user-profile contributor relationships", "request": { "name": "Update multiple user-profile contributor relationships", @@ -16544,7 +16544,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:952dc1ee-9066-9397-7113-9565cf688af5\",\n \"user_id\": \"b8d93616-9b5e-38a2-17f4-ef8d0c376f90\",\n \"profile_id\": \"c2f1e1e5-4e3f-87f5-de1c-a6dc522e14fa\",\n \"ne_attribute_id\": \"urn:uuid:de928d2a-7eb6-c510-267a-9cc4e33e166d\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:9a6a123e-5965-7b3b-1568-e65381f927f4\",\n \"user_id\": \"urn:uuid:1519cccc-baeb-edb2-d336-e58e09668249\",\n \"profile_id\": \"urn:uuid:072a4e73-ee3f-3cf2-fb0b-cb69c29221ae\",\n \"ne_attribute_id\": \"54a4199e-eb94-5f66-150c-d5cafce98768\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"6423e4ec-b16d-e0a2-4221-03be11c41f64\",\n \"user_id\": \"urn:uuid:739f5222-6cd5-dfe2-9227-f292dae0dd1f\",\n \"profile_id\": \"urn:uuid:9a7821d0-d6e0-7918-3464-6b5f24d92ca2\",\n \"ne_attribute_id\": \"urn:uuid:026204ba-f1bc-4079-dc05-5ad067fdde20\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"urn:uuid:83679aeb-0186-4029-2039-2004c5152fd4\",\n \"user_id\": \"941e0ea3-c64c-ad6a-7166-bb88bd62e5fb\",\n \"profile_id\": \"50788acf-2276-f2ba-c495-5440c2c99fe6\",\n \"ne_attribute_id\": \"4ff65936-7a6c-b138-0605-68f2eb8d21c9\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16556,7 +16556,7 @@ }, "response": [ { - "id": "43487cd5-dfb7-4659-b53a-fc1d2e07ff1f", + "id": "3305776d-3357-4ff7-8c00-4d3452f07902", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16590,7 +16590,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:952dc1ee-9066-9397-7113-9565cf688af5\",\n \"user_id\": \"b8d93616-9b5e-38a2-17f4-ef8d0c376f90\",\n \"profile_id\": \"c2f1e1e5-4e3f-87f5-de1c-a6dc522e14fa\",\n \"ne_attribute_id\": \"urn:uuid:de928d2a-7eb6-c510-267a-9cc4e33e166d\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:9a6a123e-5965-7b3b-1568-e65381f927f4\",\n \"user_id\": \"urn:uuid:1519cccc-baeb-edb2-d336-e58e09668249\",\n \"profile_id\": \"urn:uuid:072a4e73-ee3f-3cf2-fb0b-cb69c29221ae\",\n \"ne_attribute_id\": \"54a4199e-eb94-5f66-150c-d5cafce98768\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"6423e4ec-b16d-e0a2-4221-03be11c41f64\",\n \"user_id\": \"urn:uuid:739f5222-6cd5-dfe2-9227-f292dae0dd1f\",\n \"profile_id\": \"urn:uuid:9a7821d0-d6e0-7918-3464-6b5f24d92ca2\",\n \"ne_attribute_id\": \"urn:uuid:026204ba-f1bc-4079-dc05-5ad067fdde20\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"urn:uuid:83679aeb-0186-4029-2039-2004c5152fd4\",\n \"user_id\": \"941e0ea3-c64c-ad6a-7166-bb88bd62e5fb\",\n \"profile_id\": \"50788acf-2276-f2ba-c495-5440c2c99fe6\",\n \"ne_attribute_id\": \"4ff65936-7a6c-b138-0605-68f2eb8d21c9\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16607,12 +16607,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"14b37737-2cdd-dd9e-fc43-f8d2b1aca7ca\",\n \"uid\": \"elit nostrud sint inveniam in te\",\n \"user_id\": \"urn:uuid:c10486fd-41af-cf3c-7624-b44abd355fb1\",\n \"profile_id\": \"urn:uuid:248838c8-3576-6020-5e5a-d73752ac4bbc\",\n \"ne_attribute_id\": \"urn:uuid:abdfa447-5da6-f581-12d7-ee60711f40e6\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:79dbd00a-a32c-1c1e-0731-9cf368b8db85\",\n \"uid\": \"labore qui eu ullamco inelit pro\",\n \"user_id\": \"urn:uuid:5abc61ee-19a5-da69-dac1-a9661ee4aed4\",\n \"profile_id\": \"urn:uuid:6ff0a4a4-f181-f960-1a52-0ebe7369aa22\",\n \"ne_attribute_id\": \"urn:uuid:863553e0-202d-5d82-f4d3-b3d03acf7bb7\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:8802887f-1212-0683-8860-cd60e2831c6f\",\n \"uid\": \"commodo labore do etquis fugiat \",\n \"user_id\": \"dae6cf77-88f2-a3fc-7162-6b42e96c26d3\",\n \"profile_id\": \"urn:uuid:d159c82c-cfaa-8e68-0d22-9f11db88018b\",\n \"ne_attribute_id\": \"cf7b694a-ad35-6241-6484-e6b0c2f8eb75\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:d0db3e12-c235-c9dd-6035-52cc12e20ecc\",\n \"uid\": \"consecteturlaborum sedaute magna\",\n \"user_id\": \"urn:uuid:4943bed7-9c68-ed83-e658-8d7579603388\",\n \"profile_id\": \"urn:uuid:c9656d66-2d0c-86d8-96f4-4b6962d1da83\",\n \"ne_attribute_id\": \"fc702ca3-8872-3b32-3aca-f155f86a26bb\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c54e4851-efd1-4ce0-91dd-e4ee1b2afeaf", + "id": "e851b263-bc5c-4e26-8c48-07a76cebbed5", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16646,7 +16646,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:952dc1ee-9066-9397-7113-9565cf688af5\",\n \"user_id\": \"b8d93616-9b5e-38a2-17f4-ef8d0c376f90\",\n \"profile_id\": \"c2f1e1e5-4e3f-87f5-de1c-a6dc522e14fa\",\n \"ne_attribute_id\": \"urn:uuid:de928d2a-7eb6-c510-267a-9cc4e33e166d\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:9a6a123e-5965-7b3b-1568-e65381f927f4\",\n \"user_id\": \"urn:uuid:1519cccc-baeb-edb2-d336-e58e09668249\",\n \"profile_id\": \"urn:uuid:072a4e73-ee3f-3cf2-fb0b-cb69c29221ae\",\n \"ne_attribute_id\": \"54a4199e-eb94-5f66-150c-d5cafce98768\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"6423e4ec-b16d-e0a2-4221-03be11c41f64\",\n \"user_id\": \"urn:uuid:739f5222-6cd5-dfe2-9227-f292dae0dd1f\",\n \"profile_id\": \"urn:uuid:9a7821d0-d6e0-7918-3464-6b5f24d92ca2\",\n \"ne_attribute_id\": \"urn:uuid:026204ba-f1bc-4079-dc05-5ad067fdde20\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"urn:uuid:83679aeb-0186-4029-2039-2004c5152fd4\",\n \"user_id\": \"941e0ea3-c64c-ad6a-7166-bb88bd62e5fb\",\n \"profile_id\": \"50788acf-2276-f2ba-c495-5440c2c99fe6\",\n \"ne_attribute_id\": \"4ff65936-7a6c-b138-0605-68f2eb8d21c9\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16668,7 +16668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3036ddee-387a-4fd4-9a55-278c079cf399", + "id": "367d0a57-9f56-4624-97a5-2967fe8bade9", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -16702,7 +16702,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:952dc1ee-9066-9397-7113-9565cf688af5\",\n \"user_id\": \"b8d93616-9b5e-38a2-17f4-ef8d0c376f90\",\n \"profile_id\": \"c2f1e1e5-4e3f-87f5-de1c-a6dc522e14fa\",\n \"ne_attribute_id\": \"urn:uuid:de928d2a-7eb6-c510-267a-9cc4e33e166d\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:9a6a123e-5965-7b3b-1568-e65381f927f4\",\n \"user_id\": \"urn:uuid:1519cccc-baeb-edb2-d336-e58e09668249\",\n \"profile_id\": \"urn:uuid:072a4e73-ee3f-3cf2-fb0b-cb69c29221ae\",\n \"ne_attribute_id\": \"54a4199e-eb94-5f66-150c-d5cafce98768\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"6423e4ec-b16d-e0a2-4221-03be11c41f64\",\n \"user_id\": \"urn:uuid:739f5222-6cd5-dfe2-9227-f292dae0dd1f\",\n \"profile_id\": \"urn:uuid:9a7821d0-d6e0-7918-3464-6b5f24d92ca2\",\n \"ne_attribute_id\": \"urn:uuid:026204ba-f1bc-4079-dc05-5ad067fdde20\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"urn:uuid:83679aeb-0186-4029-2039-2004c5152fd4\",\n \"user_id\": \"941e0ea3-c64c-ad6a-7166-bb88bd62e5fb\",\n \"profile_id\": \"50788acf-2276-f2ba-c495-5440c2c99fe6\",\n \"ne_attribute_id\": \"4ff65936-7a6c-b138-0605-68f2eb8d21c9\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16730,7 +16730,7 @@ } }, { - "id": "b9b75a81-91e4-49e2-98c0-f00386f1f5e5", + "id": "3461e2d1-48c4-4e1b-b452-a695179fb4c9", "name": "Delete multiple user-profile contributor relationships", "request": { "name": "Delete multiple user-profile contributor relationships", @@ -16761,7 +16761,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"f4550cc1-bff2-e817-d344-9322ba684dae\"\n },\n {\n \"id\": \"85375ed4-15b6-3ea3-a358-aa921c6f4892\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:3c6748d4-073a-98cf-63ad-14e003a3a08a\"\n },\n {\n \"id\": \"b91159e7-addf-bfcb-5414-d48bc549f6b4\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16773,7 +16773,7 @@ }, "response": [ { - "id": "ad259cde-7532-4622-a8ac-cf3af58c7581", + "id": "df33cedc-15d4-4a8d-8844-e4ef1c576c9d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16807,7 +16807,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"f4550cc1-bff2-e817-d344-9322ba684dae\"\n },\n {\n \"id\": \"85375ed4-15b6-3ea3-a358-aa921c6f4892\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:3c6748d4-073a-98cf-63ad-14e003a3a08a\"\n },\n {\n \"id\": \"b91159e7-addf-bfcb-5414-d48bc549f6b4\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16824,12 +16824,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"14b37737-2cdd-dd9e-fc43-f8d2b1aca7ca\",\n \"uid\": \"elit nostrud sint inveniam in te\",\n \"user_id\": \"urn:uuid:c10486fd-41af-cf3c-7624-b44abd355fb1\",\n \"profile_id\": \"urn:uuid:248838c8-3576-6020-5e5a-d73752ac4bbc\",\n \"ne_attribute_id\": \"urn:uuid:abdfa447-5da6-f581-12d7-ee60711f40e6\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:79dbd00a-a32c-1c1e-0731-9cf368b8db85\",\n \"uid\": \"labore qui eu ullamco inelit pro\",\n \"user_id\": \"urn:uuid:5abc61ee-19a5-da69-dac1-a9661ee4aed4\",\n \"profile_id\": \"urn:uuid:6ff0a4a4-f181-f960-1a52-0ebe7369aa22\",\n \"ne_attribute_id\": \"urn:uuid:863553e0-202d-5d82-f4d3-b3d03acf7bb7\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:8802887f-1212-0683-8860-cd60e2831c6f\",\n \"uid\": \"commodo labore do etquis fugiat \",\n \"user_id\": \"dae6cf77-88f2-a3fc-7162-6b42e96c26d3\",\n \"profile_id\": \"urn:uuid:d159c82c-cfaa-8e68-0d22-9f11db88018b\",\n \"ne_attribute_id\": \"cf7b694a-ad35-6241-6484-e6b0c2f8eb75\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:d0db3e12-c235-c9dd-6035-52cc12e20ecc\",\n \"uid\": \"consecteturlaborum sedaute magna\",\n \"user_id\": \"urn:uuid:4943bed7-9c68-ed83-e658-8d7579603388\",\n \"profile_id\": \"urn:uuid:c9656d66-2d0c-86d8-96f4-4b6962d1da83\",\n \"ne_attribute_id\": \"fc702ca3-8872-3b32-3aca-f155f86a26bb\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "712700df-c355-4c0b-a8ff-4a6c8cd6fdec", + "id": "ac63a9cb-987f-4a1e-aa3f-370782d21b64", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16863,7 +16863,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"f4550cc1-bff2-e817-d344-9322ba684dae\"\n },\n {\n \"id\": \"85375ed4-15b6-3ea3-a358-aa921c6f4892\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:3c6748d4-073a-98cf-63ad-14e003a3a08a\"\n },\n {\n \"id\": \"b91159e7-addf-bfcb-5414-d48bc549f6b4\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16885,7 +16885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f108413-e135-4cb2-805c-191e58e2cd28", + "id": "7b1584ed-0353-4014-9858-d585f41ba8ba", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -16919,7 +16919,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"f4550cc1-bff2-e817-d344-9322ba684dae\"\n },\n {\n \"id\": \"85375ed4-15b6-3ea3-a358-aa921c6f4892\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:3c6748d4-073a-98cf-63ad-14e003a3a08a\"\n },\n {\n \"id\": \"b91159e7-addf-bfcb-5414-d48bc549f6b4\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16947,7 +16947,7 @@ } }, { - "id": "5724c7de-2dad-465b-9ce6-defb984306a2", + "id": "9b0751ec-a74f-479d-b60e-e77f62c8c0ad", "name": "Find user-profile contributor relationship by id", "request": { "name": "Find user-profile contributor relationship by id", @@ -16989,7 +16989,7 @@ }, "response": [ { - "id": "26ddd5e8-067f-4969-a641-56c471a06788", + "id": "dde473a9-4235-444d-a269-c8ba869ffaeb", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17028,12 +17028,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profile\": {\n \"id\": \"d37bdf81-95b2-5d05-651e-3298ac510ffd\",\n \"uid\": \"Loremaliqua nonLorem aliqua offi\",\n \"user_id\": \"bb61c29b-b64c-c2a9-53ac-ab8207176fb1\",\n \"profile_id\": \"82bba2cd-99f5-7663-f8d7-863035369498\",\n \"ne_attribute_id\": \"urn:uuid:c7e22fff-e65a-2da9-80ff-6c34220ec250\",\n \"relationship_type\": \"owner\"\n }\n}", + "body": "{\n \"user_profile\": {\n \"id\": \"4c682d85-513c-2423-85a8-1a245f4c133e\",\n \"uid\": \"dolorqui culpa consequatculpa te\",\n \"user_id\": \"f7cc3ab4-1902-5539-75bb-08585a9b61a8\",\n \"profile_id\": \"urn:uuid:aa0c37ce-0cd3-6d95-fc53-4c0d5f431bcf\",\n \"ne_attribute_id\": \"6d3aeb08-dd29-462e-31f9-b25d1b39bf49\",\n \"relationship_type\": \"owner\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a105a7c7-16e6-447f-ab21-26b5f267d5dc", + "id": "b976708c-f5cf-479e-9624-2d9885cdf771", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17077,7 +17077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67e2e10d-6ebf-40ac-b7e6-261f5af0bfdd", + "id": "6e8a0f17-d7f2-4399-8e91-291010c21986", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17127,7 +17127,7 @@ } }, { - "id": "0386866f-f943-4c04-b67d-8889661ec0d0", + "id": "09ece08f-8025-4a74-8f37-efb5226ca8f5", "name": "Update a user-profile contributor relationship by id", "request": { "name": "Update a user-profile contributor relationship by id", @@ -17170,7 +17170,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"3b4710af-813e-2931-c2d4-eb0c355299a3\",\n \"profile_id\": \"urn:uuid:50b217da-8d8a-5d2e-015d-5e3bd1701656\",\n \"ne_attribute_id\": \"a3b3288b-932c-c3bd-1378-77eb65c71993\",\n \"relationship_type\": \"contributor\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:56df77c6-cd9c-5d37-1e33-3d0e6195657e\",\n \"profile_id\": \"urn:uuid:64670ca7-6b06-c3f8-cd00-266f6638903c\",\n \"ne_attribute_id\": \"897c0e40-6ed5-3c64-7605-d836bf477550\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17182,7 +17182,7 @@ }, "response": [ { - "id": "a3434a6a-4919-4094-9327-3fb4cb79b0f0", + "id": "e25f286d-112f-4e41-8fba-6b2907e7273e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17217,7 +17217,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"3b4710af-813e-2931-c2d4-eb0c355299a3\",\n \"profile_id\": \"urn:uuid:50b217da-8d8a-5d2e-015d-5e3bd1701656\",\n \"ne_attribute_id\": \"a3b3288b-932c-c3bd-1378-77eb65c71993\",\n \"relationship_type\": \"contributor\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:56df77c6-cd9c-5d37-1e33-3d0e6195657e\",\n \"profile_id\": \"urn:uuid:64670ca7-6b06-c3f8-cd00-266f6638903c\",\n \"ne_attribute_id\": \"897c0e40-6ed5-3c64-7605-d836bf477550\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17234,12 +17234,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profile\": {\n \"id\": \"d37bdf81-95b2-5d05-651e-3298ac510ffd\",\n \"uid\": \"Loremaliqua nonLorem aliqua offi\",\n \"user_id\": \"bb61c29b-b64c-c2a9-53ac-ab8207176fb1\",\n \"profile_id\": \"82bba2cd-99f5-7663-f8d7-863035369498\",\n \"ne_attribute_id\": \"urn:uuid:c7e22fff-e65a-2da9-80ff-6c34220ec250\",\n \"relationship_type\": \"owner\"\n }\n}", + "body": "{\n \"user_profile\": {\n \"id\": \"4c682d85-513c-2423-85a8-1a245f4c133e\",\n \"uid\": \"dolorqui culpa consequatculpa te\",\n \"user_id\": \"f7cc3ab4-1902-5539-75bb-08585a9b61a8\",\n \"profile_id\": \"urn:uuid:aa0c37ce-0cd3-6d95-fc53-4c0d5f431bcf\",\n \"ne_attribute_id\": \"6d3aeb08-dd29-462e-31f9-b25d1b39bf49\",\n \"relationship_type\": \"owner\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "da854b17-ee5a-47fe-b440-3ab0d7ea89c8", + "id": "6980c5a1-a769-433a-bfbb-f519759fb461", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17274,7 +17274,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"3b4710af-813e-2931-c2d4-eb0c355299a3\",\n \"profile_id\": \"urn:uuid:50b217da-8d8a-5d2e-015d-5e3bd1701656\",\n \"ne_attribute_id\": \"a3b3288b-932c-c3bd-1378-77eb65c71993\",\n \"relationship_type\": \"contributor\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:56df77c6-cd9c-5d37-1e33-3d0e6195657e\",\n \"profile_id\": \"urn:uuid:64670ca7-6b06-c3f8-cd00-266f6638903c\",\n \"ne_attribute_id\": \"897c0e40-6ed5-3c64-7605-d836bf477550\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17296,7 +17296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92240dc5-46c4-40e0-8554-c7c33b8f3bd4", + "id": "0abf52dd-d897-43af-8e68-1e34a744a776", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17331,7 +17331,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"3b4710af-813e-2931-c2d4-eb0c355299a3\",\n \"profile_id\": \"urn:uuid:50b217da-8d8a-5d2e-015d-5e3bd1701656\",\n \"ne_attribute_id\": \"a3b3288b-932c-c3bd-1378-77eb65c71993\",\n \"relationship_type\": \"contributor\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:56df77c6-cd9c-5d37-1e33-3d0e6195657e\",\n \"profile_id\": \"urn:uuid:64670ca7-6b06-c3f8-cd00-266f6638903c\",\n \"ne_attribute_id\": \"897c0e40-6ed5-3c64-7605-d836bf477550\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17359,7 +17359,7 @@ } }, { - "id": "4fa5c3d9-949e-49db-a87c-2189b5789db6", + "id": "4509c6ea-955d-490d-8738-a7d2fff20160", "name": "Delete a user profile assignment", "request": { "name": "Delete a user profile assignment", @@ -17401,7 +17401,7 @@ }, "response": [ { - "id": "c73532c2-c105-44ad-8ec2-32fba20569b5", + "id": "1c06a20b-6a38-4e42-ae60-53fb29b3bb70", "name": "User profile was destroyed", "originalRequest": { "url": { @@ -17445,7 +17445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "defb2866-545f-4943-a08c-76aaefd1190f", + "id": "860e9c74-e4eb-40b3-833a-5220055bb75c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17489,7 +17489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0568e2e-c752-4038-8d83-98ca7e251d7a", + "id": "d5534f75-76cc-4efd-808e-80f97b75c654", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17545,7 +17545,7 @@ "description": "", "item": [ { - "id": "966331af-e4a0-43b7-8b0c-e612bbda482a", + "id": "307bfdb6-f28c-4c55-812e-5940a2091bc8", "name": "Create a role-profile contributor relationship", "request": { "name": "Create a role-profile contributor relationship", @@ -17576,7 +17576,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"55c5a084-e753-d4d6-c507-51eb4a73b369\",\n \"profile_id\": \"urn:uuid:963ecc6b-32d6-d00d-95d4-bbe31ce194e4\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"78eaee2b-c54a-2935-e244-9d95cb72137d\",\n \"profile_id\": \"urn:uuid:b4486f69-b6da-19d1-6d00-f2d5c5ab82d1\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17588,7 +17588,7 @@ }, "response": [ { - "id": "4c9f2d9b-c679-4d2e-95de-0702dc76bb84", + "id": "4ea503cd-cc42-4f08-823a-b1d19e594f13", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17622,7 +17622,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"55c5a084-e753-d4d6-c507-51eb4a73b369\",\n \"profile_id\": \"urn:uuid:963ecc6b-32d6-d00d-95d4-bbe31ce194e4\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"78eaee2b-c54a-2935-e244-9d95cb72137d\",\n \"profile_id\": \"urn:uuid:b4486f69-b6da-19d1-6d00-f2d5c5ab82d1\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17639,12 +17639,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:230b371b-9be7-4a7e-a312-fe437fa31039\",\n \"uid\": \"esse cupidatat exercitation cill\",\n \"role_id\": \"34ff350b-1049-a02e-284a-1672d78ff4cc\",\n \"profile_id\": \"urn:uuid:9117bf88-1a9b-6ec9-9f3d-207aa20f3562\"\n }\n}", + "body": "{\n \"role_profile\": {\n \"id\": \"3dcafa19-588a-bdb5-ef37-b55860c27725\",\n \"uid\": \"nulla ut consequat cupidatatnon \",\n \"role_id\": \"urn:uuid:ffaf4df8-fba7-3b59-3fdd-b55b40bf756b\",\n \"profile_id\": \"f86bfc34-bdbc-1845-8bc6-95b3d752ebe0\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "22590e19-1764-4d59-94e8-c354d20b67ac", + "id": "6103782a-f503-4a9e-b66d-f4d6c0b9a514", "name": "Invalid input", "originalRequest": { "url": { @@ -17674,7 +17674,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"55c5a084-e753-d4d6-c507-51eb4a73b369\",\n \"profile_id\": \"urn:uuid:963ecc6b-32d6-d00d-95d4-bbe31ce194e4\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"78eaee2b-c54a-2935-e244-9d95cb72137d\",\n \"profile_id\": \"urn:uuid:b4486f69-b6da-19d1-6d00-f2d5c5ab82d1\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17696,7 +17696,7 @@ } }, { - "id": "f62831b6-8352-46b1-bed6-808a973f9d64", + "id": "9433825c-2986-4e88-9b9c-56c41bca5646", "name": "Get role-profile contributor relationships", "request": { "name": "Get role-profile contributor relationships", @@ -17746,7 +17746,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -17781,7 +17781,7 @@ }, "response": [ { - "id": "6d769a68-b5c7-4a27-bd08-ae4e6ce488fe", + "id": "89260390-bc9c-43c8-bd5e-da74bcdfba18", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17826,7 +17826,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -17874,12 +17874,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:a607d6a6-accd-ed44-6148-477e2ea9e1a1\",\n \"uid\": \"etminim cupidatat Loremet offici\",\n \"role_id\": \"urn:uuid:bd358806-0898-5df1-35de-72be4e34f751\",\n \"profile_id\": \"urn:uuid:a0835cb3-3fdb-7da8-adde-53600eaac9df\"\n },\n {\n \"id\": \"urn:uuid:66875a47-ca2d-1f10-c478-9d64c0367e78\",\n \"uid\": \"non utut voluptateconsectetur ma\",\n \"role_id\": \"urn:uuid:081836c7-9f38-471a-deb8-a659a0377d12\",\n \"profile_id\": \"urn:uuid:ad2a5193-469c-2299-0bc0-8d8b26aabc63\"\n }\n ],\n \"_metadata\": {\n \"limit\": 99342857,\n \"offset\": -99016138,\n \"total\": 65244742,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:2572c82e-f73f-3d90-874a-662a91eb0a41\",\n \"uid\": \"eiusmod sed voluptate Lorem Duis\",\n \"role_id\": \"9a94097d-b63f-dfb8-4c94-f7ee35eb1197\",\n \"profile_id\": \"3398f907-bf70-3f41-1474-3e1a108769e8\"\n },\n {\n \"id\": \"urn:uuid:ac100ad9-4a2d-4d83-3052-7fa58182af5c\",\n \"uid\": \"culpa officia enim ullamco proid\",\n \"role_id\": \"d2d9f1e5-bc1b-8858-c088-4cf2e0c50071\",\n \"profile_id\": \"urn:uuid:bc2baefe-30fc-2d1a-4e48-081b0111bf04\"\n }\n ],\n \"_metadata\": {\n \"limit\": 63984063,\n \"offset\": 31710791,\n \"total\": -55430091,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "550852e9-6dc5-4022-857a-979e3133cec3", + "id": "a858b0c6-901a-47d6-8e4e-244ba864acb0", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17924,7 +17924,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -17977,7 +17977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3961a75-21a6-4023-9d9d-be76dc28cd2c", + "id": "31a7cb1d-75ef-4e1d-a0cc-d41f6eed2cfa", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18022,7 +18022,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -18081,7 +18081,7 @@ } }, { - "id": "061bca92-8912-41a2-8932-0dbc22c104a6", + "id": "c6360fd5-19df-4925-8682-b31fa6a2e643", "name": "Create multiple role-profile contributor relationships", "request": { "name": "Create multiple role-profile contributor relationships", @@ -18112,7 +18112,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"ddebedb3-e64c-f57e-91c9-64fb848e0cab\",\n \"profile_id\": \"d1b77570-9790-81f0-3fc9-21833602b209\"\n },\n {\n \"role_id\": \"urn:uuid:9584146d-840a-00ca-1645-037ea7e377f6\",\n \"profile_id\": \"dc165721-58d2-d5eb-7935-ca7e8ab45c76\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:3b57275a-fc67-a25e-b455-946a305fdd11\",\n \"profile_id\": \"urn:uuid:a8b61663-07aa-2ca0-bad9-cc1c44aff345\"\n },\n {\n \"role_id\": \"2d1e3827-75a0-9b48-daf2-189388d5176c\",\n \"profile_id\": \"722b2ba9-9064-d23a-9f32-820a154180da\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18124,7 +18124,7 @@ }, "response": [ { - "id": "f4ad0b3d-7e5f-42eb-b6cd-ba7d2d9adf87", + "id": "f065ff51-1fbc-4b1f-a69b-ae5e3200a884", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18158,7 +18158,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"ddebedb3-e64c-f57e-91c9-64fb848e0cab\",\n \"profile_id\": \"d1b77570-9790-81f0-3fc9-21833602b209\"\n },\n {\n \"role_id\": \"urn:uuid:9584146d-840a-00ca-1645-037ea7e377f6\",\n \"profile_id\": \"dc165721-58d2-d5eb-7935-ca7e8ab45c76\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:3b57275a-fc67-a25e-b455-946a305fdd11\",\n \"profile_id\": \"urn:uuid:a8b61663-07aa-2ca0-bad9-cc1c44aff345\"\n },\n {\n \"role_id\": \"2d1e3827-75a0-9b48-daf2-189388d5176c\",\n \"profile_id\": \"722b2ba9-9064-d23a-9f32-820a154180da\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18175,12 +18175,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profiles\": [\n {\n \"id\": \"bbc0ccd4-46d9-a871-8b60-9c4ccbc45c47\",\n \"uid\": \"aliquip ad exminim laboreipsum v\",\n \"role_id\": \"fcee8536-9aa6-5163-d01d-38eb777e9213\",\n \"profile_id\": \"02704acc-8f00-3290-0a0a-2dcf1ddc986c\"\n },\n {\n \"id\": \"urn:uuid:61744e63-7bdb-d969-44f6-f6baa046de38\",\n \"uid\": \"do irure esse fugiatdolor ea etl\",\n \"role_id\": \"urn:uuid:f6fdad4e-82e7-c3ce-ca4f-5cb1eda91756\",\n \"profile_id\": \"e836a768-2e23-5457-78cf-16c1bab6854a\"\n }\n ]\n}", + "body": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:f0dac8ab-c47d-f858-e3f8-ff18bd7455ae\",\n \"uid\": \"dolore nullaeiusmod in laboris a\",\n \"role_id\": \"127e3baf-2384-4498-b87b-764867b8ef49\",\n \"profile_id\": \"2226f6db-db22-4e47-40d7-c4440aabbba1\"\n },\n {\n \"id\": \"3fdb37d1-4cab-495a-6929-3ad5d254df2b\",\n \"uid\": \"irurenonex nulla aliqua enimnost\",\n \"role_id\": \"6fb3a5ad-8dc4-6ae7-ff44-a0a66cc89d66\",\n \"profile_id\": \"urn:uuid:3292005b-1cff-9825-03c8-b39653d4c929\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "469abba3-fe9e-4c0a-9e95-a99b89f93053", + "id": "51c70bd5-f368-458d-9ea4-a5815aee2c8a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18214,7 +18214,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"ddebedb3-e64c-f57e-91c9-64fb848e0cab\",\n \"profile_id\": \"d1b77570-9790-81f0-3fc9-21833602b209\"\n },\n {\n \"role_id\": \"urn:uuid:9584146d-840a-00ca-1645-037ea7e377f6\",\n \"profile_id\": \"dc165721-58d2-d5eb-7935-ca7e8ab45c76\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:3b57275a-fc67-a25e-b455-946a305fdd11\",\n \"profile_id\": \"urn:uuid:a8b61663-07aa-2ca0-bad9-cc1c44aff345\"\n },\n {\n \"role_id\": \"2d1e3827-75a0-9b48-daf2-189388d5176c\",\n \"profile_id\": \"722b2ba9-9064-d23a-9f32-820a154180da\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18236,7 +18236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ec24d5a-d25d-4731-9639-7ee53c4e29c8", + "id": "50b59f28-11c2-4845-8ed8-b2048154198e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18270,7 +18270,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"ddebedb3-e64c-f57e-91c9-64fb848e0cab\",\n \"profile_id\": \"d1b77570-9790-81f0-3fc9-21833602b209\"\n },\n {\n \"role_id\": \"urn:uuid:9584146d-840a-00ca-1645-037ea7e377f6\",\n \"profile_id\": \"dc165721-58d2-d5eb-7935-ca7e8ab45c76\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:3b57275a-fc67-a25e-b455-946a305fdd11\",\n \"profile_id\": \"urn:uuid:a8b61663-07aa-2ca0-bad9-cc1c44aff345\"\n },\n {\n \"role_id\": \"2d1e3827-75a0-9b48-daf2-189388d5176c\",\n \"profile_id\": \"722b2ba9-9064-d23a-9f32-820a154180da\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18298,7 +18298,7 @@ } }, { - "id": "523b3269-85e4-4334-8ef3-0bebb1742814", + "id": "adaa76db-18de-44e8-b703-a0e554e8a8a3", "name": "Update multiple role-profile contributor relationships", "request": { "name": "Update multiple role-profile contributor relationships", @@ -18329,7 +18329,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:1435b62e-6e67-7f6b-8705-0cb0f4c2d736\",\n \"role_id\": \"urn:uuid:f0dca6f8-cd03-d88b-b1f1-ec1eb8b170d5\",\n \"profile_id\": \"87b99323-fc1d-e586-d4cb-9a3543b74594\"\n },\n {\n \"id\": \"8f679121-9c00-cba3-34df-e7b0b68ed488\",\n \"role_id\": \"ea383fe8-e9ef-8167-28f2-611e88090904\",\n \"profile_id\": \"41ea91ee-34d6-b8bd-c102-f849298ed3a2\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:48914e81-b383-abba-e350-214c5d542271\",\n \"role_id\": \"1327b334-4143-e16c-20c5-f07a3db0c10b\",\n \"profile_id\": \"urn:uuid:557ac674-892e-8f44-d80f-704a7286fe22\"\n },\n {\n \"id\": \"urn:uuid:b00ccd22-e196-c05f-d433-d24bf933d17b\",\n \"role_id\": \"urn:uuid:f9bae3c1-733f-35fb-0af0-69f4762ff9aa\",\n \"profile_id\": \"cebf7eff-2ab3-5bb5-0816-0a89d8c0cdee\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18341,7 +18341,7 @@ }, "response": [ { - "id": "e5bb710e-b70c-4c82-a530-345eb61dbaf4", + "id": "3b78e3aa-4a1e-4c8d-8410-a5fbe8ad86cc", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18375,7 +18375,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:1435b62e-6e67-7f6b-8705-0cb0f4c2d736\",\n \"role_id\": \"urn:uuid:f0dca6f8-cd03-d88b-b1f1-ec1eb8b170d5\",\n \"profile_id\": \"87b99323-fc1d-e586-d4cb-9a3543b74594\"\n },\n {\n \"id\": \"8f679121-9c00-cba3-34df-e7b0b68ed488\",\n \"role_id\": \"ea383fe8-e9ef-8167-28f2-611e88090904\",\n \"profile_id\": \"41ea91ee-34d6-b8bd-c102-f849298ed3a2\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:48914e81-b383-abba-e350-214c5d542271\",\n \"role_id\": \"1327b334-4143-e16c-20c5-f07a3db0c10b\",\n \"profile_id\": \"urn:uuid:557ac674-892e-8f44-d80f-704a7286fe22\"\n },\n {\n \"id\": \"urn:uuid:b00ccd22-e196-c05f-d433-d24bf933d17b\",\n \"role_id\": \"urn:uuid:f9bae3c1-733f-35fb-0af0-69f4762ff9aa\",\n \"profile_id\": \"cebf7eff-2ab3-5bb5-0816-0a89d8c0cdee\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18392,12 +18392,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profiles\": [\n {\n \"id\": \"bbc0ccd4-46d9-a871-8b60-9c4ccbc45c47\",\n \"uid\": \"aliquip ad exminim laboreipsum v\",\n \"role_id\": \"fcee8536-9aa6-5163-d01d-38eb777e9213\",\n \"profile_id\": \"02704acc-8f00-3290-0a0a-2dcf1ddc986c\"\n },\n {\n \"id\": \"urn:uuid:61744e63-7bdb-d969-44f6-f6baa046de38\",\n \"uid\": \"do irure esse fugiatdolor ea etl\",\n \"role_id\": \"urn:uuid:f6fdad4e-82e7-c3ce-ca4f-5cb1eda91756\",\n \"profile_id\": \"e836a768-2e23-5457-78cf-16c1bab6854a\"\n }\n ]\n}", + "body": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:f0dac8ab-c47d-f858-e3f8-ff18bd7455ae\",\n \"uid\": \"dolore nullaeiusmod in laboris a\",\n \"role_id\": \"127e3baf-2384-4498-b87b-764867b8ef49\",\n \"profile_id\": \"2226f6db-db22-4e47-40d7-c4440aabbba1\"\n },\n {\n \"id\": \"3fdb37d1-4cab-495a-6929-3ad5d254df2b\",\n \"uid\": \"irurenonex nulla aliqua enimnost\",\n \"role_id\": \"6fb3a5ad-8dc4-6ae7-ff44-a0a66cc89d66\",\n \"profile_id\": \"urn:uuid:3292005b-1cff-9825-03c8-b39653d4c929\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "349aaf2f-29e6-443f-ba8c-4984bc801061", + "id": "e1c8934f-2ad8-4bd8-be2d-43c85cba3b23", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18431,7 +18431,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:1435b62e-6e67-7f6b-8705-0cb0f4c2d736\",\n \"role_id\": \"urn:uuid:f0dca6f8-cd03-d88b-b1f1-ec1eb8b170d5\",\n \"profile_id\": \"87b99323-fc1d-e586-d4cb-9a3543b74594\"\n },\n {\n \"id\": \"8f679121-9c00-cba3-34df-e7b0b68ed488\",\n \"role_id\": \"ea383fe8-e9ef-8167-28f2-611e88090904\",\n \"profile_id\": \"41ea91ee-34d6-b8bd-c102-f849298ed3a2\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:48914e81-b383-abba-e350-214c5d542271\",\n \"role_id\": \"1327b334-4143-e16c-20c5-f07a3db0c10b\",\n \"profile_id\": \"urn:uuid:557ac674-892e-8f44-d80f-704a7286fe22\"\n },\n {\n \"id\": \"urn:uuid:b00ccd22-e196-c05f-d433-d24bf933d17b\",\n \"role_id\": \"urn:uuid:f9bae3c1-733f-35fb-0af0-69f4762ff9aa\",\n \"profile_id\": \"cebf7eff-2ab3-5bb5-0816-0a89d8c0cdee\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18453,7 +18453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97392a26-9876-4a18-9790-39f654c086da", + "id": "14c6e849-f173-4ca8-aa72-39bae77f3ae9", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18487,7 +18487,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:1435b62e-6e67-7f6b-8705-0cb0f4c2d736\",\n \"role_id\": \"urn:uuid:f0dca6f8-cd03-d88b-b1f1-ec1eb8b170d5\",\n \"profile_id\": \"87b99323-fc1d-e586-d4cb-9a3543b74594\"\n },\n {\n \"id\": \"8f679121-9c00-cba3-34df-e7b0b68ed488\",\n \"role_id\": \"ea383fe8-e9ef-8167-28f2-611e88090904\",\n \"profile_id\": \"41ea91ee-34d6-b8bd-c102-f849298ed3a2\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:48914e81-b383-abba-e350-214c5d542271\",\n \"role_id\": \"1327b334-4143-e16c-20c5-f07a3db0c10b\",\n \"profile_id\": \"urn:uuid:557ac674-892e-8f44-d80f-704a7286fe22\"\n },\n {\n \"id\": \"urn:uuid:b00ccd22-e196-c05f-d433-d24bf933d17b\",\n \"role_id\": \"urn:uuid:f9bae3c1-733f-35fb-0af0-69f4762ff9aa\",\n \"profile_id\": \"cebf7eff-2ab3-5bb5-0816-0a89d8c0cdee\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18515,7 +18515,7 @@ } }, { - "id": "05cbd95e-0d9b-4e01-856b-eb95a8029a43", + "id": "dbb89090-50f4-4c93-9dfe-9ca345747f5d", "name": "Find role-profile contributor relationship by id", "request": { "name": "Find role-profile contributor relationship by id", @@ -18557,7 +18557,7 @@ }, "response": [ { - "id": "cfae3889-0271-459e-8b76-23ff064623bf", + "id": "0d0dee69-2363-486f-8af1-bb5866459e8a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18596,12 +18596,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:230b371b-9be7-4a7e-a312-fe437fa31039\",\n \"uid\": \"esse cupidatat exercitation cill\",\n \"role_id\": \"34ff350b-1049-a02e-284a-1672d78ff4cc\",\n \"profile_id\": \"urn:uuid:9117bf88-1a9b-6ec9-9f3d-207aa20f3562\"\n }\n}", + "body": "{\n \"role_profile\": {\n \"id\": \"3dcafa19-588a-bdb5-ef37-b55860c27725\",\n \"uid\": \"nulla ut consequat cupidatatnon \",\n \"role_id\": \"urn:uuid:ffaf4df8-fba7-3b59-3fdd-b55b40bf756b\",\n \"profile_id\": \"f86bfc34-bdbc-1845-8bc6-95b3d752ebe0\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e81c87c-d3f9-4ada-89c9-71e68d9a8100", + "id": "3a17cb16-d371-40cc-8d1f-3fb462cc1277", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18645,7 +18645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3fed879-ff56-4847-aea5-4ed9448d6d06", + "id": "e0d2c3df-ae58-45e4-b06e-253747794ddc", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18695,7 +18695,7 @@ } }, { - "id": "9c81f234-0dca-4d94-bb61-dec0674ea552", + "id": "104c99ba-0452-44a3-a42d-d1430844c164", "name": "Update a role-profile contributor relationship by id", "request": { "name": "Update a role-profile contributor relationship by id", @@ -18738,7 +18738,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"55c5a084-e753-d4d6-c507-51eb4a73b369\",\n \"profile_id\": \"urn:uuid:963ecc6b-32d6-d00d-95d4-bbe31ce194e4\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"78eaee2b-c54a-2935-e244-9d95cb72137d\",\n \"profile_id\": \"urn:uuid:b4486f69-b6da-19d1-6d00-f2d5c5ab82d1\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18750,7 +18750,7 @@ }, "response": [ { - "id": "b1731d92-bf3f-4b00-af5d-db0ecc91d49f", + "id": "2956ae01-b753-4408-84f6-0c0383ee344f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18785,7 +18785,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"55c5a084-e753-d4d6-c507-51eb4a73b369\",\n \"profile_id\": \"urn:uuid:963ecc6b-32d6-d00d-95d4-bbe31ce194e4\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"78eaee2b-c54a-2935-e244-9d95cb72137d\",\n \"profile_id\": \"urn:uuid:b4486f69-b6da-19d1-6d00-f2d5c5ab82d1\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18802,12 +18802,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:230b371b-9be7-4a7e-a312-fe437fa31039\",\n \"uid\": \"esse cupidatat exercitation cill\",\n \"role_id\": \"34ff350b-1049-a02e-284a-1672d78ff4cc\",\n \"profile_id\": \"urn:uuid:9117bf88-1a9b-6ec9-9f3d-207aa20f3562\"\n }\n}", + "body": "{\n \"role_profile\": {\n \"id\": \"3dcafa19-588a-bdb5-ef37-b55860c27725\",\n \"uid\": \"nulla ut consequat cupidatatnon \",\n \"role_id\": \"urn:uuid:ffaf4df8-fba7-3b59-3fdd-b55b40bf756b\",\n \"profile_id\": \"f86bfc34-bdbc-1845-8bc6-95b3d752ebe0\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4df92a60-a176-430e-ad5e-c4cdcc35e6d4", + "id": "3a463e65-7e41-4490-9c09-df10ae7d81d6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18842,7 +18842,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"55c5a084-e753-d4d6-c507-51eb4a73b369\",\n \"profile_id\": \"urn:uuid:963ecc6b-32d6-d00d-95d4-bbe31ce194e4\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"78eaee2b-c54a-2935-e244-9d95cb72137d\",\n \"profile_id\": \"urn:uuid:b4486f69-b6da-19d1-6d00-f2d5c5ab82d1\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18864,7 +18864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33042f08-d206-4a2d-b129-3731f7cd9c16", + "id": "9746d135-a5f5-475e-a1d5-62bbe6f4e66c", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18899,7 +18899,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"55c5a084-e753-d4d6-c507-51eb4a73b369\",\n \"profile_id\": \"urn:uuid:963ecc6b-32d6-d00d-95d4-bbe31ce194e4\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"78eaee2b-c54a-2935-e244-9d95cb72137d\",\n \"profile_id\": \"urn:uuid:b4486f69-b6da-19d1-6d00-f2d5c5ab82d1\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18927,7 +18927,7 @@ } }, { - "id": "138fb7cd-705d-4774-a1a0-8ed69ef656e5", + "id": "e68b1b56-6c06-445b-9c3f-b24fde04fd4e", "name": "Delete a role profile assignment", "request": { "name": "Delete a role profile assignment", @@ -18969,7 +18969,7 @@ }, "response": [ { - "id": "f7c61e17-608e-4eb4-b07b-b5e18a760255", + "id": "ad55e4d1-20bc-4b54-83ef-739db0ebe742", "name": "Role profile was destroyed", "originalRequest": { "url": { @@ -19013,7 +19013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94cc1cdb-4100-4ed8-9f38-8b84067063f1", + "id": "b860661b-1a03-4fe3-aff5-80a8ed22156a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19057,7 +19057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22dab55f-68eb-483a-a87d-0a81a44f90c8", + "id": "f912fbbd-a485-4a2a-acf0-b8c36a036487", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19113,7 +19113,7 @@ "description": "", "item": [ { - "id": "81712b15-a0cd-4cdf-b76b-22a10ff49f68", + "id": "cc5ed052-8986-4ce2-b4e3-55b5bc321518", "name": "Create a create workflow", "request": { "name": "Create a create workflow", @@ -19157,7 +19157,7 @@ }, "response": [ { - "id": "ce691507-41dc-4dfb-8b8e-34ecd5a081ec", + "id": "f3589e70-eb9e-4989-8e85-8158b7f274a6", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19209,12 +19209,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"fb3f5429-40ed-bd2d-f909-3ea99cd33401\",\n \"uid\": \"nisi aliquip amet ut ipsumeu ean\",\n \"workflow_id\": \"urn:uuid:05c0fac9-e225-d4f8-5160-2527ea39023b\",\n \"requester_id\": \"243de365-556c-05d7-9782-ff91ea0677ca\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:7e6a725c-032c-7542-99f4-5956c139c54a\",\n \"profile_ids\": [\n \"b7c2638f-7eec-b18b-c255-e87b4bad7514\",\n \"urn:uuid:9fe8a8e2-617c-7105-bc48-b62fbdcd9a9b\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:be7d54a9-32ab-7244-ae8c-9df9a04bd2e1\",\n \"uid\": \"consectetur velit cillum incidid\",\n \"workflow_id\": \"urn:uuid:d31a6a23-09ad-39ff-aa72-b8e6d6d0ef4a\",\n \"requester_id\": \"b250ffbf-31da-5bb9-90e8-bad35dc4963b\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:a5f9f415-1f02-b7ef-1a4a-b259eb87df69\",\n \"profile_ids\": [\n \"urn:uuid:44796217-a181-8256-dc0f-854cd45baa82\",\n \"58e68e7a-16e3-b292-7f0d-4e06a67c167d\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3da212cd-ca48-4f71-a068-cb29ff817b6a", + "id": "177934a4-ba61-49d0-863d-8ed86c240bac", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19271,7 +19271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8974558-8bbc-4ce3-a6aa-15609b3f3a02", + "id": "d08bfd90-ad32-4008-a92f-0eff92894a42", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19334,7 +19334,7 @@ } }, { - "id": "f4e162ea-a480-4baa-aabc-e30600356d40", + "id": "ba9e5d27-1cee-46be-97e0-32f0cc732f1d", "name": "Create an update workflow", "request": { "name": "Create an update workflow", @@ -19378,7 +19378,7 @@ }, "response": [ { - "id": "210482b7-f449-49e7-a407-e17afd401b3b", + "id": "06fbc35d-7855-4da2-b5e0-02357fc85e30", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19430,12 +19430,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"fb3f5429-40ed-bd2d-f909-3ea99cd33401\",\n \"uid\": \"nisi aliquip amet ut ipsumeu ean\",\n \"workflow_id\": \"urn:uuid:05c0fac9-e225-d4f8-5160-2527ea39023b\",\n \"requester_id\": \"243de365-556c-05d7-9782-ff91ea0677ca\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:7e6a725c-032c-7542-99f4-5956c139c54a\",\n \"profile_ids\": [\n \"b7c2638f-7eec-b18b-c255-e87b4bad7514\",\n \"urn:uuid:9fe8a8e2-617c-7105-bc48-b62fbdcd9a9b\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:be7d54a9-32ab-7244-ae8c-9df9a04bd2e1\",\n \"uid\": \"consectetur velit cillum incidid\",\n \"workflow_id\": \"urn:uuid:d31a6a23-09ad-39ff-aa72-b8e6d6d0ef4a\",\n \"requester_id\": \"b250ffbf-31da-5bb9-90e8-bad35dc4963b\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:a5f9f415-1f02-b7ef-1a4a-b259eb87df69\",\n \"profile_ids\": [\n \"urn:uuid:44796217-a181-8256-dc0f-854cd45baa82\",\n \"58e68e7a-16e3-b292-7f0d-4e06a67c167d\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "959b4fe6-904d-45ab-80db-1e692f200a49", + "id": "b6264dda-fef7-4f79-a67a-df429c7a63a0", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19492,7 +19492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9898b76-619e-4cfa-a5b1-70cdb85e64cd", + "id": "628bcfd6-c17d-48a7-9436-77c290414f10", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19555,7 +19555,7 @@ } }, { - "id": "9722999f-efee-4d0d-a525-b08f26489a3a", + "id": "c0cf37f3-2531-440b-a499-d5e8ba45e0e6", "name": "Create a batch workflow", "request": { "name": "Create a batch workflow", @@ -19587,7 +19587,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"false\"\n }\n }\n}", + "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"false\",\n \"multiple_requests\": \"false\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19599,7 +19599,7 @@ }, "response": [ { - "id": "0f571b32-b0a7-46b9-8580-f3e6e768f3cd", + "id": "a88320bc-9874-4618-9eba-655b1c4e08ee", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19634,7 +19634,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"false\"\n }\n }\n}", + "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"false\",\n \"multiple_requests\": \"false\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19651,12 +19651,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"fb3f5429-40ed-bd2d-f909-3ea99cd33401\",\n \"uid\": \"nisi aliquip amet ut ipsumeu ean\",\n \"workflow_id\": \"urn:uuid:05c0fac9-e225-d4f8-5160-2527ea39023b\",\n \"requester_id\": \"243de365-556c-05d7-9782-ff91ea0677ca\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:7e6a725c-032c-7542-99f4-5956c139c54a\",\n \"profile_ids\": [\n \"b7c2638f-7eec-b18b-c255-e87b4bad7514\",\n \"urn:uuid:9fe8a8e2-617c-7105-bc48-b62fbdcd9a9b\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:be7d54a9-32ab-7244-ae8c-9df9a04bd2e1\",\n \"uid\": \"consectetur velit cillum incidid\",\n \"workflow_id\": \"urn:uuid:d31a6a23-09ad-39ff-aa72-b8e6d6d0ef4a\",\n \"requester_id\": \"b250ffbf-31da-5bb9-90e8-bad35dc4963b\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:a5f9f415-1f02-b7ef-1a4a-b259eb87df69\",\n \"profile_ids\": [\n \"urn:uuid:44796217-a181-8256-dc0f-854cd45baa82\",\n \"58e68e7a-16e3-b292-7f0d-4e06a67c167d\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d0352b4a-9eb8-4abf-9df7-50287008afad", + "id": "1f971ed9-70f4-436e-bd66-20974553fdcb", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19691,7 +19691,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"false\"\n }\n }\n}", + "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"false\",\n \"multiple_requests\": \"false\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19713,7 +19713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bd07e04-fc50-4a50-9a26-f2e749cf3187", + "id": "a7663980-bec4-4882-88aa-281d3e1abc22", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19748,7 +19748,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"false\"\n }\n }\n}", + "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"false\",\n \"multiple_requests\": \"false\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19776,7 +19776,7 @@ } }, { - "id": "e1d97f5e-b174-4fc7-95fb-bbe950f55e27", + "id": "b58a1c6d-e243-49f0-ac1c-7dd31deedd9f", "name": "Create an automated workflow", "request": { "name": "Create an automated workflow", @@ -19820,7 +19820,7 @@ }, "response": [ { - "id": "15280cd2-0ec4-4f86-990a-2709052d2c7a", + "id": "668bc7d6-dbeb-4feb-bed2-5d2f01c925da", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19872,12 +19872,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"fb3f5429-40ed-bd2d-f909-3ea99cd33401\",\n \"uid\": \"nisi aliquip amet ut ipsumeu ean\",\n \"workflow_id\": \"urn:uuid:05c0fac9-e225-d4f8-5160-2527ea39023b\",\n \"requester_id\": \"243de365-556c-05d7-9782-ff91ea0677ca\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:7e6a725c-032c-7542-99f4-5956c139c54a\",\n \"profile_ids\": [\n \"b7c2638f-7eec-b18b-c255-e87b4bad7514\",\n \"urn:uuid:9fe8a8e2-617c-7105-bc48-b62fbdcd9a9b\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:be7d54a9-32ab-7244-ae8c-9df9a04bd2e1\",\n \"uid\": \"consectetur velit cillum incidid\",\n \"workflow_id\": \"urn:uuid:d31a6a23-09ad-39ff-aa72-b8e6d6d0ef4a\",\n \"requester_id\": \"b250ffbf-31da-5bb9-90e8-bad35dc4963b\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:a5f9f415-1f02-b7ef-1a4a-b259eb87df69\",\n \"profile_ids\": [\n \"urn:uuid:44796217-a181-8256-dc0f-854cd45baa82\",\n \"58e68e7a-16e3-b292-7f0d-4e06a67c167d\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "704bab11-059d-4fc2-b5ab-b5452ae2d711", + "id": "9c852f5e-bca6-4e98-8e2e-0d946fbf07ff", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19934,7 +19934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6600e11a-934a-4e1e-9c4f-0b2c266e3376", + "id": "0dd55cbc-d919-4d4f-aeab-5ee5886adbba", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19997,7 +19997,7 @@ } }, { - "id": "e488e126-a9b8-462e-bc90-443862bb8cf4", + "id": "876f8673-8101-425b-b8b4-60852edce586", "name": "Create a registration workflow", "request": { "name": "Create a registration workflow", @@ -20041,7 +20041,7 @@ }, "response": [ { - "id": "bdd4d8ce-ffb1-4d04-b36e-dfc0d3a8cf97", + "id": "c86a56aa-0b26-413b-8852-4181d9c34133", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20093,12 +20093,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"fb3f5429-40ed-bd2d-f909-3ea99cd33401\",\n \"uid\": \"nisi aliquip amet ut ipsumeu ean\",\n \"workflow_id\": \"urn:uuid:05c0fac9-e225-d4f8-5160-2527ea39023b\",\n \"requester_id\": \"243de365-556c-05d7-9782-ff91ea0677ca\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:7e6a725c-032c-7542-99f4-5956c139c54a\",\n \"profile_ids\": [\n \"b7c2638f-7eec-b18b-c255-e87b4bad7514\",\n \"urn:uuid:9fe8a8e2-617c-7105-bc48-b62fbdcd9a9b\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:be7d54a9-32ab-7244-ae8c-9df9a04bd2e1\",\n \"uid\": \"consectetur velit cillum incidid\",\n \"workflow_id\": \"urn:uuid:d31a6a23-09ad-39ff-aa72-b8e6d6d0ef4a\",\n \"requester_id\": \"b250ffbf-31da-5bb9-90e8-bad35dc4963b\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:a5f9f415-1f02-b7ef-1a4a-b259eb87df69\",\n \"profile_ids\": [\n \"urn:uuid:44796217-a181-8256-dc0f-854cd45baa82\",\n \"58e68e7a-16e3-b292-7f0d-4e06a67c167d\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d1bd9e57-67af-4d42-8d8b-09cfab932862", + "id": "45b7ff41-c63b-4e34-aa01-a907db1876d9", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20155,7 +20155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1de1f161-f30e-4b8b-928d-a01a931b9e95", + "id": "ff523365-d132-43f2-9b36-7e783db5e05a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20218,7 +20218,7 @@ } }, { - "id": "cdade9f4-1cc7-4cd1-83a2-509da45f9356", + "id": "1921bf04-c580-403b-9191-6448c4ef9c72", "name": "Create a login workflow", "request": { "name": "Create a login workflow", @@ -20262,7 +20262,7 @@ }, "response": [ { - "id": "440e8c10-e7b0-40bd-aafc-c5e28b0ff5d8", + "id": "c569417b-a1ac-4f2a-88da-98ee91dd6dc2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20314,12 +20314,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"fb3f5429-40ed-bd2d-f909-3ea99cd33401\",\n \"uid\": \"nisi aliquip amet ut ipsumeu ean\",\n \"workflow_id\": \"urn:uuid:05c0fac9-e225-d4f8-5160-2527ea39023b\",\n \"requester_id\": \"243de365-556c-05d7-9782-ff91ea0677ca\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:7e6a725c-032c-7542-99f4-5956c139c54a\",\n \"profile_ids\": [\n \"b7c2638f-7eec-b18b-c255-e87b4bad7514\",\n \"urn:uuid:9fe8a8e2-617c-7105-bc48-b62fbdcd9a9b\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:be7d54a9-32ab-7244-ae8c-9df9a04bd2e1\",\n \"uid\": \"consectetur velit cillum incidid\",\n \"workflow_id\": \"urn:uuid:d31a6a23-09ad-39ff-aa72-b8e6d6d0ef4a\",\n \"requester_id\": \"b250ffbf-31da-5bb9-90e8-bad35dc4963b\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:a5f9f415-1f02-b7ef-1a4a-b259eb87df69\",\n \"profile_ids\": [\n \"urn:uuid:44796217-a181-8256-dc0f-854cd45baa82\",\n \"58e68e7a-16e3-b292-7f0d-4e06a67c167d\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "017fbde8-bf7e-493d-9720-eb41a5845baf", + "id": "f6db0f74-ece6-4b30-a912-69e0f63c420a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20376,7 +20376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c231fafb-93ae-4699-bbd0-11379ea8ac41", + "id": "40210996-beae-4abe-a447-ed395e1058d9", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20439,7 +20439,7 @@ } }, { - "id": "06ad5638-bd88-4808-8d21-08b49758603e", + "id": "8be16382-25b4-4b1c-9a35-71ea08f20e75", "name": "Create a password reset workflow", "request": { "name": "Create a password reset workflow", @@ -20483,7 +20483,7 @@ }, "response": [ { - "id": "09badc4d-8114-4c09-9e2d-65a41437b35f", + "id": "34dd4c87-f65d-41e4-8983-f062342bcc11", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20535,12 +20535,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"fb3f5429-40ed-bd2d-f909-3ea99cd33401\",\n \"uid\": \"nisi aliquip amet ut ipsumeu ean\",\n \"workflow_id\": \"urn:uuid:05c0fac9-e225-d4f8-5160-2527ea39023b\",\n \"requester_id\": \"243de365-556c-05d7-9782-ff91ea0677ca\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:7e6a725c-032c-7542-99f4-5956c139c54a\",\n \"profile_ids\": [\n \"b7c2638f-7eec-b18b-c255-e87b4bad7514\",\n \"urn:uuid:9fe8a8e2-617c-7105-bc48-b62fbdcd9a9b\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:be7d54a9-32ab-7244-ae8c-9df9a04bd2e1\",\n \"uid\": \"consectetur velit cillum incidid\",\n \"workflow_id\": \"urn:uuid:d31a6a23-09ad-39ff-aa72-b8e6d6d0ef4a\",\n \"requester_id\": \"b250ffbf-31da-5bb9-90e8-bad35dc4963b\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:a5f9f415-1f02-b7ef-1a4a-b259eb87df69\",\n \"profile_ids\": [\n \"urn:uuid:44796217-a181-8256-dc0f-854cd45baa82\",\n \"58e68e7a-16e3-b292-7f0d-4e06a67c167d\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d9189759-3ea1-4989-830f-8bd6a33c2682", + "id": "30e83fc4-ea58-455c-af9e-69e370a0abbb", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20597,7 +20597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "561f9a00-d5cf-4564-9531-bff3b407b2d4", + "id": "8486d701-3204-47ed-a40d-3ff74a52bcb8", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20666,7 +20666,7 @@ "description": "", "item": [ { - "id": "6bde7be6-23ff-45db-8e00-952ea2cf36b8", + "id": "5baf40bf-4545-4727-b147-9a2d52f630db", "name": "Create an approval action", "request": { "name": "Create an approval action", @@ -20710,7 +20710,7 @@ }, "response": [ { - "id": "613c7860-7ef1-4237-a84f-c7b39a200ded", + "id": "0e9ca26e-a79f-4c83-81cd-a07f54f07e46", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20767,7 +20767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "639ab8f7-568f-405d-b5c2-6af612304d92", + "id": "8960b92d-c459-4b56-a196-497472a7d15c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20824,7 +20824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6d34468-0e25-4f85-bae0-187d1cc3ef40", + "id": "acab94f0-9c17-458c-8ab6-692cb281ae05", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20887,7 +20887,7 @@ } }, { - "id": "d1630838-93c0-4488-acab-e5d46c3add6d", + "id": "4a78f237-4255-4da9-b6aa-58170b9badcd", "name": "Create ask security question action", "request": { "name": "Create ask security question action", @@ -20931,7 +20931,7 @@ }, "response": [ { - "id": "eabb361f-f0c9-45a0-be19-b83fdf492121", + "id": "9ccabb1f-82e7-4dc8-b664-76e0c64a7d7a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20988,7 +20988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4eef8b9c-ae7f-416a-b6a8-ac2e80afcda8", + "id": "3acc6bfd-6b9f-477b-9185-ef4ddc1a8f48", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21045,7 +21045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38c25d86-ea26-42a9-b76b-cccafa0d8e20", + "id": "43121b8e-57e0-4d33-901b-936846c3c74d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21108,7 +21108,7 @@ } }, { - "id": "07d12549-4a4a-45ab-a982-f27bb87eea55", + "id": "f4dbdd69-5309-4d97-afb7-12865fecba0b", "name": "Create an auto assign action", "request": { "name": "Create an auto assign action", @@ -21152,7 +21152,7 @@ }, "response": [ { - "id": "c60fcc3b-c2e8-4fc8-be1f-bc1c51215697", + "id": "002a1bc4-36b8-40cf-8b62-51ece2fa2d1f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21209,7 +21209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63aed295-b528-4632-962e-b021f8561ee2", + "id": "cbadfe57-ce6c-449b-a3d2-5c424482e688", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21266,7 +21266,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f0b3ca4-a249-46cd-9c38-ce72a93c7070", + "id": "3256e45a-d7b4-40bc-b81c-eda5edd939a0", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21329,7 +21329,7 @@ } }, { - "id": "af854857-5043-44a8-b0dc-394edd269dfc", + "id": "431cce2d-73f6-471e-9fdb-a643b6e5427f", "name": "Create a batch update action", "request": { "name": "Create a batch update action", @@ -21373,7 +21373,7 @@ }, "response": [ { - "id": "c2b204ae-4f1a-4b61-827c-c59246bb4fd5", + "id": "5a9c742a-410b-4890-923c-ed96af17f6a3", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21430,7 +21430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45f9ecfc-63fd-4782-a96b-adcae72c6d97", + "id": "24dcffe4-b552-4e1e-a1ee-7ed27cbec05e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21487,7 +21487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3897ca6c-0da2-4e45-869b-de677a41ee76", + "id": "b5632a20-6e4a-4a46-86f7-ea502a6627c8", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21550,7 +21550,7 @@ } }, { - "id": "6ffa41d2-362d-47a4-9cbc-eea65bbe8d42", + "id": "891aaeb6-c655-430d-b759-09de1cffff52", "name": "Create a close session action", "request": { "name": "Create a close session action", @@ -21594,7 +21594,7 @@ }, "response": [ { - "id": "580eeea7-7833-4fe2-b68c-a5fd4772d4a2", + "id": "ad1f850d-d986-4569-9aaa-507a282f8a37", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21651,7 +21651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b9862b7-5d50-47f0-97d9-ff764d1dcb0a", + "id": "865678ea-28f5-4e11-b9f6-bf8ac1fa2bde", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21708,7 +21708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bc866ef-108a-4a2a-9454-5659b7c83945", + "id": "8617555f-2aa6-410e-8bdf-eab8afe6228e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21771,7 +21771,7 @@ } }, { - "id": "a522527b-0c8e-4dbd-af79-2b1b1ad5be21", + "id": "7dfa12b3-ab81-4b38-857e-cacb3b7df424", "name": "Create a contributors action", "request": { "name": "Create a contributors action", @@ -21815,7 +21815,7 @@ }, "response": [ { - "id": "dd3c2b20-876b-4a84-9dc5-b0c06c60fc86", + "id": "4ee698ee-a8a1-4907-b560-6ebf6796ed7d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21872,7 +21872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87d900c5-60be-44cb-b07f-e46f6f982d02", + "id": "88f4f772-5eef-4c14-adc7-f501fcdcae85", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21929,7 +21929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e52c469-24ab-4c38-ae6e-9d7283f30e0d", + "id": "fb230083-0d30-4efc-9657-d83b47045f64", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21992,7 +21992,7 @@ } }, { - "id": "6429c2fc-9f6f-4d27-9c5f-19982c4d6473", + "id": "d5c4b191-4a35-4d09-9f4f-376de25ba9cb", "name": "Create a create profile action", "request": { "name": "Create a create profile action", @@ -22036,7 +22036,7 @@ }, "response": [ { - "id": "85a3fd15-145b-4bf1-936d-b57b57f8cde7", + "id": "57006c81-1e39-4e28-b8d6-679f6a5a9ba7", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22093,7 +22093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad13cd5f-10b3-46e9-af13-11fbcadb08ab", + "id": "568609ec-a0e0-442e-ad67-8b2b12334486", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22150,7 +22150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15451a8f-744b-4074-8395-6a203838749a", + "id": "8fc7193e-3eab-4282-93e7-12287ea92b13", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22213,7 +22213,7 @@ } }, { - "id": "77fc4766-d1c0-4705-92ba-2eda307413e8", + "id": "0017a4f7-679d-4a6b-8150-0c5466af29dd", "name": "Create a duplicate prevention action", "request": { "name": "Create a duplicate prevention action", @@ -22257,7 +22257,7 @@ }, "response": [ { - "id": "4827cd17-c390-433c-9f16-e5a0b995ed33", + "id": "482a9f5b-c9ea-41b9-a6f5-77bee76c3b57", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22314,7 +22314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef5aae6a-60ad-4af8-bdf1-64cc56116863", + "id": "31672190-f90a-4f99-8089-14f618448134", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22371,7 +22371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6946fe1-c0ab-4b56-8372-84d134bbfc92", + "id": "ca531604-6f04-4428-a789-5d1a06d32e92", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22434,7 +22434,7 @@ } }, { - "id": "0e8ed4c3-ac50-4cda-85c0-75b3bdee575d", + "id": "e550e52f-0214-42a7-8059-c24ec2701de7", "name": "Create an email verification action", "request": { "name": "Create an email verification action", @@ -22478,7 +22478,7 @@ }, "response": [ { - "id": "465704cc-9539-44a6-aee5-d06d2f56a5fe", + "id": "ca5e1d78-377e-4ed2-b83c-a4058f07bfb2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22535,7 +22535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a1ac95c-1faf-4200-afeb-faece09e01b3", + "id": "817d9b49-1418-4d68-b1c0-76fa17a32dd6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22592,7 +22592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a48d3574-7871-41f9-9dd1-59d74fa366e2", + "id": "940c719f-c680-4c4c-9b83-8b3b8430631d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22655,7 +22655,7 @@ } }, { - "id": "ff1ce168-734c-4a51-a0a2-9aecbdcdac8c", + "id": "0fa9b53a-f567-4487-b04c-8d942273d6b4", "name": "Create a fulfillment action", "request": { "name": "Create a fulfillment action", @@ -22699,7 +22699,7 @@ }, "response": [ { - "id": "0fb34025-616a-49ec-ac48-f5c80631968c", + "id": "d4df7f01-ef30-4c6d-b1dd-6764aac0a515", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22756,7 +22756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "792fe0f0-645d-4cff-affe-c1c7cd3aa98c", + "id": "5e0629a2-c320-4bf3-9694-5c91bdf64f71", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22813,7 +22813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb93d5d7-a43d-4af8-9f9f-d1bea3b4457a", + "id": "e4ebec4c-a8ea-4a54-992b-76384f91347c", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22876,7 +22876,7 @@ } }, { - "id": "7b517823-0b0b-4d66-b288-d9afa7c2e96c", + "id": "e166a123-f837-4f74-bdff-dd6f08c805a1", "name": "Create an identity proofing action", "request": { "name": "Create an identity proofing action", @@ -22920,7 +22920,7 @@ }, "response": [ { - "id": "79d87b79-900c-4c93-a7f2-c07b976fa23e", + "id": "9fd8932d-9672-46bc-a6ea-ad3a967fafe0", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22977,7 +22977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66a384b0-e63e-4d48-9e79-34ff555dcc08", + "id": "b3598c64-8a13-4ec3-aa1c-f4ee8a8910d5", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23034,7 +23034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc870157-ef04-456d-8a23-4c9b5c064504", + "id": "67f0bafc-68bb-4683-b994-771c33874249", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23097,7 +23097,7 @@ } }, { - "id": "64534259-48b4-4d2c-8784-79e54cd0390a", + "id": "d20da592-e900-4db8-872c-74c83a384c89", "name": "Create an invitation action", "request": { "name": "Create an invitation action", @@ -23141,7 +23141,7 @@ }, "response": [ { - "id": "4a53afdc-8a63-4f7e-83c3-8e868ce3fcfb", + "id": "54069570-1ebc-44bf-8ba1-0d0de1ca29f2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23198,7 +23198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c68446ba-1e53-43d4-affd-7f0b99eae4bf", + "id": "78aad95b-3eb1-4570-a3a9-037e599ec70e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23255,7 +23255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19e91d98-8cea-4069-a1be-109ef63338ef", + "id": "1b93dd14-68a6-42bd-84d4-dc9a5346264a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23318,7 +23318,7 @@ } }, { - "id": "28939cdd-5cda-408b-8088-3f4fa9ed0fe8", + "id": "b2a5a296-034b-4b26-9d66-f0ef8fa0ac29", "name": "Create a ldap action", "request": { "name": "Create a ldap action", @@ -23362,7 +23362,7 @@ }, "response": [ { - "id": "263f6856-ad77-4b4d-aa50-db78fd1bd497", + "id": "10fc0dec-aaa0-495d-9100-0313c0d745d2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23419,7 +23419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a2d5dac-edf6-4d51-a301-92a953cca6ed", + "id": "2ab2f51e-ee48-41a6-90b9-81e3a8e814ae", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23476,7 +23476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dd15b81-b4ae-465f-a7d1-81e1e263b3cf", + "id": "17738d1e-46b9-4ba6-b05d-5ded834a27d6", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23539,7 +23539,7 @@ } }, { - "id": "ebb0f7d9-5f32-41bc-b39b-e416bf353192", + "id": "a4ea4aba-b26f-4fac-b5c8-04b6825bf9e5", "name": "Create a notification action", "request": { "name": "Create a notification action", @@ -23583,7 +23583,7 @@ }, "response": [ { - "id": "4ce14a4c-21da-4ac7-94dc-8d3714e126e8", + "id": "35724fd1-a671-42fc-a5f0-a5d1544e57d3", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23640,7 +23640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe431e68-64da-4c2d-a07f-fc339399fb40", + "id": "85431608-6f5b-4fc5-88e0-320f73afbb34", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23697,7 +23697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dbf49c9-f66e-466c-a066-c0464f293cff", + "id": "7cbec0d0-b8cf-48c0-8e38-2de2a6490c80", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23760,7 +23760,7 @@ } }, { - "id": "0c650a93-7acf-457c-9b26-14a49681c5c5", + "id": "f41ea8c5-d0f2-47ff-89db-2b8e3d62a1b9", "name": "Create a password reset action", "request": { "name": "Create a password reset action", @@ -23804,7 +23804,7 @@ }, "response": [ { - "id": "f09532a0-000f-45a4-91e8-c288cdd89a79", + "id": "8007710d-097b-47c4-9e9d-8fa66040b11f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23861,7 +23861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adf66bd4-23f1-467f-bed4-ade1b6387caf", + "id": "21f98d04-8481-43a1-a437-8f8d48b9473a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23918,7 +23918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "410e909c-cd21-4378-8374-06d060984bdf", + "id": "dead4c68-75f1-42ad-a2b8-c7387d7de1db", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23981,7 +23981,7 @@ } }, { - "id": "8219c42a-ea2e-4e19-8314-6a128493fc02", + "id": "762b6b62-ff4a-4b37-bbd4-15e4d37603c8", "name": "Create a profile check action", "request": { "name": "Create a profile check action", @@ -24025,7 +24025,7 @@ }, "response": [ { - "id": "b8d04ed5-6d92-4aec-8502-d9a238f8bbd7", + "id": "c55a9059-eea5-4228-8814-a23877111f8d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24082,7 +24082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec64f110-f3cf-4c5d-a9ad-4488d379273a", + "id": "fc0c4987-dd62-4f88-93e8-a53b08ae8db6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24139,7 +24139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db12bd43-744a-4904-911f-02a63b6d2a9f", + "id": "7fecf0fd-409a-4f79-9d37-3d5ed1b16932", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24202,7 +24202,7 @@ } }, { - "id": "5a3d757e-a32f-48ca-bac8-5ac6b7e03be9", + "id": "4c6b6300-7318-4dee-953c-497fc8a82319", "name": "Create a profile select action", "request": { "name": "Create a profile select action", @@ -24246,7 +24246,7 @@ }, "response": [ { - "id": "e117424e-b08d-4e11-abdd-239ba01e00e4", + "id": "0c68a83c-b397-4d79-bae9-e00a4fc4e937", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24303,7 +24303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "792838d6-162d-4a83-9914-ab12e5a492d5", + "id": "7ae26b04-f955-4493-811c-e2556ded1cb2", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24360,7 +24360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "420e8d5c-5ae3-4d15-82f8-8d73d0dd4dab", + "id": "1baa219f-bf3c-4eb4-a54c-4572009965e2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24423,7 +24423,7 @@ } }, { - "id": "284bb290-8aa5-434f-bdf1-969b0f5ac789", + "id": "692f29a8-8d1d-4c0e-a99d-80839b6f7ee2", "name": "Create a request action", "request": { "name": "Create a request action", @@ -24467,7 +24467,7 @@ }, "response": [ { - "id": "33287ec4-3a68-4e30-9dc2-378e5582a63e", + "id": "d2e9f6e5-bfa3-4e5c-8daf-336bf46ac9db", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24524,7 +24524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4af24828-ed99-4b59-8957-f7c03ba787d6", + "id": "5f72038c-9c91-4600-82d4-edb93ad78fb4", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24581,7 +24581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80848df2-09ba-4161-b231-c228f5c2f412", + "id": "d5827084-67c0-4e96-9040-b4bbc350e1b0", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24644,7 +24644,7 @@ } }, { - "id": "99002ff3-9a22-4178-be44-5b9697d86cc5", + "id": "5d2a8e7c-aa79-4da4-8257-f26bf9939fc5", "name": "Create a REST API action", "request": { "name": "Create a REST API action", @@ -24688,7 +24688,7 @@ }, "response": [ { - "id": "fae83b68-3c95-46dd-abc3-7b854e100b18", + "id": "84179ce0-3139-4240-96fc-9c2cd17ec26d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24745,7 +24745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "586046e8-e432-4f74-992b-48f317a8e77a", + "id": "f7c8504c-21cb-48c5-8cc1-3109f58d442a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24802,7 +24802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8fe0bf3-5021-4737-9d5a-5a70ed8e33cd", + "id": "4f62d274-57aa-4d6a-a338-0ac8ddbf1209", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24865,7 +24865,7 @@ } }, { - "id": "6bf45289-3a31-4227-9868-8acfcd424430", + "id": "5e74fdd2-4946-4c2f-8fd9-7abe6d15c58a", "name": "Create a review action", "request": { "name": "Create a review action", @@ -24909,7 +24909,7 @@ }, "response": [ { - "id": "0fb408a1-76d5-4b02-a472-f6fdf66538a2", + "id": "be18782a-5c33-44c2-a990-1f7e2069a532", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24966,7 +24966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b36cb1c2-2b29-40c6-b169-201535632b42", + "id": "d0929582-d14b-4964-a3f9-3293fb52fb89", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25023,7 +25023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c71982a3-9374-4d30-ba56-7799a8970589", + "id": "4ca7198f-9708-4a7d-93b6-8e070ddda429", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25086,7 +25086,7 @@ } }, { - "id": "4393a4e4-7fa4-460c-9b74-e696fb11c0b2", + "id": "57e8ef0c-2b49-4833-b3b9-a860b9c76a8d", "name": "Create a run workflow action", "request": { "name": "Create a run workflow action", @@ -25130,7 +25130,7 @@ }, "response": [ { - "id": "5e269c6a-2121-44a3-9100-ec7d0808bc06", + "id": "34cb69a7-c074-4b5b-9e36-30bf5b7b1796", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25187,7 +25187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5c66323-87a6-4034-a495-7ba94acf7a81", + "id": "5f06f1d9-f285-454a-8472-fc034b7085c4", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25244,7 +25244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "092abc90-b04a-42ce-9164-e177ffe8981b", + "id": "f9646517-8f08-4045-8f2f-c2646ed6f479", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25307,7 +25307,7 @@ } }, { - "id": "35704b36-a8bc-4be3-8000-68775d9ff00f", + "id": "00d11613-3d63-4371-8990-7bd319f9b682", "name": "Create a set attributes action", "request": { "name": "Create a set attributes action", @@ -25351,7 +25351,7 @@ }, "response": [ { - "id": "94cdaadc-e8b0-49d8-a4d3-0b84e9970b98", + "id": "4367bcdf-6673-4389-adb7-63e57a523d93", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25408,7 +25408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3eb0c3e6-6089-4ca6-b3a8-9f9938c0c134", + "id": "395c49e1-36a2-48df-b216-fc2f2a404d92", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25465,7 +25465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6e7f3e6-ae6c-4034-87d8-84b9b579bb81", + "id": "a9609e1a-3567-4274-8bd0-d95a19e180f4", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25528,7 +25528,7 @@ } }, { - "id": "08f4490a-7660-48bc-899f-e91dbdcc3a18", + "id": "a04a6acb-b79a-49e8-84ca-b626d14a9a7c", "name": "Create set security question action", "request": { "name": "Create set security question action", @@ -25572,7 +25572,7 @@ }, "response": [ { - "id": "0a296dd2-09a0-478d-8eef-e707ce67a2f5", + "id": "657091d4-f4ac-4d61-968c-52368e881cc1", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25629,7 +25629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e13173ba-b85f-424c-8def-ba7f2340e25d", + "id": "05536eb8-c6a3-43f8-8edf-5a7214030431", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25686,7 +25686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec5a37c0-291e-49dc-9e03-b60c3d3794ae", + "id": "4fe7ec21-1f35-406a-9db8-41ce933c8e79", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25749,7 +25749,7 @@ } }, { - "id": "7687e8b5-799b-4a61-aebc-fb66a0e5d55e", + "id": "33245388-1b7b-4c1f-bf2e-dbb3ba157a66", "name": "Create a SOAP API action", "request": { "name": "Create a SOAP API action", @@ -25793,7 +25793,7 @@ }, "response": [ { - "id": "ed38170f-e041-42e1-9e93-f61f1dda3a9c", + "id": "f35b4dc4-2cc3-4d06-bfab-6e6c76d97459", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25850,7 +25850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46311234-97aa-488f-80ca-98230c3aa694", + "id": "6e8565cd-8eb3-4c6d-b4ee-af3f215ed8aa", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25907,7 +25907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91f173f7-e644-4e6a-a9c0-80a5dc077697", + "id": "0b99380a-756a-4734-8d8a-9fa8e487c4c0", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25970,7 +25970,7 @@ } }, { - "id": "2f93f4c8-1ac1-43e1-8204-82ad5bf44bd1", + "id": "77e5fbb2-b2eb-46b1-b740-9052feb83a0e", "name": "Create a status change action", "request": { "name": "Create a status change action", @@ -26014,7 +26014,7 @@ }, "response": [ { - "id": "6b15d352-20a6-468e-8373-769caf8aa587", + "id": "ebdcb5a0-da16-4607-a570-d8852d252db3", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26071,7 +26071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bca793d4-87d4-4125-a2b1-f848ecbc6034", + "id": "7e40a5da-b5dd-49db-8830-15c2410ca5a3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26128,7 +26128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0874a3c5-a246-45c6-b827-3b95ed587663", + "id": "edf9c8cf-78b4-4287-8fb5-af5254d16ed4", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26191,7 +26191,7 @@ } }, { - "id": "7976d87c-17c9-4231-bbf0-8cce85d719cc", + "id": "dc8dad5f-aca2-4f87-bca7-efb969a64bf6", "name": "Create an unassign action", "request": { "name": "Create an unassign action", @@ -26235,7 +26235,7 @@ }, "response": [ { - "id": "ffab6035-0be4-483e-b321-cb92871aad15", + "id": "474a7aa2-6883-471a-8482-57735e87be92", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26292,7 +26292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54b62926-5f1c-4598-9805-7725a88d6561", + "id": "97e8ccae-7059-4695-9a6b-7f42f7aa96d7", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26349,7 +26349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5406457-f138-4c9c-b58d-7855959ccc62", + "id": "8dd3c92b-a4f8-4ae3-bdb7-497985058ea7", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26412,7 +26412,7 @@ } }, { - "id": "5cdd1449-d966-467c-be3f-9e57efca7f80", + "id": "3e89e2b9-fb55-4c28-b146-1580c86126ea", "name": "Create an update profile action", "request": { "name": "Create an update profile action", @@ -26456,7 +26456,7 @@ }, "response": [ { - "id": "dfa30a22-f74b-496d-b1f8-292ac81212c3", + "id": "be58c314-77a3-4ef0-89fc-25bfccc1bb3c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26513,7 +26513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f36c5c0d-e768-4f19-b674-11e5658136e7", + "id": "1a3877cf-1ac1-4ef6-ad94-2b1d749e13a1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26570,7 +26570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a09a6e7-9fc4-44ee-8c83-ae716230fba5", + "id": "2c934a7e-292a-420f-a1ad-a1757515c0d8", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26633,7 +26633,7 @@ } }, { - "id": "c9e218fa-1258-41f5-944d-91af545a1756", + "id": "1b90dd39-dcc4-4f43-9ed6-5be7a2f582f8", "name": "Create a username password action", "request": { "name": "Create a username password action", @@ -26677,7 +26677,7 @@ }, "response": [ { - "id": "bebe1fb9-9e3d-45f8-8f40-48c12f7abda3", + "id": "5f72047d-bd1c-47d3-b902-f2399d1ddee4", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26734,7 +26734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12d044cb-e510-4064-b127-2593375f6f49", + "id": "9c9e7866-7939-4ef8-a3f0-8b6223fcf991", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26791,7 +26791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3239721-36de-488d-b28e-cc00fee36515", + "id": "e576f63e-ae8f-4812-8145-f97ee3b44315", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26854,7 +26854,7 @@ } }, { - "id": "82f79cf3-3f21-4273-8bfb-e1d9883e26be", + "id": "420e7772-6731-45e2-b01c-8bbb7c460282", "name": "Get Workflow Actions", "request": { "name": "Get Workflow Actions", @@ -26894,7 +26894,7 @@ }, "response": [ { - "id": "afe224ed-883f-4c24-84ca-e93f18c7b4ff", + "id": "67a20e49-4305-4879-810b-8101d858ce44", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26947,7 +26947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70f53304-d0d9-4d0d-8ad1-083df08f40ca", + "id": "86494c2c-08a5-4fb7-bea1-8eec49e3209d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27000,7 +27000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10f5bc40-38fd-4fed-b3f3-cef6d5ebe241", + "id": "6e066831-fb7f-42a0-a4a7-5d7b0a7828a4", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27065,7 +27065,7 @@ "description": "", "item": [ { - "id": "b10e2fe6-78a0-4df1-b9c5-e73ca78add11", + "id": "684c13d2-8c5e-4cf2-9646-e189fc2d3e29", "name": "Get workflow sessions", "request": { "name": "Get workflow sessions", @@ -27124,7 +27124,7 @@ "type": "text/plain" }, "key": "uid", - "value": "et enimmagna utin sit incididunt" + "value": "amet inamet nulla sedExcepteur l" }, { "disabled": false, @@ -27142,7 +27142,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -27151,7 +27151,7 @@ "type": "text/plain" }, "key": "status", - "value": "pending courion update" + "value": "disabled" }, { "disabled": false, @@ -27177,7 +27177,7 @@ }, "response": [ { - "id": "83c39cd8-3014-4cf9-8a8f-d3d616bb006c", + "id": "f216da69-8c72-47b1-8b3a-f28ae4978d93", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27231,7 +27231,7 @@ "type": "text/plain" }, "key": "uid", - "value": "et enimmagna utin sit incididunt" + "value": "amet inamet nulla sedExcepteur l" }, { "disabled": false, @@ -27249,7 +27249,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -27258,7 +27258,7 @@ "type": "text/plain" }, "key": "status", - "value": "pending courion update" + "value": "disabled" }, { "disabled": false, @@ -27297,12 +27297,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_sessions\": [\n {\n \"id\": \"urn:uuid:f1221558-104d-9e5e-dda7-da261dd7fe01\",\n \"uid\": \"ea suntDuis Excepteur Utpariatur\",\n \"workflow_id\": \"urn:uuid:c4eb9e34-15f4-6351-46ac-037d1bf3ad88\",\n \"requester_id\": \"urn:uuid:1a143a2c-7d8e-2c0d-7d26-2b9696d3ef15\",\n \"requester_type\": \"User\",\n \"profile_id\": \"b828a48c-3e60-9b2f-4a50-423a42a8ac39\",\n \"profile_ids\": [\n \"9d7bbdd3-4e94-3567-ba00-edc1ef2580fa\",\n \"urn:uuid:f8ed833f-a52f-df8a-404c-b42a1ac0f54e\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"urn:uuid:24bd417f-553a-470f-10a0-694cfcdb35ef\",\n \"uid\": \"ullamco culpaadipisicing quis al\",\n \"workflow_id\": \"urn:uuid:ebf55496-a885-bf29-f449-3b57db867b52\",\n \"requester_id\": \"urn:uuid:024d05f5-1ae8-4fa4-f027-9011bf1a7a07\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"0b6f6614-cec3-23f3-5862-ec644b2303fd\",\n \"profile_ids\": [\n \"ec646abf-dd84-9017-3931-b9a5d44ec363\",\n \"urn:uuid:8043cd04-b4be-4a9c-755f-aa5c2cb806ca\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ],\n \"_metadata\": {\n \"limit\": -79724686,\n \"offset\": 47360728,\n \"total\": 78134246,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"workflow_sessions\": [\n {\n \"id\": \"urn:uuid:e8fc06b1-9256-c2de-0b72-a75d90fea884\",\n \"uid\": \"officia ad tempor ullamcooccaeca\",\n \"workflow_id\": \"urn:uuid:dd0c8baa-7dd6-4a31-5633-105cbc3fe9b9\",\n \"requester_id\": \"f3469da9-f520-5945-b87f-ccae33ac938b\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:d89f3e97-74b7-22a2-7db2-bc104e3f557f\",\n \"profile_ids\": [\n \"78ff92b4-e8e6-15b7-9683-099304ed0552\",\n \"6212e485-8bf0-d646-fdf8-788f71a56c8a\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"urn:uuid:5433a065-e796-d0cf-8089-f350f203155d\",\n \"uid\": \"seddeserunt aliquiplaborisvolupt\",\n \"workflow_id\": \"urn:uuid:925fb69c-35a5-fbf8-3adf-dc9ab749ca3a\",\n \"requester_id\": \"ac109e48-bea9-d6c2-9a56-230caf525e94\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:8f2bccef-4be0-a025-883b-3b3dc71b8c07\",\n \"profile_ids\": [\n \"85bb3b6f-46a6-79da-61ef-3569faf0cd63\",\n \"34adf9d3-8a6e-c36b-281f-c4560529dd07\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ],\n \"_metadata\": {\n \"limit\": -79401327,\n \"offset\": -86218812,\n \"total\": 78250698,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0403b8c4-abca-452a-b86c-ff9cec25fdce", + "id": "e0a136f6-39fe-47c2-85a6-b8a0da4c5a1b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27356,7 +27356,7 @@ "type": "text/plain" }, "key": "uid", - "value": "et enimmagna utin sit incididunt" + "value": "amet inamet nulla sedExcepteur l" }, { "disabled": false, @@ -27374,7 +27374,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -27383,7 +27383,7 @@ "type": "text/plain" }, "key": "status", - "value": "pending courion update" + "value": "disabled" }, { "disabled": false, @@ -27427,7 +27427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae972b8d-15eb-4d6b-a381-22d969685756", + "id": "4d18ebd9-4534-4e92-9d75-d941b8dacc3e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27481,7 +27481,7 @@ "type": "text/plain" }, "key": "uid", - "value": "et enimmagna utin sit incididunt" + "value": "amet inamet nulla sedExcepteur l" }, { "disabled": false, @@ -27499,7 +27499,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -27508,7 +27508,7 @@ "type": "text/plain" }, "key": "status", - "value": "pending courion update" + "value": "disabled" }, { "disabled": false, @@ -27558,7 +27558,7 @@ } }, { - "id": "3fdc3212-2f3c-4588-a57f-65c0a14655e0", + "id": "4af39674-a2e3-49bd-b858-8666810a6a64", "name": "Create a workflow session", "request": { "name": "Create a workflow session", @@ -27599,7 +27599,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"0821b75c-a87c-71bf-b872-31186f16ab92\",\n \"requester_id\": \"urn:uuid:6b2a1ab2-a9a6-a43b-f64b-7417e12ea44e\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:23e42b31-bac6-2312-23e8-f9c902279624\",\n \"profile_ids\": [\n \"urn:uuid:770bd228-a58c-3486-e30f-953a439df5ec\",\n \"urn:uuid:dcdb66e2-221a-46c9-0173-a07c446f8395\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:8d3d4a79-64da-1384-892e-304b96d2d3ad\",\n \"requester_id\": \"a882c4f2-b82b-c9fb-a95a-fe4aa3018871\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"d0e79bd0-9abb-b4d2-ca4d-721170324655\",\n \"profile_ids\": [\n \"38680a72-8fbd-8418-605d-9b21f9c027aa\",\n \"8301d5be-da22-0f68-d877-e0e69f6dee11\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -27611,7 +27611,7 @@ }, "response": [ { - "id": "3cad7c5b-5835-40bb-9b96-59c4748f5554", + "id": "2a4eb153-43fa-441d-94d5-8ba90dbb5329", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27655,7 +27655,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"0821b75c-a87c-71bf-b872-31186f16ab92\",\n \"requester_id\": \"urn:uuid:6b2a1ab2-a9a6-a43b-f64b-7417e12ea44e\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:23e42b31-bac6-2312-23e8-f9c902279624\",\n \"profile_ids\": [\n \"urn:uuid:770bd228-a58c-3486-e30f-953a439df5ec\",\n \"urn:uuid:dcdb66e2-221a-46c9-0173-a07c446f8395\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:8d3d4a79-64da-1384-892e-304b96d2d3ad\",\n \"requester_id\": \"a882c4f2-b82b-c9fb-a95a-fe4aa3018871\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"d0e79bd0-9abb-b4d2-ca4d-721170324655\",\n \"profile_ids\": [\n \"38680a72-8fbd-8418-605d-9b21f9c027aa\",\n \"8301d5be-da22-0f68-d877-e0e69f6dee11\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -27672,12 +27672,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_session\": {\n \"id\": \"fd448f47-f216-26e2-118e-b32616c96cb2\",\n \"uid\": \"fugiat ipsum occaecatlabore null\",\n \"workflow_id\": \"1f6fedc1-5447-b47e-4ad6-7d4d760aed7a\",\n \"requester_id\": \"03102c1b-d8b1-5694-5dff-c2595cd74aa8\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:0e563edc-4cc4-20c7-8a7e-21034752ea5a\",\n \"profile_ids\": [\n \"urn:uuid:2baee651-76b4-2392-9f30-75bf0768e19c\",\n \"688605cd-b67f-f44c-d884-6d1f5f3e0fcf\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow_session\": {\n \"id\": \"urn:uuid:37a094e2-1393-3d42-b258-bb340079e7aa\",\n \"uid\": \"amet temporeu animcupidatat eius\",\n \"workflow_id\": \"urn:uuid:0d367cb0-452d-9b80-0b52-1c2a15b9f8fc\",\n \"requester_id\": \"urn:uuid:034b9783-4536-e053-9f3a-66af8206318f\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:7380dcac-d71b-8e44-c349-7db44fb3154b\",\n \"profile_ids\": [\n \"urn:uuid:7e1885bf-3c81-06a5-f849-ac0865d590f8\",\n \"urn:uuid:da7f5d7e-9dcb-5558-2e7d-cd85765e07a9\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e9a3b212-3a2f-4267-9a6a-dc569b5a87bf", + "id": "228fe676-53d1-4d66-a720-298ee806cba1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27721,7 +27721,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"0821b75c-a87c-71bf-b872-31186f16ab92\",\n \"requester_id\": \"urn:uuid:6b2a1ab2-a9a6-a43b-f64b-7417e12ea44e\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:23e42b31-bac6-2312-23e8-f9c902279624\",\n \"profile_ids\": [\n \"urn:uuid:770bd228-a58c-3486-e30f-953a439df5ec\",\n \"urn:uuid:dcdb66e2-221a-46c9-0173-a07c446f8395\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:8d3d4a79-64da-1384-892e-304b96d2d3ad\",\n \"requester_id\": \"a882c4f2-b82b-c9fb-a95a-fe4aa3018871\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"d0e79bd0-9abb-b4d2-ca4d-721170324655\",\n \"profile_ids\": [\n \"38680a72-8fbd-8418-605d-9b21f9c027aa\",\n \"8301d5be-da22-0f68-d877-e0e69f6dee11\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -27743,7 +27743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5415c443-5ef7-4016-a3e7-3dea5f42a4c8", + "id": "29cab782-baa0-4ebb-bf32-328141afae66", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27787,7 +27787,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"0821b75c-a87c-71bf-b872-31186f16ab92\",\n \"requester_id\": \"urn:uuid:6b2a1ab2-a9a6-a43b-f64b-7417e12ea44e\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:23e42b31-bac6-2312-23e8-f9c902279624\",\n \"profile_ids\": [\n \"urn:uuid:770bd228-a58c-3486-e30f-953a439df5ec\",\n \"urn:uuid:dcdb66e2-221a-46c9-0173-a07c446f8395\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:8d3d4a79-64da-1384-892e-304b96d2d3ad\",\n \"requester_id\": \"a882c4f2-b82b-c9fb-a95a-fe4aa3018871\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"d0e79bd0-9abb-b4d2-ca4d-721170324655\",\n \"profile_ids\": [\n \"38680a72-8fbd-8418-605d-9b21f9c027aa\",\n \"8301d5be-da22-0f68-d877-e0e69f6dee11\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -27815,7 +27815,7 @@ } }, { - "id": "1854cc97-4793-4ae1-bdd2-546cd3f6be2b", + "id": "18fc6894-48b1-4b14-bbb2-76988680e99f", "name": "Find workflow session by id", "request": { "name": "Find workflow session by id", @@ -27857,7 +27857,7 @@ }, "response": [ { - "id": "f40c95cb-0d48-4d50-b42d-8e56a47cab5e", + "id": "ce69b5ab-d05c-4a6e-8899-3d183e74c203", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27896,12 +27896,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_session\": {\n \"id\": \"fd448f47-f216-26e2-118e-b32616c96cb2\",\n \"uid\": \"fugiat ipsum occaecatlabore null\",\n \"workflow_id\": \"1f6fedc1-5447-b47e-4ad6-7d4d760aed7a\",\n \"requester_id\": \"03102c1b-d8b1-5694-5dff-c2595cd74aa8\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:0e563edc-4cc4-20c7-8a7e-21034752ea5a\",\n \"profile_ids\": [\n \"urn:uuid:2baee651-76b4-2392-9f30-75bf0768e19c\",\n \"688605cd-b67f-f44c-d884-6d1f5f3e0fcf\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow_session\": {\n \"id\": \"urn:uuid:37a094e2-1393-3d42-b258-bb340079e7aa\",\n \"uid\": \"amet temporeu animcupidatat eius\",\n \"workflow_id\": \"urn:uuid:0d367cb0-452d-9b80-0b52-1c2a15b9f8fc\",\n \"requester_id\": \"urn:uuid:034b9783-4536-e053-9f3a-66af8206318f\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:7380dcac-d71b-8e44-c349-7db44fb3154b\",\n \"profile_ids\": [\n \"urn:uuid:7e1885bf-3c81-06a5-f849-ac0865d590f8\",\n \"urn:uuid:da7f5d7e-9dcb-5558-2e7d-cd85765e07a9\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aee19cf8-4ada-412f-b8b4-cb2a088607dc", + "id": "1a50e2da-220a-47a9-9ac1-a5f72add1cea", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27945,7 +27945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1076babb-2845-4f89-ba71-846427f7dc45", + "id": "1b99ef5c-464e-43a0-8a4c-2c2e29b5d0ed", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27995,7 +27995,7 @@ } }, { - "id": "4e47e266-36b4-40dc-9ebd-f113a0f76f83", + "id": "4ca4c7fa-04aa-4062-9249-6561e3045ff2", "name": "Update a workflow session by id", "request": { "name": "Update a workflow session by id", @@ -28048,7 +28048,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"fbc4e670-7d06-b119-2270-f014af1c1f66\",\n \"requester_id\": \"e7fd1cf7-7d45-c788-1c0e-dfea65cfcd2e\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:500bea4b-fa93-f03a-9ee6-e358dd1b5d74\",\n \"profile_ids\": [\n \"urn:uuid:5bd1392e-c5e7-683d-3822-97e2b7d9743d\",\n \"urn:uuid:6b6aba8a-7282-0d05-0890-96c390c7ce5b\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"cf151d38-0cc3-0a05-e71d-7b8bd35f5e0c\",\n \"requester_id\": \"2ea1d7b8-af72-2531-e6c1-8bba44864123\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:3e619202-5e93-c8cf-8205-8e268b7ebc00\",\n \"profile_ids\": [\n \"d9893132-ae4d-c542-53f7-e859604d1774\",\n \"17f8094a-82e8-9c03-2eb1-079ad9b23e5d\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -28060,7 +28060,7 @@ }, "response": [ { - "id": "a2a0e8d0-7ee6-4a56-90df-b698d2f8940c", + "id": "2e1adf6e-4806-4d24-8b1b-b456b8ba2454", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28105,7 +28105,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"fbc4e670-7d06-b119-2270-f014af1c1f66\",\n \"requester_id\": \"e7fd1cf7-7d45-c788-1c0e-dfea65cfcd2e\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:500bea4b-fa93-f03a-9ee6-e358dd1b5d74\",\n \"profile_ids\": [\n \"urn:uuid:5bd1392e-c5e7-683d-3822-97e2b7d9743d\",\n \"urn:uuid:6b6aba8a-7282-0d05-0890-96c390c7ce5b\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"cf151d38-0cc3-0a05-e71d-7b8bd35f5e0c\",\n \"requester_id\": \"2ea1d7b8-af72-2531-e6c1-8bba44864123\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:3e619202-5e93-c8cf-8205-8e268b7ebc00\",\n \"profile_ids\": [\n \"d9893132-ae4d-c542-53f7-e859604d1774\",\n \"17f8094a-82e8-9c03-2eb1-079ad9b23e5d\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -28122,12 +28122,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_session\": {\n \"id\": \"fd448f47-f216-26e2-118e-b32616c96cb2\",\n \"uid\": \"fugiat ipsum occaecatlabore null\",\n \"workflow_id\": \"1f6fedc1-5447-b47e-4ad6-7d4d760aed7a\",\n \"requester_id\": \"03102c1b-d8b1-5694-5dff-c2595cd74aa8\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:0e563edc-4cc4-20c7-8a7e-21034752ea5a\",\n \"profile_ids\": [\n \"urn:uuid:2baee651-76b4-2392-9f30-75bf0768e19c\",\n \"688605cd-b67f-f44c-d884-6d1f5f3e0fcf\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow_session\": {\n \"id\": \"urn:uuid:37a094e2-1393-3d42-b258-bb340079e7aa\",\n \"uid\": \"amet temporeu animcupidatat eius\",\n \"workflow_id\": \"urn:uuid:0d367cb0-452d-9b80-0b52-1c2a15b9f8fc\",\n \"requester_id\": \"urn:uuid:034b9783-4536-e053-9f3a-66af8206318f\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:7380dcac-d71b-8e44-c349-7db44fb3154b\",\n \"profile_ids\": [\n \"urn:uuid:7e1885bf-3c81-06a5-f849-ac0865d590f8\",\n \"urn:uuid:da7f5d7e-9dcb-5558-2e7d-cd85765e07a9\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "84fb8ecb-9d57-4f02-bc17-92cd330ad4c6", + "id": "afd13081-e048-4494-be26-e5044becd9b8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28172,7 +28172,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"fbc4e670-7d06-b119-2270-f014af1c1f66\",\n \"requester_id\": \"e7fd1cf7-7d45-c788-1c0e-dfea65cfcd2e\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:500bea4b-fa93-f03a-9ee6-e358dd1b5d74\",\n \"profile_ids\": [\n \"urn:uuid:5bd1392e-c5e7-683d-3822-97e2b7d9743d\",\n \"urn:uuid:6b6aba8a-7282-0d05-0890-96c390c7ce5b\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"cf151d38-0cc3-0a05-e71d-7b8bd35f5e0c\",\n \"requester_id\": \"2ea1d7b8-af72-2531-e6c1-8bba44864123\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:3e619202-5e93-c8cf-8205-8e268b7ebc00\",\n \"profile_ids\": [\n \"d9893132-ae4d-c542-53f7-e859604d1774\",\n \"17f8094a-82e8-9c03-2eb1-079ad9b23e5d\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -28194,7 +28194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "646a7dcc-f5eb-4192-b861-83b57eed38db", + "id": "dda811ea-c3d8-47ad-8ff5-f05adeee3d49", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28239,7 +28239,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"fbc4e670-7d06-b119-2270-f014af1c1f66\",\n \"requester_id\": \"e7fd1cf7-7d45-c788-1c0e-dfea65cfcd2e\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:500bea4b-fa93-f03a-9ee6-e358dd1b5d74\",\n \"profile_ids\": [\n \"urn:uuid:5bd1392e-c5e7-683d-3822-97e2b7d9743d\",\n \"urn:uuid:6b6aba8a-7282-0d05-0890-96c390c7ce5b\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"cf151d38-0cc3-0a05-e71d-7b8bd35f5e0c\",\n \"requester_id\": \"2ea1d7b8-af72-2531-e6c1-8bba44864123\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:3e619202-5e93-c8cf-8205-8e268b7ebc00\",\n \"profile_ids\": [\n \"d9893132-ae4d-c542-53f7-e859604d1774\",\n \"17f8094a-82e8-9c03-2eb1-079ad9b23e5d\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -28267,7 +28267,7 @@ } }, { - "id": "cbd7f5eb-4d31-42cf-a3cc-27b544fed8f5", + "id": "33abb7a6-5563-4f3f-a234-2fb944c02d55", "name": "Retrieves the URL of an attachment attribute value from a workflow session", "request": { "name": "Retrieves the URL of an attachment attribute value from a workflow session", @@ -28321,7 +28321,7 @@ }, "response": [ { - "id": "a0351999-30e7-4c71-853a-3a2bd20dc2ea", + "id": "b6079d67-8889-4eae-bbcc-e079673a3079", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28362,12 +28362,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"tempor ex ut\"\n}", + "body": "{\n \"url\": \"sunt officia cupidatat pariatur in\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ad112f2d-10d6-4162-bb9c-7441a36cd155", + "id": "016853cb-0267-4909-a59c-23ab80857ef0", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28413,7 +28413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6a98677-a434-408f-9f0b-104aa52afc1d", + "id": "52baa44d-aa0b-4028-b7e9-6f19761ff7bd", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28465,7 +28465,7 @@ } }, { - "id": "5fd13ac8-14e2-4c89-b58e-fea1f8da878d", + "id": "83ff1eec-dce4-43f2-b9a9-4c54761b6f8e", "name": "Uploads a new attachment attribute value to a workflow session", "request": { "name": "Uploads a new attachment attribute value to a workflow session", @@ -28527,7 +28527,7 @@ "type": "text/plain" }, "key": "file", - "value": "sun", + "value": "ad sint ea", "type": "text" } ] @@ -28536,7 +28536,7 @@ }, "response": [ { - "id": "b618f297-1276-4e6b-989d-0a325a530e48", + "id": "80ae9b28-30e1-4f1a-997f-ae0a768ed134", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28580,7 +28580,7 @@ "type": "text/plain" }, "key": "file", - "value": "sun", + "value": "ad sint ea", "type": "text" } ] @@ -28594,12 +28594,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"tempor ex ut\"\n}", + "body": "{\n \"url\": \"sunt officia cupidatat pariatur in\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f9db4edf-acf0-4a2e-90d7-8e94efaa264d", + "id": "35112cf9-6cd7-4c2d-9e35-f0e664b8e56a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28643,7 +28643,7 @@ "type": "text/plain" }, "key": "file", - "value": "sun", + "value": "ad sint ea", "type": "text" } ] @@ -28662,7 +28662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efd8a81e-84b2-4e6a-9055-82bd82c406ff", + "id": "955f07d1-4da4-4fdb-9bb7-74c40102eb20", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28706,7 +28706,7 @@ "type": "text/plain" }, "key": "file", - "value": "sun", + "value": "ad sint ea", "type": "text" } ] @@ -28737,7 +28737,7 @@ "description": "", "item": [ { - "id": "2f1a1dc6-1c5b-463f-a9e0-cf86bba87b47", + "id": "e1bf18ba-97bd-4baa-851d-d1f2b8bd7973", "name": "Get identity proofing result data in bulk", "request": { "name": "Get identity proofing result data in bulk", @@ -28796,7 +28796,7 @@ "type": "text/plain" }, "key": "workflow_session_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -28805,7 +28805,7 @@ "type": "text/plain" }, "key": "result", - "value": "fail" + "value": "pass" }, { "disabled": false, @@ -28831,7 +28831,7 @@ }, "response": [ { - "id": "9d076d19-8e48-40d4-90ed-bbbcb6d353d2", + "id": "5282016c-d0ca-4553-b2c3-1cbf1e665430", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28885,7 +28885,7 @@ "type": "text/plain" }, "key": "workflow_session_id", - "value": "urn:uuid:b61314b9-5ded-3548-c4ae-c7c191fb9658" + "value": "97bcca07-5d71-07c4-672c-d73f4742e00c" }, { "disabled": false, @@ -28894,7 +28894,7 @@ "type": "text/plain" }, "key": "result", - "value": "fail" + "value": "pass" }, { "disabled": false, @@ -28933,7 +28933,7 @@ "value": "application/json" } ], - "body": "{\n \"identity_proofing_results\": [\n {\n \"id\": \"urn:uuid:197df24f-c857-af0f-236e-42ced9271e02\",\n \"identity_proofing_action_id\": \"urn:uuid:8e0fdf06-ae35-7977-e26b-2198205d0246\",\n \"workflow_session_id\": \"50cdffef-6064-5f5b-dae5-d3b1c0d47171\",\n \"profile_id\": \"urn:uuid:ee65aa43-4a34-bad5-3a5c-7cf618990c35\",\n \"proofing_workflow\": \"3c2538dc-96c4-0998-20af-841078b2ef14\",\n \"result\": \"pending\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"1970-07-28T01:21:59.050Z\",\n \"updated_at\": \"2021-03-15T20:44:44.231Z\"\n },\n {\n \"id\": \"urn:uuid:5087c526-aa0a-ad19-0e68-8d36cabf39a2\",\n \"identity_proofing_action_id\": \"88f3f200-a0f2-3d72-8b51-66cc295e65f8\",\n \"workflow_session_id\": \"urn:uuid:6b1a926e-30fc-bc0c-ffea-b31e284bcdd3\",\n \"profile_id\": \"9c4e67ec-8f43-b7ea-a899-202f3bc6e766\",\n \"proofing_workflow\": \"8b127ffe-97f0-e664-1bc7-b485666a6273\",\n \"result\": \"pass\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"1959-05-23T03:32:57.358Z\",\n \"updated_at\": \"1979-03-06T23:02:41.230Z\"\n }\n ],\n \"_metadata\": {\n \"limit\": 24500220,\n \"offset\": -96549927,\n \"total\": -92335772,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"identity_proofing_results\": [\n {\n \"id\": \"b3711ccb-546c-40e4-4ed8-bb7f68e63dbb\",\n \"identity_proofing_action_id\": \"urn:uuid:34e5c705-837f-8746-9fe6-5704d2f7de98\",\n \"workflow_session_id\": \"2b665938-7e46-c032-ca2f-b83f78e61ee3\",\n \"profile_id\": \"urn:uuid:f957cbf8-6cb7-c854-7cf2-e2c61a6a1e49\",\n \"proofing_workflow\": \"b66e0b77-2bdf-d064-1d05-bcab307e9d8e\",\n \"result\": \"pending\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"2021-05-15T00:41:53.870Z\",\n \"updated_at\": \"1982-12-13T01:08:04.983Z\"\n },\n {\n \"id\": \"95e4f292-c4a0-abc0-c1f7-d9d08c810719\",\n \"identity_proofing_action_id\": \"urn:uuid:c085e622-fd7d-0d98-2e15-6a68e1e1cb60\",\n \"workflow_session_id\": \"urn:uuid:ec270b30-df43-d555-6d19-fa55b6b92b0f\",\n \"profile_id\": \"4eae89d7-dfd1-ef04-60cf-37ff93a19953\",\n \"proofing_workflow\": \"urn:uuid:1278d44d-1442-9ea6-1525-8e99c9d42528\",\n \"result\": \"pass\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"1961-05-19T00:44:58.304Z\",\n \"updated_at\": \"1966-11-29T12:05:01.407Z\"\n }\n ],\n \"_metadata\": {\n \"limit\": -56695935,\n \"offset\": 50202507,\n \"total\": -68739670,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -28950,7 +28950,7 @@ "description": "", "item": [ { - "id": "db36c085-1394-4512-9b08-4fa2d48a28f2", + "id": "da029b71-2d6f-4133-b27d-78d7a152f79a", "name": "Get saved advanced search queries", "request": { "name": "Get saved advanced search queries", @@ -28980,7 +28980,7 @@ }, "response": [ { - "id": "ecec7443-9424-409c-bb0b-97bf092e889f", + "id": "8e36cb68-3abf-4571-b1fc-627d31937ce2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29018,7 +29018,7 @@ "value": "application/json" } ], - "body": "{\n \"advanced_search\": [\n {\n \"id\": \"946ac4cc-c992-a50d-a915-d5f92b6059bb\",\n \"uid\": \"commodo cillum magna fugiatesse \",\n \"label\": \"Duis ullamco\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"ca7b9aa1-7662-db46-2e42-64f8934a77db\",\n \"uid\": \"laborisin minim pariatur aliqua \",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:e9948e96-2796-0de7-c4bf-8b09ca266a86\"\n },\n {\n \"id\": \"urn:uuid:93cce4fb-fbd7-17d7-3a1b-b6a9d39af1a2\",\n \"uid\": \"qui laborum dolor incididunt cul\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"ea868489-71b5-b939-39a0-cab15a4e7554\"\n }\n ]\n },\n {\n \"id\": \"a3218898-4046-34cd-b160-fa8611f200e7\",\n \"uid\": \"quis officia nostrud pariaturdol\",\n \"label\": \"labore do sit id\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:e056f27c-dc4a-f529-60b3-54cc5e1b211f\",\n \"uid\": \"ut quisdeserunt occaecat sed aut\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"76be85cd-74d0-abd5-7a8a-97ecfd2f6021\"\n },\n {\n \"id\": \"61fb87f6-ee1f-31be-70e7-12ca881fb6b7\",\n \"uid\": \"magna do amet consecteturdolored\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"4ea20ccf-eb2c-d01b-42ee-dac716b00258\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"advanced_search\": [\n {\n \"id\": \"urn:uuid:d6aae2ac-489a-5064-7945-01565fbe1785\",\n \"uid\": \"dolorut laborum aliquip enimproi\",\n \"label\": \"eiusmod Lorem dolor et\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:946d6cb6-f5a8-70a4-0c54-cca437dc3c09\",\n \"uid\": \"ex dolor utdo exercitation offic\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"08d38953-5e5f-09fa-86d9-c30cca206a84\"\n },\n {\n \"id\": \"urn:uuid:1d3f0a40-19ac-cf22-7a20-2fb5a8a800de\",\n \"uid\": \"do adipisicing minim sedest quis\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"ca4e0fea-765f-2a6c-3f8f-3a8eff87448c\"\n }\n ]\n },\n {\n \"id\": \"7e87661e-727d-c261-40f1-a7255a3b73bb\",\n \"uid\": \"irure consecteturmagna ea velit \",\n \"label\": \"adipisicing officia aliquip incididunt\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"10d2416f-8b3f-f5e9-e932-22ab435e2068\",\n \"uid\": \"eiusmod quis aute veniamcillum n\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:a5a4d72e-da06-9a32-3676-701ef65c3a76\"\n },\n {\n \"id\": \"88ca3964-d839-bb7c-d4fd-ca660fb598a5\",\n \"uid\": \"consequat irure culpa laborumcil\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"081e1d84-90c4-29d5-2a26-d110cd1e589a\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29029,7 +29029,7 @@ } }, { - "id": "015538a1-82a4-435c-b189-f55daf05540b", + "id": "b40673bd-81d9-40fd-b946-b3fd5caafda2", "name": "Save an advanced search query for later use", "request": { "name": "Save an advanced search query for later use", @@ -29060,7 +29060,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"aliquip\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"d828fa30-d41d-99fc-73c2-a721fbfb94a7\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:164d2891-f0a3-656a-926a-587496d25b93\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"eu sint\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:4621509d-6665-1c96-62fb-c1e947d71315\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:6eb98835-e07f-49e4-54d1-fc27865dd28f\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29072,7 +29072,7 @@ }, "response": [ { - "id": "f90f5b2d-3b46-455c-b2b2-d2ac03eae952", + "id": "915e4a6a-5d1c-46da-94af-9868ad39be77", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29106,7 +29106,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"aliquip\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"d828fa30-d41d-99fc-73c2-a721fbfb94a7\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:164d2891-f0a3-656a-926a-587496d25b93\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"eu sint\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:4621509d-6665-1c96-62fb-c1e947d71315\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:6eb98835-e07f-49e4-54d1-fc27865dd28f\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29123,7 +29123,7 @@ "value": "application/json" } ], - "body": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:6db0dc99-6b14-ece1-de04-6dbde0057a16\",\n \"uid\": \"adipisicing aute anim inut et de\",\n \"label\": \"aliqua deserunt velit laboris\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"9828984c-3a42-dbad-f6ba-a64aa83e4910\",\n \"uid\": \"sit ea commodoExcepteur proident\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"fff37ec8-7bd6-b4cb-eda9-87223ec93a0d\"\n },\n {\n \"id\": \"a5bb6ba4-d4e0-a208-eeca-b958bd559a68\",\n \"uid\": \"velit pariaturcillum ad in nostr\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"10830b7b-11bc-04cd-be86-e0d6f772baea\"\n }\n ]\n }\n}", + "body": "{\n \"advanced_search\": {\n \"id\": \"c843d452-7370-5a86-97d2-84bd426ade86\",\n \"uid\": \"in Utex sunt nostrudut innisi mo\",\n \"label\": \"ullamco anim ut\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:3165a2ce-3203-93a6-a664-9c6e795904fd\",\n \"uid\": \"do sunt eu auteex sit sint nostr\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:db96fcf7-a009-0557-f6fe-665b5cd4e368\"\n },\n {\n \"id\": \"2d498b97-3d18-acb7-1cce-65ef5746e08d\",\n \"uid\": \"dolore Lorem reprehenderit ullam\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:67fdb868-afd6-9be9-5d38-7d8169efad85\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29134,7 +29134,7 @@ } }, { - "id": "e90c5f29-6d88-4693-bfb0-c120feff656a", + "id": "fdc894a9-9242-4715-b2b9-32b598c498e8", "name": "Run an advanced search for profiles, without saving the query", "request": { "name": "Run an advanced search for profiles, without saving the query", @@ -29194,7 +29194,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"aliquip\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"d828fa30-d41d-99fc-73c2-a721fbfb94a7\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:164d2891-f0a3-656a-926a-587496d25b93\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"eu sint\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:4621509d-6665-1c96-62fb-c1e947d71315\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:6eb98835-e07f-49e4-54d1-fc27865dd28f\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29206,7 +29206,7 @@ }, "response": [ { - "id": "54a680cf-3706-431a-91b0-2fab5f884351", + "id": "aad248b3-9350-4d00-aa8c-abe34675b101", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29269,7 +29269,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"aliquip\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"d828fa30-d41d-99fc-73c2-a721fbfb94a7\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:164d2891-f0a3-656a-926a-587496d25b93\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"eu sint\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:4621509d-6665-1c96-62fb-c1e947d71315\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:6eb98835-e07f-49e4-54d1-fc27865dd28f\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29286,7 +29286,7 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Excepteur laborumnostrud mollit \",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut officia irure deserunt adea s\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Excepteur laboris veliteaaliqua \",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"sit eanulla id cillum enim repre\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29297,7 +29297,7 @@ } }, { - "id": "5a82f205-d236-4d05-a0c3-c1048b905727", + "id": "7752afe3-5abd-494d-8d94-384907478f4e", "name": "Update a saved advanced search query", "request": { "name": "Update a saved advanced search query", @@ -29340,7 +29340,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"id\": \"f496c36c-9c35-faca-7e52-d11b0682d875\",\n \"label\": \"et eu\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:5646ffdc-8d44-3f60-74a4-57965ac6b5ff\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:ae8f2de7-bd40-40f4-55a0-1b60014ecec6\",\n \"_destroy\": false\n },\n {\n \"id\": \"urn:uuid:a9f6db43-8256-aad7-a277-5426f42388f7\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"af17ed01-e933-88d9-0515-bb3ec4ea9ac1\",\n \"_destroy\": false\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:de2b3616-bb54-5c2f-1e8c-5409698c0dd5\",\n \"label\": \"ex\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"42815df9-0fe1-414f-1d7e-1c457860533e\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:aecf8b71-eaff-bd3d-2e9b-f53a8fd6a24f\",\n \"_destroy\": false\n },\n {\n \"id\": \"c92bb84a-87ab-2feb-5684-c2e442f0942e\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"723dfa67-af4a-d00f-3456-1f5be50028cb\",\n \"_destroy\": false\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29352,7 +29352,7 @@ }, "response": [ { - "id": "cfabeceb-86aa-4682-b303-8ac9ec3a2e42", + "id": "2d0fb236-1f5d-4eff-9fe7-4b6f008dcc05", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29387,7 +29387,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"id\": \"f496c36c-9c35-faca-7e52-d11b0682d875\",\n \"label\": \"et eu\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:5646ffdc-8d44-3f60-74a4-57965ac6b5ff\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:ae8f2de7-bd40-40f4-55a0-1b60014ecec6\",\n \"_destroy\": false\n },\n {\n \"id\": \"urn:uuid:a9f6db43-8256-aad7-a277-5426f42388f7\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"af17ed01-e933-88d9-0515-bb3ec4ea9ac1\",\n \"_destroy\": false\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:de2b3616-bb54-5c2f-1e8c-5409698c0dd5\",\n \"label\": \"ex\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"42815df9-0fe1-414f-1d7e-1c457860533e\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:aecf8b71-eaff-bd3d-2e9b-f53a8fd6a24f\",\n \"_destroy\": false\n },\n {\n \"id\": \"c92bb84a-87ab-2feb-5684-c2e442f0942e\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"723dfa67-af4a-d00f-3456-1f5be50028cb\",\n \"_destroy\": false\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29404,7 +29404,7 @@ "value": "application/json" } ], - "body": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:6db0dc99-6b14-ece1-de04-6dbde0057a16\",\n \"uid\": \"adipisicing aute anim inut et de\",\n \"label\": \"aliqua deserunt velit laboris\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"9828984c-3a42-dbad-f6ba-a64aa83e4910\",\n \"uid\": \"sit ea commodoExcepteur proident\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"fff37ec8-7bd6-b4cb-eda9-87223ec93a0d\"\n },\n {\n \"id\": \"a5bb6ba4-d4e0-a208-eeca-b958bd559a68\",\n \"uid\": \"velit pariaturcillum ad in nostr\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"10830b7b-11bc-04cd-be86-e0d6f772baea\"\n }\n ]\n }\n}", + "body": "{\n \"advanced_search\": {\n \"id\": \"c843d452-7370-5a86-97d2-84bd426ade86\",\n \"uid\": \"in Utex sunt nostrudut innisi mo\",\n \"label\": \"ullamco anim ut\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:3165a2ce-3203-93a6-a664-9c6e795904fd\",\n \"uid\": \"do sunt eu auteex sit sint nostr\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:db96fcf7-a009-0557-f6fe-665b5cd4e368\"\n },\n {\n \"id\": \"2d498b97-3d18-acb7-1cce-65ef5746e08d\",\n \"uid\": \"dolore Lorem reprehenderit ullam\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:67fdb868-afd6-9be9-5d38-7d8169efad85\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29415,7 +29415,7 @@ } }, { - "id": "c7eea9db-7ffa-48da-b398-77cc5fbe8db7", + "id": "2e47b735-070f-448c-bf1f-8dc180e5c32d", "name": "Run a saved advanced search query", "request": { "name": "Run a saved advanced search query", @@ -29486,7 +29486,7 @@ }, "response": [ { - "id": "3665d396-e84c-4504-9f8c-ba136b8a488c", + "id": "d190eb4f-2d02-4b74-ad6f-7ca1606bb6bf", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29554,7 +29554,7 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Excepteur laborumnostrud mollit \",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut officia irure deserunt adea s\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Excepteur laboris veliteaaliqua \",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"sit eanulla id cillum enim repre\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29571,7 +29571,7 @@ "description": "", "item": [ { - "id": "276e15c1-843f-4f1a-a963-5bb97077c698", + "id": "3112a971-91e1-47c2-b117-50094467fd03", "name": "Get the status of a bulk job", "request": { "name": "Get the status of a bulk job", @@ -29594,7 +29594,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" } ], "variable": [] @@ -29611,7 +29611,7 @@ }, "response": [ { - "id": "e4700328-799c-4f55-b63d-af611f16c4a0", + "id": "808fd712-89fb-44c3-ac88-62d47defea84", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29629,7 +29629,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" } ], "variable": [] @@ -29659,12 +29659,12 @@ "value": "application/json" } ], - "body": "{\n \"uid\": \"138535c0-b895-2609-fc7e-5d8aff88c724\",\n \"status\": \"complete\",\n \"job_type\": \"import\",\n \"job_data\": [\n {\n \"user_id\": \"3b17908d-23a0-4e64-d5a7-d4f411a13e7a\",\n \"manager_id\": \"488b0eb6-8f4c-ad91-7ed3-b63cfda8a708\",\n \"errors\": [\n \"Validation error for record in job\",\n \"Validation error for record in job\"\n ]\n },\n {\n \"user_id\": \"bd899f06-0fc4-dcdb-7e18-c28b53eb2ed8\",\n \"manager_id\": \"aeaa7e14-d221-02e5-cce2-55f064b2e60a\",\n \"errors\": [\n \"Validation error for record in job\",\n \"Validation error for record in job\"\n ]\n }\n ]\n}", + "body": "{\n \"uid\": \"urn:uuid:d3895000-5f97-3cb3-e76f-d49ddf9e4a76\",\n \"status\": \"complete\",\n \"job_type\": \"import\",\n \"job_data\": [\n {\n \"user_id\": \"f9a82286-b451-79df-f4f7-a4851998a3c8\",\n \"manager_id\": \"urn:uuid:6fedc596-379d-fc6c-61b4-e5846f71adcc\",\n \"errors\": [\n \"Validation error for record in job\",\n \"Validation error for record in job\"\n ]\n },\n {\n \"user_id\": \"urn:uuid:1e86d452-0e64-5572-dcff-71cbe61bf986\",\n \"manager_id\": \"urn:uuid:71af7e2d-d83a-b39d-07ea-c7ab00b1a258\",\n \"errors\": [\n \"Validation error for record in job\",\n \"Validation error for record in job\"\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "85d67c03-1c9c-4608-b7a9-a0413a2008fc", + "id": "ddbad5e2-0684-415a-8c7f-358731d9a8e4", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -29682,7 +29682,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" } ], "variable": [] @@ -29717,7 +29717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11e9471e-f7af-4798-9109-7d782dbfcdf7", + "id": "cdca6e27-1c5d-483c-8915-bd24ef1d917b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -29735,7 +29735,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "cupidatat ad mo" + "value": "ad fugiat occaecat in" } ], "variable": [] @@ -29782,7 +29782,7 @@ "description": "", "item": [ { - "id": "a8c108f3-4ad0-4cc2-b802-2e995a3be850", + "id": "278b15df-9f0e-4c12-844b-5232b2986e0f", "name": "Create a form", "request": { "name": "Create a form", @@ -29825,7 +29825,7 @@ }, "response": [ { - "id": "a0ea2e8d-9310-4153-a648-d0580c1b4141", + "id": "58f68ac3-cf56-4967-a1c9-99645ee617ec", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29881,7 +29881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12391c76-ce96-449e-98dc-d8595a808d20", + "id": "7d5af22a-4577-48ba-8427-f69aa07074ca", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -29937,7 +29937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a006d85-7a21-431b-b7ee-c50a3e9a02d0", + "id": "ea612229-31b6-484f-9de0-4676c86edf2f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -30005,7 +30005,7 @@ "description": "", "item": [ { - "id": "b98bbdf1-d6dd-4515-8cec-1bb2dcbe57c7", + "id": "4cf4adbf-1680-47f2-b3a8-171fc77b79e9", "name": "Create a form attribute", "request": { "name": "Create a form attribute", @@ -30048,7 +30048,7 @@ }, "response": [ { - "id": "d6088581-4b22-4cf2-ba7a-f065023d4369", + "id": "bbd544aa-11b0-4c75-9787-d62d731ee727", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30104,7 +30104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3ba636f-dfeb-4e1a-b75f-11f67adeb34e", + "id": "a0aef44a-b11b-4052-829f-382dbc91200f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -30160,7 +30160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a355abe-8da8-47a3-a9b3-b553da4fd310", + "id": "cab8533c-9b14-48da-a954-e272b4c71880", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -30246,7 +30246,7 @@ } ], "info": { - "_postman_id": "8adc4931-218f-435f-b29b-a3de73f1f2ab", + "_postman_id": "e214df44-5815-4ab6-a9c5-61bb2f05ddfa", "name": "NERM API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": { diff --git a/postman/collections/sailpoint-api-v3.json b/postman/collections/sailpoint-api-v3.json index 0ef1816..503753f 100644 --- a/postman/collections/sailpoint-api-v3.json +++ b/postman/collections/sailpoint-api-v3.json @@ -5,7 +5,7 @@ "description": "Use this API to implement and customize access profile functionality. \nWith this functionality in place, administrators can create access profiles and configure them for use throughout IdentityNow, enabling users to get the access they need quickly and securely.\n\nAccess profiles group entitlements, which represent access rights on sources. \n\nFor example, an Active Directory source in IdentityNow can have multiple entitlements: the first, 'Employees,' may represent the access all employees have at the organization, and a second, 'Developers,' may represent the access all developers have at the organization.\n\nAn administrator can then create a broader set of access in the form of an access profile, 'AD Developers' grouping the 'Employees' entitlement with the 'Developers' entitlement.\n\nWhen users only need Active Directory employee access, they can request access to the 'Employees' entitlement.\n\nWhen users need both Active Directory employee and developer access, they can request access to the 'AD Developers' access profile.\n\nAccess profiles are the most important units of access in IdentityNow. IdentityNow uses access profiles in many features, including the following:\n\n- Provisioning: When you use the Provisioning Service, lifecycle states and roles both grant access to users in the form of access profiles.\n\n- Certifications: You can approve or revoke access profiles in certification campaigns, just like entitlements. \n\n- Access Requests: You can assign access profiles to applications, and when a user requests access to the app associated with an access profile and someone approves the request, access is granted to both the application and its associated access profile.\n\n- Roles: You can group one or more access profiles into a role to quickly assign access items based on an identity's role. \n\nIn IdentityNow, administrators can use the Access drop-down menu and select Access Profiles to view, configure, and delete existing access profiles, as well as create new ones. \nAdministrators can enable and disable an access profile, and they can also make the following configurations: \n\n- Manage Entitlements: Manage the profile's access by adding and removing entitlements. \n\n- Access Requests: Configure access profiles to be requestable and establish an approval process for any requests that the access profile be granted or revoked. \nDo not configure an access profile to be requestable without first establishing a secure access request approval process for the access profile.\n\n- Multiple Account Options: Define the logic IdentityNow uses to provision access to an identity with multiple accounts on the source. \n\nRefer to [Managing Access Profiles](https://documentation.sailpoint.com/saas/help/access/access-profiles.html) for more information about access profiles.\n", "item": [ { - "id": "fcb1ceff-84d0-4e00-b1a7-6397783ca332", + "id": "e97b05ab-3ff0-42f2-b73b-5ce68c9ce1a6", "name": "List Access Profiles", "request": { "name": "List Access Profiles", @@ -107,7 +107,7 @@ }, "response": [ { - "id": "c2d6c13f-9eb5-4b68-8442-c2084e6ca84d", + "id": "13dd46eb-7efe-4ac4-8b09-cfeb5d7f421e", "name": "List of Access Profiles", "originalRequest": { "url": { @@ -223,7 +223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1c10d40-9c43-4335-b451-f60a461e724c", + "id": "10da1e0b-b2f9-4707-9113-719d4864b7cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -339,7 +339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b2c650b-0089-4814-a640-a598f685c94f", + "id": "0d849225-b4b6-4fc8-a78d-62e8f21154b3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -455,7 +455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba68d0b4-e912-47ce-b0f6-1927d15be519", + "id": "bbb97036-3481-417f-ae3a-c66e672af5b2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -571,7 +571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5442a67b-2e98-449d-a2f1-c1db530066b9", + "id": "1db90a30-7fa9-4760-a71a-d7afbbaba4d0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -687,7 +687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09f88c65-aa18-409c-aca7-7c011db3d7b6", + "id": "38239377-cc5c-4b4a-ae43-fabb652ab72b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -809,7 +809,7 @@ } }, { - "id": "cf720942-76c4-456e-916d-991aa04e9013", + "id": "166ad003-d9d5-4259-a45b-49960fd980f1", "name": "Create an Access Profile", "request": { "name": "Create an Access Profile", @@ -851,7 +851,7 @@ }, "response": [ { - "id": "42b32b18-0d03-4dac-974e-4468cbee46c4", + "id": "f3300219-4b92-4d6e-abf3-e536141b8df1", "name": "Access Profile created", "originalRequest": { "url": { @@ -907,7 +907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "476074e8-f4ed-41d5-b117-e7f290b2a345", + "id": "722933cc-6ece-477e-bbef-fad2d07ff76a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -963,7 +963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b674801c-ec99-439a-bcb5-96f08597b964", + "id": "e6a5c397-b0bc-463b-bde8-27f68fc9c807", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -1019,7 +1019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb0a3369-89bc-4156-b200-60382f54c3dd", + "id": "04f9e574-5678-4fbd-b255-d2643a796306", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -1075,7 +1075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4452c2ae-9ad6-4098-8336-c82aaef5562e", + "id": "b7d6d9a0-7981-49ac-8252-f269c8ff5cb5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -1131,7 +1131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3383aad1-ac41-408d-98d7-5f21a152ba8e", + "id": "0f7e5151-0622-4f1f-a9f3-828aef9645ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1193,7 +1193,7 @@ } }, { - "id": "9f8e436b-e1a6-4ade-a2bb-c2ba66f6ca2b", + "id": "ea15ab61-890f-49d5-adb8-8c9c6b7eb345", "name": "Get an Access Profile", "request": { "name": "Get an Access Profile", @@ -1234,7 +1234,7 @@ }, "response": [ { - "id": "c5aa99e0-1246-490a-b640-43baf72f1954", + "id": "70cc20bb-54b6-4d6f-a997-2a95a7eaa637", "name": "An AccessProfile", "originalRequest": { "url": { @@ -1278,7 +1278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0efedf8a-50e0-4ccb-898d-fec3ba420ac7", + "id": "4a668978-019e-4e5e-9157-ed6af8544681", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1322,7 +1322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73aa6ae5-8abd-4afd-9ab6-396dd6f7e7af", + "id": "38d2d55b-38df-4d56-be9b-614bac23fabe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -1366,7 +1366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30c052f2-5f2e-4598-81ca-ad9540e66cb9", + "id": "8b971c1d-9616-41c6-a2a2-7faccd8ca048", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -1410,7 +1410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0bbb676-6d86-4124-9ef4-84854977c339", + "id": "2808c1d0-893d-4372-aeed-3d809d8838a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -1454,7 +1454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86ad295e-0f7c-4c14-8a9c-4b4110cf8302", + "id": "e40df688-8100-49cd-ac1d-14e3ef1f7a2a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1504,7 +1504,7 @@ } }, { - "id": "93263a55-44ee-4410-a0a4-58a213828654", + "id": "a67d3d4d-7ecc-49ea-8789-00cd49f9cf95", "name": "Patch a specified Access Profile", "request": { "name": "Patch a specified Access Profile", @@ -1558,7 +1558,7 @@ }, "response": [ { - "id": "67021301-0afc-4790-b061-37689f5b929e", + "id": "8592a2bc-f3ea-45d3-b47f-e210ace87d82", "name": "Add Entitlements", "originalRequest": { "url": { @@ -1615,7 +1615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e473e29-855f-443a-b1f4-5a435d338687", + "id": "c69184ee-5b66-4465-ad04-fd5a82c2599c", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -1672,7 +1672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e944dd6-9925-4be8-93c4-10d6a99766ce", + "id": "245ada04-667e-48ea-a2d0-26c8c4687431", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -1729,7 +1729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fa775f4-7ffd-4b36-9e97-f36f610613e9", + "id": "034cdf59-c61d-47d5-b5ea-b39b66203b36", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -1786,7 +1786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e1527ad-3cc2-4d05-a738-a48987823fd8", + "id": "f5dc7ddb-77ae-4b85-8fbb-5e47a794b137", "name": "Replace Source", "originalRequest": { "url": { @@ -1843,7 +1843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76d68506-3be7-4436-992d-d4ecca23fbbf", + "id": "8849a036-20c1-40ec-b4a7-face36017666", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -1900,7 +1900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fa2e640-ba02-44cd-8035-da49e91eb10d", + "id": "95cdbf4d-81e6-4e55-8266-6f5e5e37b785", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -1957,7 +1957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9da7677e-89c5-4b30-b1fe-86325e553b26", + "id": "45a1ad71-ee0d-47c7-8f02-73c02003984e", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2014,7 +2014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c48fdf51-14f8-420e-a063-f2b6964c228e", + "id": "fea129b2-f2bd-4be9-b05c-b79f1dca7ef8", "name": "Replace Source", "originalRequest": { "url": { @@ -2071,7 +2071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3d25e7a-01b2-411e-bef2-81fb2954ee67", + "id": "7fa99824-438c-4816-808c-b82c52571ff0", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -2128,7 +2128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ed77114-23dd-4cb8-a2a1-6451946623e6", + "id": "f1308b12-c6eb-4df2-9ed2-21ce76535d4c", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2185,7 +2185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cf27186-17ca-48a4-9bb3-eed582104f8c", + "id": "f36e772d-7add-4503-bb34-968989641018", "name": "Replace Source", "originalRequest": { "url": { @@ -2242,7 +2242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2406909-8775-47f9-8256-6318e6e65526", + "id": "2fe337d6-d936-4d2a-a1e3-c73cdc79e009", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -2299,7 +2299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3389e8c-978d-4faf-9465-d6d2ee6fe373", + "id": "1a020b74-0033-4bf6-82a2-a64094fec1ae", "name": "Replace Source", "originalRequest": { "url": { @@ -2356,7 +2356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7c60040-6d19-487f-805d-604c86589238", + "id": "510a7991-b937-4f79-b89f-28467be2ff9d", "name": "Replace Source", "originalRequest": { "url": { @@ -2413,7 +2413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0837ed5b-0532-4b3f-9ba5-8f284830948f", + "id": "4e249509-3f19-400d-9be1-79538c52aaf3", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -2476,7 +2476,7 @@ } }, { - "id": "50c9ab0c-8712-44e6-afc0-bd21e8215bb2", + "id": "b30a0a4b-906d-4139-9dcc-da0448a5238e", "name": "Delete the specified Access Profile", "request": { "name": "Delete the specified Access Profile", @@ -2517,7 +2517,7 @@ }, "response": [ { - "id": "5ace381e-7a7f-4a9b-80e7-c2267352ec1b", + "id": "9acfb704-d258-487c-939a-33727ec2b93c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -2551,7 +2551,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9b518c8d-67f7-46cb-b6bf-98082a98a77d", + "id": "031bc7dc-4ea1-4f93-848e-03cbffbf650c", "name": "Returned when an access profile cannot be deleted as it's being used.", "originalRequest": { "url": { @@ -2595,7 +2595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7d3b845-aa20-447e-83da-f063b920c2a7", + "id": "a9f755e4-5afd-4368-a147-e827e6cc4728", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -2639,7 +2639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68205f75-e66a-4c97-b025-2037a92a7896", + "id": "1acaf010-1a56-4310-9923-4bea738ace9a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -2683,7 +2683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a273e65-bc47-44ab-8742-ab4154bd98bc", + "id": "f09be9c4-0e12-41f4-ac95-39136112dc63", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -2727,7 +2727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5ff1f29-9a90-4389-83d6-098177bb52e3", + "id": "41f7cf51-a5f1-455a-ac08-099b5004a8c0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2777,7 +2777,7 @@ } }, { - "id": "8342b6c9-e54f-4c23-bbee-fcd769baef37", + "id": "08946e62-d5cb-471b-9a9d-24e082a398d8", "name": "Delete Access Profile(s)", "request": { "name": "Delete Access Profile(s)", @@ -2820,7 +2820,7 @@ }, "response": [ { - "id": "25793d35-647f-4df4-b84c-384f6ac4c91a", + "id": "f8c83432-7654-4257-a98b-307cfb466529", "name": "Returned only if **bestEffortOnly** is **false**, and one or more Access Profiles are in use.", "originalRequest": { "url": { @@ -2877,7 +2877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45d0572e-2df9-4b9a-9f26-c05723184d16", + "id": "618d723b-9927-4707-8ceb-c184a5e1ccd1", "name": "Returned if at least one deletion will be performed.", "originalRequest": { "url": { @@ -2934,7 +2934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4bc6e05-0404-4e98-8716-578a23f97d7f", + "id": "5f68265e-8236-4d11-81bc-f286c1a925a3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2991,7 +2991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "203ad160-b9a5-49c7-b390-c3226eef0dd9", + "id": "7091393c-2e28-4f7f-adf5-e9f0233706fc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -3048,7 +3048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45b4957c-8a24-464a-a3d9-c450bd1bee0c", + "id": "b55b2a1f-bf5c-4271-a2d8-b1bf75f033b3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -3105,7 +3105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9103c78e-6288-4476-8e35-0075079c75ac", + "id": "d0f230d7-c887-43d1-85bc-3536be8e715d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -3162,7 +3162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37138d76-63b3-437a-bbaa-3e33c2c528ee", + "id": "4f90e89c-b898-4e59-a583-d22250d78a98", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -3225,7 +3225,7 @@ } }, { - "id": "7c1ed0cc-6902-407c-b42a-7ea479edcf42", + "id": "2257e3e2-7dc7-49b1-acbc-8b4405d1c221", "name": "List Access Profile's Entitlements", "request": { "name": "List Access Profile's Entitlements", @@ -3313,7 +3313,7 @@ }, "response": [ { - "id": "dd1643cd-348f-4f0e-9fd5-3b7237aeaf31", + "id": "db92a61e-0795-4282-b0d1-debd641657c5", "name": "List of Entitlements", "originalRequest": { "url": { @@ -3404,7 +3404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f277d0bf-4a3a-4719-9697-e29e0dca74d7", + "id": "09803936-4e1b-4dd3-a152-fa7b51a23d9f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -3495,7 +3495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c71bb9b-839e-4ec0-adfd-3af4e2aa37c8", + "id": "5123c5b1-28d3-4cec-b003-80f177e2ca28", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -3586,7 +3586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d0eab07-e70a-48e5-bc3f-415041d4a6f3", + "id": "f9ade73e-fa92-4775-bb37-11e6dea373ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -3677,7 +3677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43b7b23d-b8d0-4ef9-82b8-35965d6c95c8", + "id": "f1e93a39-1a5d-41fc-8721-03b21247f7b2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -3768,7 +3768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abe1e286-e312-4cbb-8cf2-2a655b03fd9d", + "id": "9fea6aa5-4aa9-4624-ae13-6f8b96dd6430", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -3871,7 +3871,7 @@ "description": "Use this API to implement and customize access request approval functionality. \nWith this functionality in place, administrators can delegate qualified users to review users' requests for access or managers' requests to revoke team members' access to applications, entitlements, or roles. \nThis enables more qualified users to review access requests and the others to spend their time on other tasks. \n\nIn IdentityNow, users can request access to applications, entitlements, and roles, and managers can request that team members' access be revoked. \nFor applications and entitlements, administrators can set access profiles to require approval from the access profile owner, the application owner, the source owner, the requesting user's manager, or a governance group for access to be granted or revoked. \nFor roles, administrators can also set roles to allow access requests and require approval from the role owner, the requesting user's manager, or a governance group for access to be granted or revoked. \nIf the administrator designates a governance group as the required approver, any governance group member can approve the requests.\n \nWhen a user submits an access request, IdentityNow sends the first required approver in the queue an email notification, based on the access request configuration's approval and reminder escalation configuration.\n\nIn Approvals in IdentityNow, required approvers can view pending access requests under the Requested tab and approve or deny them, or the approvers can reassign the requests to different reviewers for approval. \nIf the required approver approves the request and is the only reviewer required, IdentityNow grants or revokes access, based on the request. \nIf multiple reviewers are required, IdentityNow sends the request to the next reviewer in the queue, based on the access request configuration's approval reminder and escalation configuration. \nThe required approver can then view any completed access requests under the Reviewed tab. \n\nRefer to [Access Requests](https://documentation.sailpoint.com/saas/help/requests/index.html) for more information about access request approvals.\n", "item": [ { - "id": "fe05357d-f985-4aaa-93af-07908db4b5db", + "id": "b6cc8e10-3a70-42b0-ad18-fa956589b118", "name": "Pending Access Request Approvals List", "request": { "name": "Pending Access Request Approvals List", @@ -3956,7 +3956,7 @@ }, "response": [ { - "id": "8c78a1e5-fd4e-409e-80cf-e2074a7c48d9", + "id": "adacf594-96c5-4990-ad19-d161149bbad3", "name": "List of Pending Approvals.", "originalRequest": { "url": { @@ -4055,7 +4055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cab7b121-3d24-44b0-a5a1-7f9276f00570", + "id": "c735f19c-0e79-4040-8279-70e668de7d52", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -4154,7 +4154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dfa1486-437b-4e01-8ec2-a66bfd4a3f78", + "id": "3c9c6f7e-1510-4ff7-a2dd-4f9f64abab12", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -4253,7 +4253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7a6e0bf-2ebf-46dd-bf1f-e24bab3869f3", + "id": "f1d76194-b279-4052-b562-177942c39eb0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -4352,7 +4352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52cb592f-79aa-47db-b08e-76ecb48e3204", + "id": "4c24d7d1-90b3-4f8e-a779-10c0da5a4aba", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -4451,7 +4451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d5fe55f-ea7f-4e69-9aa6-02537d489dc3", + "id": "35ec7fbf-3cf3-4d14-b1e8-f93f69fb8cb2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4556,7 +4556,7 @@ } }, { - "id": "a1c1ac29-a70d-4348-a3af-fd7190d7d4d7", + "id": "29dd1096-c878-4132-ba1b-b527658954f8", "name": "Completed Access Request Approvals List", "request": { "name": "Completed Access Request Approvals List", @@ -4641,7 +4641,7 @@ }, "response": [ { - "id": "b9555602-f0ec-4fe3-a1c0-435fc42e94da", + "id": "0ed10278-7d33-4b58-8704-faadf36e0125", "name": "List of Completed Approvals.", "originalRequest": { "url": { @@ -4735,12 +4735,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"id12345\",\n \"name\": \"aName\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-07-25T20:22:28.104Z\",\n \"requestCreated\": \"2017-07-11T18:45:35.098Z\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n },\n \"requestedFor\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n }\n ],\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"requestedObject\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"Applied Research Access\",\n \"description\": \"Access to research information, lab results, and schematics\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"reviewerComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": true,\n \"state\": \"APPROVED\",\n \"removeDate\": \"2020-07-11T00:00:00Z\",\n \"removeDateUpdateRequested\": true,\n \"currentRemoveDate\": \"2020-07-11T00:00:00Z\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"f73d16e9-a038-46c5-b217-1246e15fdbdd\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n }\n ]\n }\n },\n \"preApprovalTriggerResult\": {\n \"comment\": \"This request was autoapproved by our automated ETS subscriber\",\n \"decision\": \"APPROVED\",\n \"reviewer\": \"Automated AR Approval\",\n \"date\": \"2022-06-07T19:18:40.748Z\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"requestedAccounts\": \"com\"\n },\n {\n \"id\": \"id12345\",\n \"name\": \"aName\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-07-25T20:22:28.104Z\",\n \"requestCreated\": \"2017-07-11T18:45:35.098Z\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n },\n \"requestedFor\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n }\n ],\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"requestedObject\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"Applied Research Access\",\n \"description\": \"Access to research information, lab results, and schematics\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"reviewerComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": true,\n \"state\": \"APPROVED\",\n \"removeDate\": \"2020-07-11T00:00:00Z\",\n \"removeDateUpdateRequested\": true,\n \"currentRemoveDate\": \"2020-07-11T00:00:00Z\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"f73d16e9-a038-46c5-b217-1246e15fdbdd\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n }\n ]\n }\n },\n \"preApprovalTriggerResult\": {\n \"comment\": \"This request was autoapproved by our automated ETS subscriber\",\n \"decision\": \"APPROVED\",\n \"reviewer\": \"Automated AR Approval\",\n \"date\": \"2022-06-07T19:18:40.748Z\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"requestedAccounts\": \"dolor anim\"\n }\n]", + "body": "[\n {\n \"id\": \"id12345\",\n \"name\": \"aName\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-07-25T20:22:28.104Z\",\n \"requestCreated\": \"2017-07-11T18:45:35.098Z\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n },\n \"requestedFor\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n }\n ],\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"requestedObject\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"Applied Research Access\",\n \"description\": \"Access to research information, lab results, and schematics\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"reviewerComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": true,\n \"state\": \"APPROVED\",\n \"removeDate\": \"2020-07-11T00:00:00Z\",\n \"removeDateUpdateRequested\": true,\n \"currentRemoveDate\": \"2020-07-11T00:00:00Z\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"f73d16e9-a038-46c5-b217-1246e15fdbdd\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n }\n ]\n }\n },\n \"preApprovalTriggerResult\": {\n \"comment\": \"This request was autoapproved by our automated ETS subscriber\",\n \"decision\": \"APPROVED\",\n \"reviewer\": \"Automated AR Approval\",\n \"date\": \"2022-06-07T19:18:40.748Z\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"requestedAccounts\": \"anim commodo nulla nostrud\"\n },\n {\n \"id\": \"id12345\",\n \"name\": \"aName\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-07-25T20:22:28.104Z\",\n \"requestCreated\": \"2017-07-11T18:45:35.098Z\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n },\n \"requestedFor\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n }\n ],\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"requestedObject\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"Applied Research Access\",\n \"description\": \"Access to research information, lab results, and schematics\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"reviewerComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": true,\n \"state\": \"APPROVED\",\n \"removeDate\": \"2020-07-11T00:00:00Z\",\n \"removeDateUpdateRequested\": true,\n \"currentRemoveDate\": \"2020-07-11T00:00:00Z\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"f73d16e9-a038-46c5-b217-1246e15fdbdd\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n }\n ]\n }\n },\n \"preApprovalTriggerResult\": {\n \"comment\": \"This request was autoapproved by our automated ETS subscriber\",\n \"decision\": \"APPROVED\",\n \"reviewer\": \"Automated AR Approval\",\n \"date\": \"2022-06-07T19:18:40.748Z\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"requestedAccounts\": \"nostrud ut \"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "38dac977-3df9-4295-b5d3-ae066b3e968f", + "id": "5d8b4bcf-7528-4cd4-a00e-f435163cd0a4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -4839,7 +4839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dae6ec64-cb08-4a88-9c12-082e8934398b", + "id": "672d795d-3115-4573-9f3f-ab4f62ae9bba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -4938,7 +4938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "169276b2-cf93-4060-a41e-9a9c02ecff90", + "id": "3a4f86ac-eab5-49b2-bacd-02f5729952ad", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -5037,7 +5037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eccccf73-032d-40af-92f4-80e1ff4844e6", + "id": "fc4e64f9-936a-4f7b-981f-5271b9ae3e6a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -5136,7 +5136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12f4f30d-fd9d-425b-a262-ba22b8cc81e6", + "id": "dbef3f7c-377c-439d-ba05-6acc9d6eb131", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5241,7 +5241,7 @@ } }, { - "id": "49e60e25-ab20-400c-9eda-50a5825adb79", + "id": "e21011f8-3ce4-4a16-bf9b-54f943b833d7", "name": "Approves an access request approval.", "request": { "name": "Approves an access request approval.", @@ -5296,7 +5296,7 @@ }, "response": [ { - "id": "c68a380e-4f09-4206-b5ce-d202cc3fcb50", + "id": "de6c2cca-2cfd-4414-b454-9827fc922489", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -5354,7 +5354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ed7add4-7a7c-4660-8045-6b5f2e23ba18", + "id": "4ddae5f6-14ce-4934-9b06-01a698769ea0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5412,7 +5412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60a0905d-ee34-4578-b10e-72946206d3f0", + "id": "e274f4a4-3624-41f1-b934-9f81700bc6bf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -5470,7 +5470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8cf1ef7-707d-424a-91aa-f1c43c9d0712", + "id": "d635a741-e67e-4070-9d73-d3d226ecfe5c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -5528,7 +5528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2906a98d-2641-4b98-b112-d84cfb059f15", + "id": "dd72ac65-2207-4307-a94a-4482cadcf21c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -5586,7 +5586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "406d3a9b-5964-4bb8-9809-32ac0a1ae3e1", + "id": "0457acc3-1d31-480c-882e-c86591cd0865", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -5644,7 +5644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5149988-fe67-4af9-a96e-15bcf5ddce48", + "id": "e1dc29e9-d048-4491-9585-f3f04d18a2f2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5708,7 +5708,7 @@ } }, { - "id": "66c2dca6-e14b-48d2-aa61-5606d80389c5", + "id": "bb859c26-9144-49d5-9e97-299d1aa88805", "name": "Rejects an access request approval.", "request": { "name": "Rejects an access request approval.", @@ -5763,7 +5763,7 @@ }, "response": [ { - "id": "beedb3e3-8489-4062-81a1-e2dd6e06c525", + "id": "23c18317-7dc1-43ce-9fc0-1a119c029a08", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -5821,7 +5821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37d19115-7c9c-44d1-b7a5-6d8f55b66520", + "id": "f3e89523-b5b3-46da-ac24-a88520241a44", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5879,7 +5879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ab93128-b608-47d2-afe2-ac05a6f5feb1", + "id": "7c0fe0bb-8cb6-4b73-8a3e-66733c105ed0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -5937,7 +5937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "649b1dcc-0217-4b66-b3c6-2296dbcb5df7", + "id": "919bd664-4dcc-4489-a998-b483aa645373", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -5995,7 +5995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41eac8e8-a937-4782-a7d7-28fe52df631d", + "id": "8363e811-1652-4bfb-9b8b-0e8f70a90afb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -6053,7 +6053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8be30cd-0f80-4fac-b96d-254d6300423e", + "id": "7524e864-aecc-4778-bc53-463db3308495", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -6111,7 +6111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "620b35b7-0b82-4307-9550-650262527863", + "id": "f67ae1f4-c2a7-408c-9110-754e2e92bda2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6175,7 +6175,7 @@ } }, { - "id": "bd26f494-bb18-46f7-8d80-90e3ef2d339c", + "id": "7cf24ce8-1713-4e7e-8baf-92b55609d549", "name": "Forwards an access request approval.", "request": { "name": "Forwards an access request approval.", @@ -6230,7 +6230,7 @@ }, "response": [ { - "id": "7b3dc958-6c0d-40b0-9478-ff18da1641a0", + "id": "a91c3b64-1e85-43e7-a421-7ddf7be1de9a", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -6288,7 +6288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5e440d8-7993-4958-9b09-d2e38f8fd0b9", + "id": "18a8e04e-858d-4c9d-acbb-4d8588a22e12", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -6346,7 +6346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cf8ac10-3cea-43e6-93ad-874ac249f775", + "id": "f2bedd3b-b6ef-4ba2-8159-e9c1b794b1e4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -6404,7 +6404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70cf61bb-cc79-4db9-9b7a-7e5690dd596b", + "id": "2b997f14-4465-4bb6-9621-bad4c809b40d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -6462,7 +6462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b06b468f-3671-4e4b-a232-c05b354782cf", + "id": "8db4072f-b920-4b85-a1b5-03dad81b33b0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -6520,7 +6520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ef3d3b4-4bfe-49d0-aafc-3736fd4d042f", + "id": "86f768d4-1be2-44f9-9528-bd956443a48c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -6578,7 +6578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba092c0d-f1df-4801-8bb0-8760e047b31b", + "id": "b52b8946-e523-403d-ac7f-ee16614d82f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6642,7 +6642,7 @@ } }, { - "id": "b8cdb19c-c636-4a9e-b6ca-16a7f90de492", + "id": "49f058a1-79d8-43d3-93e8-0cd1655c6933", "name": "Get the number of access-requests-approvals", "request": { "name": "Get the number of access-requests-approvals", @@ -6691,7 +6691,7 @@ }, "response": [ { - "id": "a609c298-3f12-4201-933a-6a29bd60518c", + "id": "a8c597fa-6f8f-4d39-9f94-83895b9b34ce", "name": "Number of pending, approved, rejected access request approvals.", "originalRequest": { "url": { @@ -6754,7 +6754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c26f27c-89fe-4608-8330-fbbfffdb9d12", + "id": "d1085e55-7659-42b7-83a5-c35c48bd3610", "name": "Client Error - Returned if the query parameter is invalid.", "originalRequest": { "url": { @@ -6817,7 +6817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80deb544-c5e9-4b8b-b898-d63294e732c3", + "id": "a7ee4783-38f9-473f-83a3-8b5c98013f17", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -6880,7 +6880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2000976d-9846-4a8f-88d4-999cfeb5be2a", + "id": "4a4b77b8-91b5-4505-964b-b71c8c762f1a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -6943,7 +6943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c51a7464-2b9b-412a-a06a-fc7f99987fb4", + "id": "1e48b4b1-b27c-4179-9556-a47bbb2fc2a6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -7006,7 +7006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "776e492a-a259-486c-8093-a6a5a15a80f5", + "id": "8119808b-7555-48f7-8242-dc54fc82ccf8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7081,7 +7081,7 @@ "description": "Use this API to implement and customize access request functionality. \nWith this functionality in place, users can request access to applications, entitlements, or roles, and managers can request that team members' access be revoked.\nThis allows users to get access to the tools they need quickly and securely, and it allows managers to take away access to those tools. \n\nIdentityNow's Access Request service allows end users to request access that requires approval before it can be granted to users and enables qualified users to review those requests and approve or deny them.\n\nIn the Request Center in IdentityNow, users can view available applications, roles, and entitlements and request access to them. \nIf the requested tools requires approval, the requests appear as 'Pending' under the My Requests tab until the required approver approves, rejects, or cancels them. \n\nUsers can use My Requests to track and/or cancel the requests.\n\nIn My Team on the IdentityNow Home, managers can submit requests to revoke their team members' access. \nThey can use the My Requests tab under Request Center to track and/or cancel the requests.\n\nRefer to [Requesting Access](https://documentation.sailpoint.com/saas/user-help/requests/requesting_access.html) for more information about access requests.\n", "item": [ { - "id": "24bf64b9-cccd-45ea-a37d-fe8d00e8aaa0", + "id": "ac322887-efea-4e6f-a7a2-3b93dccc1d85", "name": "Submit an Access Request", "request": { "name": "Submit an Access Request", @@ -7123,7 +7123,7 @@ }, "response": [ { - "id": "6e6535dd-68a3-41c3-828b-7f92d6c44138", + "id": "2ea83541-a0ff-4672-8b26-6ad1b1a1eadc", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7179,7 +7179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e64aa2a-26a8-4f30-97ac-2bd5eea599a1", + "id": "6121922a-81e8-40ba-9f42-7c4e6e6c1a7e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7235,7 +7235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b797c33-1822-4e5e-b62f-a020fb03774e", + "id": "ecba3a84-47a1-4b0b-bb1a-a0faaa86f4fe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -7291,7 +7291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76514f1d-22d0-401f-ab56-e733eaa2b888", + "id": "1a9b3590-25d8-40b2-8d3a-8706a28b69ab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -7347,7 +7347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09492544-ff18-4cf0-bbb7-2c40be2475c3", + "id": "08c81cc4-e3d8-4869-937b-9b03e3034c52", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -7403,7 +7403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eea876a7-95a1-45f3-969f-4310b9408297", + "id": "5e226655-4a42-488c-9c50-e9d701ad8f3b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7465,7 +7465,7 @@ } }, { - "id": "22f0b077-5d1a-4b3e-b350-fc1e6e1ab64a", + "id": "f2334d0e-ab8f-454a-947f-bca6dc0a7eff", "name": "Cancel Access Request", "request": { "name": "Cancel Access Request", @@ -7508,7 +7508,7 @@ }, "response": [ { - "id": "fef4f3d0-c007-4118-a8ba-fb7c777823af", + "id": "73bd1a14-69f6-4d43-a878-c4cb0a5f20ff", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7565,7 +7565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1418d5f6-f444-4086-83c5-73d975ba6c2f", + "id": "0766c873-2a36-44e9-bb00-790e8299e94c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7622,7 +7622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cabc24a-70c1-4527-ab44-88396a1575e9", + "id": "c566ab28-e442-48c0-90fd-6fef021c4861", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -7679,7 +7679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a56013e7-6565-4e6a-b7a8-dcb7e4bb8759", + "id": "9daa2773-797d-48fd-8497-777208e1bafa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -7736,7 +7736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47aeb16d-9052-4109-b54e-3637bc50f889", + "id": "5b726181-8bc7-4c3e-8270-7717675b7705", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -7793,7 +7793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "633a5a79-f894-4823-83ed-b50abc7f8ca0", + "id": "97a73c9b-a5e3-4dab-b818-0038656365fb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -7850,7 +7850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1620dda-8cba-4345-9d63-3763772b4b1a", + "id": "75e9065d-ff6a-43e3-9aca-62e0ebcfda4c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7913,7 +7913,7 @@ } }, { - "id": "fa91f73b-1e41-422b-9bd7-eb84b7882e8c", + "id": "c13a9999-6d62-4567-b628-46a85bff14b1", "name": "Get Access Request Configuration", "request": { "name": "Get Access Request Configuration", @@ -7942,7 +7942,7 @@ }, "response": [ { - "id": "f0138d4d-af36-4535-bc47-b5a1298b25c4", + "id": "9b83a0c1-0c65-49f6-a3ed-ebc8b39e8406", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -7985,7 +7985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06822d46-0053-40a2-8f81-4cec5681ab27", + "id": "02855938-72af-4d3d-b6fe-9975ea0c5fcf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8028,7 +8028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cd19a6d-7dfe-4e2f-8359-7a01a9882d8d", + "id": "74450a80-e738-46b9-9516-b872be5c4c93", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -8071,7 +8071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "115af6f7-c31b-4ea5-9272-26c6e9293e14", + "id": "c25660da-e2f6-426c-8a92-0fa8d001637b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -8114,7 +8114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45482c72-33d0-4b42-8eaf-5d29858ccf24", + "id": "8603abbf-0792-456b-8ac8-fe9b56170ede", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -8157,7 +8157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a95dc5f-60fa-4869-8ab6-f21cf4ab1dbf", + "id": "f51c0f25-6aa7-4601-a8ee-b47fbdeafeec", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8206,7 +8206,7 @@ } }, { - "id": "f37cd45c-4be3-4d07-8ce8-b1e74bf4aca4", + "id": "9ff98390-7b32-4cd0-ae09-9d9bfa55270f", "name": "Update Access Request Configuration", "request": { "name": "Update Access Request Configuration", @@ -8248,7 +8248,7 @@ }, "response": [ { - "id": "b2119b41-0579-4228-b5e9-1a8cd7f74eb3", + "id": "5c920d17-5f31-4756-91a7-f12aa12ee1c2", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -8304,7 +8304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95a55e52-565d-4724-9c6f-8cf53266ec81", + "id": "5a987ab2-710c-43a8-b7fc-1481a2b520b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8360,7 +8360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1689b721-bd6b-4d6c-a7f4-9c9f2db7e2e3", + "id": "0befdb86-8c26-4e44-a620-aadab5c8caea", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -8416,7 +8416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b84b4a1-a328-45c4-9e4d-d8e2bd738c1a", + "id": "829861c2-dafb-44a3-8be0-9f7ee865fa90", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -8472,7 +8472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "664cc47f-3b71-4784-9cdc-c29d062dbc4b", + "id": "ef660140-aa36-4855-8093-84b2c6c17cf1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -8528,7 +8528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6690f5a4-09f4-49f9-bf81-8a6a35394240", + "id": "f7a57a06-5d6f-43b2-8394-8fcc271b605b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8590,7 +8590,7 @@ } }, { - "id": "482612de-80d6-4adc-b8d0-475b3da2a842", + "id": "ad6bcd53-ed9b-429f-b49e-85c0fa376641", "name": "Access Request Status", "request": { "name": "Access Request Status", @@ -8701,7 +8701,7 @@ }, "response": [ { - "id": "902a4f03-3654-4e1e-8bd7-6fb4c6f23a11", + "id": "33ca7c83-cfb0-4e5c-8d1f-7d8b43d391d5", "name": "List of requested item status.", "originalRequest": { "url": { @@ -8826,7 +8826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e0ba3ef-7e73-422d-9a21-decdbe5f716b", + "id": "e1257575-b5ad-4bf0-b40c-351415a3cfc2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8951,7 +8951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6ca01a5-4131-4d33-96d6-57810d9f1f34", + "id": "017f6361-1141-493b-b541-31703de219c7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -9076,7 +9076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0d09635-5bd1-4bd8-b712-10272964c3ac", + "id": "d322acfb-3629-46be-8953-3c46510b0130", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -9201,7 +9201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "000f93ee-6925-4906-82bf-793d8b40b204", + "id": "3f7d2059-5ecd-4ddc-85f5-2f32246a9d08", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -9326,7 +9326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7589a647-0aee-4e61-aef3-0464c8e251c7", + "id": "60067eaa-0773-421f-a98d-bb25d84dea88", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -9463,7 +9463,7 @@ "description": "Use this API to implement account usage insight functionality.\nWith this functionality in place, administrators can gather information and insights about how their tenants' source accounts are being used.\nThis allows organizations to get the information they need to start optimizing and securing source account usage.\n", "item": [ { - "id": "e96f753d-4355-4b47-be47-aa2f13b75c87", + "id": "480dfe4b-b18b-47f1-98dc-c133658857a7", "name": "Returns account usage insights", "request": { "name": "Returns account usage insights", @@ -9542,7 +9542,7 @@ }, "response": [ { - "id": "59f4e1d2-dcb8-49c6-973f-28015f9fcc5a", + "id": "c69df7b3-744c-4f6a-9d3d-46363ddd85a3", "name": "Summary of account usage insights for past 12 months.", "originalRequest": { "url": { @@ -9624,7 +9624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b008371f-799f-4deb-b705-fdec13325007", + "id": "8ad83257-5b48-4286-80b5-9879696c25e6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9706,7 +9706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf9b1289-c130-46ff-9450-94ce12ac45d7", + "id": "9c07f6d6-77b4-4c41-878d-62cb178349f2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -9788,7 +9788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28be5015-0dbd-4079-acf4-ea7930a3b4c0", + "id": "e0fbb5fd-f858-45a6-ab0c-d4100f540182", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -9870,7 +9870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96538725-d8e1-4672-9b94-3def39604b24", + "id": "5be87f92-9263-410b-8227-801a2efc8b81", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -9952,7 +9952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1a7333d-0105-4202-95b4-95cb5fe9aec5", + "id": "ecfefe91-e7d6-4b4c-b3a2-34f9c1145a4c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10046,7 +10046,7 @@ "description": "Use this API to implement and customize account functionality.\nWith this functionality in place, administrators can manage users' access across sources in IdentityNow. \n\nIn IdentityNow, an account refers to a user's account on a supported source.\nThis typically includes a unique identifier for the user, a unique password, a set of permissions associated with the source and a set of attributes. IdentityNow loads accounts through the creation of sources in IdentityNow.\n\nAdministrators can correlate users' identities with the users' accounts on the different sources they use. \nThis allows IdentityNow to govern the access of identities and all their correlated accounts securely and cohesively. \n\nTo view the accounts on a source and their correlated identities, administrators can use the Connections drop-down menu, select Sources, select the relevant source, and select its Account tab. \n\nTo view and edit source account statuses for an identity in IdentityNow, administrators can use the Identities drop-down menu, select Identity List, select the relevant identity, and select its Accounts tab. \nAdministrators can toggle an account's Actions to aggregate the account, enable/disable it, unlock it, or remove it from the identity. \n\nAccounts can have the following statuses: \n\n- Enabled: The account is enabled. The user can access it.\n\n- Disabled: The account is disabled, and the user cannot access it, but the identity is not disabled in IdentityNow. This can occur when an administrator disables the account or when the user's lifecycle state changes. \n\n- Locked: The account is locked. This may occur when someone has entered an incorrect password for the account too many times.\n\n- Pending: The account is currently updating. This status typically lasts seconds. \n\nAdministrators can select the source account to view its attributes, entitlements, and the last time the account's password was changed.\n\nRefer to [Managing User Accounts](https://documentation.sailpoint.com/saas/help/common/users/user_access.html#managing-user-accounts) for more information about accounts.\n", "item": [ { - "id": "593aae10-d9ed-495e-b82a-3185ecb93f83", + "id": "cbe7b072-b387-4269-830f-eb768ad4d006", "name": "Accounts List", "request": { "name": "Accounts List", @@ -10121,7 +10121,7 @@ }, "response": [ { - "id": "31584e4b-ff2a-4501-b1fe-03523c6f5d9c", + "id": "61343956-3c32-4f85-83b1-1829bb5455b8", "name": "List of account objects", "originalRequest": { "url": { @@ -10210,7 +10210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8e9edf8-c1d3-4987-89d0-2d3ebf6f53a9", + "id": "2581bf81-a607-4d69-9ab3-078b34382377", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10299,7 +10299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbeee8c7-d697-442f-bd6a-2ab5f294941c", + "id": "fa1b3cbf-30d0-4d6c-8326-ede27c63e14b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10388,7 +10388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdbef9b6-48db-451c-9cb5-8a681fec6ec3", + "id": "aaa95d55-deda-4481-9073-08a4e88c9146", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10477,7 +10477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f743e94-f72d-40bf-b6a3-67c3a510ffcf", + "id": "267b2f69-9630-492f-ba59-576742c93451", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10566,7 +10566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba5ec66d-8734-40e6-9945-91e10cacff87", + "id": "1f6603aa-23c8-4fc0-b2eb-7b777a5c05e2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10661,7 +10661,7 @@ } }, { - "id": "3c177c26-2740-46f1-b020-e9240c97e1a6", + "id": "e286449c-b204-441c-afae-a5cec72b2348", "name": "Create Account", "request": { "name": "Create Account", @@ -10703,7 +10703,7 @@ }, "response": [ { - "id": "20d7dab2-aff3-4aaa-b550-ade83190df87", + "id": "5271fc43-15aa-4acf-b0ef-214760098441", "name": "Async task details", "originalRequest": { "url": { @@ -10759,7 +10759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d9f202c-fb3b-40fc-b568-3bed04dcf3e0", + "id": "0fb81de1-c40c-4596-809e-af3c12ac192e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10815,7 +10815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fad5c288-f6fb-45b8-aeea-a50ca992165d", + "id": "f65e7ca5-8a69-4810-aef4-284d57b48685", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10871,7 +10871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76aaca25-a10a-4885-8ba3-f327e8b5e08a", + "id": "d98a96bc-9e8b-4b20-98f8-31b72464bc73", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10927,7 +10927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b94f4399-14e3-43aa-a949-0584233c0d85", + "id": "e1a911ab-4dd0-437b-91b5-0ae1ba0cbfbe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10983,7 +10983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d3b3425-24c4-4a81-b01d-f9f21d3e01b7", + "id": "d44b03a3-7de0-4c18-a7b7-41fd48d9e1eb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11045,7 +11045,7 @@ } }, { - "id": "3dea2e1f-5dae-453a-9e2a-63bfa3225ad5", + "id": "1f9f5e1c-ebfc-49df-8285-3dd4704a1832", "name": "Account Details", "request": { "name": "Account Details", @@ -11086,7 +11086,7 @@ }, "response": [ { - "id": "152c72b1-c74f-4403-a516-d373983dffcf", + "id": "087542b5-70d2-4e79-b804-4595e9c0278a", "name": "Account object.", "originalRequest": { "url": { @@ -11130,7 +11130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e58a9365-2e26-466c-a47d-07b580de0ebb", + "id": "0119f671-e6c3-4599-bf3d-71ca100515e7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11174,7 +11174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c2a6b63-be7c-4789-8b94-b3ce8a303481", + "id": "55473b25-6750-448e-8ad9-31cc89a01a07", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11218,7 +11218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82742607-7701-4dc0-8147-c38d3022f322", + "id": "ad19af8e-b943-430c-b36a-33255281591f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11262,7 +11262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03c1dcf6-2b56-45bd-a8fe-545ed64758a2", + "id": "67601b9e-59c0-4f49-883b-50ce070a2506", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -11306,7 +11306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cd0873d-1036-43c7-8193-d41a0e921719", + "id": "1f14819f-cb2e-4e21-960e-1e130d2a662b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11350,7 +11350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e075290-454e-4e78-9b4a-94b6f382fd71", + "id": "3dc1636a-7e3f-4022-afb1-053d15c27a82", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11400,7 +11400,7 @@ } }, { - "id": "662018c0-19e3-46f3-be8f-aacdc3e478bb", + "id": "ae050479-2c15-4c4d-adc7-25c8813229c0", "name": "Update Account", "request": { "name": "Update Account", @@ -11454,7 +11454,7 @@ }, "response": [ { - "id": "859827d2-75e4-4e16-9e84-a541283361f6", + "id": "d2412ab9-c1f0-4ea2-b28c-816c4452f285", "name": "Accepted. Update request accepted and is in progress.", "originalRequest": { "url": { @@ -11511,7 +11511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dca3702e-1640-4645-83dc-82bed067fa53", + "id": "0bc7b422-eeef-498a-97b8-4bdfa1260edc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11568,7 +11568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0485f7f-69d5-4e62-8430-33931a593bd3", + "id": "ff2261b3-4730-483a-8152-dc446b39a517", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11625,7 +11625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62a716dc-a403-4553-b848-51298706a041", + "id": "bf717aea-8b13-4002-9774-c6be1b9786d4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11682,7 +11682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a106ebcd-daf5-4ef8-b102-2242b16b160c", + "id": "2b88e833-f3ae-48ce-b789-fa67ded7d74b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -11739,7 +11739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90614d97-b54f-492d-98c6-cee2597a8559", + "id": "0e7cb302-b837-420b-9ffe-dc5aa78d802d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11796,7 +11796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78451be0-5add-4f00-aaa3-55546efa67ec", + "id": "cc40039f-71a4-4024-8093-83581cb6e2f6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11859,7 +11859,7 @@ } }, { - "id": "8f4a7c8d-6554-4fcb-aa08-922ad1706f5b", + "id": "58dd586d-9c2a-4836-be55-468fbfccee82", "name": "Update Account", "request": { "name": "Update Account", @@ -11913,7 +11913,7 @@ }, "response": [ { - "id": "7882f354-bc1c-495e-b296-5859619edf56", + "id": "da82d9a7-5b78-4e93-a1ba-998247b05002", "name": "Async task details.", "originalRequest": { "url": { @@ -11970,7 +11970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b284224c-532f-4f36-854b-3c7f8583b025", + "id": "8854195c-1a53-47f8-8f70-35f3497f6cab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12027,7 +12027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8375a55-c588-46bf-b69f-d10acd908f88", + "id": "651b5fd8-aec9-4bb3-9f74-620dbfa9b639", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12084,7 +12084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdf6387e-e5a8-4b12-a41a-5f726384f45c", + "id": "bdeb1f52-89f6-4971-98d3-09f5cdb4e803", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12141,7 +12141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c58a6109-c0d0-424d-9936-393a6f54958f", + "id": "31d5b980-afdf-47e3-8c1e-babb750c51f2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -12198,7 +12198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a4c54fa-98d4-4895-b50d-15d38f232c83", + "id": "08575dcd-543f-45dd-ab3e-ecb5c4c24394", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12255,7 +12255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35be99e7-529f-4813-a486-8b222087a6b1", + "id": "e1987266-119e-43ef-8dc4-759e414ee08a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12318,7 +12318,7 @@ } }, { - "id": "577726c5-d62f-4100-b2fa-fecd1d004b21", + "id": "4227a076-336d-407f-ae2b-5da9f5165fd9", "name": "Delete Account", "request": { "name": "Delete Account", @@ -12359,7 +12359,7 @@ }, "response": [ { - "id": "f4c0e971-c7a0-41fd-88eb-719c57d348bc", + "id": "b6f6ce12-a309-46c0-ab03-985bede1a06d", "name": "Async task details.", "originalRequest": { "url": { @@ -12403,7 +12403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b38edbc-c03f-44fc-9f82-6c38ac674357", + "id": "89bfc56f-276c-4275-adb4-d0f77c87a3c7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12447,7 +12447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee7d31e6-bdc9-420d-b684-95ba8c91de25", + "id": "e594c838-d2d4-4dce-8bcd-dddcd8ead650", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12491,7 +12491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be826bd6-0eaf-41d0-b1fe-ed1dd73a3e77", + "id": "37243070-d8ae-4094-9acf-cdf46eae3d1a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12535,7 +12535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6cc9b5b-fd46-4158-b6cf-cb969daadc81", + "id": "0080f894-862a-4447-b79f-a2ff9749b645", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -12579,7 +12579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90cd4a22-b29b-4985-9b14-bfc86c2fde12", + "id": "d40c5f20-c3d6-4afe-9b69-f8b72e2f655c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12623,7 +12623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f78cae54-dbd8-4e2e-a16b-91e52b0cde09", + "id": "faaedc3d-eb50-4870-8a28-566d1afef9c0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12673,7 +12673,7 @@ } }, { - "id": "9ebb96ee-5842-4c15-9c6f-8887716502d5", + "id": "afbde465-c730-40f5-b9a6-48ae3223db24", "name": "Account Entitlements", "request": { "name": "Account Entitlements", @@ -12743,7 +12743,7 @@ }, "response": [ { - "id": "bded1bf3-a71b-446e-84df-ba84e1bd8123", + "id": "005c4c07-ffe6-42c4-ab2f-b37cec3e8ce0", "name": "An array of account entitlements", "originalRequest": { "url": { @@ -12816,7 +12816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10da5111-1f53-44ea-b425-b25f921a7aaf", + "id": "6412b04a-ed32-4b8a-8648-213e927ad910", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12889,7 +12889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "761a153b-fdee-421b-87cd-e215721bf727", + "id": "53391b65-bb31-4f4a-afa1-2324d7109331", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12962,7 +12962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79d77c81-885b-40d7-9b2c-127205add866", + "id": "6935db17-5170-40ec-96c7-a36e1187bba8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13035,7 +13035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c2c8534-b315-4a2a-8008-22b164048a46", + "id": "ced498a4-dcec-41b1-b775-a07f85a7a387", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13108,7 +13108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "706d5d30-88b1-4022-a723-29f9be49b34a", + "id": "dec13fd2-23c0-4f5d-b632-f242f5bf912a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13181,7 +13181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "546ef560-a4cb-47f4-bae8-3ca08c031f75", + "id": "9553e0a3-2af2-406b-80c4-4638d33654a2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13260,7 +13260,7 @@ } }, { - "id": "08c69626-2dc6-4209-9ae1-9d90c8b22874", + "id": "49225611-f7ad-42a8-a29c-24f350169921", "name": "Reload Account", "request": { "name": "Reload Account", @@ -13302,7 +13302,7 @@ }, "response": [ { - "id": "c098a88a-f745-43b4-bd53-28914804a1ff", + "id": "f94d0119-dc56-4a9d-a0a9-e844b6675e0c", "name": "Async task details", "originalRequest": { "url": { @@ -13347,7 +13347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f85ccaf-03c4-42ca-a28f-e6ea43d52939", + "id": "d8e845f2-33fb-40f5-acfb-f74dc56ebe41", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13392,7 +13392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "941d1e0a-c3ff-4db9-9e60-cbf42b23ddfc", + "id": "f52485e8-971f-4ffa-a771-947bc4a6e0cd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13437,7 +13437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8aef66c9-8107-464f-9016-d1e08706cc55", + "id": "0c0b286a-4b00-4cd2-8d42-431940179c9c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13482,7 +13482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1375a8c-cb17-4393-bbb3-faa195f960a6", + "id": "cbfd5821-7bdb-4587-95bf-de32906b6d30", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13527,7 +13527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63ea32f6-ba7b-4037-97dc-183e68f8349a", + "id": "bb641bb3-67df-48f0-8cc9-521579b15b49", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13572,7 +13572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "491d2067-8220-4f63-8fc2-d76da41acede", + "id": "4ff340d5-9158-4b4e-b20f-6d20331f3e1b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13623,7 +13623,7 @@ } }, { - "id": "d04d604d-6c2b-4133-bbc5-e9fec57793d7", + "id": "4aa10db3-c597-4916-ae6f-a814d5a3b4ef", "name": "Enable Account", "request": { "name": "Enable Account", @@ -13678,7 +13678,7 @@ }, "response": [ { - "id": "2c803e72-4e34-4811-b78f-9463e8c87dd6", + "id": "35adbc40-4db6-42d2-9392-9295c13ba604", "name": "Async task details", "originalRequest": { "url": { @@ -13736,7 +13736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9facf1e-ec7b-4529-91a3-01c25fdb446e", + "id": "9a6f45a1-e978-4719-8ae2-eef323b32ca9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13794,7 +13794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de36a12e-a33b-4c0c-b2f1-9b9d8e4f2021", + "id": "0bda7de8-007a-491a-8d00-4c15520fee74", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13852,7 +13852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "193be120-67a1-42f5-a67a-000a97d4a00c", + "id": "9828fe5a-d3d9-4c8a-ad8c-e4b8378bf2ba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13910,7 +13910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da03522d-5067-4c13-8c69-0856feb68e57", + "id": "187dbb04-32fe-4de3-9b8a-bf426d4270ff", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13968,7 +13968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b24c0ad3-2c0a-4a83-8122-1f4f429ee996", + "id": "670135ff-e263-4ad6-a8c0-3345913430e1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -14026,7 +14026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "714dc2f1-77b4-4499-b448-429ac8915e66", + "id": "c02a598c-80e5-41f3-a9b5-2b4505295ba5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14090,7 +14090,7 @@ } }, { - "id": "fdc19893-98f1-45f6-ba2c-3eb1aa4d0b7d", + "id": "b5690177-cf98-4625-be6d-2d1b3e51573f", "name": "Disable Account", "request": { "name": "Disable Account", @@ -14145,7 +14145,7 @@ }, "response": [ { - "id": "e4272410-5a73-4977-86aa-91005d586b50", + "id": "8db4a5ac-0a9e-47d7-960f-fe907d235bb1", "name": "Async task details", "originalRequest": { "url": { @@ -14203,7 +14203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33dc69d7-0e9a-4720-bbc0-03ffd872f53b", + "id": "e0981e0e-956f-4bb3-80b3-03edcf6f75e4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14261,7 +14261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08401c73-4b4f-4814-8f7a-7924a2244707", + "id": "e6b276fe-b5fb-4f7b-9dbd-fc1883251657", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14319,7 +14319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42e5d13a-6ada-4acd-bdcb-6df528883c64", + "id": "296d4faa-1593-48e9-a49e-654b3fbbd4f1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -14377,7 +14377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07fd950c-31f7-4fe4-b253-304b7cf1d6b3", + "id": "9b473cb8-a043-4b6e-aeca-0d86060bd351", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -14435,7 +14435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d77bebd8-8b2b-4d78-900f-787368c9fca3", + "id": "ab34b968-2d42-4b9b-a5bc-9d37085d15fe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -14493,7 +14493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "873e7039-c0a8-4a00-8f68-5d2439b6907a", + "id": "60561a49-c119-4de0-a153-818ef5d7b554", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14557,7 +14557,7 @@ } }, { - "id": "672f6c67-d913-49ca-a47e-1c354feae4fc", + "id": "82903d04-7242-4e27-b01b-6e80cdabe146", "name": "Unlock Account", "request": { "name": "Unlock Account", @@ -14612,7 +14612,7 @@ }, "response": [ { - "id": "08f525e0-17e9-4949-ae58-94e0bc37b3a3", + "id": "de22cc17-03f4-461f-a5a1-b68623c36498", "name": "Async task details", "originalRequest": { "url": { @@ -14670,7 +14670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a9bc6b0-e2d5-40cc-88ea-7541164d83fe", + "id": "14ca8d77-5d58-4767-b7ba-662ffe332232", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14728,7 +14728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d59b18e2-2ca8-4870-af4d-0142ed2f2603", + "id": "05b3b5dc-95a7-42d1-87dd-b3543b642842", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14786,7 +14786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbc767dc-62fe-4f96-b159-a6e900b5131a", + "id": "8896eb20-5957-4d3d-94dc-57c4de5419c4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -14844,7 +14844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f450225-fec4-45c9-8d8e-a7389bb5ce1b", + "id": "c7f64944-4ac0-447c-9a01-9a64ddf81e34", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -14902,7 +14902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e89e7157-4627-4d9c-af02-e524395511c5", + "id": "b8da082c-bb99-4d59-8e4c-b38784f7089a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -14960,7 +14960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44ad8a51-a37a-4519-a256-80697faf9ae0", + "id": "b7703ec8-b409-4784-8da3-0fdf8c66dc0e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15030,7 +15030,7 @@ "description": "Use this API to implement account activity tracking functionality.\nWith this functionality in place, users can track source account activity in IdentityNow, which greatly improves traceability in the system. \n\nAn account activity refers to a log of each action performed on a source account. This is useful for auditing the changes performed on an account throughout its life. \nIn IdentityNow's Search, users can search for account activities and select the activity's row to get an overview of the activity's account action and view its progress, its involved sources, and its most basic metadata, such as the identity requesting the option and the recipient. \n\nAccount activity includes most actions IdentityNow completes on source accounts. Users can search in IdentityNow for the following account action types: \n\n- Access Request: These include any access requests the source account is involved in. \n\n- Account Attribute Updates: These include updates to a single attribute on an account on a source. \n\n- Account State Update: These include locking or unlocking actions on an account on a source. \n\n- Certification: These include actions removing an entitlement from an account on a source as a result of the entitlement's revocation during a certification.\n\n- Cloud Automated `Lifecyclestate`: These include automated lifecycle state changes that result in a source account's correlated identity being assigned to a different lifecycle state. \nIdentityNow replaces the `Lifecyclestate` variable with the name of the lifecycle state it has moved the account's identity to. \n\n- Identity Attribute Update: These include updates to a source account's correlated identity attributes as the result of a provisioning action. \nWhen you update an identity attribute that also updates an identity's lifecycle state, the cloud automated `Lifecyclestate` event also displays.\nAccount Activity does not include attribute updates that occur as a result of aggregation.\n\n- Identity Refresh: These include correlated identity refreshes that occur for an account on a source whenever the account's correlated identity profile gets a new role or updates. \nThese also include refreshes that occur whenever IdentityNow assigns an application to the account's correlated identity based on the application's being assigned to All Users From Source or Specific Users From Source. \n\n- Lifecycle State Refresh: These include the actions that took place when a lifecycle state changed. This event only occurs after a cloud automated `Lifecyclestate` change or a lifecycle state change. \n\n- Lifecycle State Change: These include the account activities that result from an identity's manual assignment to a null lifecycle state.\n\n- Password Change: These include password changes on sources.\n\nRefer to [Account Activity](https://documentation.sailpoint.com/saas/help/search/index.html#account-activity) for more information about account activities.\n", "item": [ { - "id": "34fdeb8d-2ff3-4b11-8b72-79fd4cce85f2", + "id": "b0e53920-06ab-4fc0-a0d1-f99bc2167744", "name": "List Account Activities", "request": { "name": "List Account Activities", @@ -15132,7 +15132,7 @@ }, "response": [ { - "id": "e1a244ef-c014-420d-b9df-aafe02066617", + "id": "575d0e6d-1428-46eb-90ff-29450fae0a10", "name": "List of account activities", "originalRequest": { "url": { @@ -15248,7 +15248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd0bc3d9-ce2c-48d5-9c74-2eac4f8a8e43", + "id": "ac5d229c-dcad-4f4e-b66f-a18c6eda28c1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15364,7 +15364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa34bb02-b726-493b-9084-96bc8b935799", + "id": "cae3af63-be1d-45ba-a583-78cc807ea311", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15480,7 +15480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ae04d29-bc75-4543-8abf-d5f713bc50d5", + "id": "b29c8d1a-a8c0-4772-9675-0e9423f9726c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15596,7 +15596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef6e0cee-9ea3-461f-b5a3-5e50bf6a96f3", + "id": "47579213-74e4-41b2-9f94-efcf511e9812", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15712,7 +15712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19524811-2b73-42ba-ae8b-40392020636c", + "id": "d66ae978-5dc6-480f-ac98-c57effed9347", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15834,7 +15834,7 @@ } }, { - "id": "1a50cf5d-33c2-47d0-8d6c-8d8d8a10b27f", + "id": "abd9214c-131f-4b2b-86d9-316b5b7c24cc", "name": "Get an Account Activity", "request": { "name": "Get an Account Activity", @@ -15875,7 +15875,7 @@ }, "response": [ { - "id": "38fd2516-c051-468a-b2ff-1afdf746ef6d", + "id": "f37946ad-7056-4048-a77a-9356c456478e", "name": "An account activity object", "originalRequest": { "url": { @@ -15919,7 +15919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2fa812c-b4a7-4b5b-8474-f7fef938a4c1", + "id": "bf7047d3-e921-45bb-9a2d-b66fbd17ab96", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15963,7 +15963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bdc1dc6-6561-45d6-b42d-ec73d7fdd056", + "id": "367b8f38-73c6-48b8-a71e-9cd25c69fb4c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16007,7 +16007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f2df490-6ad5-41b7-874c-57553b89fdfe", + "id": "bdc0dcf1-9743-44c8-aa55-23232f94bf41", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16051,7 +16051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c9a049b-8acb-49ee-bbe4-01a283ecfd44", + "id": "d9bb67c0-7e39-4d26-9500-037873afdfb5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16095,7 +16095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8d6cf5d-652d-4936-9282-6e66330ef897", + "id": "4a473e01-8d9d-4d37-81bb-1da2d26d4b76", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16139,7 +16139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac3e3eaa-6038-4335-bced-fbb2e2c7f55d", + "id": "57977f21-3cbd-407b-83c0-c07188d00059", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16195,7 +16195,7 @@ "description": "Authentication service user retrieval and user capabilities update", "item": [ { - "id": "cbfff794-cb82-4816-ba00-96ce6115a4c4", + "id": "9df6d8c1-e94e-4453-bc79-958d60338ee2", "name": "Auth User Details", "request": { "name": "Auth User Details", @@ -16236,7 +16236,7 @@ }, "response": [ { - "id": "eec26a17-3f21-4156-9570-a7fee2a74b09", + "id": "758d339b-3272-4cf0-a2de-2c78fac8760a", "name": "The specified user's authentication system details.", "originalRequest": { "url": { @@ -16280,7 +16280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24492b20-1c5a-4ec0-874e-6e3c2fce3b08", + "id": "3a30ad4d-7738-45e1-86be-8fc5e78efebd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16324,7 +16324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "790f975d-fe0e-45dc-9bcf-3453fd6b3215", + "id": "9107a22f-5e56-4835-a82f-51bfb40b3595", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16368,7 +16368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6e7bdea-16fa-4369-82f6-a1e5c354dc7d", + "id": "9d5fcee5-3327-4c23-a69c-efccb79ffc24", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16412,7 +16412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccdca79e-ded9-4bd0-83eb-aeb2e05a519b", + "id": "a5fd2e23-69aa-4b0c-af70-7c14dc17dc9b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16456,7 +16456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1a424da-d4ee-4c1d-bcd1-01d522dd0b7e", + "id": "a670be61-ca5d-4e6e-a15b-2b39cb70ddb7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16500,7 +16500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f9ccfde-d8f9-43b4-b45a-f206ce06e1a3", + "id": "a5e8fdaa-1bba-463e-99f1-2520626c5b49", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16550,7 +16550,7 @@ } }, { - "id": "61024385-0fe3-49dd-81ab-c259a9a71c1c", + "id": "0b377f34-404d-4798-8a57-dfdf146d8698", "name": "Auth User Update", "request": { "name": "Auth User Update", @@ -16604,7 +16604,7 @@ }, "response": [ { - "id": "510d8357-f571-42b6-999e-377d390c1417", + "id": "b4492355-a194-49cc-a637-024f8072b760", "name": "Auth user updated.", "originalRequest": { "url": { @@ -16661,7 +16661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9547742-c08b-443f-9f70-e244b979b499", + "id": "8fc1e3d8-0f92-48e2-b3d4-deb1c3988aa0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16718,7 +16718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d39f28c6-090f-45b6-a4ff-bed46df93908", + "id": "47532e72-2ca8-44fe-9c93-9713049b1d59", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16775,7 +16775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca4b7b93-fbde-4d6c-8190-6a7a333fc093", + "id": "409215ad-eb17-4da6-905e-e8709605a8e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16832,7 +16832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5fa0ea0-4d4d-403e-b195-a82c532a65b5", + "id": "4521b8c1-39a2-4a4e-8aee-32c5ad1e862c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16889,7 +16889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31137a54-5d52-41ab-8d12-515eb4914c53", + "id": "f77c63ed-08f4-4422-910d-3e9614df36a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16946,7 +16946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "106b6657-7c50-4f2a-807c-b2379bfa949b", + "id": "9731541c-4156-414f-93a4-524c62c70611", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17015,7 +17015,7 @@ "description": "Use this API to implement and customize branding functionality. \nWith this functionality in place, administrators can get list of existing branding items, create new branding and configure them for use throughout IdentityNow. \nIt allows to customise color of navigation bar, action buttons, logo and emailFromAddress.\n", "item": [ { - "id": "cb797015-a5b4-43ee-b46f-2af72e3a8cd6", + "id": "aa54006f-18d0-41bb-a507-09833938b83c", "name": "List of branding items", "request": { "name": "List of branding items", @@ -17044,7 +17044,7 @@ }, "response": [ { - "id": "82b8c801-f254-4f82-a14f-446e8b754bf1", + "id": "f961b7c9-1486-4499-8e4c-685b317c29ea", "name": "A list of branding items.", "originalRequest": { "url": { @@ -17082,12 +17082,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"in\",\n \"navigationColor\": \"Ut magna ipsum sed qui\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n },\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"aute nisi\",\n \"navigationColor\": \"magna\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n }\n]", + "body": "[\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"aute\",\n \"navigationColor\": \"fugiat\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n },\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"pariatur\",\n \"navigationColor\": \"dolor ipsum ad\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "05732ab9-bb31-4508-aa3f-8b5958d97a94", + "id": "dbd49166-4023-4ad8-a41d-13697ccbfe33", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17130,7 +17130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "101a68b8-eb99-4978-88c9-81e46fa1768c", + "id": "8bcf8f12-a07b-428d-8699-494463d73b08", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17173,7 +17173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a63f115-e0c1-4b91-ab4b-2137d6b171d4", + "id": "979007ee-507b-44f7-b6d9-9dd388f00d8a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17216,7 +17216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed2be318-8f4f-44e7-9411-a953e9647b54", + "id": "de8d7e4b-f798-4bf3-92cc-19d1daaaa1a6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17259,7 +17259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43062441-008f-4121-a896-2189bdfe253d", + "id": "bc142797-67ca-43fc-86b9-7214754830cc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17308,7 +17308,7 @@ } }, { - "id": "6c3ada99-28aa-4596-9bea-9f73a3782c50", + "id": "736dc1f5-fc31-47ef-bd56-6f040d48f607", "name": "Create a branding item", "request": { "name": "Create a branding item", @@ -17373,7 +17373,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "reprehenderit Excepteur quis Duis in", + "value": "exercitation incididunt dolore magna nulla", "type": "text" }, { @@ -17382,7 +17382,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consectetur culpa minim dolore", + "value": "sunt non ul", "type": "text" }, { @@ -17417,7 +17417,7 @@ }, "response": [ { - "id": "1a89e398-c34e-4c02-aa59-54e2771efe50", + "id": "f12f978f-3435-442c-8523-b8bbdb6f4015", "name": "Branding item created", "originalRequest": { "url": { @@ -17485,7 +17485,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "reprehenderit Excepteur quis Duis in", + "value": "exercitation incididunt dolore magna nulla", "type": "text" }, { @@ -17494,7 +17494,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consectetur culpa minim dolore", + "value": "sunt non ul", "type": "text" }, { @@ -17535,12 +17535,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"ullamco in do irure fugiat\",\n \"navigationColor\": \"et aliqua id dolor\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", + "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"sint velit magna\",\n \"navigationColor\": \"ad\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "28deaba9-79b6-4be2-a5ca-8ed0d4734670", + "id": "fc8e3db8-53a2-49f1-864a-8f6c7994218d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17608,7 +17608,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "reprehenderit Excepteur quis Duis in", + "value": "exercitation incididunt dolore magna nulla", "type": "text" }, { @@ -17617,7 +17617,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consectetur culpa minim dolore", + "value": "sunt non ul", "type": "text" }, { @@ -17663,7 +17663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67b62aad-bc5f-4d66-911f-2ec04ce9d312", + "id": "39480a43-5731-47ab-b00d-a9d92f69f8c5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17731,7 +17731,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "reprehenderit Excepteur quis Duis in", + "value": "exercitation incididunt dolore magna nulla", "type": "text" }, { @@ -17740,7 +17740,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consectetur culpa minim dolore", + "value": "sunt non ul", "type": "text" }, { @@ -17786,7 +17786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2bb8ed4-9c9d-477b-8cc5-c664db65ad3c", + "id": "d8955f39-2def-4a73-ae1c-ff7360081df2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17854,7 +17854,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "reprehenderit Excepteur quis Duis in", + "value": "exercitation incididunt dolore magna nulla", "type": "text" }, { @@ -17863,7 +17863,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consectetur culpa minim dolore", + "value": "sunt non ul", "type": "text" }, { @@ -17909,7 +17909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b37593e-492a-4458-8a30-e246b5eb4366", + "id": "4e53ff5c-cd1e-4d6e-8a64-f4dcbefa2d3f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17977,7 +17977,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "reprehenderit Excepteur quis Duis in", + "value": "exercitation incididunt dolore magna nulla", "type": "text" }, { @@ -17986,7 +17986,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consectetur culpa minim dolore", + "value": "sunt non ul", "type": "text" }, { @@ -18032,7 +18032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10e353d9-1c78-480a-89b8-576c2a486282", + "id": "4cfcd605-c7e0-4abd-9df9-ce1e9f9a4e8f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18100,7 +18100,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "reprehenderit Excepteur quis Duis in", + "value": "exercitation incididunt dolore magna nulla", "type": "text" }, { @@ -18109,7 +18109,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consectetur culpa minim dolore", + "value": "sunt non ul", "type": "text" }, { @@ -18161,7 +18161,7 @@ } }, { - "id": "cb872931-7c88-40ae-a404-08aba0f4b987", + "id": "13aee8c0-daf9-4ea1-a816-1da2ec116e77", "name": "Get a branding item", "request": { "name": "Get a branding item", @@ -18202,7 +18202,7 @@ }, "response": [ { - "id": "3c439677-182c-4d99-94cd-a9bea9f55e8e", + "id": "4b48649e-751e-482e-986e-2e97f69e5b50", "name": "A branding item object", "originalRequest": { "url": { @@ -18241,12 +18241,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"ullamco in do irure fugiat\",\n \"navigationColor\": \"et aliqua id dolor\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", + "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"sint velit magna\",\n \"navigationColor\": \"ad\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "35d8d31a-b207-414d-9cac-87ff7489177f", + "id": "b1fad554-73c1-4622-a00a-e8dcd47a67be", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18290,7 +18290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "258f3d26-901a-4c62-8a22-65b154f79e14", + "id": "b8d1fae9-8d26-4994-865c-285aabb6019d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18334,7 +18334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "feea781e-cda5-41e1-82e4-380cc79ebaa3", + "id": "6f0e5f4c-e0b8-46ee-a206-04ec5c5276da", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18378,7 +18378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86358f2a-b529-4e68-be1f-5c7bd164dd72", + "id": "385a74cf-9c9a-40fa-9321-b6b48508d9e0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18422,7 +18422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56b91387-b8df-4954-9a19-c65ef435b5a9", + "id": "d5ad5927-6185-469f-9f45-0d24abb2de83", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18466,7 +18466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "947de8b1-2d5a-4b59-8c0d-79d2d1c44858", + "id": "67275b11-b4db-4c65-8854-d6bcab894e08", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18516,7 +18516,7 @@ } }, { - "id": "56d989bd-78d1-42ce-ae9b-c09a706a55ab", + "id": "92f5911f-6801-4fe6-8439-7a19f40aab4e", "name": "Update a branding item", "request": { "name": "Update a branding item", @@ -18593,7 +18593,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "reprehenderit Excepteur quis Duis in", + "value": "exercitation incididunt dolore magna nulla", "type": "text" }, { @@ -18602,7 +18602,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consectetur culpa minim dolore", + "value": "sunt non ul", "type": "text" }, { @@ -18637,7 +18637,7 @@ }, "response": [ { - "id": "f1d94609-f8c2-42c1-a5b3-ac5e6dec0ef1", + "id": "e6389567-cde0-4dc4-b131-b0db1272e0df", "name": "Branding item updated", "originalRequest": { "url": { @@ -18706,7 +18706,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "reprehenderit Excepteur quis Duis in", + "value": "exercitation incididunt dolore magna nulla", "type": "text" }, { @@ -18715,7 +18715,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consectetur culpa minim dolore", + "value": "sunt non ul", "type": "text" }, { @@ -18756,12 +18756,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"ullamco in do irure fugiat\",\n \"navigationColor\": \"et aliqua id dolor\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", + "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"sint velit magna\",\n \"navigationColor\": \"ad\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "55a33655-0c06-4fb7-ac0e-e9f8e42770b4", + "id": "75a721de-c5a3-4bb9-a67d-fd876c755738", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18830,7 +18830,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "reprehenderit Excepteur quis Duis in", + "value": "exercitation incididunt dolore magna nulla", "type": "text" }, { @@ -18839,7 +18839,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consectetur culpa minim dolore", + "value": "sunt non ul", "type": "text" }, { @@ -18885,7 +18885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef04cb0e-1df7-4cc4-a902-6b3cc68d1b0b", + "id": "4f1cc669-713e-4ca4-945c-bd736b569bc0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18954,7 +18954,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "reprehenderit Excepteur quis Duis in", + "value": "exercitation incididunt dolore magna nulla", "type": "text" }, { @@ -18963,7 +18963,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consectetur culpa minim dolore", + "value": "sunt non ul", "type": "text" }, { @@ -19009,7 +19009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0d05339-6cd8-4574-b47b-048bba64d435", + "id": "319a9c58-e651-44b8-a66b-f04f7494a941", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19078,7 +19078,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "reprehenderit Excepteur quis Duis in", + "value": "exercitation incididunt dolore magna nulla", "type": "text" }, { @@ -19087,7 +19087,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consectetur culpa minim dolore", + "value": "sunt non ul", "type": "text" }, { @@ -19133,7 +19133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e12365dc-9ce8-4cc9-8475-5205d24565b1", + "id": "30364b37-1ddc-4351-b5fb-79023bc8ab03", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -19202,7 +19202,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "reprehenderit Excepteur quis Duis in", + "value": "exercitation incididunt dolore magna nulla", "type": "text" }, { @@ -19211,7 +19211,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consectetur culpa minim dolore", + "value": "sunt non ul", "type": "text" }, { @@ -19257,7 +19257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14d4922a-1568-4dc6-9281-47ed744f2eb4", + "id": "769cbd31-c700-40fa-ad22-619f987a4376", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19326,7 +19326,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "reprehenderit Excepteur quis Duis in", + "value": "exercitation incididunt dolore magna nulla", "type": "text" }, { @@ -19335,7 +19335,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consectetur culpa minim dolore", + "value": "sunt non ul", "type": "text" }, { @@ -19381,7 +19381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61455d15-f74a-40e5-9113-878182969216", + "id": "2f9655d7-8330-4369-9c28-af90a45e085a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19450,7 +19450,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "reprehenderit Excepteur quis Duis in", + "value": "exercitation incididunt dolore magna nulla", "type": "text" }, { @@ -19459,7 +19459,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consectetur culpa minim dolore", + "value": "sunt non ul", "type": "text" }, { @@ -19511,7 +19511,7 @@ } }, { - "id": "8753c015-90b5-4320-98ff-7ee53e2267ff", + "id": "b2cd873a-0e38-44ad-bb60-6a78b9c12a06", "name": "Delete a branding item", "request": { "name": "Delete a branding item", @@ -19552,7 +19552,7 @@ }, "response": [ { - "id": "386faf4f-806d-458b-8003-9b8169bcf410", + "id": "26e72ebd-663a-44e9-9551-6bcffa088099", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -19586,7 +19586,7 @@ "_postman_previewlanguage": "text" }, { - "id": "57ace4b6-d2f7-4405-9d34-62db3364b16d", + "id": "2f76da7d-2b89-4f7d-82a0-b8ee952b7bb0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19630,7 +19630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c5d3552-7d3c-4ec3-80b4-dd02ee6a2d1c", + "id": "81d2d1ac-1544-49ab-aa88-d07ed22d4b30", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19674,7 +19674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c938034-f618-4119-97a9-c172fd257bea", + "id": "1f551b11-c8b7-4de0-8104-8420b0d58b31", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19718,7 +19718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5720915-a1a1-4c25-a3b7-5e2fb22fe886", + "id": "6345db47-cd04-424e-911e-ba206ca77a8f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -19762,7 +19762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4490937c-5405-42c3-b362-82c059d9834a", + "id": "608cc4a1-be5e-453a-9939-0d4cf3566d49", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19806,7 +19806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4d84025-cc87-4604-95fe-2e597831b2ac", + "id": "0834bb10-33df-4428-a542-b57d1eca1b6d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19862,7 +19862,7 @@ "description": "Use this API to implement certification campaign functionality.\nWith this functionality in place, administrators can create, customize, and manage certification campaigns for their organizations' use. \nCertification campaigns provide IdentityNow users with an interactive review process they can use to identify and verify access to systems. \nCampaigns help organizations reduce risk of inappropriate access and satisfy audit requirements. \n\nA certification refers to IdentityNow's mechanism for reviewing a user's access to entitlements (sets of permissions) and approving or removing that access. \nThese certifications serve as a way of showing that a user's access has been reviewed and approved. \nMultiple certifications by different reviewers are often required to approve a user's access. \nA set of multiple certifications is called a certification campaign. \n\nFor example, an organization may use a Manager Certification campaign as a way of showing that a user's access has been reviewed and approved by multiple managers. \nOnce this campaign has been completed, IdentityNow would provision all the access the user needs, nothing more. \n\nIdentityNow provides two simple campaign types users can create without using search queries, Manager and Source Owner campaigns:\n\nYou can create these types of campaigns without using any search queries in IdentityNow: \n\n- ManagerCampaign: IdentityNow provides this campaign type as a way to ensure that an identity's access is certified by their managers. \nYou only need to provide a name and description to create one. \n\n- Source Owner Campaign: IdentityNow provides this campaign type as a way to ensure that an identity's access to a source is certified by its source owners. \nYou only need to provide a name and description to create one. \nYou can specify the sources whose owners you want involved or just run it across all sources. \n\nFor more information about these campaign types, refer to [Starting a Manager or Source Owner Campaign](https://documentation.sailpoint.com/saas/help/certs/starting_campaign.html).\n\nOne useful way to create certification campaigns in IdentityNow is to use a specific search and then run a campaign on the results returned by that search. \nThis allows you to be much more specific about whom you are certifying in your campaigns and what access you are certifying in your campaigns. \nFor example, you can search for all identities who are managed by \"Amanda.Ross\" and also have the access to the \"Accounting\" role and then run a certification campaign based on that search to ensure that the returned identities are appropriately certified. \n\nYou can use IdentityNow search queries to create these types of campaigns: \n\n- Identities: Use this campaign type to review and revoke access items for specific identities. \nYou can either build a search query and create a campaign certifying all identities returned by that query, or you can search for individual identities and add those identities to the certification campaign. \n\n- Access Items: Use this campaign type to review and revoke a set of roles, access profiles, or entitlements from the identities that have them. \nYou can either build a search query and create a campaign certifying all access items returned by that query, or you can search for individual access items and add those items to the certification campaign. \n\n- Role Composition: Use this campaign type to review a role's composition, including its title, description, and membership criteria. \nYou can either build a search query and create a campaign certifying all roles returned by that query, or you can search for individual roles and add those roles to the certification campaign. \n\n- Uncorrelated Accounts: Use this campaign type to certify source accounts that aren't linked to an authoritative identity in IdentityNow. \nYou can use this campaign type to view all the uncorrelated accounts for a source and certify them. \n\nFor more information about search-based campaigns, refer to [Starting a Campaign from Search](https://documentation.sailpoint.com/saas/help/certs/starting_search_campaign.html).\n\nOnce you have generated your campaign, it becomes available for preview. \nAn administrator can review the campaign and make changes, or if it's ready and accurate, activate it. \n\nOnce the campaign is active, organization administrators or certification administrators can designate other IdentityNow users as certification reviewers. \nThose reviewers can view any of the certifications they either need to review (active) or have already reviewed (completed).\n\nWhen a certification campaign is in progress, certification reviewers see the listed active certifications whose involved identities they can review. \nReviewers can then make decisions to grant or revoke access, as well as reassign the ceritifcation to another reviewer. If the reviewer chooses this option, they must provide a reason for reassignment in the form of a comment.\n\nOnce a reviewer has made decisions on all the certification's involved access items, he or she must \"Sign Off\" to complete the review process.\nDoing so converts the certification into read-only status, preventing any further changes to the review decisions and deleting the work item (task) from the reviewer's list of work items. \n\nOnce all the reviewers have signed off, the certification campaign either completes or, if any reviewers decided to revoke access for any of the involved identities, it moves into a remediation phase. \nIn the remediation phase, identities' entitlements are altered to remove any entitlements marked for revocation.\nIn this situation, the certification campaign completes once all the remediation requests are completed. \n\nThe end of a certification campaign is determined by its deadline, its completion status, or by an administrator's decision. \n\nFor more information about certifications and certification campaigns, refer to [Certifications](https://documentation.sailpoint.com/saas/user-help/certifications.html).\n", "item": [ { - "id": "7549aecc-2c93-4d37-826d-4a4c99c41561", + "id": "49d445b1-8a4b-467a-aacf-08cf8d6ee03f", "name": "List Campaigns", "request": { "name": "List Campaigns", @@ -19946,7 +19946,7 @@ }, "response": [ { - "id": "d5f4008c-dee1-4db1-b98b-007d87d9d46b", + "id": "502bf02f-339f-45cc-9d33-1fb30f76d6a0", "name": "Slim Campaign", "originalRequest": { "url": { @@ -20044,7 +20044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62e871c9-e0ad-47fe-ae98-362af456eefd", + "id": "246a5799-4a16-47d4-9331-2ef5dbbabe68", "name": "Full Campaign", "originalRequest": { "url": { @@ -20142,7 +20142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "958f4581-6737-4c5f-bac0-d5c2c654652b", + "id": "f75bc41d-3762-4ff7-b74a-4f3e5d1fe113", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20240,7 +20240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "786e911d-2173-4ffd-92c6-c9db0801a9a2", + "id": "677d10ff-0e38-43bc-86fb-98559a4380d1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20338,7 +20338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6938418a-ccd8-4399-988e-ba1d6357481f", + "id": "00bae254-c563-466b-8615-664a10da15f8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20436,7 +20436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dfb3823-ebca-4e1c-bc97-96ae601bc3e2", + "id": "6cf19743-3959-4ddb-865d-ec5277ed352f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20534,7 +20534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2ef7180-ac86-462c-b343-85eef17a6290", + "id": "36e3804b-1a80-49f3-af1b-3695887ec310", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20638,7 +20638,7 @@ } }, { - "id": "57a21d02-6341-49c1-9ed5-2627a91d0202", + "id": "3b55c227-f61f-4838-8f8d-0a8845e99e37", "name": "Create a campaign", "request": { "name": "Create a campaign", @@ -20680,7 +20680,7 @@ }, "response": [ { - "id": "2cb673bb-4a56-418c-a272-ebc8a17a6a0e", + "id": "7a799820-081a-406a-9eee-50976a1387cd", "name": "Manager", "originalRequest": { "url": { @@ -20736,7 +20736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d8001b4-286e-4032-a253-f1f5bd819aeb", + "id": "83016c27-8a7c-4d4b-9da7-5300fe62ad1b", "name": "Search", "originalRequest": { "url": { @@ -20792,7 +20792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "493f687d-264a-42f9-ae10-55987dcf5404", + "id": "fd489e84-15a2-48d6-92eb-8ec627ab3c2d", "name": "Source Owner", "originalRequest": { "url": { @@ -20848,7 +20848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2479754a-55ce-495c-a749-516b1bed1281", + "id": "3533e39f-56a9-4c72-8817-630f04431320", "name": "Role Composition", "originalRequest": { "url": { @@ -20904,7 +20904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f7ab34d-2d2d-474e-baca-bb234b35f092", + "id": "4fdf10a0-c337-414e-9919-b3746bc80abd", "name": "Manager", "originalRequest": { "url": { @@ -20960,7 +20960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b86ee6e2-c813-4735-b1cc-1e91daae3714", + "id": "f10b1d72-62bf-4b05-964e-e309ba8e885c", "name": "Manager", "originalRequest": { "url": { @@ -21016,7 +21016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b68840f7-59ac-405a-827b-43cf19d6e380", + "id": "ddf52b38-0689-4b26-a504-ba1d09a5840c", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -21072,7 +21072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad7e15eb-7eef-4e30-a0fb-c462846dfc64", + "id": "ba549883-8dec-4758-8485-623b2e143a02", "name": "Manager", "originalRequest": { "url": { @@ -21128,7 +21128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d668b65b-6253-409e-a839-6b56126af2e7", + "id": "876b2226-1cab-4933-931a-8fadbe1655b2", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -21190,7 +21190,7 @@ } }, { - "id": "6ff379ff-3aaa-4992-9f9e-8c328c287a56", + "id": "babccbc9-cb53-48f2-ad64-02784332b153", "name": "Get a campaign", "request": { "name": "Get a campaign", @@ -21231,7 +21231,7 @@ }, "response": [ { - "id": "570ebf03-5a7e-48b2-8de3-41b2418e01b7", + "id": "259dbbd3-0741-4928-bac0-79840ee37d00", "name": "Manager", "originalRequest": { "url": { @@ -21275,7 +21275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9ac4587-d846-4a97-b0b3-67050d86d9c3", + "id": "7e5ba7d2-7f54-45a0-b15c-3fe5996de9f9", "name": "Search", "originalRequest": { "url": { @@ -21319,7 +21319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71d87df4-a6bf-4f85-9be6-1b7895b3314c", + "id": "7b4a77cd-3dfd-4b10-92ba-28e20edf2bfa", "name": "Source Owner", "originalRequest": { "url": { @@ -21363,7 +21363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83bba249-0b7a-4f56-9658-19820b70aef8", + "id": "c818aa74-8925-4337-a420-655ace36f66e", "name": "RoleComposition", "originalRequest": { "url": { @@ -21407,7 +21407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9973ffad-7455-4aa0-a3d7-4927a6f4f1c2", + "id": "ad4b7319-789f-4e82-abc2-8c5a0e46dd27", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21451,7 +21451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac0853c4-d4ee-4176-aea5-e4c5f0884dd2", + "id": "6b4e4db5-2af1-4933-91b1-7b502da8d241", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21495,7 +21495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa21ff61-02f8-4020-bf51-6024bb5582fa", + "id": "11cd21c5-760a-44e3-b87d-78c69436e7d6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21539,7 +21539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d54b7c34-8019-499a-a79e-449810a86b67", + "id": "632afd36-f2ae-4063-9827-2904623384d2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -21583,7 +21583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b40526d9-dd37-48a5-98dc-e4b0711a28b8", + "id": "c51d3432-9883-47a7-9a46-b2a8a2f55605", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21627,7 +21627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fe5310e-73ca-416a-98e5-34a566942342", + "id": "ae21aaba-19ef-4e9b-a12c-cc3ff23b70b3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21677,7 +21677,7 @@ } }, { - "id": "88626698-dd3c-4850-95b2-10338aab9158", + "id": "8836d2f2-0cc9-4889-878b-5d90a2b21268", "name": "Update a Campaign", "request": { "name": "Update a Campaign", @@ -21731,7 +21731,7 @@ }, "response": [ { - "id": "864c1aa0-8cdf-41e7-aea1-551f1626ff85", + "id": "f936412d-dd31-430a-9d17-9d531157bffb", "name": "Manager", "originalRequest": { "url": { @@ -21788,7 +21788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "babe9d69-8f6a-4b96-be17-2ebc8b43909d", + "id": "1032ff46-7238-4485-8d32-ce38e7843013", "name": "Search", "originalRequest": { "url": { @@ -21845,7 +21845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ccc3434-45ea-408e-a821-5ed37bb7ea78", + "id": "32f44e4a-2830-416f-96c8-8c371e33e4e5", "name": "Source Owner", "originalRequest": { "url": { @@ -21902,7 +21902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eedf646b-4d55-4cf2-89d6-0fd8d6b8f27c", + "id": "4e3fe998-8513-492b-a3e0-6020ba66db74", "name": "RoleComposition", "originalRequest": { "url": { @@ -21959,7 +21959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64e5dcec-69cc-4522-819e-b61f9a2fcd96", + "id": "c5bcc809-7184-4c9f-8924-63b6eb65db83", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22016,7 +22016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dffb6c01-e89e-4f4e-a7b1-f83e86a24a5c", + "id": "120389f8-40fa-4020-b301-383c68d1eb8b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22073,7 +22073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e2b67db-b0ef-4fe7-9d05-70941a0fd475", + "id": "1ee18dcd-e5f9-4ec6-beca-178ad0607c1a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22130,7 +22130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ffd90f0-bc25-4b22-a826-60a930db7c93", + "id": "05585211-4960-47aa-981b-bf21e1513ec7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -22187,7 +22187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "721b7ae1-a119-4425-8830-7e877cae7940", + "id": "b046ce18-16c4-4593-aa7d-da3d0877c9d9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22244,7 +22244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12688221-3d78-4481-9c25-a7a6a8f82828", + "id": "63b5de16-d8e7-4ef3-a6f4-0db6e63c9f96", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22307,7 +22307,7 @@ } }, { - "id": "a8b41ac3-a321-4c14-b892-d7ebf9eeebe7", + "id": "4f1329c1-4195-47bc-87a8-fcdb8be5ef32", "name": "Reassign Certifications", "request": { "name": "Reassign Certifications", @@ -22362,7 +22362,7 @@ }, "response": [ { - "id": "d391b15a-5903-44c7-a7f8-89629bf2d45f", + "id": "5c2ff304-d1d1-436d-a80d-8333d396b810", "name": "The reassign task that has been submitted.", "originalRequest": { "url": { @@ -22420,7 +22420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbea3048-dac5-4572-92e7-50ea92a7f261", + "id": "d3cbb87d-dc20-46dc-8be8-519f1e17833e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22478,7 +22478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20444ea6-ed2e-4174-be95-71549c168774", + "id": "82a467da-c57b-4c23-bc7b-bbe9a58bc553", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22536,7 +22536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e9fcc44-430c-4632-bae6-fdfd66123e4a", + "id": "0860422a-35ee-432a-8869-29f71604d2d4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22594,7 +22594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af7eb866-cead-4fde-90e4-f088220b1c0e", + "id": "d2ac559e-6136-4622-ac77-360bd559e702", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -22652,7 +22652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0f97955-8aff-46d6-9fca-00629745c9da", + "id": "914f2029-f18d-43da-8ace-2b236aab838d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22710,7 +22710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b09a912-85bf-4cc0-bc71-d52ba075f4a3", + "id": "319cafd8-d046-416e-8505-6fa424c38bf7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22774,7 +22774,7 @@ } }, { - "id": "785eade1-75e2-4b84-9c08-40edece75086", + "id": "25974919-0abd-4401-9d8b-e152a55db5d0", "name": "Activate a Campaign", "request": { "name": "Activate a Campaign", @@ -22829,7 +22829,7 @@ }, "response": [ { - "id": "18ed45a7-9efb-41ec-af66-8e86b41eb44e", + "id": "9cc6451f-5655-4443-b684-bce7b7ca8203", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -22887,7 +22887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "281f7672-5d5b-4c9f-826a-72b390afc3bb", + "id": "768d7ab4-7a21-4c4f-808b-9c8d78f3bcfd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22945,7 +22945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a524a5c0-fc27-49c1-a1d0-b25815b56a23", + "id": "f41e784a-a429-412a-b6f0-dea3d1e18e4c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23003,7 +23003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c832580f-2889-4510-87bf-48e4b0774b8e", + "id": "516287c7-6e3f-4a31-bf34-684699a966e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23061,7 +23061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd855142-e68d-40f9-8616-db26ea87fd4b", + "id": "f302db9c-7b3a-451f-ba98-8767131e794c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -23119,7 +23119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43271783-2cb7-4e44-9135-acf1c3c76f66", + "id": "4b82c385-873c-4ed9-b1ef-44a3662c456e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23177,7 +23177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad341cbb-eeb4-45ec-9880-e0575e2dbc5d", + "id": "2b2f6e56-67b7-4bcc-abb0-2733ecd2de2c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23241,7 +23241,7 @@ } }, { - "id": "e696990b-4bc0-49f8-9cae-c569baef2456", + "id": "9fd308ff-8947-4e5b-baed-549e157500d6", "name": "Complete a Campaign", "request": { "name": "Complete a Campaign", @@ -23296,7 +23296,7 @@ }, "response": [ { - "id": "e3c166c8-100b-46f8-9bf4-bd9127503e11", + "id": "dd416cc7-39f5-425b-94e7-fc03f3d567d5", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -23354,7 +23354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffcd1e2e-a9e4-4770-a266-ce8458496544", + "id": "79721e8a-14a4-4017-a13c-6c4a4f7ebe9a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23412,7 +23412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a316a369-3c89-4586-ac8a-acba9f250551", + "id": "799879cf-d8c6-4162-b2ef-902161df867d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23470,7 +23470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f026cb99-c302-4f99-9683-179472ed7374", + "id": "ef8ccbb5-ec9f-4bd3-9e78-0fdf07f75039", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23528,7 +23528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15477f33-aaf1-41bf-983d-7735a3cec8c6", + "id": "2e1c504a-abf4-4e4e-91b4-3c0e4dd5ef30", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -23586,7 +23586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5d8efd6-b480-46f2-afce-5850dba7557a", + "id": "9950ecb7-a9d9-42be-bb9b-863c5091aa6e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23644,7 +23644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cb09edf-fdf6-4892-959b-029133847eb9", + "id": "7e56a6e8-e8f8-468c-be05-ab044e5bf4ba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23708,7 +23708,7 @@ } }, { - "id": "0a992ad4-e2b8-464c-81b2-4471c65c035d", + "id": "ec176b55-55e9-4a9f-8095-b9a67ef3a21e", "name": "Deletes Campaigns", "request": { "name": "Deletes Campaigns", @@ -23751,7 +23751,7 @@ }, "response": [ { - "id": "07b10fb9-602e-415d-9f50-3a0b0af773aa", + "id": "90c4f45e-ca0f-44f2-b9c7-f224a13141a7", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -23808,7 +23808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ceec207a-1b56-4c99-a69b-d983b854d2c0", + "id": "53e980c5-960c-457e-a276-9fd04910540b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23865,7 +23865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7a48e72-9d39-418a-804f-8e03af26f6e9", + "id": "7dc4e96e-e16e-43b8-a0fd-31a9149ef5bf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23922,7 +23922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f224bc27-d022-48a8-8cdd-8e9c6bbec3e3", + "id": "15531e13-c0cc-469f-9fa1-d0e929cab23c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23979,7 +23979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e811447-6c70-468f-93bd-8d08acd11afc", + "id": "31ebde74-7fdd-453c-b86a-65fbf87b7109", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -24036,7 +24036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "276993f6-679f-4e10-b481-e3e4b8bd5e05", + "id": "dbbf33f8-b95f-43a4-8ea7-6593deee7285", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24093,7 +24093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f7d6db8-7de5-406d-a227-1e33697c8ba1", + "id": "86b98069-2008-4fb4-b574-18b9d8cdd502", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24156,7 +24156,7 @@ } }, { - "id": "a466e9b1-f840-4f46-b3fd-1a6edde66c2e", + "id": "d19888dc-f7c7-4742-8660-7de994553182", "name": "Run Campaign Remediation Scan", "request": { "name": "Run Campaign Remediation Scan", @@ -24198,7 +24198,7 @@ }, "response": [ { - "id": "19df8343-844b-4696-88eb-fb48db4de2ac", + "id": "2b2f5fb8-7956-420f-97ba-db599ec9a4a0", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -24243,7 +24243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b7d926b-d75e-4bb6-ba8b-06267d548c5d", + "id": "8ca50f0f-c073-4234-a84d-396e234b85b6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24288,7 +24288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "722d50f4-0973-4655-b9e7-81062463a042", + "id": "6966065d-f3d5-4282-b734-fcd4b0eed140", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24333,7 +24333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97e61224-01ed-4d2e-b820-cecd70d87abb", + "id": "aca90ad9-351c-411a-a352-d1d0e7c85f70", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24378,7 +24378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acd1910f-66e9-4059-a69d-c3715b112d58", + "id": "9ba8ac6a-72a2-4db3-83b0-ce3108c07531", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -24423,7 +24423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41c46101-8cbc-4072-ad5f-1ba4e96d00c6", + "id": "825fec52-3ff9-460f-a624-b1c4b25fd142", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24468,7 +24468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61a21848-fd1f-47b7-9290-32fbeef1a0f1", + "id": "0efc9fac-f1cc-4e09-b067-70812f175cd1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24519,7 +24519,7 @@ } }, { - "id": "8abff890-4fce-462f-ae87-b0f7e1b0d072", + "id": "c4737a3e-fd28-4199-b0ca-270deecdb1ea", "name": "Get Campaign Reports", "request": { "name": "Get Campaign Reports", @@ -24561,7 +24561,7 @@ }, "response": [ { - "id": "ebf5cfe1-4739-4541-a36c-3a7f5f0395f6", + "id": "51bee57c-c79f-4e69-958e-ecd6cc3b8ef7", "name": "Array of campaign report objects.", "originalRequest": { "url": { @@ -24606,7 +24606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef5272c1-7933-459e-b4b5-9d9bca6f2870", + "id": "00d60af0-d9a2-4bdf-bec0-cd6812456cb2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24651,7 +24651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d2b246b-b679-417b-aafb-2a3f346b7324", + "id": "00796057-fa6d-4229-8bec-9357b65fbd02", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24696,7 +24696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f08d2ad-fbe4-4936-9d0d-0ebd6ab8efa4", + "id": "bbbb89ab-80a8-4d3e-a26b-99a018c4ed7b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24741,7 +24741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b7b70d4-3226-4b52-8bf8-b06b52969581", + "id": "4b1e81e8-57d4-4499-9c85-e9948074159b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -24786,7 +24786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31e56238-57c2-4df9-ae37-187240758782", + "id": "1084e667-55d9-4c61-81ed-ba4d37d88785", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24831,7 +24831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e39c0fcd-19c0-4a19-b7ee-fb721c1d590c", + "id": "b1ee6d7e-f37e-4eda-b625-efa16c03cd20", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24882,7 +24882,7 @@ } }, { - "id": "6389cb3d-12bd-4e29-adeb-56d6867cabad", + "id": "5feaa3a2-458b-4254-9794-052bbbffed22", "name": "Run Campaign Report", "request": { "name": "Run Campaign Report", @@ -24935,7 +24935,7 @@ }, "response": [ { - "id": "62983e67-982d-4d40-993b-f819e9bcfb65", + "id": "fbe2b8e3-a0a1-4886-bddf-930de6576bfb", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -24981,7 +24981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efeb7a8b-b537-4cd9-8f8d-a70a416a1995", + "id": "760b472c-2ad9-4df7-a574-9f8d01e15b36", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25027,7 +25027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5238285-9710-422d-8ce4-5fbef0f2c0d9", + "id": "d3aedbda-5f46-434c-990c-13f55722b585", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25073,7 +25073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01be89b7-78f6-4067-8158-ea0c9096a0d9", + "id": "ed66856f-83f2-4204-b299-3e0dab4bd715", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25119,7 +25119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d06cb99-83fa-4f52-a713-7bc127784fad", + "id": "4420935e-7677-40f0-afe7-7bccc1beff98", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -25165,7 +25165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ac45c90-d8de-46b0-aa86-205a5b7b4ac8", + "id": "3a493dfc-503f-492d-a81d-cc0b5ed2a15f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25211,7 +25211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b662fdd-9de6-4e99-bab5-3fe29bff9b0b", + "id": "1ab949d5-aaba-46d7-a131-ccce3f6b9db8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25263,7 +25263,7 @@ } }, { - "id": "771df79b-4e68-4756-b3b1-fc70e5968226", + "id": "42d6e52b-d9f3-40e4-8ace-0328ef776a07", "name": "Get Campaign Reports Configuration", "request": { "name": "Get Campaign Reports Configuration", @@ -25293,7 +25293,7 @@ }, "response": [ { - "id": "c39da89f-9bf1-4b87-b2d3-085861a36ad2", + "id": "d786ae1b-07ca-4038-be60-662a3997ee69", "name": "Campaign Report Configuration", "originalRequest": { "url": { @@ -25337,7 +25337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16fff2ea-de9c-47f6-b13d-f835c925c8da", + "id": "586995ae-962b-40e6-8135-d0ff7544229b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25381,7 +25381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3336cd3d-68bf-4c39-b9ef-19f8167ab747", + "id": "9a74df8e-9cb0-4371-94aa-dfd69d2eefc8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25425,7 +25425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f340dff-71ab-405e-9f8f-7a7f1292e877", + "id": "693f0d92-c82f-4e35-a7e6-c7a148f3a3d6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25469,7 +25469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9418b9f6-c17f-4df8-9dbc-71951f0d30fe", + "id": "3c2b102e-c9e5-4991-9b99-77a43144e3c9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25513,7 +25513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d513ace-d334-484a-b46d-332e7456258f", + "id": "e996f770-adc4-4f99-acfe-d5aef8e51dd4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25563,7 +25563,7 @@ } }, { - "id": "bab923d2-290b-4a99-a976-646efc2c4228", + "id": "e3205310-0bfd-4afc-9bb3-42d21d489f12", "name": "Set Campaign Reports Configuration", "request": { "name": "Set Campaign Reports Configuration", @@ -25606,7 +25606,7 @@ }, "response": [ { - "id": "725b2530-5cee-4a59-b8e4-8960a27308cd", + "id": "7a127771-9aef-4dac-bcc4-dee95b6389d3", "name": "The persisted Campaign Report Configuration", "originalRequest": { "url": { @@ -25663,7 +25663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "627641a8-accb-4ff3-8f46-6eba396ab809", + "id": "17ac3d99-e31f-4b8e-bf2f-39f72a56c8a0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25720,7 +25720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdc53bab-46a3-45ae-abd9-fa73ee19750c", + "id": "0aea838e-61b5-41ee-ac8f-ff9237933e68", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25777,7 +25777,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd62a3bc-3f49-4ed8-a63a-690b28779031", + "id": "de342ae3-d611-4aa2-b71f-9052f90cebaa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25834,7 +25834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7bc3da6-be6e-4224-96a5-e6ec9a4e0932", + "id": "dd2f8507-3089-499f-ba45-c622b623b2fe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25891,7 +25891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f01f060f-f0b1-48be-84ac-a2edb478598e", + "id": "1bb6498f-0038-4702-a342-081a01b320d8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25954,7 +25954,7 @@ } }, { - "id": "8c42951b-831a-4295-98f8-6907fefb5782", + "id": "07612866-69bd-4bb6-bc5c-45cce0fe8715", "name": "Create a Campaign Template", "request": { "name": "Create a Campaign Template", @@ -25996,7 +25996,7 @@ }, "response": [ { - "id": "cf93bf20-2f88-46d8-aaf4-5da5cb30e3d3", + "id": "967087b2-95ed-4857-bc87-e0f9670342a3", "name": "Manager", "originalRequest": { "url": { @@ -26052,7 +26052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fa490a0-6bf7-4efd-ad38-542747313869", + "id": "e00f85d3-aef5-4b1d-b499-5110191415a0", "name": "Search", "originalRequest": { "url": { @@ -26108,7 +26108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e436f672-1d22-49fe-a05d-6f5b0cd008cd", + "id": "545a3fba-7d44-40f5-8ebb-ce1b7333a20d", "name": "Source Owner", "originalRequest": { "url": { @@ -26164,7 +26164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45638cd1-35d7-42b3-a894-1beef0f48476", + "id": "51aa2e13-cd13-4834-99c8-47ad5370e69e", "name": "RoleComposition", "originalRequest": { "url": { @@ -26220,7 +26220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e4d54e9-0299-4f28-9ba3-f95368ebb887", + "id": "39b2e9ea-b2a1-4e76-838b-6f0934df8523", "name": "Manager", "originalRequest": { "url": { @@ -26276,7 +26276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bdbc5ae-5ab4-4489-b82e-fba851e7dd30", + "id": "a5035a6d-3694-47bb-abdb-c5ca352c4cd2", "name": "Manager", "originalRequest": { "url": { @@ -26332,7 +26332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2a6852d-e46c-4ade-ac99-d4d8b96ded46", + "id": "b565264e-8a18-49fc-89fc-e8f8c86282d9", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -26388,7 +26388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c51f521d-3fe8-47b4-9ed1-ba2a2bce937f", + "id": "9f962053-ad51-4cf2-8966-8202faf2d348", "name": "Manager", "originalRequest": { "url": { @@ -26444,7 +26444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eec8f57c-73ea-41be-8dfd-e10ddfd9e02f", + "id": "24798a63-aeae-4072-8e70-0ece3b8afe88", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -26506,7 +26506,7 @@ } }, { - "id": "eab82146-6dfa-4063-a8d5-e67d4af940fc", + "id": "d32ea2db-3d1d-4298-9a2b-a814a2c67e67", "name": "List Campaign Templates", "request": { "name": "List Campaign Templates", @@ -26581,7 +26581,7 @@ }, "response": [ { - "id": "af4cbe65-53c3-4062-b183-821ca041f46b", + "id": "2bd7f00a-073b-4025-86d8-3ac02e811e52", "name": "List of campaign template objects", "originalRequest": { "url": { @@ -26670,7 +26670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f01b1ba-9a0d-4487-bd25-624d9ee4bfd1", + "id": "e8a017c2-6361-49c4-a060-281f00d9ca9a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26759,7 +26759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42a00eae-5ac4-4a14-a9d1-300f9c5b2fce", + "id": "dc12ffb0-0f8a-4823-9565-9a0f4faa3668", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -26848,7 +26848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd461b54-4c12-4d40-b1d1-700254f0e1ba", + "id": "ffb6eb7a-6c05-4ad7-9a57-98d6368c9725", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -26937,7 +26937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31d6d3b0-1c9a-4190-8a38-921e184bc244", + "id": "c41d6648-ddaf-4448-b561-3f8dad795ae6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27026,7 +27026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "884b2b37-0b23-44aa-9811-09a5a36af043", + "id": "74b64358-24e3-41c8-a2c1-f65e36c8da98", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27121,7 +27121,7 @@ } }, { - "id": "0756cfb5-f9fa-4797-abc7-f98e4ff61b0d", + "id": "a0568fd6-6564-4eb0-bed7-734c17ea7b18", "name": "Update a Campaign Template", "request": { "name": "Update a Campaign Template", @@ -27175,7 +27175,7 @@ }, "response": [ { - "id": "79362adc-e821-42be-b072-e54fe3edfce0", + "id": "65f40c83-db64-42b7-8e40-3bc4fc183aad", "name": "Manager", "originalRequest": { "url": { @@ -27232,7 +27232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6d03b04-24b4-484d-a0eb-0d108d315618", + "id": "937a0975-e186-4732-8a30-0c57ef8fe0ff", "name": "Search", "originalRequest": { "url": { @@ -27289,7 +27289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6091f89d-a414-4d34-a4cb-9e1508e94afb", + "id": "9760a600-7079-408c-b94f-8819e6794e3d", "name": "Source Owner", "originalRequest": { "url": { @@ -27346,7 +27346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24959312-3305-4470-b510-c9467673d78f", + "id": "dc52f6c2-317f-4fe3-be18-704ef4f9a601", "name": "RoleComposition", "originalRequest": { "url": { @@ -27403,7 +27403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e776556b-ff57-4aae-9cb8-b6b8dd8aa9a3", + "id": "74874752-2ecd-4c88-a780-7484579ff5fb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27460,7 +27460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd5a5a7e-a1ef-43f7-b7af-f161afa9c7ff", + "id": "8a017ad0-38dd-46d2-9395-d2d3b84c4f13", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27517,7 +27517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f332772a-83a6-4f68-b500-35073ee38fd8", + "id": "307cf914-30f3-4534-8633-2ee05742abfa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -27574,7 +27574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "209d9377-e7d5-4efc-81ef-5aac220fa4c6", + "id": "6486d62c-f98a-460a-8db9-e26313ee33fd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -27631,7 +27631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf52022a-2c39-47e7-9d59-15244fe2684d", + "id": "a25d6f03-5864-4593-9aae-e1602bd8454e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27688,7 +27688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee0bf797-9471-403e-8df3-8789248989c0", + "id": "fccd773c-155b-415b-8506-a0349e134761", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27751,7 +27751,7 @@ } }, { - "id": "421ddab6-cae8-4edd-bbf1-aced98a1ed08", + "id": "166ab34e-2869-4639-a3b4-e2da6486d362", "name": "Get a Campaign Template", "request": { "name": "Get a Campaign Template", @@ -27792,7 +27792,7 @@ }, "response": [ { - "id": "f57c911e-9f57-4ed7-8aac-9bea295769e4", + "id": "26ea8d91-55e9-468e-8d09-85f33cef4e78", "name": "Manager", "originalRequest": { "url": { @@ -27836,7 +27836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "885ac60b-87c1-4cf1-83e4-3c1c1f96192f", + "id": "c6f3c18a-7d2b-4fed-a9c6-c96aa5eaef1b", "name": "Search", "originalRequest": { "url": { @@ -27880,7 +27880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71889112-2873-41b7-9db0-0d0c12cd57a3", + "id": "0ab745fe-4ee3-470d-8589-e464fc7ec42f", "name": "Source Owner", "originalRequest": { "url": { @@ -27924,7 +27924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6cf4d59-d7bb-447d-8547-24c548938b14", + "id": "565d07ad-1de4-4b34-a74d-3914991cf042", "name": "RoleComposition", "originalRequest": { "url": { @@ -27968,7 +27968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1c5ec95-b77c-485c-8a12-809e603a5cd6", + "id": "a332d1db-ace0-419d-8afc-76e3419d42ff", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28012,7 +28012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0adba581-91bd-4689-95a8-af7e37ad406f", + "id": "60ac1f8d-80f9-4e56-a98e-e1741f8ee9b1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28056,7 +28056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "076b6083-6d39-486b-88e1-906c963eb014", + "id": "88dd50cd-82d1-4671-9a8c-d49303b27754", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28100,7 +28100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "898cff21-d719-4d8d-b4d2-23e840faf515", + "id": "658a3057-d987-4688-93f0-eeba91eaac2c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28144,7 +28144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3440eda-a5b1-4980-86b2-7782211adf4e", + "id": "2e14944c-6997-462f-9241-a6a6269e647f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28188,7 +28188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2605f3d0-213a-4d9b-b408-85729300c8ba", + "id": "16640489-145c-4f12-bea3-79b43d992f4a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28238,7 +28238,7 @@ } }, { - "id": "c693b7ed-8a6b-4056-bcf3-c32a7a483e8f", + "id": "567bad0c-06d8-4416-a314-edac84df2ba4", "name": "Delete a Campaign Template", "request": { "name": "Delete a Campaign Template", @@ -28279,7 +28279,7 @@ }, "response": [ { - "id": "d552a202-770b-4f01-a93b-c4f2136adba0", + "id": "24313e3c-b756-462f-a286-8f5307b0553b", "name": "The campaign template was successfully deleted.", "originalRequest": { "url": { @@ -28313,7 +28313,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c527b0ea-6c2f-4e90-8df6-d6d6928caede", + "id": "19694a8d-0059-4b06-a991-764a9d3f4591", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28357,7 +28357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acf5a4ec-50d9-4a90-aae3-3b6e79d5f38b", + "id": "ecf3f885-0d7a-4994-8221-ae41e23cd2c6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28401,7 +28401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3018ee7-5478-4d3f-9b70-ed2fd3f093a2", + "id": "722ab05f-a3d9-4f47-82a5-ea830f413aca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28445,7 +28445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d9770f2-95d6-4376-ae86-d7237fd10e22", + "id": "f7a9566b-aa74-4ac4-9d19-9537005d6643", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28489,7 +28489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37711442-5ebb-4fb1-ab28-a891e3420036", + "id": "378caf67-965c-45b6-b63b-74bb4dff7eb8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28533,7 +28533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bd0a166-e66e-4a89-beb8-15841ff8e3ad", + "id": "87420258-1d4b-46a7-a8fb-51f80ba329ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28583,7 +28583,7 @@ } }, { - "id": "f2406de7-1405-4cff-b73d-71bbc0a7689e", + "id": "42466fed-3ae9-4db5-ba90-9f341adafcdf", "name": "Gets a Campaign Template's Schedule", "request": { "name": "Gets a Campaign Template's Schedule", @@ -28625,7 +28625,7 @@ }, "response": [ { - "id": "5e56bc6c-153d-4933-9270-c09465b149af", + "id": "74187089-a275-4001-8f38-75a29f398fdf", "name": "The current schedule for the campaign template. See the PUT endpoint documentation for more examples.", "originalRequest": { "url": { @@ -28670,7 +28670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17036e6b-19d5-4be8-9090-3ef5f4b2fdb7", + "id": "9a36fceb-76e1-4bab-b192-000f45fc4d23", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28715,7 +28715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5964827-5633-4942-a6c1-a63f509c44c9", + "id": "ec369907-1389-4919-b07a-0807ab68cec6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28760,7 +28760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0db987da-fce8-4762-84d3-b4988d1f6f33", + "id": "a779a2cf-6a18-401a-a473-f084b56b97a0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28805,7 +28805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7882a3e-4b31-4dff-a835-b53c1fdf573a", + "id": "9f33f4c1-6c03-4d07-bd64-4f8e19460a81", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28850,7 +28850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baa8cf60-1e81-46af-9863-e1bfa3488588", + "id": "5dbc8b0d-455f-4dee-ac34-c8c945ff8553", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28895,7 +28895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff91c1ac-c44d-4208-af24-9d88ce39d9a5", + "id": "e2d0f9e4-8fa5-408d-9816-fc3bff0c4332", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28946,7 +28946,7 @@ } }, { - "id": "54939419-9788-4550-86c9-5fdd7c755e37", + "id": "94260e51-cac7-49d3-8cb3-df338edda3cf", "name": "Sets a Campaign Template's Schedule", "request": { "name": "Sets a Campaign Template's Schedule", @@ -29001,7 +29001,7 @@ }, "response": [ { - "id": "943b9486-919e-45d5-b69b-420db0259ca2", + "id": "ae15daf1-9d7b-4b76-8037-2e0708e847b1", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -29049,7 +29049,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a4abdfa8-8f0c-4cb8-b02b-d53ae271ff6c", + "id": "e63789d7-a6d4-4346-aefb-eb37768659d1", "name": "Monthly", "originalRequest": { "url": { @@ -29107,7 +29107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eae16f8f-5a17-4511-ae7b-ee0c65ae3e0c", + "id": "dfed5fd0-1148-4a46-8a15-2f29b296032c", "name": "Once a year", "originalRequest": { "url": { @@ -29165,7 +29165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4758689a-31c1-4c65-bb54-b7693857c249", + "id": "dc810932-5c23-4f94-94e3-df943b630b58", "name": "Quarterly", "originalRequest": { "url": { @@ -29223,7 +29223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5e28b45-d51f-444d-be15-eccbd0709962", + "id": "20dba297-c8f1-4f50-a282-9981ff703137", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -29281,7 +29281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87cf0670-d3a3-4dd1-b26a-716939087bd6", + "id": "ea26d432-e535-4799-bb1b-b851e0bf435b", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29339,7 +29339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a9d060b-489b-4339-b09b-4cc2d4af7882", + "id": "54852fb6-a963-4d59-9c92-5e3ccecd2e48", "name": "Once a year", "originalRequest": { "url": { @@ -29397,7 +29397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e9e7d48-75c2-4738-b5ec-0e9b4d6e0572", + "id": "96674fc8-1d95-4b3c-a6f2-16122c886e04", "name": "Quarterly", "originalRequest": { "url": { @@ -29455,7 +29455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9392624-b8f0-4e4b-aa90-ae4bc055fb1e", + "id": "3a4002f5-f83e-4152-af97-de5207ab6544", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -29513,7 +29513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a34442a5-e0d5-4df4-a26e-6ad0d98cdfa9", + "id": "25f81be4-dbba-4c94-8e6e-c8bc64a1f586", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29571,7 +29571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2a21f3e-e0c2-446c-8f9a-157f46e73f51", + "id": "ade1ebee-2df5-427c-b658-7091a2697425", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -29629,7 +29629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe32904f-aff9-47df-afc8-a4ae06c2e210", + "id": "16112264-3f12-4e19-abf3-bf21d6086bee", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -29687,7 +29687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd8e79ad-06f1-474a-bee3-ff9de32ac10a", + "id": "ece8e6f5-4ecb-4f19-a435-05eaf5e4c36a", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29745,7 +29745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6f86e27-f9a9-4488-be8d-6afbbd6e8074", + "id": "cea09301-20bc-4c2c-bec3-1b046ff7c568", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -29803,7 +29803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bc5d089-162e-4fb4-9b6a-449e17c0096a", + "id": "428d8788-0917-48a1-9072-26477fbaa869", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29861,7 +29861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64545163-e196-43a0-a87f-5edbdeb433c9", + "id": "b2429bee-7fb3-4a8f-ab3e-6a08641c37e6", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29919,7 +29919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93e8c000-28d0-45ec-8294-686a2a9256f6", + "id": "12b8bd02-85f2-4d19-8dbd-8f2326d8e680", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -29983,7 +29983,7 @@ } }, { - "id": "2c173e9c-4cab-400c-8a2a-1ca762aa171b", + "id": "1211790f-46ea-4abf-9a47-fb1a2fd3fc8a", "name": "Deletes a Campaign Template's Schedule", "request": { "name": "Deletes a Campaign Template's Schedule", @@ -30025,7 +30025,7 @@ }, "response": [ { - "id": "2fd205f6-4d9f-41e5-8016-21f841482622", + "id": "2b1f41f6-7d3b-4a52-ad8c-a631a77a3c86", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -30060,7 +30060,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5b6e1970-2818-41c2-b7ff-6f5873f33e93", + "id": "e95c73c7-258e-45e8-bba7-73966074bbbf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30105,7 +30105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ef8c5b3-f46b-4b43-82ba-07e2a691e816", + "id": "d1ed9409-5883-4a5b-8afe-7cd209dd527a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30150,7 +30150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fecb9cb-9c18-4ca0-bcdf-dcd09a9cc3f8", + "id": "bc27dae7-ae80-4d2c-9ecd-c609afa0cc7d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30195,7 +30195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79c55bcb-2a37-4cd1-9d63-3fb06f9b7ee8", + "id": "0b895588-85bb-42b8-a1cb-6d021d46e96d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30240,7 +30240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "459be7f7-7221-4352-a26a-550fb55973ce", + "id": "d0ec2213-af64-4ed1-8618-f222c1b5985e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30285,7 +30285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91eba617-c165-445f-ae2f-449d18b115f5", + "id": "17d41959-d8bb-4b73-9d02-fbbe7171c246", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30336,7 +30336,7 @@ } }, { - "id": "c59a79a3-10a5-4547-8f90-d3b4e74ee04e", + "id": "e355d7cc-a32f-4ee3-918d-8dac7ead5bd3", "name": "Generate a Campaign from Template", "request": { "name": "Generate a Campaign from Template", @@ -30378,7 +30378,7 @@ }, "response": [ { - "id": "8bef51d5-620a-4298-9572-92be58cfa678", + "id": "5dcb1ffa-e06d-49ee-9b6a-0a4c2572d312", "name": "Indicates a campaign was successfully generated from this template, and returns a reference to the new campaign.", "originalRequest": { "url": { @@ -30423,7 +30423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16229a92-efe4-4ead-aa73-ae31e1e29edf", + "id": "daf46059-85a8-42fd-9cef-c8ad13b8f21d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30468,7 +30468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acc7630d-0562-4b27-bdfc-94c429ecdbf3", + "id": "e24ab25e-81c8-43cf-9a73-d6909ac47a1c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30513,7 +30513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a985a795-f6db-477d-9e18-adb2963d961e", + "id": "d040bbeb-552c-40d3-809c-d0037a53f2e4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30558,7 +30558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a605194d-2fdb-47b2-929a-bf17131e13f5", + "id": "b1eae8f3-e402-4d22-a0f3-b2d80b071d8b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30603,7 +30603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1a6ecb2-9d27-4091-9ee1-6d1fb009d545", + "id": "20c24392-50a3-4604-a704-a26c287b0243", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30660,7 +30660,7 @@ "description": "Use this API to implement certification functionality. \nWith this functionality in place, administrators and designated certification reviewers can review users' access certifications and decide whether to approve access, revoke it, or reassign the review to another reviewer. \nImplementing certifications improves organizations' data security by reducing inappropriate access through a distributed review process and helping them satisfy audit and regulatory requirements. \n\nA certification refers to IdentityNow's mechanism for reviewing a user's access to entitlements (sets of permissions) and approving or removing that access. \nThese serve as a way of showing that a user's access has been reviewed and approved. \nMultiple certifications by different reviewers are often required to approve a user's access. \nA set of multiple certifications is called a certification campaign.\n\nFor example, an organization may use a Manager Certification as a way of showing that a user's access has been reviewed and approved by their manager, or if the certification is part of a campaign, that the user's access has been reviewed and approved by multiple managers. \nOnce this certification has been completed, IdentityNow would provision all the access the user needs, nothing more. \n\nOrganization administrators or certification administrators can designate other IdentityNow users as certification reviewers. \nThose reviewers can select the 'Certifications' tab to view any of the certifications they either need to review or have already reviewed under the 'Active' and 'Completed' tabs, respectively. \n\nWhen a certification campaign is in progress, certification reviewers will see certifications listed under 'Active,' where they can review the involved identities. \nUnder the 'Decision' column on the right, next to each access item, reviewers can select the checkmark to approve access, select the 'X' to revoke access, or they can toggle the 'More Options' menu to reassign the certification to another reviewer and provide a reason for reassignment in the form of a comment. \n\nOnce a reviewer has made decisions on all the certification's involved access items, he or she must select 'Sign Off' to complete the review process.\nDoing so converts the certification into read-only status, preventing any further changes to the review decisions and deleting the work item (task) from the reviewer's list of work items. \n\nOnce all the reviewers have signed off, the certification campaign either completes or, if any reviewers decided to revoke access for any of the involved identities, it moves into a remediation phase. In the remediation phase, identities' entitlements are altered to remove any entitlements marked for revocation.\nIn this situation, the certification campaign completes once all the remediation requests are completed. \n\nRefer to [Certifications](https://documentation.sailpoint.com/saas/user-help/certifications.html) for more information about certifications.\n", "item": [ { - "id": "dc103502-7e4c-43db-822a-34964aab2545", + "id": "f04d57e9-6303-4d47-b9c7-d850e8bc2382", "name": "Identity Campaign Certifications by IDs", "request": { "name": "Identity Campaign Certifications by IDs", @@ -30744,7 +30744,7 @@ }, "response": [ { - "id": "530ba9e1-5e31-4686-a0c7-c7469cdb494b", + "id": "d48c1923-e864-4fc1-a3c3-50d2986faf92", "name": "List of identity campaign certifications", "originalRequest": { "url": { @@ -30842,7 +30842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1217af90-8454-43ad-989d-baa3fea0c37b", + "id": "735a12e3-cf75-45d0-9bf8-7db5178d211b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30940,7 +30940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "031312a5-c416-413f-8bd0-fd85e2e091fd", + "id": "189f155f-b42d-4345-9037-cfdc6d4b37dc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31038,7 +31038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95748e26-8f46-47c0-ab0d-a1a8c3f6a247", + "id": "35edd88b-14d1-4002-8760-48a9d5ecd06c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31136,7 +31136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32a9032b-e2c1-493c-b0f4-48b4d755ba24", + "id": "027694cd-74a2-452a-8ab4-da256fb750d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31234,7 +31234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4ef30e5-d963-4925-8fef-52ed89eb107b", + "id": "709c328d-3f73-4e75-b98e-04bcc0894b57", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31338,7 +31338,7 @@ } }, { - "id": "e8f6c9b4-af5d-4ac4-908d-9fa729ac2d9e", + "id": "8a4fe482-09bc-4294-9048-9340d53e5574", "name": "Identity Certification by ID", "request": { "name": "Identity Certification by ID", @@ -31379,7 +31379,7 @@ }, "response": [ { - "id": "16a367a7-419f-4796-a7d6-492bc2735dab", + "id": "bcd45145-7d66-4aa3-a164-c869fcdc1d6c", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -31423,7 +31423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fab4a5c-1736-41c5-97b2-89ec886424b5", + "id": "f5d83021-bc6c-41bb-b93e-b0982c0ba7ab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31467,7 +31467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55b7a12f-67db-4809-a306-0facf10a84d7", + "id": "2ad5ae7a-02a1-4829-9ee6-5147f35c3302", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31511,7 +31511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2a337ff-a419-49bf-9ac8-6bbbbe521cef", + "id": "6f625d4e-e774-4a63-bcb6-cb2c4e89ec98", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31555,7 +31555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d2c41e8-35da-4b62-a76d-e0444edfc97a", + "id": "32f08fe6-70ca-4a1c-ac8e-385886ec3291", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -31599,7 +31599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08b5832c-e3c9-40ba-855a-8719cd96b002", + "id": "6d7e8226-0601-4aa9-aa8a-1260258f3ba5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31643,7 +31643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bad1c28f-ac16-4c4a-a4fe-fd4182bf6fb1", + "id": "37aa8382-7ea3-457e-831e-18afe079afa8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31693,7 +31693,7 @@ } }, { - "id": "50dff238-c176-434b-b4da-95d15ef1a24c", + "id": "4106841e-4f1e-473e-865b-bc92bb932b81", "name": "List of Access Review Items", "request": { "name": "List of Access Review Items", @@ -31808,7 +31808,7 @@ }, "response": [ { - "id": "ebe050ce-e9ec-4841-9473-a326e3a6dec0", + "id": "9c1eb712-3eb8-4c3c-8dd6-9edb7120c850", "name": "A list of access review items", "originalRequest": { "url": { @@ -31926,7 +31926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e6fa626-a80f-4acd-a2d9-4f77513f7814", + "id": "fea662f5-cfbb-4bd2-8667-22314a4283bb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32044,7 +32044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41817e45-4940-48bb-a418-8bba99888552", + "id": "02a405ba-d70b-4a7e-a1c5-302a0e5ffee2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32162,7 +32162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8f68351-1e86-47d7-8251-cacb92e94753", + "id": "a44825f4-b96d-4386-b866-20afa9e27ca0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32280,7 +32280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57f23124-94e3-46a6-8517-4d6c4333d8e8", + "id": "b7818a11-a570-4f39-b0d4-d70865bdc2f5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -32398,7 +32398,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d12e24e-0c47-4ae7-abad-1f0c26aaf2c1", + "id": "c764dced-5b22-4188-abb0-f74754a9daf1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32516,7 +32516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46e503f4-238e-4f8d-92b0-ae9a696a1697", + "id": "a9854ed6-278f-439e-a42d-dfafa01ea448", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32640,7 +32640,7 @@ } }, { - "id": "2c3d2aeb-e0a9-483c-a9ff-3f5518d0e1a4", + "id": "42d2bcf9-c353-4192-84d7-455cbc5f8b1a", "name": "Decide on a Certification Item", "request": { "name": "Decide on a Certification Item", @@ -32695,7 +32695,7 @@ }, "response": [ { - "id": "e65c5843-2faa-4ed5-b150-a9fb398590a7", + "id": "a549bea7-8408-42c8-94bd-a6f223fee1d1", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -32753,7 +32753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1ca8c9b-0c3b-4d3c-84ca-5e3e2a3cd5fe", + "id": "081dca42-de04-402c-a118-0382a7fc8bec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32811,7 +32811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c398e8ab-6475-4ee0-8a53-d607daf5b949", + "id": "869067ce-617b-4c39-b47e-a3bedd1838f4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32869,7 +32869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "619f957b-d462-4c40-80e6-29904829b2db", + "id": "6f537f41-29ff-421c-8fa6-c5b73f8c351d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32927,7 +32927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b875474-853e-42c2-a264-cb8e4beadb7c", + "id": "acebdbb4-6fbe-4b03-afe9-24f8ee1c8b93", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -32985,7 +32985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c0ea183-ee54-4fae-b905-cc8b046fdac7", + "id": "88831ba5-c63b-4823-ae3c-9875434b9e53", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33043,7 +33043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a854949b-358f-461a-814d-bc5545ae4698", + "id": "127ca07b-a46f-41ef-9667-b10b746244f5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33107,7 +33107,7 @@ } }, { - "id": "189d58e3-5afb-4327-9e35-261de74eb56b", + "id": "c465299b-96b8-4745-a296-4a2f94898bfa", "name": "Reassign Identities or Items", "request": { "name": "Reassign Identities or Items", @@ -33162,7 +33162,7 @@ }, "response": [ { - "id": "cee6196d-508b-4e89-934d-0963aecd72fe", + "id": "c6edd61a-5702-4a42-93cc-39da3e20907b", "name": "An identity campaign certification details after completing the reassignment.", "originalRequest": { "url": { @@ -33220,7 +33220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a91e48b7-0cbb-447a-9436-9ed932de6932", + "id": "66ecd47c-74fd-4259-9940-88e9b085a58d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -33278,7 +33278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa804e67-adac-4e29-a9f5-989013eb65b3", + "id": "9fb6e58c-7415-40e1-b550-08dc706c9466", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -33336,7 +33336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "196e6635-8394-4ef8-a664-a18770298ef3", + "id": "3c08367e-9187-4ffe-9a38-ed05f065b6cd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -33394,7 +33394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aac8d39d-6a2d-4600-80c9-346569f7f688", + "id": "05c7fb4e-e4bc-444e-bf8c-16646fd45507", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -33452,7 +33452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16bf3d00-a4b6-4dda-a175-46799b50561e", + "id": "6b3909f7-f722-4790-820a-ebad73d1b3c5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33510,7 +33510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0f23d22-b3ae-446e-9ead-47fe0480804b", + "id": "873b7152-5b3a-40bc-b1e1-5724c58416ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33574,7 +33574,7 @@ } }, { - "id": "73ea2552-f067-4724-8add-6fc86fbb093e", + "id": "54d2cd4f-b1a8-46f8-a4d9-75da5abbc380", "name": "Finalize Identity Certification Decisions", "request": { "name": "Finalize Identity Certification Decisions", @@ -33616,7 +33616,7 @@ }, "response": [ { - "id": "b30b99d7-c2d8-4db7-af48-850507330b4e", + "id": "796d2bfa-7f12-4940-a735-2c2f31fe4471", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -33661,7 +33661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa7381bc-5ff7-41e8-9af8-41f17dd88ff3", + "id": "a8970c1c-6819-4b39-8c8f-98aec68c448a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -33706,7 +33706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d76517e0-af42-4fdc-8785-2b7d060bd65d", + "id": "cce8247b-17cf-44d1-a8d0-47d1300b11c4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -33751,7 +33751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3b5deac-31bd-4000-bec2-334ed1aca83d", + "id": "98d109b7-d67a-4c24-b047-458c90148c96", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -33796,7 +33796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6e140c1-9a07-4c25-92d9-2a679cb58097", + "id": "f469d72b-7259-44f8-8c93-4047083feaa6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -33841,7 +33841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b8c9d67-ec5b-4081-aab3-eb68c0479fdf", + "id": "f26d8613-a2a2-4ee5-9db6-50a810203513", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33886,7 +33886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48433d17-c928-45f9-980e-9ef3c5bf7766", + "id": "4fc13db5-5d0e-42e4-9732-c65551b062ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33937,7 +33937,7 @@ } }, { - "id": "85ae28b9-5980-4adb-a959-162525846ade", + "id": "a63c2ec6-a00d-4919-9b7f-d9c0e089505d", "name": "Permissions for Entitlement Certification Item", "request": { "name": "Permissions for Entitlement Certification Item", @@ -34028,7 +34028,7 @@ }, "response": [ { - "id": "2047d397-b0a8-41e4-bba9-fa9344c8e5a5", + "id": "b75e8a67-d253-4d10-80a2-029d87b685b2", "name": "A list of permissions associated with the given itemId", "originalRequest": { "url": { @@ -34112,7 +34112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "560e12ce-c5c5-4e3c-89bd-3607c7c92448", + "id": "c4470009-4265-425d-8f13-1ddd5bce5537", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34196,7 +34196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf7816b2-b88c-4bbb-aa4f-c0f7506500da", + "id": "5ef5a8cd-b990-471e-b665-f433c1e8a78e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34280,7 +34280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3884604f-d058-4255-b9e3-083cd25c38a9", + "id": "cbc21b27-fd2f-4b42-9aa5-beac1018470a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34364,7 +34364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6efcfbc7-5b8f-4189-9fa6-2a5d61b5c64c", + "id": "c2ef4b49-5501-447a-a2af-2ff778557f6b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -34448,7 +34448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54e472e8-0565-40fe-9822-d447152b307f", + "id": "c70d897c-b85e-4c4a-b8a3-b5657d21366c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -34532,7 +34532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cea97f55-7a76-4d13-af14-0e5fb0bee9f0", + "id": "55b1fd6c-7434-4f08-abd4-cbe18cfe40ef", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34622,7 +34622,7 @@ } }, { - "id": "2c13f2f3-f209-4728-ba21-5e8b16a583b1", + "id": "84537d84-d7d8-47cc-bbdf-a66769c23259", "name": "List of Reviewers for certification", "request": { "name": "List of Reviewers for certification", @@ -34710,7 +34710,7 @@ }, "response": [ { - "id": "7f7ee724-fd37-471e-ae38-18824afc63b4", + "id": "c75a5f86-91be-461e-ae16-6b90595f1d1e", "name": "A list of reviewers", "originalRequest": { "url": { @@ -34801,7 +34801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1864962-7c1a-4d9e-945b-453a8ba6b500", + "id": "80dbeda6-d258-477a-b569-d874638f1349", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34892,7 +34892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "378ae8c8-6ad0-479c-82d0-aff4a08122f3", + "id": "ca393d01-37b2-40af-b2da-bdcc9acae4b3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34983,7 +34983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15b0c199-02b3-4a2a-8e2c-febd08f94fd1", + "id": "db8e6878-0520-4e8b-9d7f-91e2fdce1195", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -35074,7 +35074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "995951d8-fc32-444a-bc01-0f4be30d11b6", + "id": "1d6a9a3c-cc76-42ab-ae28-cf2fa0e3cc94", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -35165,7 +35165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90dba78a-b6a7-4dc6-852a-98d41035e77d", + "id": "a9bcd79e-5406-43be-9efe-3f3c51872ce8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -35256,7 +35256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e55e2dd-1083-4ff4-a19e-ddc9d15cc685", + "id": "60dddcb4-62cd-47de-b524-484b35e6dfb3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35353,7 +35353,7 @@ } }, { - "id": "6f75335c-d4f7-4e17-9e5b-3320e7d3c48a", + "id": "5689f3bb-bfb5-4571-ad72-b043835e24fd", "name": "Reassign Certifications Asynchronously", "request": { "name": "Reassign Certifications Asynchronously", @@ -35408,7 +35408,7 @@ }, "response": [ { - "id": "994ed3f7-888b-4626-a551-62a584b6c30c", + "id": "3f7aae0c-19f0-48a5-951a-85cb90875a17", "name": "A certification task object for the reassignment which can be queried for status.", "originalRequest": { "url": { @@ -35466,7 +35466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "065d65d8-79ef-4923-97b1-ff31f344ebda", + "id": "4c149c3c-4b7c-48f6-8dc2-60c772093e6b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -35524,7 +35524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1da4fd6e-9fbf-41a3-8dcb-ad8fa12e2a99", + "id": "c4e8ca43-8371-489f-97c5-78c990bdd1d1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -35582,7 +35582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f7ee3e1-7f0d-4314-93e7-2da1a57d3612", + "id": "f59f21f2-caa2-41b0-9d21-01cd004143c4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -35640,7 +35640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c5af560-89e2-482c-aa35-97cfc1dc1e5e", + "id": "b47040cb-2d85-490d-89a7-50c32120ade3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -35698,7 +35698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dc4787f-6af8-414e-ac23-449f40d39b58", + "id": "96d2b150-a5c0-4623-bc48-144cc80c5643", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -35756,7 +35756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db36797f-db96-4fd5-be35-6977bc079b44", + "id": "f49a8cce-48ca-4ba2-b4e3-595047897277", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35820,7 +35820,7 @@ } }, { - "id": "77eba88b-7cd5-4505-bfef-cc951bd5216f", + "id": "99f950e8-3be2-4ab4-8084-363d0e97cee6", "name": "Certification Task by ID", "request": { "name": "Certification Task by ID", @@ -35861,7 +35861,7 @@ }, "response": [ { - "id": "3f4bee7a-9296-43de-9c7c-840d2ddb19d2", + "id": "d92405d5-538c-47a1-a22d-b3376f9b50b9", "name": "A certification task", "originalRequest": { "url": { @@ -35905,7 +35905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c6c3885-aee6-4b61-a8fa-21db02a5a13b", + "id": "75e17c65-3703-469d-8c6f-5ef7d8023dcc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -35949,7 +35949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae6bc690-346c-44c3-884e-89308524e251", + "id": "df5eb8a8-51b0-4aff-91c3-1fbb40943457", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -35993,7 +35993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7cb7cf6-07ea-4e80-8abc-ae2895fa27b7", + "id": "8427700a-0650-437a-ab9e-db352622e105", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -36037,7 +36037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16e96fb3-c6e3-48b8-bcf8-1662a7d491c6", + "id": "06acb8e2-1a58-455f-afa0-fec592e03eea", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -36081,7 +36081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "841a9a95-e68e-4f11-a07c-1acc9f3ebf1f", + "id": "24fc0232-33ce-43db-8c4f-1b106e0473f7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -36125,7 +36125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f92ae314-51b6-4c11-a655-faa5a8c0dae4", + "id": "22d54b0d-7259-4d73-b432-165f5607c294", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -36175,7 +36175,7 @@ } }, { - "id": "62333600-9c6f-49c4-9814-69940aea1709", + "id": "06c9f743-dab3-4b36-8e6b-1171051ec165", "name": "List of Pending Certification Tasks", "request": { "name": "List of Pending Certification Tasks", @@ -36250,7 +36250,7 @@ }, "response": [ { - "id": "1e7f4549-c0b7-4517-8af1-3205d491ff5d", + "id": "0a5b4a6a-4645-4556-b41a-001bbd62cb2e", "name": "A list of pending certification tasks", "originalRequest": { "url": { @@ -36339,7 +36339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86bb3ebe-2c72-495f-a1b5-e612bf22b5a9", + "id": "4761a055-2847-4507-8468-61b62621c8ec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -36428,7 +36428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9b95c42-b603-4e0b-98d6-51621c7b8169", + "id": "eedc1ade-8129-4de3-94c9-f3fe19e71b0a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -36517,7 +36517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eccf0ee9-aa90-49d2-8f3d-145924706b90", + "id": "fc10de0a-5830-4983-a8a2-374c3d025255", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -36606,7 +36606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "064bff75-e2cb-4548-8857-c45e001d638b", + "id": "2bca9ebe-6a09-4910-a3b4-c0f84fae79e1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -36695,7 +36695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62a8c602-ddd5-4715-9f96-3ca6a3977cb3", + "id": "b0b1c149-659e-411c-9cfd-5095ccf33b5c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -36784,7 +36784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08c93c78-def6-4e57-afa3-798e24d4873b", + "id": "051de782-0f40-46b5-8358-05330ffe1bbb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -36885,7 +36885,7 @@ "description": "Use this API to implement certification summary functionality. \nWith this functionality in place, administrators and designated certification reviewers can review summaries of identity certification campaigns and draw conclusions about the campaigns' scope, security, and effectiveness. \nImplementing certification summary functionality improves organizations' ability to review their [certifications](https://documentation.sailpoint.com/saas/user-help/certifications.html) and helps them satisfy audit and regulatory requirements by enabling them to trace access changes and the decisions made in their review processes. \n\nA certification refers to IdentityNow's mechanism for reviewing a user's access to entitlements (sets of permissions) and approving or removing that access. \nThese certifications serve as a way of showing that a user's access has been reviewed and approved. \nMultiple certifications by different reviewers are often required to approve a user's access. \nA set of multiple certifications is called a certification campaign. \n\nFor example, an organization may use a Manager Certification as a way of showing that a user's access has been reviewed and approved by their manager, or if the certification is part of a campaign, that the user's access has been reviewed and approved by multiple managers. \nOnce this certification has been completed, IdentityNow would provision all the access the user needs, nothing more. \n\nCertification summaries provide information about identity certification campaigns such as the identities involved, the number of decisions made, and the access changed. \nFor example, an administrator or designated certification reviewer can examine the Manager Certification campaign to get an overview of how many entitlement decisions are made in that campaign as opposed to role decisions, which identities would be affected by changes to the campaign, and how those identities' access would be affected.\n", "item": [ { - "id": "76423803-d516-46ea-981f-d086b1e5e945", + "id": "b445b076-78a0-4721-93ec-f59258cfd84f", "name": "Summary of Certification Decisions", "request": { "name": "Summary of Certification Decisions", @@ -36937,7 +36937,7 @@ }, "response": [ { - "id": "29158246-ac40-4ceb-a902-f2d1ea88ae06", + "id": "133359ed-37c2-4543-bc04-af7060a341e0", "name": "Summary of the decisions made", "originalRequest": { "url": { @@ -36992,7 +36992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bf339ed-b1d8-4d2e-8a8b-665accd20e86", + "id": "1381929a-0eea-4561-a64b-60810b79b266", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -37047,7 +37047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9d2f3e9-bab6-4a80-a6cf-dd05fa33ff0d", + "id": "b3f64c14-0a16-461c-bf5d-e3b710524b71", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -37102,7 +37102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "179501c4-422f-4a62-a2b2-eb18ebe2f1e8", + "id": "7f46ae9f-5b13-4ca0-800a-97005c88dff3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -37157,7 +37157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d349201-2608-498d-b0bb-bca12d6d8a45", + "id": "6af0b0e8-871d-4b5f-b312-c2df151abc31", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -37212,7 +37212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3a4fc85-8aee-4835-b395-ee24b6b23898", + "id": "10bedf9d-118c-4401-8c89-8e6d61df4b43", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -37267,7 +37267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c466053-d9f6-4e36-8c4e-75676a74a705", + "id": "f99e0116-3599-4bd8-9c79-4637ddf0d1fe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -37328,7 +37328,7 @@ } }, { - "id": "c4691d55-a838-4712-b65b-b35b60505160", + "id": "ce55c250-e2de-4c7f-b665-ed67da138e0a", "name": "Identity Summaries for Campaign Certification", "request": { "name": "Identity Summaries for Campaign Certification", @@ -37416,7 +37416,7 @@ }, "response": [ { - "id": "9b2689b0-e046-4df6-b19f-ec14029e5c49", + "id": "35c1d66c-30cf-4757-a518-09ba6d0a572e", "name": "List of identity summaries", "originalRequest": { "url": { @@ -37507,7 +37507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b0c3664-a937-413e-acfb-74473e0fcd08", + "id": "7c2269fe-a614-4f8a-b8b1-2cdb80cf3003", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -37598,7 +37598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9057b4ac-538b-457c-af01-4dea49166d88", + "id": "98de6258-b752-4329-9b49-07adf35a5a39", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -37689,7 +37689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f4b75c6-c0fe-457c-af23-e353b70b3d8c", + "id": "7b4d1352-dab5-4e7a-849c-d4e297731614", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -37780,7 +37780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dc1910d-7aaa-40b8-a0f6-0da02c7cdb4a", + "id": "7c507d0a-d0c5-4cff-ae2a-eded963aa7b9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -37871,7 +37871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75bbd5ea-6b93-48d3-af6d-116f1ae2f084", + "id": "20dc57b6-4a92-43a1-9a0b-46b1a40f946f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -37962,7 +37962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99fb5ef0-557f-4b02-a07c-54a585112de5", + "id": "87fdb193-8ea5-4743-8038-8428da49f532", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -38059,7 +38059,7 @@ } }, { - "id": "53a09a8a-89b1-45fc-a746-88238a81d01f", + "id": "2ab04afb-bd21-46c5-9c68-f6ce044f59a5", "name": "Access Summaries", "request": { "name": "Access Summaries", @@ -38158,7 +38158,7 @@ }, "response": [ { - "id": "eedd5326-4fd7-4091-ae2d-84df5dab8b0f", + "id": "8d388c97-b270-45c6-874a-b8c1048929d9", "name": "List of access summaries", "originalRequest": { "url": { @@ -38250,7 +38250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7373280-57aa-4b48-a7aa-16b05e34421a", + "id": "f83091de-d119-487e-84af-e6ea65118aa1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38342,7 +38342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffd1b264-fb36-4952-b1d7-f9ea47ee3bc3", + "id": "a7735cbb-6ac4-4d13-910f-dc7b36544774", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -38434,7 +38434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e3a4158-7491-45d0-b018-8ffd7ca60c24", + "id": "b32c2e18-b106-4e60-823e-abd434172fb0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38526,7 +38526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ceccf46-84ba-470f-a45e-f9e6189cb580", + "id": "807176fa-d041-4dd4-bc2a-55a6303621a2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -38618,7 +38618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54f397ec-98e0-49e4-8b6b-5cfe216b1aa1", + "id": "8157f73e-bac0-4972-99c2-a1da4b82e4cb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -38710,7 +38710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f784d8ed-0f62-4200-afbb-bf290f848364", + "id": "b3ea2697-a490-4048-999d-18d3ed1ba3c2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -38808,7 +38808,7 @@ } }, { - "id": "6f47b8a9-314b-47dc-93f9-e6c2ae4ff282", + "id": "5236acb2-6fda-42b3-be31-3be9518cdfe9", "name": "Summary for Identity", "request": { "name": "Summary for Identity", @@ -38861,7 +38861,7 @@ }, "response": [ { - "id": "c55c9eaf-46c5-4c01-8db1-e084172e3865", + "id": "b9e978b2-b4f5-4150-9fb3-d513abf809d7", "name": "An identity summary", "originalRequest": { "url": { @@ -38907,7 +38907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36d9f1ec-cf16-41ec-9238-eb986819bdcd", + "id": "7b813201-2698-4136-8666-32118baecdbc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38953,7 +38953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "759d33f5-5ba8-45e1-a4e6-d0789b82cf45", + "id": "20995a62-9f24-43db-9d2e-34debd7272c6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -38999,7 +38999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93a30920-ece3-4a78-afc4-f55d24670f31", + "id": "f36e913d-ee07-4255-890f-411c3edbd16e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -39045,7 +39045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b5f7b34-2215-45fd-bb0c-8372e29b3c81", + "id": "becd129d-1ddb-4ff2-94cf-266e3a7987ac", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -39091,7 +39091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e5d5e7b-9f52-4fa0-99bf-b78f97cb346a", + "id": "78bf793d-7577-4d43-8902-930520dc9389", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -39137,7 +39137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fcae81d-5dff-4954-859c-f10e72694f30", + "id": "342d3510-bc3c-4a56-8f6a-d41ffdb9b96e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39195,7 +39195,7 @@ "description": "Use this API to implement the certification campaign filter functionality. These filters can be used to create a certification campaign that includes a subset of your entitlements or users to certify.\n\nFor example, if for a certification campaign an organization wants to certify only specific users or entitlements, then those can be included/excluded on the basis of campaign filters.\n\nFor more information about creating a campaign filter, refer to [Creating a Campaign Filter](https://documentation.sailpoint.com/saas/help/certs/campaign_filters.html#creating-a-campaign-filter)\n\nYou can create campaign filters using any of the following criteria types:\n\n- Access Profile : This criteria type includes or excludes access profiles from a campaign.\n\n- Account Attribute : This criteria type includes or excludes certification items that match a specified value in an account attribute.\n\n- Entitlement : This criteria type includes or excludes entitlements from a campaign.\n\n- Identity : This criteria type includes or excludes specific identities from your campaign.\n\n- Identity Attribute : This criteria type includes or excludes identities based on whether they have an identity attribute that matches criteria you've chosen.\n\n- Role : This criteria type includes or excludes roles, as opposed to identities.\n\n- Source : This criteria type includes or excludes entitlements from a source you select.\n\nFor more information about these criteria types, refer to [Types of Campaign Filters](https://documentation.sailpoint.com/saas/help/certs/campaign_filters.html#types-of-campaign-filters)\n\nOnce the campaign filter is created, it can be linked while creating the campaign. The generated campaign will have the items to review as per the campaign filter.\n\nFor example, An inclusion campaign filter is created with a source of Source 1, an operation of Equals, and an entitlement of Entitlement 1. When this filter is selected, only users who have Entitlement 1 are included in the campaign, and only Entitlement 1 is shown in the certification.\n", "item": [ { - "id": "927b71cc-143e-473e-8a33-9e0d2e5e2fba", + "id": "11f84b08-280a-44bf-a3e9-828af4eab546", "name": "Create a Campaign Filter", "request": { "name": "Create a Campaign Filter", @@ -39237,7 +39237,7 @@ }, "response": [ { - "id": "6693a66a-5ccb-4816-9fe2-133aaedad6f0", + "id": "9b09e975-2309-4f23-8748-98e43ddbaef4", "name": "Created successfully.", "originalRequest": { "url": { @@ -39293,7 +39293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ddabdf8-028f-4740-bc9c-69e851bf40e1", + "id": "4a9c8c3f-fa7a-4a07-a8e3-4fce052075ee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39349,7 +39349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51c1bf0a-88a2-417d-be81-7ee2b3c74aa6", + "id": "0c72449f-ffbc-43c8-82be-70a736bfe6c3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -39405,7 +39405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbf8e683-f8e9-414f-a7eb-bb97cf867efb", + "id": "f87cafc7-9491-4eb1-b083-d1ec8c8e5dca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -39461,7 +39461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93d4950e-321f-4c74-a134-c31394958935", + "id": "1d27f78d-3e9c-4daa-88b2-20769bed05da", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -39517,7 +39517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "227f6c6f-f4f9-4aaf-a3f2-011e8d1e72d8", + "id": "145ed9c5-14c9-4a6b-ad52-214902b50e99", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39579,7 +39579,7 @@ } }, { - "id": "35f377cf-6d04-4e76-bab8-b1551671baaf", + "id": "af247d6d-d7b1-4d59-a8c3-37f279b2b9cd", "name": "List Campaign Filters", "request": { "name": "List Campaign Filters", @@ -39636,7 +39636,7 @@ }, "response": [ { - "id": "e469bace-a1ba-409b-a8a4-ddee24314ae6", + "id": "9a337f96-4640-4819-8a8c-bfd238c077d5", "name": "List of campaign filter objects", "originalRequest": { "url": { @@ -39707,7 +39707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "794df800-e91d-4801-984a-a6deb30e6f7b", + "id": "62e8cdd3-8aa7-416c-a1b3-5ae6483c7b12", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39778,7 +39778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48f7309a-d482-4f5c-b9e8-e513ca36131d", + "id": "023c772b-17fa-4a4a-83a5-503c077895b7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -39849,7 +39849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e37a1fc5-5737-47af-b851-fd2bf440917b", + "id": "a844b8fb-4086-4ca3-a94a-ed23c74f5ede", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -39920,7 +39920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fb4ab72-4e09-4345-b8cd-ead54178a8b8", + "id": "11fc0cef-35a1-4811-8b2c-7efaa5d1a7b8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -39991,7 +39991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17d71ae5-a188-49d0-b6de-d092181b46be", + "id": "93d63e4e-a090-480d-88d9-08121d857605", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40068,7 +40068,7 @@ } }, { - "id": "ab99f601-941f-4358-b4bc-8ecbd51661c7", + "id": "d65826eb-c171-44e9-891a-57519ef3785c", "name": "Get Campaign Filter by ID", "request": { "name": "Get Campaign Filter by ID", @@ -40113,7 +40113,7 @@ }, "response": [ { - "id": "5a3a603e-738e-486f-bf0a-14dc7da14a94", + "id": "19a9bec1-162e-4241-974d-61ebe1f394a7", "name": "A campaign filter object.", "originalRequest": { "url": { @@ -40157,7 +40157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1f7e06e-657d-4f19-ad52-e75b8e42917f", + "id": "85483583-aeec-484a-948a-09910452c53d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40201,7 +40201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "064156a0-3c36-4ada-8c4e-00405b6c21cf", + "id": "56eb14ca-57a1-4d80-9d26-5b5fa9eb9099", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40245,7 +40245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6de1956-39dd-4cbe-8ac0-2120e0ed0d50", + "id": "35cb477d-f9c8-434c-b084-1190ac0bf75d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40289,7 +40289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2124faa-560c-48e5-a75a-bfd881ed3012", + "id": "3b272399-af71-4537-9d42-da207452ea5f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -40333,7 +40333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e3fdac7-ecc1-46ae-8387-d9962edd2514", + "id": "5c0cdbea-045a-42d7-96fe-1f0bb846f443", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -40377,7 +40377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "289abada-0c60-4600-8fd8-e5673a75f78f", + "id": "4251be4c-7898-4ce0-a3d2-bd3e5d11c214", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40427,7 +40427,7 @@ } }, { - "id": "9c737416-ab3a-48e6-b1ae-58f3a10ec5c3", + "id": "35f7c33b-0e3e-44f8-bd3a-a3e1cc805172", "name": "Updates a Campaign Filter", "request": { "name": "Updates a Campaign Filter", @@ -40485,7 +40485,7 @@ }, "response": [ { - "id": "4732171f-011a-48da-9b5e-543f375f4779", + "id": "2b964efb-0e88-4d1a-807c-76fb01a04a14", "name": "Created successfully.", "originalRequest": { "url": { @@ -40542,7 +40542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1edc65e5-25d7-484c-b95f-dca3dcb919c7", + "id": "8e06bfbf-71b0-473c-9b55-cc3ddab62734", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40599,7 +40599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "581f95be-444f-40a1-888d-d9bb36fe4353", + "id": "5ddb9173-ee32-43a7-abab-396627f2cd56", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40656,7 +40656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a34515ce-3ca5-41fa-a138-c04e44b11e60", + "id": "e5c27255-a0ab-4a2c-94bb-387ace5c578d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40713,7 +40713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "653a28f1-0b73-4254-857e-bee032f61ebc", + "id": "18f7e1c8-9aee-4942-99a2-656b42b94163", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -40770,7 +40770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2949948-a844-46e3-952b-ce5b5d69af7b", + "id": "c8b56c40-adc4-4a01-9b57-e0eb01ef2c00", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40833,7 +40833,7 @@ } }, { - "id": "130ac9b3-3dd7-46bf-8bc2-fdafb95bd120", + "id": "12497bbb-a0b7-4769-8519-22bda0895db3", "name": "Deletes Campaign Filters", "request": { "name": "Deletes Campaign Filters", @@ -40876,7 +40876,7 @@ }, "response": [ { - "id": "e3b2b10f-0414-4fd6-be54-a5d2a1f92746", + "id": "fbb28a3f-8f68-402b-844a-772381747dd1", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -40923,7 +40923,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e3161963-6014-4bc3-9417-8bbbc2435a59", + "id": "afe2190f-077f-4c43-b3fa-57c0374ce896", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40980,7 +40980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e18aded9-561b-4266-8927-8910098a56b8", + "id": "bdc5b555-79de-4ee6-9200-ce533d8a51a1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41037,7 +41037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffe3df3d-c687-4f25-be29-2f80713fb941", + "id": "a008f0f2-ba57-4b04-86e7-92add637a9cd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41094,7 +41094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3151b9a4-4307-4f6a-b627-591c72542c22", + "id": "7b925293-e4d8-4c48-a398-fa2529369972", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41151,7 +41151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "571f8e82-6815-4ee3-aa09-b66285d447ce", + "id": "5881ce30-ecd9-4fc4-8480-646d62e9234f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41208,7 +41208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11117ca2-95dc-4f86-ba28-cf0d05aaa892", + "id": "77f01d53-ac4d-4a3b-aace-d628945caef7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41277,7 +41277,7 @@ "description": "Use this API to implement connector functionality.\nWith this functionality in place, administrators can view available connectors.\n\nConnectors are the bridges IdentityNow uses to communicate with and aggregate data from sources.\nFor example, if it is necessary to set up a connection between IdentityNow and the Active Directory source, a connector can bridge the two and enable IdentityNow to synchronize data between the systems.\nThis ensures account entitlements and states are correct throughout the organization.\n\nIn IdentityNow, administrators can use the Connections drop-down menu and select Sources to view the available source connectors.\n\nRefer to [IdentityNow Connectors](https://documentation.sailpoint.com/connectors/identitynow/landingpages/help/landingpages/identitynow_connectivity_landing.html) for more information about the connectors available in IdentityNow.\n\nRefer to [SaaS Connectivity](https://developer.sailpoint.com/idn/docs/saas-connectivity) for more information about the SaaS custom connectors that do not need VAs (virtual appliances) to communicate with their sources.\n\nRefer to [Managing Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html) for more information about using connectors in IdentityNow.\n", "item": [ { - "id": "6d76afcb-fd46-4497-ac24-e52c50a53978", + "id": "a6d437e1-9e0d-44c8-a438-19d2e8a2ae8a", "name": "Create custom connector", "request": { "name": "Create custom connector", @@ -41319,7 +41319,7 @@ }, "response": [ { - "id": "54ba4818-24f9-4a5d-b68c-598aedd4fb0c", + "id": "6065786e-c9b0-4af1-9d73-f9a7a0ad6afb", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -41375,7 +41375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07c3d6c3-8692-4f70-883e-04fad7fd1373", + "id": "0787bc3f-8feb-4d79-af39-148f507e2b46", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41431,7 +41431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c55d249d-b111-4bc9-acf3-af239421b145", + "id": "629d8cb2-ffd8-4887-9184-3966da50af23", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41487,7 +41487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84403775-38b6-4539-aa0f-f03520d1f40e", + "id": "774f8c98-c4d9-4f2f-a734-c0463507a310", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41543,7 +41543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a808372-7173-4f2f-945c-6d4347b0d6b8", + "id": "49ee8c84-7d9e-4e20-abbb-ed4212b0c66e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41599,7 +41599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0eb2e6e-f831-4130-ac66-9f67619f9fbe", + "id": "85453e90-58fa-496e-be41-b633bb079ae1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41655,7 +41655,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d69e1e7d-e96d-4ff4-8d89-152bb95d61ef", + "id": "078b6cdd-9fea-43f3-8f96-65d90d34fb07", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41717,7 +41717,7 @@ } }, { - "id": "bdc710bf-357f-4b98-ad23-cc8a9221a21d", + "id": "7f8efad7-528e-4ba5-b930-60075adbdd11", "name": "get Connector", "request": { "name": "get Connector", @@ -41768,7 +41768,7 @@ }, "response": [ { - "id": "6908b485-4a22-4d04-b16f-a96a40fe9e46", + "id": "a4845b28-e373-4152-88f4-7bccba6cfbf7", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -41822,7 +41822,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3076f6d5-4b64-4573-b36e-d2654999aef9", + "id": "03702159-0601-4ff2-a5a0-8f1a7623fed9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41876,7 +41876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "099731c6-8f37-479d-b4bc-b1cba251457e", + "id": "3363bdd8-5cfc-498e-b207-2f8f0adcbdee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41930,7 +41930,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05e354e7-b701-4729-9130-e90a4532fab8", + "id": "cd9711dc-26bf-4039-9881-30b2ea4df007", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41984,7 +41984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7a61a6e-c033-4a98-af45-e051dc1d733b", + "id": "3fd2b96e-dbd6-4fc3-b5ab-3f7f64635348", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -42038,7 +42038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8a154fc-312b-4b42-8a54-06684dd62fc0", + "id": "b0d9bffb-5fbb-4733-aa35-646bf556bce5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42092,7 +42092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b76b4d38-677f-40d6-881a-bf2656dd6e84", + "id": "0d319ab4-f421-452d-8f42-c7ffc613645b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42152,7 +42152,7 @@ } }, { - "id": "d1edbbd9-f71b-4fe0-a606-f7cfd3f73355", + "id": "5e850ec0-e602-4b2a-9701-3b8e6a242e42", "name": "delete Custom Connector", "request": { "name": "delete Custom Connector", @@ -42193,7 +42193,7 @@ }, "response": [ { - "id": "2270e939-9cf4-472e-a26f-667296a575bc", + "id": "0dc84aae-b6a8-461f-8796-6d062fa8b64c", "name": "The custom connector was successfully deleted.", "originalRequest": { "url": { @@ -42227,7 +42227,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2486d777-739b-4a24-8cae-d67dbe9735c8", + "id": "2c8f53fe-42ea-4613-8fd4-32be4f2ae56e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42271,7 +42271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2452170-1679-4f64-a41c-9c6c4d7e0ff4", + "id": "42a054a0-b2c2-47b2-bbb4-477755c1496f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42315,7 +42315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6eb55982-d236-4f43-bc73-0532cdb500c5", + "id": "c8230bcd-8fd4-4fd3-97a7-840d2a28834b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42359,7 +42359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96bbc534-5bea-4964-bcc3-84197ecdd590", + "id": "8456f78b-f8cc-4bff-860a-42d094a87457", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -42403,7 +42403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37895136-df66-4a6d-a1e6-49c3f54a08f2", + "id": "8a23ef1f-c778-4a55-aa3c-ad37540597d7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42447,7 +42447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f7b2f02-1d12-4a45-b6ed-76c43eff48b7", + "id": "3f5f6780-f6dd-489f-abec-d5a83cc003af", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42497,7 +42497,7 @@ } }, { - "id": "04241057-6123-4d2a-a7da-1f8c2bba8333", + "id": "45a5f79e-79af-4c4a-8222-3aebced722af", "name": "update Connector", "request": { "name": "update Connector", @@ -42551,7 +42551,7 @@ }, "response": [ { - "id": "a0b87d4a-93c7-4d85-8efb-d42aab9133dc", + "id": "0c94b12a-475b-4d56-81a7-f07ec0d51f08", "name": "A updated Connector Dto object", "originalRequest": { "url": { @@ -42608,7 +42608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe7245e8-e1bb-4f77-9562-d284a0712cc4", + "id": "b2559e0c-991c-4608-b49b-c08af205a928", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42665,7 +42665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5bfb978-36b4-4b2d-b66d-730c995e9b03", + "id": "ef29c9bd-860e-40a7-bb5c-8176cae114be", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42722,7 +42722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ca455b8-7603-4212-a172-f97390de57d5", + "id": "f0184c2c-062d-4059-be4a-cb2f17726f65", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42779,7 +42779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac4f01b3-3903-491d-93f4-38e5e1a43c13", + "id": "9f795857-7626-47e7-929a-63761440eae7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -42836,7 +42836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "563b5ab3-ea8c-4ae0-8286-78d7eabb1b9b", + "id": "da48c994-071c-4328-b695-c040d76d2375", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42893,7 +42893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c308ea55-3c7e-4338-adb6-374d6989393f", + "id": "2011c0c7-12cd-466e-9b98-6cdd0868fb00", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42956,7 +42956,7 @@ } }, { - "id": "e56a723a-37de-4b48-87ec-0413b6ed09f0", + "id": "3c127fdb-b1be-4456-a4a5-d39b7ac46eec", "name": "get Connector Source Config", "request": { "name": "get Connector Source Config", @@ -42998,7 +42998,7 @@ }, "response": [ { - "id": "93d74b75-7974-4fe7-a959-3587dea4c677", + "id": "24484579-bf05-4086-99e0-a63f9c4886c7", "name": "The connector's source template", "originalRequest": { "url": { @@ -43043,7 +43043,7 @@ "_postman_previewlanguage": "xml" }, { - "id": "578d79cf-b3a4-46ba-851b-1c50acc6fced", + "id": "c3c82804-417c-4ac2-8029-51dfbb3bec94", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43088,7 +43088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88f018d9-a75b-4ba3-911a-74034462cbb1", + "id": "632d1a5e-e104-481b-8207-99c8bbb73304", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43133,7 +43133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f392f1b5-737f-48cc-ac00-800d074dd880", + "id": "0d2656f6-f7d3-4ac4-b354-e403747829b5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43178,7 +43178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6326a20d-71d6-4ce1-a780-64623e4553cb", + "id": "7e18d3fb-65f9-47ea-9777-92281df84838", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -43223,7 +43223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d636140-5619-413f-9383-e20edc8534b1", + "id": "fce7f90e-82ff-4505-bdae-3485bb629d10", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -43268,7 +43268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6be0df57-2a38-4814-bcfa-4b0a7f2e0d8f", + "id": "3548214c-587c-470c-8662-4cab52e41399", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43319,7 +43319,7 @@ } }, { - "id": "3a9f0d5c-10a5-4bea-9928-b38d4e64bc8e", + "id": "572c3aed-3545-42f2-b099-ea073fabf673", "name": "put Source Config", "request": { "name": "put Source Config", @@ -43370,7 +43370,7 @@ "type": "text/plain" }, "key": "file", - "value": "reprehenderit adipisicing nostrud sed aliqua", + "value": "Duis dolore qui", "type": "text" } ] @@ -43378,7 +43378,7 @@ }, "response": [ { - "id": "e6c7a917-5b11-4b25-8760-23f6c880ceb3", + "id": "a9ae260f-cde1-4cae-8f6e-3db0850297f2", "name": "The connector's update detail", "originalRequest": { "url": { @@ -43421,7 +43421,7 @@ "type": "text/plain" }, "key": "file", - "value": "reprehenderit adipisicing nostrud sed aliqua", + "value": "Duis dolore qui", "type": "text" } ] @@ -43440,7 +43440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e80e0e1e-6623-41e2-907c-26ca45b1f633", + "id": "c4d108e1-4ba5-4bb9-bc53-da85731be876", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43483,7 +43483,7 @@ "type": "text/plain" }, "key": "file", - "value": "reprehenderit adipisicing nostrud sed aliqua", + "value": "Duis dolore qui", "type": "text" } ] @@ -43502,7 +43502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33a94ddc-7a0d-4b76-8d12-f963e4a9b827", + "id": "27da94d1-cfa4-4a3c-92a0-1eccb26f1e3d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43545,7 +43545,7 @@ "type": "text/plain" }, "key": "file", - "value": "reprehenderit adipisicing nostrud sed aliqua", + "value": "Duis dolore qui", "type": "text" } ] @@ -43564,7 +43564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21b99457-ab9f-4e15-b2b2-d4f33b01420c", + "id": "e48544d2-ca78-4d3c-9af1-3f219c349c79", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43607,7 +43607,7 @@ "type": "text/plain" }, "key": "file", - "value": "reprehenderit adipisicing nostrud sed aliqua", + "value": "Duis dolore qui", "type": "text" } ] @@ -43626,7 +43626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71eff872-b116-4257-8368-756486aaf508", + "id": "3f3b10b8-f26f-4e97-81a5-23165765cd5b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -43669,7 +43669,7 @@ "type": "text/plain" }, "key": "file", - "value": "reprehenderit adipisicing nostrud sed aliqua", + "value": "Duis dolore qui", "type": "text" } ] @@ -43688,7 +43688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e20daafd-808b-4852-8cac-17bca0e01b37", + "id": "9f89441b-c82f-4012-bbea-fe806ddfad82", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -43731,7 +43731,7 @@ "type": "text/plain" }, "key": "file", - "value": "reprehenderit adipisicing nostrud sed aliqua", + "value": "Duis dolore qui", "type": "text" } ] @@ -43750,7 +43750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4def0a27-5d1e-4faa-8955-a61e18c18f1e", + "id": "9dca72a0-dad3-460d-afa8-73126e46d194", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43793,7 +43793,7 @@ "type": "text/plain" }, "key": "file", - "value": "reprehenderit adipisicing nostrud sed aliqua", + "value": "Duis dolore qui", "type": "text" } ] @@ -43818,7 +43818,7 @@ } }, { - "id": "b2f0595c-83e9-46c0-be55-6bbd713feace", + "id": "69959ec7-c5da-425e-92f1-91697427c19e", "name": "get Connector Translations", "request": { "name": "get Connector Translations", @@ -43871,7 +43871,7 @@ }, "response": [ { - "id": "aa68f82e-3f43-423c-b0d6-7042e407d066", + "id": "944a1dcb-f187-4428-bb07-56f80e67c09b", "name": "The connector's translations", "originalRequest": { "url": { @@ -43912,12 +43912,12 @@ "value": "text/plain" } ], - "body": "cupidatat velit ut dolor", + "body": "ut nulla pariatur", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "c5cdb479-b49d-47f3-8e0b-6d5d95134325", + "id": "a70fefe1-5d6e-41fe-885e-f6d8881839b5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43963,7 +43963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0f76162-3845-4259-bcbe-f652d89eb6f9", + "id": "d118577b-9c63-4978-857f-16ec37739ecf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44009,7 +44009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1732782-bebb-45bf-919f-b232f85ce215", + "id": "b106e963-d14e-4d36-85b5-2011d83751fc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44055,7 +44055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbef0055-cec5-4126-aacb-11fcc04afc3a", + "id": "fa9e473a-7d6d-40ae-8e93-5e66941f48dc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44101,7 +44101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d4bd98f-32bf-4337-96aa-069aa86b7c59", + "id": "49fdd58c-da48-4550-a314-a863224dd37b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44147,7 +44147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16c738b2-333f-4c97-8f6c-dd5cdb81d887", + "id": "8aed20cb-0125-4b4a-a833-48fd09e2fe54", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44199,7 +44199,7 @@ } }, { - "id": "157ad70f-32c3-4cfe-8548-2568d91b3db5", + "id": "bea4922d-6487-4cd5-b06e-0f87ade15cc6", "name": "put Translations", "request": { "name": "put Translations", @@ -44259,7 +44259,7 @@ }, "response": [ { - "id": "767468f0-9077-42fc-8a6a-0bd941cab7b8", + "id": "aa3a01de-c162-4032-b41a-e554630c2f23", "name": "The connector's update detail", "originalRequest": { "url": { @@ -44312,7 +44312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b118b54c-009b-45fe-a32e-4e05c2eaa540", + "id": "6a8cc7d9-c7c5-4443-b3ac-4d1743f15be4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44365,7 +44365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ccccf71-4ed9-4938-9104-e4dba053d4c2", + "id": "08dd69d5-0783-410e-b060-2caa50514bde", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44418,7 +44418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6344ae4a-2830-456d-845a-8a9e3ee418de", + "id": "394bae05-2d0c-4407-afbd-b625d82494f2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44471,7 +44471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d067a1b4-e1aa-45ac-93a9-37dc46199176", + "id": "7f63caf0-06c8-4995-8761-b1c277892be5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44524,7 +44524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a52c0682-8bff-411e-aa5f-1fa9f491241a", + "id": "ec11f4eb-a374-4f4f-aaa8-48c319acaee1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44577,7 +44577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75460ef1-cba4-4540-998c-0b39b217feae", + "id": "babfe90b-8f74-41b8-ad5c-0da9048e4c43", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44636,7 +44636,7 @@ } }, { - "id": "f90056f4-e82c-4c62-88ef-108118c64ea2", + "id": "f67191da-c19b-4f97-8841-e39565c2aba4", "name": "get Connector Source Template", "request": { "name": "get Connector Source Template", @@ -44678,7 +44678,7 @@ }, "response": [ { - "id": "51de224a-0338-48f4-91ec-339810e0bf18", + "id": "a91ed314-9c81-41c4-8100-025e843b7763", "name": "The connector's source template", "originalRequest": { "url": { @@ -44723,7 +44723,7 @@ "_postman_previewlanguage": "xml" }, { - "id": "f259d557-9005-43e0-87d3-642cca2604ef", + "id": "bb1d8008-df36-47df-8415-d57ea4a50172", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44768,7 +44768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98e554e7-4a9a-4603-9521-742ae66df86e", + "id": "462a1a74-8312-4d41-86d9-fc4ecc6f03f4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44813,7 +44813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93566ade-a451-49dd-a92c-f4381eb435a9", + "id": "c0a3f3a4-ca86-4f6a-aef5-f1fe433b5df3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44858,7 +44858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9af4de80-2dcb-4197-bc65-903bcc3175ae", + "id": "291f40e1-bf06-4b67-b43c-313af802a622", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44903,7 +44903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53605a97-d742-4428-9bab-e7e6746f8c7a", + "id": "711418a3-d461-4aa0-bdbf-d6537764f9ce", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44948,7 +44948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd3796b2-abb1-495f-b1fe-f14138c990fe", + "id": "41ed4d87-b5af-4794-b140-4f3359a527cf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44999,7 +44999,7 @@ } }, { - "id": "6beddab9-adc6-4aa4-9471-02759e95ed67", + "id": "50cd4f38-974a-4e95-bde7-c68be20a1821", "name": "put Source Template", "request": { "name": "put Source Template", @@ -45050,7 +45050,7 @@ "type": "text/plain" }, "key": "file", - "value": "laboris enim dolor", + "value": "Ut enim qui eiusmod", "type": "text" } ] @@ -45058,7 +45058,7 @@ }, "response": [ { - "id": "35ec0fe5-595b-4910-96fc-07dfed44f0fd", + "id": "6e7a669d-ff4d-47a5-887f-ab4e10dbf1cc", "name": "The connector's update detail", "originalRequest": { "url": { @@ -45101,7 +45101,7 @@ "type": "text/plain" }, "key": "file", - "value": "laboris enim dolor", + "value": "Ut enim qui eiusmod", "type": "text" } ] @@ -45120,7 +45120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3fe874e-e4b4-40ad-8965-795e153a889d", + "id": "36aab409-2950-4af1-a494-10911100afa9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45163,7 +45163,7 @@ "type": "text/plain" }, "key": "file", - "value": "laboris enim dolor", + "value": "Ut enim qui eiusmod", "type": "text" } ] @@ -45182,7 +45182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0db0023c-3f6e-4ba5-986f-1f1a0bf8b0a5", + "id": "bc4cd857-1d21-479d-b60a-c636db69143e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45225,7 +45225,7 @@ "type": "text/plain" }, "key": "file", - "value": "laboris enim dolor", + "value": "Ut enim qui eiusmod", "type": "text" } ] @@ -45244,7 +45244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77a89cf9-b950-44ab-8160-7c6e85e8fbb7", + "id": "ac62c0f6-0d70-4cc4-bf0d-9d134191c4aa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45287,7 +45287,7 @@ "type": "text/plain" }, "key": "file", - "value": "laboris enim dolor", + "value": "Ut enim qui eiusmod", "type": "text" } ] @@ -45306,7 +45306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8afa57e-4e5f-4d93-a49d-1726c2b5e81c", + "id": "84c13d9d-4062-4bef-8570-e9ad69f241a8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -45349,7 +45349,7 @@ "type": "text/plain" }, "key": "file", - "value": "laboris enim dolor", + "value": "Ut enim qui eiusmod", "type": "text" } ] @@ -45368,7 +45368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed6da630-11eb-4849-ad14-9a0cbdae4ba6", + "id": "51cea351-aae9-4d54-9bb9-ad33427e13e3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45411,7 +45411,7 @@ "type": "text/plain" }, "key": "file", - "value": "laboris enim dolor", + "value": "Ut enim qui eiusmod", "type": "text" } ] @@ -45430,7 +45430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a5ccaca-ee10-4619-a67b-1590e2792547", + "id": "9246cabc-0376-4bf2-971e-8eb414e645e5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45473,7 +45473,7 @@ "type": "text/plain" }, "key": "file", - "value": "laboris enim dolor", + "value": "Ut enim qui eiusmod", "type": "text" } ] @@ -45498,7 +45498,7 @@ } }, { - "id": "9ee10483-abd5-4c27-a7bd-0211ebfebdf1", + "id": "b568fbaf-b6bc-4131-9baf-d6b62159c25d", "name": "get Connector Correlation Config", "request": { "name": "get Connector Correlation Config", @@ -45540,7 +45540,7 @@ }, "response": [ { - "id": "4a06ae74-a539-4e97-af2e-23ef439daf4e", + "id": "79f8c29f-2cfc-4e7f-ab60-29fd16f7a24a", "name": "The connector's correlation config", "originalRequest": { "url": { @@ -45585,7 +45585,7 @@ "_postman_previewlanguage": "xml" }, { - "id": "29b47509-76e5-4d9d-b27e-62c34c04fff9", + "id": "e679db8e-a7ff-4909-951b-ebd6dd0f757b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45630,7 +45630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eeef6ab2-d4a6-4f30-8d84-a2659e73f0ac", + "id": "35ed0890-5b55-438e-b14d-b8a6fd1500e1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45675,7 +45675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b2a7ce6-6282-4ff6-8457-8dc9b614b55c", + "id": "5b82fef2-80d7-4d50-9fb9-f0281dbbe5fc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45720,7 +45720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f5f4e3f-cdd8-4930-b7b5-645b10d79994", + "id": "aa17c078-f5e8-4773-8087-c80df1ac7289", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -45765,7 +45765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4a27f55-1819-4489-a028-62f22af6d022", + "id": "a07033ce-b352-4f93-9720-8844f78d9198", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45810,7 +45810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6e12b84-a69f-4b99-bb32-1d35c1122e64", + "id": "5e2d59e8-60e1-42a6-9124-03689aa06965", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45861,7 +45861,7 @@ } }, { - "id": "684de33f-13a5-411c-8311-fc80c1a02009", + "id": "9c638fef-f5c7-480c-9ea2-aea8bb05122f", "name": "put Correlation Config", "request": { "name": "put Correlation Config", @@ -45912,7 +45912,7 @@ "type": "text/plain" }, "key": "file", - "value": "ut irure pariatur", + "value": "deserunt quis sint sit id", "type": "text" } ] @@ -45920,7 +45920,7 @@ }, "response": [ { - "id": "2d51e765-9d82-43c4-8f5f-1ca690c3910c", + "id": "8c74e4b4-d14e-43d1-920a-c5a8bb7a28ca", "name": "The connector's update detail", "originalRequest": { "url": { @@ -45963,7 +45963,7 @@ "type": "text/plain" }, "key": "file", - "value": "ut irure pariatur", + "value": "deserunt quis sint sit id", "type": "text" } ] @@ -45982,7 +45982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab69cd73-74cb-4da5-a41f-5c64dfc5128d", + "id": "d50fb0d8-a6a2-4f9f-a06c-264c1f13f1ef", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46025,7 +46025,7 @@ "type": "text/plain" }, "key": "file", - "value": "ut irure pariatur", + "value": "deserunt quis sint sit id", "type": "text" } ] @@ -46044,7 +46044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bd0f94d-34b1-4957-a2ff-a22da5592e3e", + "id": "720616cf-e152-48b5-9b38-2a33a72acb82", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46087,7 +46087,7 @@ "type": "text/plain" }, "key": "file", - "value": "ut irure pariatur", + "value": "deserunt quis sint sit id", "type": "text" } ] @@ -46106,7 +46106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dbfbd3c-55f2-49ef-92df-d98ca430fece", + "id": "4d2869a8-136c-4605-9593-c60477c8d7f1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46149,7 +46149,7 @@ "type": "text/plain" }, "key": "file", - "value": "ut irure pariatur", + "value": "deserunt quis sint sit id", "type": "text" } ] @@ -46168,7 +46168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d4ed33f-ddc1-43d9-9358-08e2c139bca8", + "id": "e9c2ece2-c723-483e-bbbf-ec1684d523d3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -46211,7 +46211,7 @@ "type": "text/plain" }, "key": "file", - "value": "ut irure pariatur", + "value": "deserunt quis sint sit id", "type": "text" } ] @@ -46230,7 +46230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8f8d2df-e7df-4956-889d-cccab6178439", + "id": "1ced82d6-19cb-4bda-852d-e9a21d27b71a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46273,7 +46273,7 @@ "type": "text/plain" }, "key": "file", - "value": "ut irure pariatur", + "value": "deserunt quis sint sit id", "type": "text" } ] @@ -46292,7 +46292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "578ca97b-938e-446b-a52d-1944bfe8f2e1", + "id": "9f14a8d7-10b9-4471-bfb8-342dfaa10d18", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46335,7 +46335,7 @@ "type": "text/plain" }, "key": "file", - "value": "ut irure pariatur", + "value": "deserunt quis sint sit id", "type": "text" } ] @@ -46366,7 +46366,7 @@ "description": "Use this API to implement and customize global tenant security settings.\nWith this functionality in place, administrators can manage the global security settings that a tenant/org has.\nThis API can be used to configure the networks and Geographies allowed to access IdentityNow URLs.\n", "item": [ { - "id": "c3630f0e-09bf-4f39-a920-b9733379c68f", + "id": "e6f972ce-8b5b-4987-b4fb-f395e2d0d920", "name": "Get security network configuration.", "request": { "name": "Get security network configuration.", @@ -46396,7 +46396,7 @@ }, "response": [ { - "id": "02cdc7ca-0854-4969-adf9-d8f7a15d701c", + "id": "dae95756-33e3-4e00-8028-7a7b4466f561", "name": "Network configuration for the tenant's auth org.", "originalRequest": { "url": { @@ -46440,7 +46440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e619b65b-b428-4bae-837e-898662afe962", + "id": "f6295125-fb03-4cf1-8cf3-bd8b13139c96", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46484,7 +46484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ca386d6-c26b-45ea-b188-7f87e342c58f", + "id": "18857a2b-5ddd-421b-b930-2316304db7b5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46528,7 +46528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a159329-aa06-4f25-b8e3-0ffb0aac1bf2", + "id": "11b87ad2-4ac9-4317-a235-c86a2eb9e13e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46572,7 +46572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0e38489-253a-46e2-aed1-6fd59e26fb74", + "id": "8161b360-dbd1-4ec2-88fd-189dd1611b62", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -46616,7 +46616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3e9643a-b771-4bad-8418-734f1b1bd758", + "id": "afdeb1db-f575-4d0c-bdc1-2a2c8cb6a33e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46660,7 +46660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03a8afa7-e8ba-4fbe-99fb-8118396b926b", + "id": "e6a92805-4d99-4682-9f33-4f1f87a3723f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46710,7 +46710,7 @@ } }, { - "id": "a3554bd5-16d8-44ac-87a2-0f3f6e376687", + "id": "a8ae6fed-cfc2-40c0-8baf-568ba43f40b0", "name": "Create security network configuration.", "request": { "name": "Create security network configuration.", @@ -46753,7 +46753,7 @@ }, "response": [ { - "id": "2b94e197-4c78-4072-9d06-6ea90d6126f6", + "id": "c91fc61b-26de-4b4e-bae8-da46dc9bf736", "name": "Network configuration for the tenant.", "originalRequest": { "url": { @@ -46810,7 +46810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbae8d25-4c07-4ef7-a461-b45715b3106b", + "id": "a8acd7bc-ac59-467a-acd3-8265ad50b739", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46867,7 +46867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f93869ec-b52e-40be-b27e-63b443b18bce", + "id": "b89ba097-f6a6-4359-a617-4d92332d0825", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46924,7 +46924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11fb7f3a-e6e9-417d-bde3-8c0fa165122d", + "id": "0768ce60-bd04-4c93-bbf4-839b16bc4a5f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46981,7 +46981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "083be257-f8cd-4808-87cc-5a17de5576d7", + "id": "4b265ae9-207a-4c94-9824-c2244f95ffae", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -47038,7 +47038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c08163b-c078-41a4-a587-f19446257350", + "id": "fd281e52-caa0-41fd-8384-137420f95120", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47095,7 +47095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31b9381e-1cd6-40b8-b4a4-a5edb87fd8ce", + "id": "d9e10b9e-2ea6-4b78-8b3e-a544cace7848", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47158,7 +47158,7 @@ } }, { - "id": "13f8437a-1928-4ccf-a9c3-e24364ccde1d", + "id": "c94492df-7964-4eea-8522-c1ee6b0021c2", "name": "Update security network configuration.", "request": { "name": "Update security network configuration.", @@ -47201,7 +47201,7 @@ }, "response": [ { - "id": "d39c5892-345e-47e5-8bf0-889486e14fdb", + "id": "67823951-37ba-4eef-a11d-1e733b2e1bb5", "name": "Updated Auth Org network configuration.", "originalRequest": { "url": { @@ -47258,7 +47258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce485a78-6aa7-46c9-bfcf-e44241ae840c", + "id": "f9f1696e-1c98-47ee-97e7-9df213f7ca21", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47315,7 +47315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e46dcc8b-7946-42fb-bfd6-6b0aec6ad015", + "id": "967d329e-24ee-450a-bf19-ce1945022d9f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47372,7 +47372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89cfba50-6d90-4365-8747-0ecf79f41e59", + "id": "3477171a-b255-463e-b997-be7ea80c3d6e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47429,7 +47429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9514816-e613-44de-9ecd-6f4326032de3", + "id": "3ac729f5-c834-48b6-91e5-416c0c60e016", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -47486,7 +47486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c38915a1-d819-44e8-94bb-1b40d6afed61", + "id": "518f257e-49a5-4969-b053-392c3d801f71", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47543,7 +47543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9195a93-f41e-402d-acf6-77126c77b5b5", + "id": "03c70557-e9e0-4aa5-aeb1-6503bbbcf997", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47612,7 +47612,7 @@ "description": "Use this API to implement and customize lifecycle state functionality.\nWith this functionality in place, administrators can create and configure custom lifecycle states for use across their organizations, which is key to controlling which users have access, when they have access, and the access they have.\n\nA lifecycle state describes a user's status in a company. For example, two lifecycle states come by default with IdentityNow: 'Active' and 'Inactive.' \nWhen an active employee takes an extended leave of absence from a company, his or her lifecycle state may change to 'Inactive,' for security purposes. \nThe inactive employee would lose access to all the applications, sources, and sensitive data during the leave of absence, but when the employee returns and becomes active again, all that access would be restored. \nThis saves administrators the time that would otherwise be spent provisioning the employee's access to each individual tool, reviewing the employee's certification history, etc. \n\nAdministrators can create a variety of custom lifecycle states. Refer to [Planning New Lifecycle States](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html#planning-new-lifecycle-states) for some custom lifecycle state ideas.\n\nAdministrators must define the criteria for being in each lifecycle state, and they must define how IdentityNow manages users' access to apps and sources for each lifecycle state.\n\nIn IdentityNow, administrators can manage lifecycle states by going to Admin > Identities > Identity Profile, selecting the identity profile whose lifecycle states they want to manage, selecting the 'Provisioning' tab, and using the left panel to either select the lifecycle state they want to modify or create a new lifecycle state. \n\nIn the 'Provisioning' tab, administrators can make the following access changes to an identity profile's lifecycle state: \n\n- Enable/disable the lifecycle state for the identity profile.\n\n- Enable/disable source accounts for the identity profile's lifecycle state.\n\n- Add existing access profiles to grant to the identity profiles in that lifecycle state.\n\n- Create a new access profile to grant to the identity profile in that lifecycle state.\n\nAccess profiles granted in a previous lifecycle state are automatically revoked when the identity moves to a new lifecycle state. \nTo maintain access across multiple lifecycle states, administrators must grant the access profiles in each lifecycle state. \nFor example, if an administrator wants users with the 'HR Employee' identity profile to maintain their building access in both the 'Active' and 'Leave of Absence' lifecycle states, the administrator must grant the access profile for that building access to both lifecycle states.\n\nDuring scheduled refreshes, IdentityNow evaluates lifecycle states to determine whether their assigned identities have the access defined in the lifecycle states' access profiles. \nIf the identities are missing access, IdentityNow provisions that access. \n\nAdministrators can also use the 'Provisioning' tab to configure email notifications for IdentityNow to send whenever an identity with that identity profile has a lifecycle state change. \nRefer to [Configuring Lifecycle State Notifications](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html#configuring-lifecycle-state-notifications) for more information on how to do so.\n\nAn identity's lifecycle state can have four different statuses: the lifecycle state's status can be 'Active,' it can be 'Not Set,' it can be 'Not Valid,' or it 'Does Not Match Technical Name Case.' \nRefer to [Moving Identities into Lifecycle States](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html#moving-identities-into-lifecycle-states) for more information about these different lifecycle state statuses. \n\nRefer to [Setting Up Lifecycle States](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html) for more information about lifecycle states.\n", "item": [ { - "id": "56265d64-d0ef-4b4f-9f5f-e806f93f426a", + "id": "008c5041-f999-4e96-abd8-cdf368c9c206", "name": "Set Lifecycle State", "request": { "name": "Set Lifecycle State", @@ -47667,7 +47667,7 @@ }, "response": [ { - "id": "b39e6ae1-f5b4-4a2d-a2de-0d9ae179a41a", + "id": "53ea9b4c-0759-41a7-9590-061cfbb04a00", "name": "The request was successfully accepted into the system.", "originalRequest": { "url": { @@ -47725,7 +47725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8742057-1f34-4a5f-acaa-dde080f5f122", + "id": "214425c5-e1e1-4443-8efc-a02657687f8b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47783,7 +47783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dc0e2d3-6b1e-4911-beac-54f2601949c8", + "id": "75da1151-5d15-4bf2-a992-7d30506ac1a1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47841,7 +47841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7630d0be-a01f-4d76-95f6-db30ff8a8e4b", + "id": "16117bc3-47c1-4324-92c5-564debe8bb6f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47899,7 +47899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebfc4d5e-5b83-46ac-9123-4a16e7d947f9", + "id": "a4a8c64e-2bfa-4da8-a730-4371f6a60b38", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -47957,7 +47957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec128cc9-8e63-41a0-b354-adfafe6ca894", + "id": "40ec8599-6397-4736-a225-e69480c1604c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48015,7 +48015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66e54be1-7ae1-4583-8d8d-20775949720a", + "id": "f9eeabd5-48b6-4088-98ea-6c03a1cc62f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48079,7 +48079,7 @@ } }, { - "id": "9ae6ad27-8c4c-4b8d-82c8-bcb47c2af147", + "id": "778cb081-cedc-4a2e-a7b1-73b938561897", "name": "Lists LifecycleStates", "request": { "name": "Lists LifecycleStates", @@ -48158,7 +48158,7 @@ }, "response": [ { - "id": "1ed6a0b9-0b1b-4e9c-8570-cb1002e28266", + "id": "9f518f01-7edb-4023-8503-20d22aeae9ce", "name": "List of LifecycleState objects", "originalRequest": { "url": { @@ -48240,7 +48240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a302502-0a8b-4c32-9df2-98c8c1d1843a", + "id": "aa436a28-d7bd-4d1d-87c5-e810e336a945", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48322,7 +48322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c870ea4-eac1-4690-b1bf-6e3a17991cef", + "id": "bf1a3db5-7ede-4b9d-96a9-f8d8c050597c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48404,7 +48404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e48df938-3e42-442e-a896-e51418299750", + "id": "ba663999-92e4-482a-9b52-25d8dc05cfb5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48486,7 +48486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a773dbb6-0ce0-4d96-b835-b83473eca193", + "id": "b956ad33-2c30-47d0-85ab-d4e80f6ba00e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48568,7 +48568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d50d4bef-8770-47b5-89fa-1303e8bb427b", + "id": "6dcf3a5e-a2a7-4f16-ba5a-4ed7b4d9001e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48656,7 +48656,7 @@ } }, { - "id": "702d681a-f0b7-46b6-8adb-dda280ac3286", + "id": "1b86911d-ee7c-4532-ba69-3c7a3abca294", "name": "Create Lifecycle State", "request": { "name": "Create Lifecycle State", @@ -48711,7 +48711,7 @@ }, "response": [ { - "id": "ccabcac4-75dd-4405-adc9-8a4146bfdd31", + "id": "3e925ad7-044b-4f4b-8698-cf6e2c800212", "name": "Created LifecycleState object.", "originalRequest": { "url": { @@ -48769,7 +48769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f36a94ec-8a35-4388-a245-919ef9895727", + "id": "c0fce73c-444f-4a13-8ad1-b7312c7a2ec4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48827,7 +48827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ee140d3-26e7-4b75-ad82-9bc338e9e9b7", + "id": "0362abc6-5270-4e47-85c0-2201e50f917c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48885,7 +48885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a5bc71c-920f-4159-99f7-5491a3f68b51", + "id": "6b335fae-7d75-49f6-a87a-fd2955a2c34d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48943,7 +48943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9324d453-5a39-41ea-ba00-35e2da0f3a34", + "id": "7f9fc620-3102-4594-a355-4fbe74c2e986", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49001,7 +49001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7f2cd68-5ba1-4cda-b3e2-9ca358410636", + "id": "19d2e8c9-b901-4513-9023-dbb2ab7fc401", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49065,7 +49065,7 @@ } }, { - "id": "7d02cf77-35d3-4b7b-83f7-cdd102cdaccc", + "id": "5b6552fb-bb6b-42a2-915d-a3656a6d3c55", "name": "Retrieves Lifecycle State", "request": { "name": "Retrieves Lifecycle State", @@ -49118,7 +49118,7 @@ }, "response": [ { - "id": "4dc02344-6bec-45fb-84f0-e15699f228e2", + "id": "d61a4dc3-b777-4efd-a292-268aed5f526f", "name": "The requested LifecycleState was successfully retrieved.", "originalRequest": { "url": { @@ -49164,7 +49164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4db2d14-cdde-41bb-a1d9-273f9d136010", + "id": "284987ce-87c4-48b9-960d-7bd0ccd4daf9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49210,7 +49210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "071fc41c-95d7-4c4e-b679-e84946804abe", + "id": "cdc8b974-5ab2-4ae4-ad5c-b31dcc33a00c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49256,7 +49256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0144527c-df49-46ad-9cfd-425c4c9ce0a7", + "id": "5e83d83c-bdf5-4372-ba6f-910fed392cd3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49302,7 +49302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d41c848-2c6b-4134-8e84-efbc7cc5f9fe", + "id": "914cd830-5baf-4fcc-80af-a90d56c79f50", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -49348,7 +49348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7423009f-aae9-4c1e-870f-1ebd6c60909e", + "id": "2e8d9f1f-e230-47d3-b564-87c2d552eca8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49394,7 +49394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92cdb158-995e-4c27-963e-1eb12e3c0bab", + "id": "b35134e7-5d37-4f84-b7ed-1ef6ae6b3318", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49446,7 +49446,7 @@ } }, { - "id": "6eed8620-f9e9-42ea-a7c1-a03116c1d550", + "id": "ce17446b-4338-4f53-b226-b159635845e6", "name": "Update Lifecycle State", "request": { "name": "Update Lifecycle State", @@ -49512,7 +49512,7 @@ }, "response": [ { - "id": "61ebb654-96a3-42e8-97e0-00a298ecd53e", + "id": "d01227dd-f658-41d7-a716-3fcbaa2c65c2", "name": "The LifecycleState was successfully updated.", "originalRequest": { "url": { @@ -49571,7 +49571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3234c880-1330-44bc-9b09-28ea549e9f1c", + "id": "b2fb3e85-0ce2-473e-9dd0-7f201496f976", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49630,7 +49630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "894fabbc-020a-4aa9-a86f-50b8d7c93ff5", + "id": "31ae3f9b-e1c2-4684-bf74-e016516d67c4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49689,7 +49689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "578563da-cb1e-480a-a18d-b5489c55a9a8", + "id": "6f591e9a-fa69-47a0-a24f-48b067515bbc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49748,7 +49748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29a74062-4343-4cd3-8c88-88c5b58ff835", + "id": "f0827fe1-cc30-4a5d-807a-6846a2f60223", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -49807,7 +49807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "842b045a-bc6f-48c5-afcb-2a52ae720647", + "id": "3d70cf3a-e861-4b3f-ba9e-47c8f1b2f4b8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49866,7 +49866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44ae359d-008e-467a-9f34-84452f73f3ee", + "id": "5547a06f-a0f5-415e-bcfe-7d8da055fb5a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49931,7 +49931,7 @@ } }, { - "id": "3d4a4896-fbad-41c6-81c0-c08dea2c5e6b", + "id": "62fad702-1b21-4065-b076-8047e6429859", "name": "Delete Lifecycle State by ID", "request": { "name": "Delete Lifecycle State by ID", @@ -49984,7 +49984,7 @@ }, "response": [ { - "id": "2b8ed507-c6e6-4b63-ad85-f7203dc28a57", + "id": "306e9d31-82ab-4e5a-b95b-9e2cf17f4a04", "name": "The request was successfully accepted into the system.", "originalRequest": { "url": { @@ -50025,12 +50025,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"dolore Lorem dolor\",\n \"name\": \"Contractor Lifecycle\"\n}", + "body": "{\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"nisi veniam voluptate consectetur\",\n \"name\": \"Contractor Lifecycle\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "de14683c-75c6-4af9-8ef3-744d19cf09ef", + "id": "0c97da4f-2b94-41f1-8f1f-3e4339dc9b49", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50076,7 +50076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cda6aadb-cb39-4dc2-a036-21c2a6786a1c", + "id": "f80d7962-533b-41b7-a5bd-6259c2a42172", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50122,7 +50122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3876726-960f-4146-92d5-0c502db07277", + "id": "6cf71efc-696e-40ce-9a35-956a70d23de0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50168,7 +50168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7654eef-ba86-4df4-a883-d55693444089", + "id": "099bdf06-c383-408e-97a9-8d172a4ac208", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -50214,7 +50214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7467e80-d7cd-4739-b0a2-b2d3e5c31a14", + "id": "f05934ff-c868-4a5f-8e57-435f854571d5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50260,7 +50260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24a8fb2f-d9d9-40ff-89cd-38532e45edd4", + "id": "fa84a08d-f861-4103-b842-1f64d51c8050", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50318,7 +50318,7 @@ "description": "Use this API to implement identity profile functionality. \nWith this functionality in place, administrators can view identity profiles and their configurations. \n\nIdentity profiles represent the configurations that can be applied to identities as a way of granting them a set of security and access, as well as defining the mappings between their identity attributes and their source attributes. \n\nIn IdentityNow, administrators can use the Identities drop-down menu and select Identity Profiles to view the list of identity profiles. \nThis list shows some details about each identity profile, along with its status. \nThey can select an identity profile to view its settings, its mappings between identity attributes and correlating source account attributes, and its provisioning settings. \n\nRefer to [Creating Identity Profiles](https://documentation.sailpoint.com/saas/help/setup/identity_profiles.html) for more information about identity profiles.\n", "item": [ { - "id": "cd4288a0-8fe1-4f9b-9286-6a803a569ee8", + "id": "16bd53b5-62ef-4d4a-beb4-71cc3ef907ff", "name": "Identity Profiles List", "request": { "name": "Identity Profiles List", @@ -50393,7 +50393,7 @@ }, "response": [ { - "id": "39fc3b78-dbc3-4977-8fb4-d468f00193a2", + "id": "21150b10-11bc-490a-8420-ed4fd59c9fb1", "name": "List of identityProfiles.", "originalRequest": { "url": { @@ -50482,7 +50482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d2797e2-048c-4886-bca4-c2c4d45c8435", + "id": "c41dddf6-f1b5-447a-a400-086b5498351b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50571,7 +50571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8090efef-6223-4a58-8855-65d6d24c131c", + "id": "a0111e00-1fec-43fb-b03d-2b7e541d1f9d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50660,7 +50660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c810228-4c70-45b9-b34e-93c9da083108", + "id": "e6861163-d25f-4b5b-b47d-4e44378a3336", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50749,7 +50749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29ea0506-2df2-4800-b685-8a7c572c7431", + "id": "c6c12cfb-e7e6-416c-a2d6-fbadec612fc7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50838,7 +50838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2eeecb5e-6696-4c50-9d0d-e6e29f062def", + "id": "91b0be1f-4804-4517-9fbb-a475e5a2369d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50933,7 +50933,7 @@ } }, { - "id": "5e013346-061c-4c0c-80b3-ecadddee7d6e", + "id": "ad982b45-7ed3-4a4b-933e-4127b0bedd9f", "name": "Delete Identity Profiles", "request": { "name": "Delete Identity Profiles", @@ -50976,7 +50976,7 @@ }, "response": [ { - "id": "948655f5-01ff-4e31-bbd3-6c106fffcf52", + "id": "c9451b31-a284-4be5-af09-ad80c71b4990", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -51028,12 +51028,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"1979-10-22T23:14:08.457Z\",\n \"launched\": \"1946-05-12T13:32:59.434Z\",\n \"completionStatus\": \"Success\"\n}", + "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"2001-07-15T19:18:29.043Z\",\n \"launched\": \"1962-10-30T17:02:52.628Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bf0a6c7c-7529-40f1-82a4-82c762fb5b61", + "id": "4f94eaca-d1c6-4ce2-b1fe-488f585a43f2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51090,7 +51090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e890b272-5dfd-46ba-a9b3-ec4250c6b028", + "id": "b830595d-10f4-42a3-9265-ca0744e61eef", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51147,7 +51147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2028a6b-95a2-486d-87fd-5081e22d6ef7", + "id": "e4cd0329-f1d2-4400-8168-5d12615f261e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51204,7 +51204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac4bf188-a570-4734-b78b-42493e34f590", + "id": "e6f13697-7e13-43ea-97e0-f1808050246e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51261,7 +51261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "507e41e8-04c7-408d-8ff2-f395e810ed76", + "id": "050e8677-58f6-4d44-b85a-27f71524ba5d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51324,7 +51324,7 @@ } }, { - "id": "1f95e011-209a-4a65-b634-bbc1001528f0", + "id": "22f7b41f-8e56-4230-a5e2-cf06ba2e1056", "name": "Export Identity Profiles", "request": { "name": "Export Identity Profiles", @@ -51400,7 +51400,7 @@ }, "response": [ { - "id": "36d895db-dc11-41fa-ae6b-35480d4ed2f3", + "id": "63220032-a728-4ec5-a071-4476a4908a3e", "name": "List of export objects with identity profiles.", "originalRequest": { "url": { @@ -51490,7 +51490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d33a74d-7c06-494d-b96a-9af9ea3fefa2", + "id": "0985b8a3-05b7-4fa7-a114-db640666aae5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51580,7 +51580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fc42e01-f64a-4df8-b1a0-876b0e93f477", + "id": "78a7389c-632d-486a-b9a2-83ba53db98e0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51670,7 +51670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70f0ca34-35a6-47ad-adaf-ad55ced54948", + "id": "89e3bd97-3537-4d07-b717-074da5acefad", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51760,7 +51760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12f5240b-b760-4a3b-bd1e-7c709cbb13cc", + "id": "e246b15b-6887-4081-a1f6-91d9347e0486", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51850,7 +51850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59e600a4-db15-4315-9916-4a9c73505400", + "id": "a804e4ef-079d-4805-aa7b-457a05d7a7c6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51946,7 +51946,7 @@ } }, { - "id": "3e812153-702d-41cb-a36e-5ef27dea9b06", + "id": "34763104-dc18-4961-b9c8-18ce0ba669a3", "name": "Import Identity Profiles", "request": { "name": "Import Identity Profiles", @@ -51989,7 +51989,7 @@ }, "response": [ { - "id": "16fc6a72-1108-40c3-ab59-e003e63976fa", + "id": "1f794b7d-5e1f-4a76-a748-4e868a84a400", "name": "The result of importing Identity Profiles.", "originalRequest": { "url": { @@ -52046,7 +52046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "653dc791-2f1f-49b6-988f-dec44c81b22a", + "id": "4cbeea6f-f625-4644-8166-e99c2ff9bf79", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52103,7 +52103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0de3bf78-53dc-479a-a3cd-062218535b19", + "id": "bfeb48b2-c5bc-4820-91c7-636ca7383d3d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52160,7 +52160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0802be49-19ca-4ba6-857b-4153dea8d77d", + "id": "d62fed32-da56-42aa-a411-cc56aa8fce9c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52217,7 +52217,7 @@ "_postman_previewlanguage": "json" }, { - "id": "761cfe1b-e589-4a4c-8537-0ccc9016029a", + "id": "f3adcd3f-e2c9-4bb3-a3c7-a3591b6fb7be", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52274,7 +52274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d978ed75-65b6-45c1-8f73-f1c55d7ecb86", + "id": "7c93ce46-84af-4a45-8cae-baa525ff82d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52337,7 +52337,7 @@ } }, { - "id": "f493f15b-174a-41a2-823b-65a4887c4ace", + "id": "5898991a-0e1e-4cf0-a9a2-323ba08798f6", "name": "Get single Identity Profile", "request": { "name": "Get single Identity Profile", @@ -52378,7 +52378,7 @@ }, "response": [ { - "id": "4b8de8ed-5f94-4c88-9f24-b6bf2644b809", + "id": "dcda9213-4cb2-4cdf-aede-85fb85b1511e", "name": "An Identity Profile object.", "originalRequest": { "url": { @@ -52422,7 +52422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "483f84db-20ab-4430-aa96-f4f9d1df1ee9", + "id": "14a61a8c-cefa-43cc-99e4-66b8f331b8c9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52466,7 +52466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d48c05a-adb5-4c7e-9500-b910e3aaf217", + "id": "cb623202-ad92-4f6d-82a0-fc01e40003a9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52510,7 +52510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77cb0556-a4c6-40f0-8c6f-4ea9071ec7bd", + "id": "a7f9347a-ff9d-4b83-b207-714da3e3b72f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52554,7 +52554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "393fb5b1-cb6c-40d6-9aa7-e83f9e86d522", + "id": "f45b16c8-b3c8-440a-b02b-8dedddf25e7c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -52598,7 +52598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "079ba8e0-eb9d-40f7-9ceb-81dcabfd6c18", + "id": "ec0c523a-df15-4ac8-8f03-2b69c31a0a1e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52642,7 +52642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "beb95164-43f0-4410-9f21-b4987e3c34da", + "id": "ac27f266-24c2-431a-97fb-5f9f597c23b7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52692,7 +52692,7 @@ } }, { - "id": "524a563d-3586-4c31-b9e2-ea45675a6b5c", + "id": "7ab9868f-10fc-4947-85f4-e3582fb31a27", "name": "Delete an Identity Profile", "request": { "name": "Delete an Identity Profile", @@ -52733,7 +52733,7 @@ }, "response": [ { - "id": "4fa71cc8-37ba-43d1-850b-a83bc4f4a724", + "id": "f7268ab6-0e5d-4892-97e1-e5c7302da2b9", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -52772,12 +52772,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"1967-10-05T07:30:37.197Z\",\n \"launched\": \"1952-03-17T12:31:08.134Z\",\n \"completionStatus\": \"Success\"\n}", + "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"2014-09-26T18:48:50.707Z\",\n \"launched\": \"1953-02-12T15:49:44.821Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "056900a1-2865-41ca-9c99-a0f6aa22718a", + "id": "b33574e6-58ca-44c7-8b8c-a25c98629786", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52821,7 +52821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07f8c41d-3ff4-49a2-8156-e422bdeeb9a2", + "id": "1335f293-b929-4d8d-8b9f-f41316810349", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52865,7 +52865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7322b178-e0bb-46aa-9b47-cb3c81eb9b1f", + "id": "83def4af-754b-4d03-9844-13b31ec8467a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52909,7 +52909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80a81710-d979-47bc-9a64-ed0e8bf7ea7e", + "id": "a2ca8895-56ed-4dad-82b1-0390ec0fe363", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -52953,7 +52953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd509302-448a-4df7-8f74-3c0bf2a84062", + "id": "41d4ddd7-2fa2-4465-a6fa-e75fc7276c68", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52997,7 +52997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef8f2608-7d61-4479-af05-3a3951a070eb", + "id": "df6c10c1-63e5-486b-9d7c-45fe5271b3fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53047,7 +53047,7 @@ } }, { - "id": "059517ae-9968-43e3-8ae9-36dca44322b8", + "id": "739a0b11-7ac9-468d-b4c8-262d6861340e", "name": "Get default Identity Attribute Config", "request": { "name": "Get default Identity Attribute Config", @@ -53089,7 +53089,7 @@ }, "response": [ { - "id": "5bd19446-a112-4f91-8d30-96815bf02647", + "id": "6ea6a791-d260-4304-bf53-e26a03863e92", "name": "An Identity Attribute Config object.", "originalRequest": { "url": { @@ -53134,7 +53134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad210964-d875-426f-b6bf-199b378325f3", + "id": "5d11f95f-2527-4936-93b0-66d06f0567e3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53179,7 +53179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ad4a82b-0bb1-4e02-9f40-012aa9490b92", + "id": "f4885d79-2cb6-4242-a7ea-bd0a0d9bdc21", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53224,7 +53224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2839a87e-fb56-4634-a24f-92b1444648d8", + "id": "3418181e-f7aa-48fc-b055-3d4b2d9f7250", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53269,7 +53269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9f32da8-9446-48c6-a861-fe40f798916b", + "id": "c8d73c05-9a7a-4bf6-801d-c903bfbd23f4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -53314,7 +53314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14699a22-60be-41f3-a0b1-a0d00e1d4ccd", + "id": "ea799b3f-a45f-4315-978f-a8bda2b83300", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53359,7 +53359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ae53bdd-ff73-4376-a8fe-40a83e475431", + "id": "eef0aad7-ea03-445a-9039-f58100b7e65c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53410,7 +53410,7 @@ } }, { - "id": "e0160cc6-d617-4856-b56f-06bbaf181ef8", + "id": "af4caf5c-8c78-4275-af9a-91cba183a3eb", "name": "Process identities under profile", "request": { "name": "Process identities under profile", @@ -53452,7 +53452,7 @@ }, "response": [ { - "id": "8f226629-c50a-4e6e-9a7c-e04ee3ca63fe", + "id": "d1f4ee65-d49e-4ee9-b433-997dd275f314", "name": "Accepted status after refresh has launched", "originalRequest": { "url": { @@ -53497,7 +53497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5962382b-4956-4c96-83a2-06e010baa90e", + "id": "9b183920-fe80-4025-b854-3d044c120870", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53542,7 +53542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1bf0ab0-9b82-4c86-b220-d6efea1e6490", + "id": "70a82b2c-7cb0-4208-aed8-ede35224c971", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53587,7 +53587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a7a59be-02fb-466e-b02a-510e73a45046", + "id": "149c9bd2-4c3e-48f5-84cb-a06ade393ee5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53632,7 +53632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e6b3f38-d5f0-46d0-a2ae-8295f6025496", + "id": "e9ed24b0-e0c1-4625-9ab2-c8e5e3c42934", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -53677,7 +53677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08a9450c-a506-46eb-a152-46f37337b7cb", + "id": "c156bce8-ae86-4267-a41c-7d900d9043f6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53722,7 +53722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d61be523-c0ab-4c50-9f13-5c55e751bcea", + "id": "d72b84d1-d450-4747-b43a-94858714ba80", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53779,7 +53779,7 @@ "description": "Use this API to implement non-employee lifecycle management functionality. \nWith this functionality in place, administrators can create non-employee records and configure them for use in their organizations. \nThis allows organizations to provide secure access to non-employees and control that access. \n\nThe 'non-employee' term refers to any consultant, contractor, intern, or other user in an organization who is not a full-time permanent employee. \nOrganizations can track non-employees' access and activity in IdentityNow by creating and maintaining non-employee sources. \nOrganizations can have a maximum of 50 non-employee sources. \n\nBy using SailPoint's Non-Employee Lifecycle Management functionality, you agree to the following:\n\n- SailPoint is not responsible for storing sensitive data. \nYou may only add account attributes to non-employee identities that are necessary for business operations and are consistent with your contractual limitations on data that may be sent or stored in IdentityNow.\n\n- You are responsible for regularly downloading your list of non-employee accounts for all the sources you create and storing this list of accounts in a managed location to maintain an authoritative system of record and backup data for these accounts.\n\nTo manage non-employees in IdentityNow, administrators must create a non-employee source and add accounts to the source. \n\nTo create a non-employee source in IdentityNow, administrators must use the Admin panel to go to Connections > Sources.\nThey must then specify 'Non-Employee' in the 'Source Type' field. \nRefer to [Creating a Non-Employee Source](https://documentation.sailpoint.com/saas/help/common/non-employee-mgmt.html#creating-a-non-employee-source) for more details about how to create non-employee sources.\n\nTo add accounts to a non-employee source in IdentityNow, administrators can select the non-employee source and add the accounts. \nThey can also use the 'Manage Non-Employees' widget on their user dashboards to reach the list of sources and then select the non-employee source they want to add the accounts to. \n\nAdministrators can either add accounts individually or in bulk. Each non-employee source can have a maximum of 20,000 accounts. \nTo add accounts in bulk, they must select the 'Bulk Upload' option and upload a CSV file. \nRefer to [Adding Accounts](https://documentation.sailpoint.com/saas/help/common/non-employee-mgmt.html#adding-accounts) for more details about how to add accounts to non-employee sources.\n\nOnce administrators have created the non-employee source and added accounts to it, they can create identity profiles to generate identities for the non-employee accounts and manage the non-employee identities the same way they would any other identities. \n\nRefer to [Managing Non-Employee Sources and Accounts](https://documentation.sailpoint.com/saas/help/common/non-employee-mgmt.html) for more information about non-employee lifecycle management.\n", "item": [ { - "id": "6a532d55-a035-47f3-8e08-01a82f313ee0", + "id": "c58c72fe-a0bc-4f30-86f2-4ab25f8ed856", "name": "Create Non-Employee Record", "request": { "name": "Create Non-Employee Record", @@ -53821,7 +53821,7 @@ }, "response": [ { - "id": "48c307c2-3b2d-48aa-bda5-a95f641f132b", + "id": "9e051896-84d0-4f16-99b9-7689f753459f", "name": "Created non-employee record.", "originalRequest": { "url": { @@ -53877,7 +53877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35d4c701-3a11-4897-8f2c-351e025061ff", + "id": "f20f4094-02eb-484e-acf7-012caabc2d72", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53933,7 +53933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ca37445-4837-4405-b14d-bd35c9955441", + "id": "1e33cde8-d4d9-476f-bf81-d57c543b07dc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53989,7 +53989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa703ec1-b533-4e61-8ce8-a581aa9c3c9c", + "id": "d201cdf0-5ce6-4787-883f-e92b3f349e85", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54045,7 +54045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "999d6966-f21e-4a29-ad30-60e213012981", + "id": "93106232-8dae-4c60-b20a-044c1c51af49", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54101,7 +54101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a01e4909-145c-4d0a-83db-633b85a2275b", + "id": "ae13731a-9ea9-4c4d-939b-b411ea079afa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54163,7 +54163,7 @@ } }, { - "id": "00545811-8a30-4717-90aa-91c32d1f1f2e", + "id": "39a04aa8-affb-4a3c-94cf-383ad0943857", "name": "List Non-Employee Records", "request": { "name": "List Non-Employee Records", @@ -54238,7 +54238,7 @@ }, "response": [ { - "id": "4de3e7f7-ac3d-45ea-a36c-ab72c8cac7ce", + "id": "49c1cfb4-d396-471b-b58c-672320b2a7b9", "name": "Non-Employee record objects", "originalRequest": { "url": { @@ -54327,7 +54327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd74bf57-ee1d-4700-9135-16123bdee102", + "id": "7844193c-633e-4b00-a5c6-6a3e349dbad1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54416,7 +54416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b46cd5a4-a1b8-4072-9ea9-c4c8ecc06185", + "id": "d97f6199-04e1-4d54-bb54-2520f6809a6a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54505,7 +54505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60384f57-73bc-4237-82dc-9d0d543a2fdd", + "id": "d63b338b-31bd-49ec-b771-9d6f9e311b1f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54594,7 +54594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c857ea1-a0e8-4f4f-936d-5c59c73d0214", + "id": "4452bb63-b3a9-4346-88ab-48bf0166060c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54683,7 +54683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f9cf0ab-42af-4b75-bfdb-8a9b31371029", + "id": "2c87e61b-c134-4c81-893b-bcb88a9e0495", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54778,7 +54778,7 @@ } }, { - "id": "0be8ba3c-1468-4552-bac4-494234898f99", + "id": "e6168453-a45f-40a4-9c43-fd961a597795", "name": "Get a Non-Employee Record", "request": { "name": "Get a Non-Employee Record", @@ -54819,7 +54819,7 @@ }, "response": [ { - "id": "62a11f83-bcce-4aeb-ad29-91cbe0d0d754", + "id": "76276fd3-f8b2-4838-839e-eddc70ae8ae0", "name": "Non-Employee record object", "originalRequest": { "url": { @@ -54863,7 +54863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0ff7a16-ee5b-4458-826a-e8b1dd58abf1", + "id": "1fb72991-2981-46d0-b187-689a387390c7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54907,7 +54907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dae1bc14-c113-466a-82fa-f2a5b30896d8", + "id": "9d590d67-39f4-4d2f-950d-584a9ca996ec", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54951,7 +54951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b816ac70-0105-432f-9eb4-5bac367e679f", + "id": "2ceac27f-6a83-4ea9-8b97-e6892312537e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54995,7 +54995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03b79550-2d2e-4193-bdc0-c51807376e40", + "id": "49e6eeef-be16-4922-bb78-bd124632eed3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55039,7 +55039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c076df8-3bab-4427-bf7d-ed72e625545d", + "id": "abb931b3-0af6-4710-9728-bd7502b041a6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55089,7 +55089,7 @@ } }, { - "id": "fa917e6b-8a92-479d-8fd3-bb7aa20df634", + "id": "d71c23d2-793b-4af7-b4db-49ef0c400ec4", "name": "Update Non-Employee Record", "request": { "name": "Update Non-Employee Record", @@ -55143,7 +55143,7 @@ }, "response": [ { - "id": "4c58cd12-02c8-4f5b-9a2c-db2442d81892", + "id": "2e402cea-2c5e-4de1-a277-6af5506e6b9b", "name": "An updated non-employee record.", "originalRequest": { "url": { @@ -55200,7 +55200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b5837f5-1980-405b-8691-c5e1269ba74f", + "id": "6f8b5e57-2d24-4ac2-afb3-aa3924fbaaf1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55257,7 +55257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "652aa69b-ed77-46f4-93fe-dd8da12bc21d", + "id": "e5e86204-afb3-4802-a217-14fbbd7e6f64", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55314,7 +55314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fac70d4b-a952-4f3a-8ed9-cd090cc571fd", + "id": "5c36cd7c-73d4-4aae-a597-747fc122a8dd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55371,7 +55371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66de75a1-0f30-4762-a809-f139ed5e2ae6", + "id": "79cb1e02-1b16-448c-8af2-943bb2b6e3c9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -55428,7 +55428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65200f87-7fa5-4ace-a0bf-9b7074826fbf", + "id": "6d5d74f9-1c76-42ae-9785-4fd1031047f7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55485,7 +55485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d827bd14-3dbc-4df6-acea-787ebacc7cb5", + "id": "753f01f1-1b92-498e-8297-272b201849f0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55548,7 +55548,7 @@ } }, { - "id": "f3b97991-55a1-4dca-b9ae-1a8567b661f2", + "id": "6980ac5c-ab09-46d8-ba3d-491dfab7f491", "name": "Patch Non-Employee Record", "request": { "name": "Patch Non-Employee Record", @@ -55602,7 +55602,7 @@ }, "response": [ { - "id": "d9f5b97d-ab9c-451c-a9bd-0723fb542b26", + "id": "bbbe8567-fcc2-4e0c-af48-36d6ed2f90be", "name": "A patched non-employee record.", "originalRequest": { "url": { @@ -55659,7 +55659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c8c82cb-d42f-46d7-8384-9f059e558e1d", + "id": "56b14ff9-288a-4025-8062-54317e02ba46", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55716,7 +55716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cff3ca4f-ce44-449d-a6bd-829135dcdf9a", + "id": "b38a443b-ed83-4217-af6c-16e041926b0d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55773,7 +55773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3ef21b2-5161-4cf7-b0ee-088affc14174", + "id": "7003c56e-9914-4925-8240-e1a5e71f066b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55830,7 +55830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8989b9ee-80c5-4a7a-863a-ed7bc901ca21", + "id": "4436f34a-4c68-4fb9-98d5-f8aa43517fee", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -55887,7 +55887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4a4a245-5ea6-4366-a034-8e80e85bde9d", + "id": "06415b59-0699-45d7-b333-c6c4a5a1f7e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55944,7 +55944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a83da6eb-2961-41d4-be11-559d8f5d98d6", + "id": "922faa2c-c6a8-468b-b7b6-418a1df59d1b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56007,7 +56007,7 @@ } }, { - "id": "dae0ab78-8db7-4d80-8af9-3260467c5ab3", + "id": "25b165cb-cd30-4807-9ca4-d7d998322277", "name": "Delete Non-Employee Record", "request": { "name": "Delete Non-Employee Record", @@ -56048,7 +56048,7 @@ }, "response": [ { - "id": "aaf534a4-f322-42cc-8318-b7fa3923acd2", + "id": "eefb2c92-e22e-456f-8286-466fb63c9210", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -56082,7 +56082,7 @@ "_postman_previewlanguage": "text" }, { - "id": "654d9894-d95e-4cfa-abc2-236497967e39", + "id": "df11a5fe-5016-4c4b-8804-a74c63f670d4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56126,7 +56126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d038f090-d9ad-4ee6-89b5-9f76fe285746", + "id": "1f83f6ad-92cf-49d1-8117-f9b0939fe03b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56170,7 +56170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f2eeb26-afbb-4976-95e6-b1adf9c79ce1", + "id": "74f241c7-e7eb-46a0-827a-881d3cb80038", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56214,7 +56214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70ff7faf-1375-47ae-8149-47f2d694484f", + "id": "a22fa87e-b490-4d1c-94d4-ab1e349ab5e9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56258,7 +56258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "491d5f07-c2ea-43e0-b22d-170435360382", + "id": "b425ee78-16e0-4220-9318-57d5ff8b1891", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56308,7 +56308,7 @@ } }, { - "id": "ec032d2a-d58f-4498-9880-24c394c790c8", + "id": "e19ab3e1-db2e-495f-bb8e-af5c871d7774", "name": "Delete Multiple Non-Employee Records", "request": { "name": "Delete Multiple Non-Employee Records", @@ -56351,7 +56351,7 @@ }, "response": [ { - "id": "5a9eee76-6d53-4808-9429-17720e2a4c45", + "id": "8453aeb1-1417-4d16-a1b7-3a2f8be3491c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -56398,7 +56398,7 @@ "_postman_previewlanguage": "text" }, { - "id": "668a9d79-7830-4bbf-9ffc-dac06632a94f", + "id": "6bd0a15e-a229-4a44-8423-a2f45aa28f20", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56455,7 +56455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf7c805c-dc11-45ae-94d1-ac5769208a57", + "id": "724b371b-1307-48eb-b3cd-ddb0bbf8d6ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56512,7 +56512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d040259a-36ad-4bdc-a205-58f4148567ee", + "id": "d285ce93-cfe1-496f-a65c-ef9eacd6d4aa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56569,7 +56569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61ce9fd5-4c05-4b4c-bd87-4517c19dae17", + "id": "8edb93ff-78a8-4b70-b0cc-0e45d437ce68", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56626,7 +56626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7e4f651-fa02-4c98-8a95-481cfa10ad9c", + "id": "ce7bf6fa-be45-4d89-b5d5-779d4ef42318", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56689,7 +56689,7 @@ } }, { - "id": "0b874576-457e-4209-8e44-1ec5744aed6a", + "id": "3414553d-a58e-4079-9b54-953125f55f5c", "name": "Create Non-Employee Request", "request": { "name": "Create Non-Employee Request", @@ -56731,7 +56731,7 @@ }, "response": [ { - "id": "efffd1a7-d645-406d-b808-d4c06cbc0afc", + "id": "7353d121-0238-4a6f-a0a4-243888372cfe", "name": "Non-Employee request creation object", "originalRequest": { "url": { @@ -56787,7 +56787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c28f4be-54ae-44e7-b468-424932dc0367", + "id": "9651fa62-5172-401f-9f0b-653f73a975e2", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -56843,7 +56843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdb47b6f-4fd4-4774-bb85-aef418f62663", + "id": "641ac848-9c63-4437-a06a-eddff820aa00", "name": "400.1.409 Reference conflict", "originalRequest": { "url": { @@ -56899,7 +56899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7281da2-5021-4cbb-aece-4022cbb5953c", + "id": "575016c4-dfed-4456-9c48-bc1a26c587ef", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56955,7 +56955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f7d4bc0-f9ab-4b9c-90c0-a3702002b3a0", + "id": "892872d8-3d48-42ed-b3f4-035c01d5be3d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57011,7 +57011,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b27e7aaa-49bf-40fe-8303-7792343c0061", + "id": "e8e3394d-f2a4-453b-a23a-7258afc61cca", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57067,7 +57067,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdaf7ab1-5d83-4fea-bbc6-6386a2b2226e", + "id": "7aebc42f-c676-4a0b-8fb9-bf49c59dfc61", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57129,7 +57129,7 @@ } }, { - "id": "482e1611-f5ae-4472-bfb0-00a3db7c26bd", + "id": "05fc55b4-aaec-490f-a0a1-d70041fda182", "name": "List Non-Employee Requests", "request": { "name": "List Non-Employee Requests", @@ -57213,7 +57213,7 @@ }, "response": [ { - "id": "1d1a972d-79ad-46ee-9a7b-634c66fdec82", + "id": "f3e9e3fb-5978-4034-8c60-a0b8ef763e71", "name": "List of non-employee request objects.", "originalRequest": { "url": { @@ -57311,7 +57311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8a9f71d-4c95-46b2-932b-bb7ab1248ad4", + "id": "b40b85a6-49e3-4e98-ba03-7cb4c3e3cb89", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57409,7 +57409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1453c66e-f39f-4a70-96ee-6698b25f4b9e", + "id": "a433bcd9-5ef5-4c34-bc48-3a690de0807e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57507,7 +57507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45c83ddf-b315-4241-ae90-7503d391f334", + "id": "31f8fbbe-7289-4358-9c62-9d169bf4f850", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57605,7 +57605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "065c17a4-43e4-476f-825b-366bece20732", + "id": "927157e3-5452-4f28-957c-d2585db84661", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57703,7 +57703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ecddc7f-c4e6-4502-bc88-3f27421a78c3", + "id": "7471a785-a615-4117-83d7-cff32cc6af11", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57807,7 +57807,7 @@ } }, { - "id": "fd32aab5-1e49-4a99-b5f3-8c649f6afc41", + "id": "1daeb318-b053-4a60-83d3-a0a5c759df14", "name": "Get a Non-Employee Request", "request": { "name": "Get a Non-Employee Request", @@ -57848,7 +57848,7 @@ }, "response": [ { - "id": "606004f5-77cb-4bd7-931a-95f128ad267a", + "id": "88431eb3-6ac2-46fb-beb4-22c01ffe856b", "name": "Non-Employee request object.", "originalRequest": { "url": { @@ -57892,7 +57892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8971ba12-e708-45ce-b9b5-a21e97f7b030", + "id": "8ed08f0d-9536-4cb9-aa9a-36007f317c3d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57936,7 +57936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c95d803-8a97-4e40-937b-e5dd25bf3da8", + "id": "325596f8-8126-4a7a-b10d-a0d25f8d1213", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57980,7 +57980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "794c149f-b9f3-4537-9834-1408e03a0f6a", + "id": "5c7d4ca4-54c4-43c8-a439-d6d24df83096", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58024,7 +58024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d90be72-918e-4f76-a357-db3476675ddc", + "id": "a3847449-cfdf-4231-83fc-74b7680461d1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -58068,7 +58068,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30a8d30d-0869-4763-959c-6dced7fb6015", + "id": "e47995d6-8a52-42c4-95aa-2856ae35b6d4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58112,7 +58112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21d37ea5-50d0-4987-ad2f-03573f682242", + "id": "a089a99d-ae6c-441b-9891-c8cba5ffede4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58162,7 +58162,7 @@ } }, { - "id": "863b7822-49ad-44e5-9396-fe6b73b14e33", + "id": "4adabf15-238f-4e1b-b593-f3e2372f9864", "name": "Delete Non-Employee Request", "request": { "name": "Delete Non-Employee Request", @@ -58203,7 +58203,7 @@ }, "response": [ { - "id": "1188c36d-de1d-448d-bf89-8c376ed445d2", + "id": "7dd2256d-432c-4b84-bd82-01e1f236239d", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -58237,7 +58237,7 @@ "_postman_previewlanguage": "text" }, { - "id": "73e3285f-50fb-469c-a56d-490787f97114", + "id": "7f35c5d6-4a5b-45cf-9c16-4dec328c8294", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58281,7 +58281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "317249d4-0a16-4a9e-aa10-0118a6c31b79", + "id": "56c77c1d-f2c3-41c0-8e8e-2795acf8f2d7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58325,7 +58325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3af0c1a-b138-416d-8318-bf8308df90b7", + "id": "329d9c2f-2879-4167-be11-fca89131220c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58369,7 +58369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88172a22-6328-4884-b295-3a99d44b7265", + "id": "9be27510-29d4-4aa0-ab7b-275d08538200", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -58413,7 +58413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fba6bb5-34b5-4249-9b36-83df631e1c3a", + "id": "5356db84-5810-4208-83a4-3d582e175937", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58457,7 +58457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60d9b0ff-e457-4d8b-b88f-26508d02de7c", + "id": "f83bf7ce-9ff6-4e44-bf3a-60b587b914dd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58507,7 +58507,7 @@ } }, { - "id": "dd209927-00a1-4b6c-aa8a-5c39f7c389b3", + "id": "c80f31e1-180f-4d47-9928-60f3a478d6bc", "name": "Get Summary of Non-Employee Requests", "request": { "name": "Get Summary of Non-Employee Requests", @@ -58549,7 +58549,7 @@ }, "response": [ { - "id": "5569db31-3a65-4c3b-b787-6216ad5f5120", + "id": "b5892ba2-e4f0-4d12-bc9e-cd97eb96cbc5", "name": "Non-Employee request summary object.", "originalRequest": { "url": { @@ -58594,7 +58594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa9bbbbe-1fe1-4453-be49-38fce7339146", + "id": "90032ee6-ebe6-4765-a8cc-d5c0a223367a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58639,7 +58639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "742fe9a9-8afe-4094-a40d-d3c1ec2d8f7e", + "id": "1905dc0e-1f69-4761-9a83-1b90c7d72e89", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58684,7 +58684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "599418d2-b1cd-4a6f-86d0-cc257fc9c7eb", + "id": "d66d527f-e6a7-4343-9277-64fdd8e39c08", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58729,7 +58729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0af64c2-f003-4e04-aa5a-871976fd9449", + "id": "7e988728-bffc-44b3-98de-072cfd8fef91", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58774,7 +58774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a21729f9-c69c-474d-bf90-248fa6cef578", + "id": "f56dc7f4-d283-46a8-83ae-dd648f1a8383", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58825,7 +58825,7 @@ } }, { - "id": "7c596f36-6016-4635-a378-07dbf2104796", + "id": "b7aef4b0-9c12-4568-81d0-045b27eb2a3c", "name": "Create Non-Employee Source", "request": { "name": "Create Non-Employee Source", @@ -58867,7 +58867,7 @@ }, "response": [ { - "id": "966b13af-2042-483a-8843-18d1b8bcc582", + "id": "44a53fa8-b778-4f1e-9343-fe55e92f793c", "name": "Created non-employee source.", "originalRequest": { "url": { @@ -58923,7 +58923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "752634d5-4e66-484b-be84-a70c17f1282f", + "id": "b347d404-d2c7-40b8-81a0-801eb1bd31d4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58979,7 +58979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b2816de-a10e-4fce-b715-dcbe355b9af1", + "id": "d370e34b-b0e5-4d3e-84c8-cc573d4da1f9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59035,7 +59035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0549cfde-3112-42b3-9056-e4839c89a729", + "id": "cb5cff94-e4f5-4b56-9d57-cdb64afe6e9b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59091,7 +59091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d23f2d3-a1ca-4f5c-b730-2a60d7b7c0fb", + "id": "324731e4-624d-4bd6-bf80-06f3950d4b77", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59147,7 +59147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c1597e6-c8e2-4c44-b5b5-f5711fea254c", + "id": "9f9cff37-ff94-4014-b5ac-e52e9fd03a8a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59209,7 +59209,7 @@ } }, { - "id": "560f867c-3950-4223-a1d6-ea27e2850504", + "id": "c6a24559-bea8-493a-83de-7316fc672dd4", "name": "List Non-Employee Sources", "request": { "name": "List Non-Employee Sources", @@ -59293,7 +59293,7 @@ }, "response": [ { - "id": "1066abac-a1ab-4a58-8f08-e03220a3acf8", + "id": "9fcfdfa3-8d6c-47a1-bde9-f3962f987b05", "name": "List of non-employee sources objects.", "originalRequest": { "url": { @@ -59391,7 +59391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37d16b37-c9e0-4e30-b0f9-f081710d00fc", + "id": "84e6935a-0700-48cf-ab67-45ad549594f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59489,7 +59489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67e11c3d-974e-4aae-a32d-198f8344b029", + "id": "820debcd-b960-4030-abda-0fa40e5da8e8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59587,7 +59587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f471ba1-9df2-4b2b-840a-84d2365cbf5c", + "id": "4057ae29-1fde-45fc-8a22-d346f48d4b5e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59685,7 +59685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11431abd-ad11-46a9-9ef8-4fe39cb7558f", + "id": "494a54e9-dc1f-4459-b5f9-f9a1fe451a83", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59783,7 +59783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cfaf5be-9029-4edb-b241-146a0ce2f639", + "id": "ded48331-6b72-478d-b930-28e4b9b33bc0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59887,7 +59887,7 @@ } }, { - "id": "6d0dfc0b-4973-4d72-9111-ef791970bbac", + "id": "8bd1f583-7587-4e1e-ada5-1ef9bf43229a", "name": "Get a Non-Employee Source", "request": { "name": "Get a Non-Employee Source", @@ -59928,7 +59928,7 @@ }, "response": [ { - "id": "31e4b8b1-da96-485c-b84b-eb2770e3f204", + "id": "b2f67aa6-423c-41d1-83ec-d1411a6af566", "name": "Non-Employee source object.", "originalRequest": { "url": { @@ -59972,7 +59972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "431d88ae-bce3-414f-9393-2816dbda00d1", + "id": "9f230bec-8d02-4cad-96d1-044e1a61b04c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60016,7 +60016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9eb99225-e4d7-4eee-a135-a4afb39c4846", + "id": "457dbf78-5687-4d53-a3f5-1cf2ed53f78a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60060,7 +60060,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e67ea5e-2a47-4673-ab79-85a5f09ae988", + "id": "71297188-d2cc-4cb5-ac97-487638c3d701", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60104,7 +60104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f02b5653-5216-403a-93f3-67c529ab8f23", + "id": "4c8be3ad-e24d-4e5f-942c-d06d3a4ce039", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60148,7 +60148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "237fe09d-f901-4a6f-ba81-e0ac68116272", + "id": "c8c0132d-f945-43fe-8a95-6af1f420cbb6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60198,7 +60198,7 @@ } }, { - "id": "cb58e1f7-1970-41a8-8b55-5774acc0a137", + "id": "c19705a3-56d5-4938-9a5b-fe7b0ab29def", "name": "Patch a Non-Employee Source", "request": { "name": "Patch a Non-Employee Source", @@ -60252,7 +60252,7 @@ }, "response": [ { - "id": "c6595fc6-d859-43e7-b99a-1d3789c49696", + "id": "86bd510e-3cb5-481b-ad8d-c10a96f1e14d", "name": "A patched non-employee source object.", "originalRequest": { "url": { @@ -60309,7 +60309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bc4fd7c-07c3-4641-b021-7a3c73d986e9", + "id": "f0af316d-7c35-4b27-a7d6-d81b373eabee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60366,7 +60366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "675a7d38-ca7f-471b-bd9b-5bda7e1e7a35", + "id": "cc1c3deb-b38e-4b79-99da-4daaca5b77a3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60423,7 +60423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c42bd66e-53c9-4953-a98a-3e4519eeb03f", + "id": "1c04c677-8229-48bb-9f22-828f42b4e863", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60480,7 +60480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53d623f4-854c-4f55-a73d-335188b6d1fe", + "id": "88c5a00e-0cb2-4dd8-9bb4-f03ebf48fc91", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60537,7 +60537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a3558f3-1c52-40e0-8945-efbde4ab9376", + "id": "6289124f-9fbc-4f56-ac57-9ffbae749f9e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60600,7 +60600,7 @@ } }, { - "id": "84e2661f-91d7-4bf6-89c8-6041c4bf17a2", + "id": "074e19c8-9a90-4c76-83fa-f48682381d8f", "name": "Delete Non-Employee Source", "request": { "name": "Delete Non-Employee Source", @@ -60641,7 +60641,7 @@ }, "response": [ { - "id": "4fd38e9f-f066-4517-b0a0-ccf7b8036de1", + "id": "a26c84ba-c1cd-40fd-9801-470bd6f41ace", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -60675,7 +60675,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3ad64786-456c-4ed1-a1dd-15a43a0a3a5a", + "id": "a60d14a0-c386-4ad0-ab60-ba189b173214", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60719,7 +60719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3c9857a-5a99-4d3b-8fcd-65c4cd00cf96", + "id": "14967d47-7985-4c68-b7a9-30f0f27491a9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60763,7 +60763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d379876-71dc-4faf-bc26-88f980dda1ad", + "id": "a1633d4c-af53-4ff8-9672-15bbad33e575", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60807,7 +60807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab859ba5-4e98-4842-ad21-830a8c1b7b34", + "id": "4f7682e1-faa5-4129-8c71-78e781a3b3d7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60851,7 +60851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "747a6e08-df83-490c-99e9-21ebf7a49ad9", + "id": "c61d70c3-ea1c-4931-8856-7b920c63d2bd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60901,7 +60901,7 @@ } }, { - "id": "cb81ee86-2fda-48dc-9dd0-99e5e0287a52", + "id": "3ff7e5fa-8be7-4d57-b5b1-a211c80b91da", "name": "Exports Non-Employee Records to CSV", "request": { "name": "Exports Non-Employee Records to CSV", @@ -60944,7 +60944,7 @@ }, "response": [ { - "id": "c1ef3a98-6553-456a-bb04-6b75686adc54", + "id": "c0b04664-da5c-4bd8-9441-cdc2b2557fd6", "name": "Exported CSV", "originalRequest": { "url": { @@ -60990,7 +60990,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7e43c9e4-8e6b-4ae9-a4cb-c935320f7e91", + "id": "c6628204-fdba-44dd-b504-34ac7d9e8e45", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61036,7 +61036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af218ee9-a618-415b-9018-4f58ab5a5541", + "id": "13f2ef14-2a00-46b1-b515-7e1a178b6ae5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61082,7 +61082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "741a31ea-6706-4a1d-8015-138225c1f197", + "id": "5eea97ef-d711-4f20-94bf-19ecaac18493", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61128,7 +61128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4a35632-01a0-4afe-aae9-f335d7a2c82e", + "id": "2e6386db-3aaa-41a2-8919-d4faa59c0612", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -61174,7 +61174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba3dee43-eb89-4a78-b849-054d829d0f49", + "id": "e2569bcf-24a1-413b-af76-9ae9635b1638", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61220,7 +61220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8334ba2-649a-40c6-9bb6-33edeeeb0743", + "id": "befa6145-c95a-4579-a376-9243162a1eaf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61272,7 +61272,7 @@ } }, { - "id": "0edffd3d-e63f-4fa1-8070-fc1d5afd5cc0", + "id": "1ea9e791-b392-4753-851e-1605a024421d", "name": "Imports, or Updates, Non-Employee Records", "request": { "name": "Imports, or Updates, Non-Employee Records", @@ -61323,7 +61323,7 @@ "type": "text/plain" }, "key": "data", - "value": "in id veniam non labore", + "value": "officia culpa laborum", "type": "text" } ] @@ -61331,7 +61331,7 @@ }, "response": [ { - "id": "570d4ea0-6db4-4f2e-8601-98f3ea81b9a2", + "id": "24a97698-31e2-4e18-a2b2-bfb083e537f2", "name": "The CSV was accepted to be bulk inserted now or at a later time.", "originalRequest": { "url": { @@ -61374,7 +61374,7 @@ "type": "text/plain" }, "key": "data", - "value": "in id veniam non labore", + "value": "officia culpa laborum", "type": "text" } ] @@ -61393,7 +61393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2f65ac9-955b-433e-8a6d-1c14f9fb436c", + "id": "a7f4ca0b-7eda-4f88-ab54-5c580411ed45", "name": "Client Error - Returned if the request body is invalid.\nThe response body will contain the list of specific errors with one on each line.\n", "originalRequest": { "url": { @@ -61436,7 +61436,7 @@ "type": "text/plain" }, "key": "data", - "value": "in id veniam non labore", + "value": "officia culpa laborum", "type": "text" } ] @@ -61455,7 +61455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c68b266-6e02-4844-943f-51dbfc0f9ca8", + "id": "154845d9-28e7-48c9-80a1-ed60d7f74762", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61498,7 +61498,7 @@ "type": "text/plain" }, "key": "data", - "value": "in id veniam non labore", + "value": "officia culpa laborum", "type": "text" } ] @@ -61517,7 +61517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce0d9410-5d4e-460c-a310-a24eb7faeeb0", + "id": "e0eb863a-209e-434c-ab83-e9bcb8ea93e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61560,7 +61560,7 @@ "type": "text/plain" }, "key": "data", - "value": "in id veniam non labore", + "value": "officia culpa laborum", "type": "text" } ] @@ -61579,7 +61579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b908fdbe-0599-44d5-ac82-af3afbfae5cf", + "id": "78adb802-4e07-47e5-b58f-5c9964125957", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -61622,7 +61622,7 @@ "type": "text/plain" }, "key": "data", - "value": "in id veniam non labore", + "value": "officia culpa laborum", "type": "text" } ] @@ -61641,7 +61641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63e10881-78fa-40b6-aedf-a77cd4dd0c10", + "id": "0f909fd4-5ea8-4604-b08d-a4dd5809388a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61684,7 +61684,7 @@ "type": "text/plain" }, "key": "data", - "value": "in id veniam non labore", + "value": "officia culpa laborum", "type": "text" } ] @@ -61703,7 +61703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82dc14dc-fb3d-426e-8665-91181d48ebf8", + "id": "5fbd9953-1585-4614-bb93-8ea7c6212d26", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61746,7 +61746,7 @@ "type": "text/plain" }, "key": "data", - "value": "in id veniam non labore", + "value": "officia culpa laborum", "type": "text" } ] @@ -61771,7 +61771,7 @@ } }, { - "id": "57ca3940-21cb-4ccf-aec7-65489faaea1a", + "id": "fcb3d446-0459-4bff-acfe-7639398136d8", "name": "Obtain the status of bulk upload on the source", "request": { "name": "Obtain the status of bulk upload on the source", @@ -61814,7 +61814,7 @@ }, "response": [ { - "id": "355629ab-c772-4d2d-bf29-1ba4464077c6", + "id": "424ebef0-181a-42a9-aa46-38aaf446d569", "name": "Status of the newest bulk-upload job, if any.", "originalRequest": { "url": { @@ -61860,7 +61860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "274a157b-20b1-4895-949c-50c76ea027fe", + "id": "03ff7b2f-4bbb-4c70-a2d8-a9adcde70531", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61906,7 +61906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c26e55ef-a7ad-4a3e-89ea-8c53383569d8", + "id": "b5b5d066-2c13-46f0-afe4-136d79fae8e1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61952,7 +61952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a2a52c0-2643-4d84-8afb-1c67e55ab46b", + "id": "8d14943d-7437-4b0c-b597-2b4eba796933", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61998,7 +61998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b57c26a-9c49-4e4a-a8db-db79c94c74ef", + "id": "b9bd0f23-1e28-4f63-af5c-448aa750b46e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -62044,7 +62044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb41b1c3-02de-40be-80c1-59c94d749186", + "id": "cceeba7c-e5af-4d2f-a78b-fad837b44f25", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62096,7 +62096,7 @@ } }, { - "id": "bd1bdda6-0e76-49a5-b97e-ccfe7e488bf7", + "id": "d03a7d64-aced-4e38-9a18-3d3d3813e8f6", "name": "Exports Source Schema Template", "request": { "name": "Exports Source Schema Template", @@ -62139,7 +62139,7 @@ }, "response": [ { - "id": "780c4764-b2fb-48f8-a256-cce3004c8ed3", + "id": "1899ec67-f320-471b-b59f-a395b32c6dca", "name": "Exported Source Schema Template", "originalRequest": { "url": { @@ -62185,7 +62185,7 @@ "_postman_previewlanguage": "text" }, { - "id": "783e89b2-475b-425d-90c6-194aa982bebf", + "id": "248e585b-4afa-4b62-85c3-045bc539705c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62231,7 +62231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a40601d7-b03e-49d2-bfad-312831eedf61", + "id": "a3855e06-289c-4d09-8b74-94c3f13c9278", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62277,7 +62277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "325f9558-6d0c-477a-a578-b70f3080219b", + "id": "e2a3ce74-d703-4149-823f-634e1740c5b6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62323,7 +62323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32e85df9-acf6-41a2-b729-ad2a574677e1", + "id": "f3bf5dba-3e76-49c1-8bf1-f958304a7c6c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -62369,7 +62369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f90c0bf-67cf-403e-89e7-4b6cf352f9e8", + "id": "23654507-8920-4e4c-89f1-23f6846bfc02", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -62415,7 +62415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "322a9de6-4a16-407d-ae64-bcc3bce5d9a9", + "id": "a0a46cdd-1f2a-4c54-956d-19663f260455", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62467,7 +62467,7 @@ } }, { - "id": "ffec564a-0073-431b-bb46-6f7b8e7a5d43", + "id": "bcea654f-162b-44cc-a452-c7edcd628350", "name": "Get List of Non-Employee Approval Requests", "request": { "name": "Get List of Non-Employee Approval Requests", @@ -62551,7 +62551,7 @@ }, "response": [ { - "id": "af4c480e-d573-4ecd-b3a6-f411523d7304", + "id": "935b3ee4-c290-4c17-8eb7-5d239d9615ec", "name": "List of approval items.", "originalRequest": { "url": { @@ -62649,7 +62649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32fdb923-7494-4ab4-abca-84c58465f521", + "id": "20e7b4d0-e2d3-4307-9773-d51a7a8c6036", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62747,7 +62747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6eb8bed2-bcbf-474d-8a5a-688ff3be3425", + "id": "bb7b53e2-0eae-4ca9-87b1-9ff5a563c42e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62845,7 +62845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e89f74cf-e882-47aa-9970-49c287c5a3ba", + "id": "883536e3-3901-4ab9-9f4a-e7cc88e44fee", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62943,7 +62943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ae0a266-7267-4378-aced-d78500d9da74", + "id": "f270a35a-4550-4b13-9935-4d2e8f6c88d7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63041,7 +63041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2994b5fe-412c-4385-b777-9376035370c1", + "id": "aeed4cc2-b357-42b7-8e3e-5683c5f5e3c0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63145,7 +63145,7 @@ } }, { - "id": "088ffc6a-907f-4f69-8807-afcec4442281", + "id": "d2a1c010-cdf7-4d1e-adcd-87f3ea11ef65", "name": "Get a non-employee approval item detail", "request": { "name": "Get a non-employee approval item detail", @@ -63196,7 +63196,7 @@ }, "response": [ { - "id": "f73d90a8-3100-49b7-beb0-ec462ed0b2d4", + "id": "b8d097aa-5f66-4b76-bc30-395883c25842", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -63250,7 +63250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5cdf7e4-1112-49c6-b4ea-323d0bc7d926", + "id": "c5cbb89d-5624-4899-8bcd-c586dcebefdb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63304,7 +63304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb957a4a-acfa-4c47-a324-f4285f8bcc7e", + "id": "aa47a343-3d5a-407d-a073-558b3b74b372", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63358,7 +63358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdf33bde-8ffd-401c-95e5-952782d09dd2", + "id": "d734c82d-287b-49d7-9cbe-f209ab31f057", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63412,7 +63412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1af0c456-e5a3-41be-873a-bb61f7891a48", + "id": "c2f71d5b-7332-430d-8f33-e82aba1e9c45", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63466,7 +63466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9a8c152-61eb-4f03-9838-01dec047bd81", + "id": "968ebbbc-3ba2-4eb3-bd8b-d0e851e7b246", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63526,7 +63526,7 @@ } }, { - "id": "702bc72c-fe3a-4f57-88bf-4ef6eba0de66", + "id": "892d7019-61f8-4c4e-bac8-efd5830f0db7", "name": "Approve a Non-Employee Request", "request": { "name": "Approve a Non-Employee Request", @@ -63581,7 +63581,7 @@ }, "response": [ { - "id": "f30efbdb-854f-4d73-91bd-d6b5cd70480d", + "id": "73ea0f2b-e961-4ae3-92cb-ba8e51b92f3f", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -63639,7 +63639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91c21a87-a3b7-4415-9284-410a30a842d0", + "id": "4c512b36-ec3e-436d-995a-80d41beeeafe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63697,7 +63697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82905756-8aa7-453d-a1c0-40215ebbee61", + "id": "2132fdb3-5738-4f06-8871-42c421df97df", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63755,7 +63755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5756e402-5305-47d1-a9e6-fd9eb9f6422e", + "id": "3efe888b-e610-4f82-847e-ce2675d35cbd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63813,7 +63813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e44d0e59-aec6-47ca-95e5-b0b89cfc14ca", + "id": "b751fe12-a28e-4c69-96d8-37434ebb1254", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63871,7 +63871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcea5cdc-e859-44a3-a5cc-b37de25e2b40", + "id": "3c58b87f-0af2-45c5-83d3-0945e1932539", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63935,7 +63935,7 @@ } }, { - "id": "e190163e-944b-429f-85e9-a4a0d2c3e0dc", + "id": "1b4fb2b1-ee70-4f4d-bc30-6e9f94fec50e", "name": "Reject a Non-Employee Request", "request": { "name": "Reject a Non-Employee Request", @@ -63990,7 +63990,7 @@ }, "response": [ { - "id": "c5e7fbff-81f6-454e-8e3a-30b1d96b9a13", + "id": "3ba42180-8e55-4def-bef7-27f5031b6537", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -64048,7 +64048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9fb7dd1-0e4c-4804-aa85-bb33a857ba7e", + "id": "cf55d03e-8456-4f9e-92d1-4b3455993b26", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64106,7 +64106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0a70bba-4408-4e0d-9a0e-64874e201af0", + "id": "fa2f6086-c192-4610-bdd5-c85fc95c13a9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64164,7 +64164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df58fa76-861f-41a2-aa17-f19aca4ce3ab", + "id": "5c5c761c-0a01-4cf5-9902-8818503f0ee5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64222,7 +64222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c60c8e26-311e-40f3-874e-37c05753c343", + "id": "c564977b-779c-45da-84fe-19493385118d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64280,7 +64280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69b32165-53c3-4594-a929-3e3db7f9221d", + "id": "d2a6f34d-ade0-4be2-b7cb-37e7648bcf88", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64344,7 +64344,7 @@ } }, { - "id": "c6357091-ef07-43a9-8516-c6003bb324e8", + "id": "dc300b0b-aa5f-4859-92e0-0d0a5bb4e859", "name": "Get Summary of Non-Employee Approval Requests", "request": { "name": "Get Summary of Non-Employee Approval Requests", @@ -64386,7 +64386,7 @@ }, "response": [ { - "id": "767570d1-25e1-4c22-87e4-314e542b62e4", + "id": "e56a86bc-130a-4567-8075-5dde688693b1", "name": "summary of non-employee approval requests", "originalRequest": { "url": { @@ -64431,7 +64431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43111900-1f9b-4039-9a9e-29f2f311f9df", + "id": "86f0cbe3-7f96-4a3a-8806-75c8cae65d37", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64476,7 +64476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eeecac1e-fb78-4b08-a14a-3162049429b0", + "id": "c736b84f-a9f3-4f5f-b195-e148cb565183", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64521,7 +64521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4adbc3c6-ed6a-4c4b-95ab-c9e2060d9a0d", + "id": "a50a6421-0c0a-4d41-a40b-7467d9551979", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64566,7 +64566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38cb6dc1-6c98-4a69-9bf4-824f9231d276", + "id": "bc69d823-33aa-43c0-839b-f69143803391", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64611,7 +64611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e1ed7d8-08a5-4edc-8b55-e17aed81c3c4", + "id": "e826fb22-8a36-4981-bc3a-e2fdf66b1da6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64662,7 +64662,7 @@ } }, { - "id": "0d851207-040a-454d-96d7-95db561a225c", + "id": "217362d3-f7d8-45e5-a6cb-fa7debcaf217", "name": "List Schema Attributes Non-Employee Source", "request": { "name": "List Schema Attributes Non-Employee Source", @@ -64704,7 +64704,7 @@ }, "response": [ { - "id": "4fd02a2c-6037-4530-8c48-2944eaa4c51b", + "id": "86d9e725-60a6-4772-a7a1-79658bbcb29f", "name": "A list of Schema Attributes", "originalRequest": { "url": { @@ -64749,7 +64749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd15f0b1-25f1-4625-aaad-532e2efa2aa5", + "id": "01db9ebf-efcd-4c9e-9b0b-d5d456696a3b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64794,7 +64794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a84d63f-773b-4ec4-9590-4172cb741883", + "id": "2720f8df-a86c-4ece-b590-1a6925df549d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64839,7 +64839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2be5d9f7-96d0-4e27-8d66-6ebdcab6d25a", + "id": "855a4fa7-a006-4d8c-adb6-4e35f0c39d4d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64884,7 +64884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55a8f21f-29f3-49c2-bf57-e506056db835", + "id": "9b93b142-2069-4701-8c05-7f9faf1ae4f4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -64929,7 +64929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a656a709-13a9-4d23-bead-48b672bb07a0", + "id": "454cf08b-e8ab-49b3-9af2-43531b86b7f6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64974,7 +64974,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1969e1a8-7d43-4419-96fb-725627f119e2", + "id": "45a2ff57-20cf-46e2-8178-fd45275e9d0a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65025,7 +65025,7 @@ } }, { - "id": "15be73af-3f41-40f2-80cc-373bfdce204c", + "id": "23d18242-19a3-43cd-b479-d17f7154fb35", "name": "Create a new Schema Attribute for Non-Employee Source", "request": { "name": "Create a new Schema Attribute for Non-Employee Source", @@ -65080,7 +65080,7 @@ }, "response": [ { - "id": "cf03ec21-0183-448b-97be-61d52011cb47", + "id": "3dd89501-2bbf-4433-9fbe-11551860ba10", "name": "Schema Attribute created.", "originalRequest": { "url": { @@ -65138,7 +65138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c3e09c2-364a-44e3-92f9-3999282fb39f", + "id": "554874f6-4b3f-4356-aac7-f4401636986d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65196,7 +65196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e76eb66-65fc-4d4b-8689-33d614ba9817", + "id": "5c94fad5-b967-43da-b349-b5160d55b9d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65254,7 +65254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b6e3d2e-720c-4efd-bd0f-d6bfde96fa80", + "id": "898b33db-11f7-4c73-a51d-ff81a2aba44c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65312,7 +65312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b192c77-5e36-4e2c-a605-534f6564fa53", + "id": "8463b67a-3ff4-4a7a-afa8-cf0d36e83915", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65370,7 +65370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f510a157-fa3b-45e4-a588-09a8b5992e45", + "id": "69a44b67-8203-47e0-89ff-d2e261a8b8c8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65434,7 +65434,7 @@ } }, { - "id": "2b314363-31ea-45ee-896a-1e87cbd0b39b", + "id": "2bfb58b5-b76a-4a48-a83d-52ffbff7ba09", "name": "Delete all custom schema attributes for Non-Employee Source", "request": { "name": "Delete all custom schema attributes for Non-Employee Source", @@ -65476,7 +65476,7 @@ }, "response": [ { - "id": "b2d11a75-800e-4ee4-99ce-385eb5f6411d", + "id": "389f2e1a-f120-45d8-a051-1b276e07f48f", "name": "All custon Schema Attributes were successfully deleted.", "originalRequest": { "url": { @@ -65511,7 +65511,7 @@ "_postman_previewlanguage": "text" }, { - "id": "02228aa2-8faf-4bb5-af8d-eaeee6a714a5", + "id": "1e9142a1-5f62-4202-b304-8155cc0913f7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65556,7 +65556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d7f62c1-8c22-4c28-9130-943cb7aa8801", + "id": "d0de589f-788e-4653-8f44-66e045b1264b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65601,7 +65601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3549343c-23cc-4bb9-a438-ec9245e9beef", + "id": "43afab29-8b2c-4680-994f-6a15d1d359a1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65646,7 +65646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bda7f496-2492-47f9-90d6-4c80cfeb20ed", + "id": "53f3f8fd-21e1-4ce1-919d-5b31e24c8110", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65691,7 +65691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ab76070-ff43-4615-9d95-ef4bada62df5", + "id": "34265259-74a4-4be3-b54b-232ff592e56b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65742,7 +65742,7 @@ } }, { - "id": "f17a19fc-c9b1-43a9-8969-c4870562ec1b", + "id": "4622a6a0-db03-4d64-9e9e-b0f0f01d909a", "name": "Get Schema Attribute Non-Employee Source", "request": { "name": "Get Schema Attribute Non-Employee Source", @@ -65795,7 +65795,7 @@ }, "response": [ { - "id": "f9b417f6-cccc-47ef-8af4-8ed169669d05", + "id": "fd1e875e-53c5-42a9-8cc7-5ad8062db907", "name": "The Schema Attribute", "originalRequest": { "url": { @@ -65841,7 +65841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b98b63ac-be25-4a44-9d9a-af3076b83ca4", + "id": "5975ef0d-1e5e-44d0-8f34-1f3444a00a92", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65887,7 +65887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56aa59a7-2e6e-47aa-a1c4-6fd518e59be8", + "id": "d98edf75-9daf-440e-8024-650af93fd917", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65933,7 +65933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9abb5178-5faa-4b40-bc85-dc329afabd5d", + "id": "de71c7dd-6a61-4259-9c75-7fec41115f34", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65979,7 +65979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db12fead-16a8-400b-ba54-0764295aad5e", + "id": "de124578-6ca9-4f2e-a9d5-f237d9a41bc6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66025,7 +66025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ade3f1b2-dddf-46c0-8caa-4021f603f536", + "id": "cd3df72e-f930-45fd-9753-cced32078a5f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66077,7 +66077,7 @@ } }, { - "id": "7b08fd30-3ec4-440c-a8b4-899dae13f362", + "id": "87a8352c-7633-4afb-84f2-d2ff346326f8", "name": "Patch a Schema Attribute for Non-Employee Source", "request": { "name": "Patch a Schema Attribute for Non-Employee Source", @@ -66143,7 +66143,7 @@ }, "response": [ { - "id": "47bb849f-5449-4159-b359-16fe225eaac4", + "id": "3318437a-c373-42fb-9dd5-8dfc85feed94", "name": "The Schema Attribute was successfully patched.", "originalRequest": { "url": { @@ -66202,7 +66202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72601836-b9bc-4c3a-8ed6-cb8747077c6e", + "id": "a533c7a2-0947-47a2-9a6e-1579c0031cd8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66261,7 +66261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d5e2bff-c316-4a2c-b6d2-192d224c0639", + "id": "3af1a66f-7379-471d-af74-3ab2724b5dba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66320,7 +66320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d10c0f7-e3f3-410f-a95a-2bb04128920e", + "id": "24300fc8-4450-4531-a306-a9c1bc41e2cf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66379,7 +66379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c41d929b-a7d1-40c5-8971-eec21982876b", + "id": "5a758ba8-e2aa-403d-863b-7fefe8d30b55", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -66438,7 +66438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68e680c7-f8e0-4be9-af74-db82ce95c8bf", + "id": "5895bd44-ef06-4aa7-8ec1-fc04d01bf6cd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66497,7 +66497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a71ef88-df94-4e09-9865-c02884cf56b8", + "id": "4cc7c892-5179-4bb6-b0e6-0daecc843911", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66562,7 +66562,7 @@ } }, { - "id": "b138fa0f-f555-41fc-83b4-6b84864ce013", + "id": "8ad76fa5-2c1e-4ae4-8307-ecb96990ce4d", "name": "Delete a Schema Attribute for Non-Employee Source", "request": { "name": "Delete a Schema Attribute for Non-Employee Source", @@ -66615,7 +66615,7 @@ }, "response": [ { - "id": "071bc4f6-5072-40f8-955c-e21561b08f09", + "id": "2baa7770-8eed-43c5-a5e8-d49ee3cf0e31", "name": "The Schema Attribute was successfully deleted.", "originalRequest": { "url": { @@ -66651,7 +66651,7 @@ "_postman_previewlanguage": "text" }, { - "id": "78a93d42-72b5-4b2b-813d-34df30e9ee70", + "id": "429f0fce-1b60-451e-b423-d4333b857690", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66697,7 +66697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3eba894-6d95-4095-9c05-992bb9a324ac", + "id": "161873fc-d275-466b-a9a2-8d5b8c3fcfac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66743,7 +66743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e3fce04-ae58-4c88-af87-51da01db0858", + "id": "3490af68-a8e0-45d5-b10b-6f0436f94299", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66789,7 +66789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d44d0b05-5a05-42f7-b62c-7ae5e7034289", + "id": "88effd71-3fbb-4c12-9fd2-e4605a43a261", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66835,7 +66835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1a79b31-6d31-4bd3-b573-8fb166559277", + "id": "9c2c1387-d0d3-4e6c-ae26-28233fc7fc24", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66893,7 +66893,7 @@ "description": "Use this API to implement OAuth client functionality. \nWith this functionality in place, users with the appropriate security scopes can create and configure OAuth clients to use as a way to obtain authorization to use the IdentityNow REST API.\nRefer to [Authentication](https://developer.sailpoint.com/idn/api/authentication) for more information about OAuth and how it works with the IdentityNow REST API.\n", "item": [ { - "id": "0982403b-fc0f-4382-b34e-81cbc6b40478", + "id": "0ef5802c-97b0-4676-8b13-b14608e6e189", "name": "List OAuth Clients", "request": { "name": "List OAuth Clients", @@ -66932,7 +66932,7 @@ }, "response": [ { - "id": "63a13ed5-88a4-4f94-a86b-db9bb660f5d9", + "id": "93eebfd7-7988-4e0b-bd8e-52b84980bf0f", "name": "List of OAuth clients.", "originalRequest": { "url": { @@ -66985,7 +66985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17d56b65-04a4-423a-a675-20c59aefac79", + "id": "53837355-43a1-44e2-9a5d-93953c911c2a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67038,7 +67038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "766f2196-be6c-4472-9a3a-0157df30cdc4", + "id": "73c1ef7e-da29-490f-8afd-8062addbcc64", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67091,7 +67091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90585348-12ed-4724-ab97-8045dcf164f6", + "id": "4f047d79-cdf0-413e-b92b-3696d0cf9955", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67144,7 +67144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78d22aa8-1bcf-48d4-be86-e4e57f66d11e", + "id": "4c6b4341-c39b-489c-93a0-b040aa2495f5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67197,7 +67197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a921e836-4ef6-46d1-95f0-ab31949d57fb", + "id": "5f1881b6-008f-4715-aa8b-fd39b81fd201", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67256,7 +67256,7 @@ } }, { - "id": "0c2b0206-de0d-4bfd-9174-f1f5729d1c70", + "id": "eb224987-5080-4b30-ad37-9dc46fa4e039", "name": "Create OAuth Client", "request": { "name": "Create OAuth Client", @@ -67298,7 +67298,7 @@ }, "response": [ { - "id": "1d950101-eb78-4a87-a0ef-41fe232cff20", + "id": "8c683fd7-bb91-4edb-be60-07ea271a1bf7", "name": "Request succeeded.", "originalRequest": { "url": { @@ -67354,7 +67354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a94a850f-921e-4462-a575-21109d467ee9", + "id": "5b9e3f28-7b5f-4ac0-ba7a-2c69552667a2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67410,7 +67410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a4c97ac-141b-444f-97e8-204f3b23de41", + "id": "baaf3018-d9f5-4365-82dc-68e0269e0e2f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67466,7 +67466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a178da72-d07b-4e0a-9f81-1f2e9776bfcf", + "id": "256193cb-f0ee-4ab4-b1d2-a39a2496691a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67522,7 +67522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb1722ce-3175-4374-a78c-33844d6dfc47", + "id": "48def76f-39fa-4bb6-8342-c623626ef3a7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67578,7 +67578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb29de71-ddeb-448a-815d-61668670a0d1", + "id": "33aa57b7-9705-443a-afe6-290262102625", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67640,7 +67640,7 @@ } }, { - "id": "6739e331-671b-4f80-b77c-03c1665ff5ad", + "id": "5f6935bc-c233-4872-b914-7d11405b6455", "name": "Get OAuth Client", "request": { "name": "Get OAuth Client", @@ -67681,7 +67681,7 @@ }, "response": [ { - "id": "79756ed0-46d2-4cbe-88d4-286a67c15a8a", + "id": "8591a4b3-b1fc-4153-9cb4-f52b23675770", "name": "Request succeeded.", "originalRequest": { "url": { @@ -67725,7 +67725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b85c6fd4-e37a-44c8-8f9c-4ca4e56ee80a", + "id": "26426a0c-0a23-4fc1-88e4-18484d74a06e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67769,7 +67769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f71e503-a867-49b4-b479-8740cddc138c", + "id": "22fd1387-2f86-4c9a-9697-39696af4bff7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67813,7 +67813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "804ad4ee-ad84-4f91-b6a4-4e628824e692", + "id": "ad325a3e-f1c8-43b7-b1c2-5a0de69f00ac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67857,7 +67857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d75de6c-d49e-43d6-b3d6-1342ea67c75b", + "id": "b8873303-78de-4043-80a5-759df7745d29", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -67901,7 +67901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db96d3da-85ed-4e1c-ad7c-c9fd6dbf688e", + "id": "26718260-787b-4a02-95dd-be01fdf24b4a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67945,7 +67945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fb0dc0f-b1b5-4f69-955a-938cbf98cc0b", + "id": "e7e452cf-01ef-4504-b474-8ecb037dfaba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67995,7 +67995,7 @@ } }, { - "id": "48751173-136d-4cb1-bb0b-f645a7809fde", + "id": "6906dc44-de14-4175-ad8f-4c1c0b0f97ea", "name": "Delete OAuth Client", "request": { "name": "Delete OAuth Client", @@ -68036,7 +68036,7 @@ }, "response": [ { - "id": "f36217f0-8ed4-45f9-b1d3-79db231dcd6e", + "id": "30e163da-df5f-4493-8c68-7489afcd9bb9", "name": "No content.", "originalRequest": { "url": { @@ -68070,7 +68070,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5c9f0da3-d40d-475e-b941-019c2f6e94ab", + "id": "0cd28790-cf63-4f35-86a0-92cd3293ee1a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68114,7 +68114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96363f2f-c3d1-41c9-9427-619ffb1e7d41", + "id": "e6212d7f-06e2-49ae-96f7-1deb2bbcd220", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68158,7 +68158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f16b1b4-d388-4a8b-98c2-e75d37b17e22", + "id": "0850288d-e6c1-41f6-8f6b-6d784691392f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68202,7 +68202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "beae84cf-f5e9-42de-ba56-87c7096816f2", + "id": "85218c53-e53f-463e-ad30-5f9f73e42db7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -68246,7 +68246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "747171e4-68be-4922-aa68-77c095144511", + "id": "e5257941-0bf5-4839-a77e-4f608b39f646", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68290,7 +68290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2727dc6-bb28-49fd-a538-817a5bc403db", + "id": "b47bfc3e-4b20-420b-b04a-ed2a01b03227", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68340,7 +68340,7 @@ } }, { - "id": "53b948c0-f76a-45d8-b939-c0e5187752ca", + "id": "f6a158bf-3e55-4616-9660-84b5c91d7149", "name": "Patch OAuth Client", "request": { "name": "Patch OAuth Client", @@ -68394,7 +68394,7 @@ }, "response": [ { - "id": "c4622dde-1778-43b7-ba15-9a8192dfa431", + "id": "b3de56f7-6534-4739-8f2f-4b413e9e142a", "name": "Indicates the PATCH operation succeeded, and returns the OAuth client's new representation.", "originalRequest": { "url": { @@ -68451,7 +68451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f57fe725-a816-421a-822e-28a5394059b7", + "id": "bf87d937-f8f4-4866-9cde-e854cb40c48f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68508,7 +68508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25c79bcc-8433-48c5-9ba6-99b40d0a4f5c", + "id": "630191df-36fb-41a0-bfc6-c29709085ea8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68565,7 +68565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae327150-28aa-4e98-912d-a6673fe5db7a", + "id": "d2d79758-0ac5-4d37-a16b-dc0073907ec4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68622,7 +68622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2483cd0-249f-4415-8d0f-66acc52eaf5b", + "id": "e869ea28-a2fe-482d-9ccc-7fd067ceeee5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -68679,7 +68679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1beba2c7-5cf9-476e-a188-d116ad25edda", + "id": "1580907b-40e7-44f0-a79d-2a57310d29c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68736,7 +68736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8d1643d-2c37-424a-ae81-aa01c1bf0ab1", + "id": "2d882d8a-4e8d-45ac-a293-796b8ad7eec1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68805,7 +68805,7 @@ "description": "Use this API to implement organization password configuration functionality. \nWith this functionality in place, organization administrators can create organization-specific password configurations. \n\nThese configurations include details like custom password instructions, as well as digit token length and duration. \n\nRefer to [Configuring User Authentication for Password Resets](https://documentation.sailpoint.com/saas/help/pwd/pwd_reset.html) for more information about organization password configuration functionality.\n", "item": [ { - "id": "7f59dbf1-67c4-46ce-bf6a-10af58bb8e08", + "id": "7e49c007-3af9-4d45-807d-6bf701ee4e15", "name": "Get Password Org Config", "request": { "name": "Get Password Org Config", @@ -68834,7 +68834,7 @@ }, "response": [ { - "id": "27281481-c091-4f41-8e4c-93ac01285859", + "id": "4edb4297-df6c-4ae4-a196-e1c9d5b51034", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -68877,7 +68877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cd41397-2748-4f81-bdcb-fa217ef8bcda", + "id": "ad8b3991-6b73-4315-b323-03bc7783be3c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68920,7 +68920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ed58715-be04-485e-bc79-3d0f796e86a4", + "id": "f453807c-b6fe-4756-8d95-ced636087bee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68963,7 +68963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2709b806-e732-4877-924a-4d20b6f3c180", + "id": "55cb0c92-b7b2-48cf-bc2e-356eee64428b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69006,7 +69006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4df7d37-997d-4a48-84c6-edcb6e1ff2c1", + "id": "168fb755-a70d-4d94-8020-8d28034aaa70", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69049,7 +69049,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9981949-0beb-4b02-b997-f2935782079d", + "id": "bee4267c-7292-466c-ba1e-fec358759859", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69098,7 +69098,7 @@ } }, { - "id": "691ebe73-9cc2-4364-8e5d-9c1c95c2cc78", + "id": "d52a940d-1260-4f18-8bed-a5e8d7a2e908", "name": "Update Password Org Config", "request": { "name": "Update Password Org Config", @@ -69140,7 +69140,7 @@ }, "response": [ { - "id": "188624ec-277b-4c73-b8d5-b72e80c09a74", + "id": "66bdd18c-b3e5-4128-aa61-0cbc6e0e9818", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -69196,7 +69196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9357f1ad-ac3f-450c-b610-d36762a32a9f", + "id": "b13d2aa7-c26d-4f93-96f6-957a6d2bcb5f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69252,7 +69252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7848726-4109-4335-aac5-6414146bf6c7", + "id": "71f0b9e4-5e56-4ef5-bc88-1768b4d1d626", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69308,7 +69308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1729751b-f694-465e-9ecc-05193a299c51", + "id": "4b193f16-0ea9-4694-ad19-48c1ea94edce", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69364,7 +69364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51a35769-26c3-49e0-8ad9-b07a99d7b1bf", + "id": "8f4ba6c5-be99-4f4f-8d7e-e06b4881a4c1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69420,7 +69420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d7c075c-bb3f-4c11-83f2-298d725390db", + "id": "f14b3136-7513-4918-9101-8cfba107c937", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69482,7 +69482,7 @@ } }, { - "id": "6d9f8f05-59c7-4216-aa0d-ab468e610adf", + "id": "7cf795cb-7430-455a-b343-20bb41dd9d20", "name": "Create Password Org Config", "request": { "name": "Create Password Org Config", @@ -69524,7 +69524,7 @@ }, "response": [ { - "id": "9f53ebbd-cb51-4c7a-ad16-fec39bdb0b52", + "id": "c674d6b6-86c6-4f63-8ac9-4a4ebe5e5fa2", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -69580,7 +69580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4e3aa36-8c64-40d4-9a05-f0c3e6af5dbb", + "id": "e18050e1-06c9-4cb7-85c7-edac2946f7a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69636,7 +69636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdc34469-6acd-476a-9922-a08f2df4da54", + "id": "e1c5ce45-5ad8-4536-be22-a27addfceb77", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69692,7 +69692,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80eec937-384b-4023-a73c-8538abe935db", + "id": "bff2a8a3-b647-486b-baa6-f8f8d2f7222f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69748,7 +69748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8df3d33c-22d1-4b06-aa56-f3b920eed648", + "id": "f3b72039-fdbb-4d43-b83f-ffe7bc8efd04", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69804,7 +69804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4007af77-e2dd-4fae-9bf2-5f36d21200f6", + "id": "2828dbf9-e4a0-42b8-b8ce-49ba48beddc0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69872,7 +69872,7 @@ "description": "Use this API to implement password management functionality. \nWith this functionality in place, users can manage their identity passwords for all their applications.\n\nIn IdentityNow, users can select their names in the upper right corner of the page and use the drop-down menu to select Password Manager. \nPassword Manager lists the user's identity's applications, possibly grouped to share passwords. \nUsers can then select 'Change Password' to update their passwords. \n\nGrouping passwords allows users to update their passwords more broadly, rather than requiring them to update each password individually. \nPassword Manager may list the applications and sources in the following groups:\n\n- Password Group: This refers to a group of applications that share a password. \nFor example, a user can use the same password for Google Drive, Google Mail, and YouTube. \nUpdating the password for the password group updates the password for all its included applications.\n\n- Multi-Application Source: This refers to a source with multiple applications that share a password. \nFor example, a user can have a source, G Suite, that includes the Google Calendar, Google Drive, and Google Mail applications. \nUpdating the password for the multi-application source updates the password for all its included applications. \n\n- Applications: These are applications that do not share passwords with other applications.\n\nAn organization may require some authentication for users to update their passwords. \nUsers may be required to answer security questions or use a third-party authenticator before they can confirm their updates. \n\nRefer to [Managing Passwords](https://documentation.sailpoint.com/saas/user-help/accounts/passwords.html) for more information about password management.\n", "item": [ { - "id": "b18304e6-474c-4eb2-bcd3-ca12b8860987", + "id": "04305048-9932-4388-8267-230c1c79264e", "name": "Query Password Info", "request": { "name": "Query Password Info", @@ -69914,7 +69914,7 @@ }, "response": [ { - "id": "b1ebd056-9c99-4e56-be57-3c060bb68815", + "id": "cda970e7-18b8-4b90-b740-5825250b2e0a", "name": "Reference to the password info.", "originalRequest": { "url": { @@ -69970,7 +69970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13f15dc2-b8c7-4d33-8496-ef21e27f8716", + "id": "833dba0c-6ea2-4c02-9cb2-5d4c4705e420", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70026,7 +70026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baa6e757-fa76-442f-be4f-b10ddc7f9d42", + "id": "4cd88504-42b5-4186-a8ea-c39eb3920a89", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70082,7 +70082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb1d954b-5d25-47c8-82b0-26d7dd2456d3", + "id": "06b833aa-2892-4928-9a64-9e2a54a0fff1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70138,7 +70138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae6e4e1f-829e-4eb0-9693-e3b1b7180579", + "id": "d5f10cce-185a-437d-8275-7512409622dd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -70194,7 +70194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "735fc964-0ccb-4501-bda1-5f04c37825df", + "id": "aa850430-4388-40ff-9793-fb75dd1e25c8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70256,7 +70256,7 @@ } }, { - "id": "dfc3d575-3b5d-4966-9876-50882bd30a87", + "id": "f853a614-f01c-4228-9de9-442391321506", "name": "Set Identity's Password", "request": { "name": "Set Identity's Password", @@ -70298,7 +70298,7 @@ }, "response": [ { - "id": "dd69da9a-e159-4039-b1ba-070794d4051a", + "id": "f1dc03ba-54a5-4312-94f6-d6987223581b", "name": "Reference to the password change.", "originalRequest": { "url": { @@ -70354,7 +70354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4277891f-3126-434b-8473-64439f588da3", + "id": "173dc24a-51ca-4ab5-bbfb-efbd7272fcc1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70410,7 +70410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf448401-7456-49bf-b8f7-280ae0da64a5", + "id": "2483d5dc-2fa6-4f62-a306-d22a4086f788", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70466,7 +70466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87a81235-7994-46bd-a831-bc704bd9d7af", + "id": "57b95852-b386-45f6-83cb-e8508e85bd0a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70522,7 +70522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fde32ea-9352-4921-9e89-720a402553a4", + "id": "afa82b98-3d43-4a4f-bacd-bd628b6b9939", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -70578,7 +70578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e5fce20-2120-4e1f-ba8d-dfbe0ac5fcac", + "id": "ba35a534-6353-44f3-91e9-d4def6482f71", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70640,7 +70640,7 @@ } }, { - "id": "f46003a4-3f92-4af6-8ce1-edce6867e20a", + "id": "244e53f0-1945-44de-9728-f795ccf6d6c4", "name": "Get Password Change Request Status", "request": { "name": "Get Password Change Request Status", @@ -70681,7 +70681,7 @@ }, "response": [ { - "id": "c7ac6864-004e-4c37-b125-560759821450", + "id": "579afb3f-fdb5-413c-a05a-e272a3e38e37", "name": "Status of the password change request", "originalRequest": { "url": { @@ -70725,7 +70725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ff10566-f0d7-4ed5-ae77-05a0a27fb8f7", + "id": "2686cefe-b3c5-4353-a962-fe103c2295a3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70769,7 +70769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3c4f723-e407-4b86-b171-126d99c9a503", + "id": "01134dfd-fbc0-4816-9792-15a42746297a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70813,7 +70813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebc4462f-2695-4ee5-987b-881d63ca36b5", + "id": "f55c4741-371b-4cf7-9620-c9ef36a7d63a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70857,7 +70857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c6dd12d-44b4-42ab-a696-fc90c11b155a", + "id": "96536451-5d16-416f-b2ba-9dca77d9f1a1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -70901,7 +70901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c5641e2-c97a-4257-9e4b-6293f5a0131a", + "id": "85ef9a72-e34c-437a-8bf5-006516602611", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -70945,7 +70945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "385db494-4c64-4305-9eaa-57555c492623", + "id": "92476a16-6da5-4adc-b03b-81650c25e97f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71001,7 +71001,7 @@ "description": "Use this API to implement password dictionary functionality. \nWith this functionality in place, administrators can create password dictionaries to prevent users from using certain words or characters in their passwords. \n\nA password dictionary is a list of words or characters that users are prevented from including in their passwords. \nThis can help protect users from themselves and force them to create passwords that are not easy to break. \n\nA password dictionary must meet the following requirements to for the API to handle them correctly: \n\n- It must be in .txt format.\n\n- All characters must be UTF-8 characters. \n\n- Each line must contain a single word or character with no spaces or whitespace characters.\n\n- It must contain at least one line other than the locale string.\n\n- Each line must not exceed 128 characters.\n\n- The file must not exceed 2500 lines. \n\nAdministrators should also consider the following when they create their dictionaries: \n\n- Lines starting with a # represent comments.\n\n- All words in the password dictionary are case-insensitive. \nFor example, adding the word \"password\" to the dictionary also disallows the following: PASSWORD, Password, and PassWord.\n\n- The dictionary uses substring matching. \nFor example, adding the word \"spring\" to the dictionary also disallows the following: Spring124, 345SprinG, and 8spring.\nUsers can then select 'Change Password' to update their passwords. \n\nAdministrators must do the following to create a password dictionary: \n\n- Create the text file that will contain the prohibited password values.\n\n- If the dictionary is not in English, they must add a locale string to the top line: locale:`languageCode`_`countryCode`\n\nThe languageCode value refers to the language's 2-letter ISO 639-1 code.\nThe countryCode value refers to the country's 2-letter ISO 3166-1 code.\n\nRefer to this list https://docs.oracle.com/cd/E13214_01/wli/docs92/xref/xqisocodes.html to see all the available ISO 639-1 language codes and ISO 3166-1 country codes.\n\n- Upload the .txt file to IdentityNow with [Update Password Dictionary](https://developer.sailpoint.com/idn/api/v3/update-password-dictionary). Uploading a new file always overwrites the previous dictionary file.\n\nAdministrators can then specify which password policies check new passwords against the password dictionary by doing the following: In the Admin panel, they can use the Password Mgmt dropdown menu to select Policies, select the policy, and select the 'Prevent use of words in this site's password dictionary' checkbox beside it.\n\nRefer to [Configuring Advanced Password Management Options](https://documentation.sailpoint.com/saas/help/pwd/adv_config.html) for more information about password dictionaries.\n", "item": [ { - "id": "21d3687e-182b-412d-abc6-2862f5edbc6d", + "id": "66d9f1e9-d093-4cef-aee6-94e7ee94bf77", "name": "Get Password Dictionary", "request": { "name": "Get Password Dictionary", @@ -71030,7 +71030,7 @@ }, "response": [ { - "id": "e7b20a57-0faa-433e-b145-5df04adaf6d9", + "id": "c2008e6d-5b3b-4221-9f5e-73cda0571b22", "name": "A password dictionary response", "originalRequest": { "url": { @@ -71068,12 +71068,12 @@ "value": "text/plain" } ], - "body": "cupidatat velit ut dolor", + "body": "ut nulla pariatur", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "85043c90-31a0-49ec-9dd1-32e056b770e5", + "id": "2ad7b7a6-30e3-4c3e-b826-5052bf78362c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71116,7 +71116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7f2c795-2477-4d16-a986-42382b8a9c34", + "id": "ea064719-80ec-4418-8b11-4ac2106d23bd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71159,7 +71159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5d6bdb1-c95a-4352-ac62-f1308a3629cc", + "id": "7b087997-feb0-4ddb-a072-27cbcf359a4c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71202,7 +71202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a942dc37-1661-45ba-bdd1-f7c54c242568", + "id": "6d7db30b-b244-43e7-92ac-0f04d4d2fa2d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -71245,7 +71245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da77218d-9cc8-4439-81f4-114cea1054cb", + "id": "7bd81b66-edd8-43ee-96f4-d5978f75f84f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71288,7 +71288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a973e2b0-f648-45a7-91f3-d867d1f3e512", + "id": "dec840c4-1e78-4b7a-885b-ee046c305cdb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71337,7 +71337,7 @@ } }, { - "id": "99903e29-f490-47f3-aa36-6e2e831fde56", + "id": "96b60152-3b21-4621-ac48-d57505b68311", "name": "Update Password Dictionary", "request": { "name": "Update Password Dictionary", @@ -71375,7 +71375,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -71383,7 +71383,7 @@ }, "response": [ { - "id": "bea20438-c0ab-48b7-9d20-7d296b5b1f5a", + "id": "f7b02148-1e1c-4f3c-ba79-5944337ab6c7", "name": "Successfully updated.", "originalRequest": { "url": { @@ -71420,7 +71420,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -71433,7 +71433,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a05e6a19-5617-40d8-82a9-ffe095992791", + "id": "75af9ef7-aaed-4669-8192-64e5db85c376", "name": "Created.", "originalRequest": { "url": { @@ -71470,7 +71470,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -71483,7 +71483,7 @@ "_postman_previewlanguage": "text" }, { - "id": "48c36c3b-693a-400d-82d2-e8371352bcad", + "id": "7b626361-3c5f-4360-8ff1-82cf95f5fa98", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71524,7 +71524,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -71543,7 +71543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5830faf-f9e4-41cd-9409-c6f83df2f501", + "id": "76b3b2d8-3ca5-4732-b4d4-e115d5a751ae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71584,7 +71584,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -71603,7 +71603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9596270-840c-4900-b388-2a2c8d10d299", + "id": "31af0bf4-2ca3-44f7-81b1-01d23636d5e4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71644,7 +71644,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -71663,7 +71663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "478ef6b0-e89d-40c1-8dd2-d060dd7d8876", + "id": "ef7dd0af-7ba7-4817-9854-a044167e38d0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -71704,7 +71704,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -71723,7 +71723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c83dde51-e04d-4dbc-81d8-4d73e7dc7f6f", + "id": "19c87aa5-7540-46b1-8f78-95fafeb05b12", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71764,7 +71764,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -71783,7 +71783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd62ee4f-6e7d-49b8-91f5-4cb8591d71e4", + "id": "4f3e7d5e-59df-4766-b749-824a55d13c39", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71824,7 +71824,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -71855,7 +71855,7 @@ "description": "Use this API to implement password sync group functionality. \nWith this functionality in place, administrators can group sources into password sync groups so that all their applications share the same password. \nThis allows users to update the password for all the applications in a sync group if they want, rather than updating each password individually. \n\nA password sync group is a group of applications that shares a password. \nAdministrators create these groups by grouping the applications' sources. \nFor example, an administrator can group the ActiveDirectory, GitHub, and G Suite sources together so that all those sources' applications can also be grouped to share a password. \nA user can then update his or her password for ActiveDirectory, GitHub, Gmail, Google Drive, and Google Calendar all at once, rather then updating each one individually.\n\nThe following are required for administrators to create a password sync group in IdentityNow: \n\n- At least two direct connect sources connected to IdentityNow and configured for Password Management.\n\n- Each authentication source in a sync group must have at least one application. Refer to [Adding and Resetting Application Passwords](https://documentation.sailpoint.com/saas/help/pwd/adv_config.html#adding-and-resetting-application-passwords) for more information about adding applications to sources.\n\n- At least one password policy. Refer to [Managing Password Policies](https://documentation.sailpoint.com/saas/help/pwd/policies.html) for more information about password policies. \n\nIn the Admin panel in IdentityNow, administrators can use the Password Mgmt dropdown menu to select Sync Groups. \nTo create a sync group, administrators must provide a name, choose a password policy to be enforced across the sources in the sync group, and select the sources to include in the sync group. \n\nAdministrators can also delete sync groups in IdentityNow, but they should know the following before they do: \n\n- Passwords related to the associated sources will become independent, so changing one will not change the others anymore. \n\n- Passwords for the sources' connected applications will also become independent. \n\n- Password policies assigned to the sync group are then assigned directly to the associated sources. \nTo change the password policy for a source, administrators must edit it directly. \n\nOnce the password sync group has been created, users can update the password for the group in Password Manager.\n\nRefer to [Managing Password Sync Groups](https://documentation.sailpoint.com/saas/help/pwd/sync_grps.html) for more information about password sync groups.\n", "item": [ { - "id": "287f87b6-8e42-45f4-a3b9-d03736eda652", + "id": "40d4b1c1-5155-40a4-af0b-30a8add685dc", "name": "Get Password Sync Group List", "request": { "name": "Get Password Sync Group List", @@ -71912,7 +71912,7 @@ }, "response": [ { - "id": "d1ae565c-1275-4989-b7fa-54184cbcac52", + "id": "0a64d50a-54e5-40b7-b33c-17db387ec4d5", "name": "A list of password sync groups.", "originalRequest": { "url": { @@ -71983,7 +71983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e2c3633-f0ec-4ff8-b01d-0b54a13ffa00", + "id": "2cbe6fcb-748e-40f1-9136-3a3c2279196c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72054,7 +72054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adacb14f-beb7-4417-98ca-6002a65ff5f8", + "id": "e48365b5-7289-4b3d-91d6-18e52daf1c39", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72125,7 +72125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ee1e45c-3379-43d9-8b4a-694ca450179a", + "id": "2212a0b0-52c8-4e69-ad8c-f06ed9f1dae0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72196,7 +72196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e9a01c6-db99-435b-8544-665f9304f7a6", + "id": "7af8932f-2715-43c0-aadb-49e49f5665a6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72267,7 +72267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65b00760-0d03-4368-bd1b-193c2ac77dee", + "id": "208061d6-4573-4f89-b75a-4cf9348bd227", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72344,7 +72344,7 @@ } }, { - "id": "25e310d4-1f45-498f-a826-4f987aba584d", + "id": "1513affe-c0c8-4b19-9119-4fee7c391784", "name": "Create Password Sync Group", "request": { "name": "Create Password Sync Group", @@ -72386,7 +72386,7 @@ }, "response": [ { - "id": "4bb2d9dc-a78e-41d8-ba5a-a6d9e22d81aa", + "id": "e0ccb64d-d27b-41f7-baa6-231d5b655035", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -72442,7 +72442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10d06921-f032-44ff-a3f2-23a4c3c21bdb", + "id": "701c3d88-9890-4a29-8413-4c6ea1a100dc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72498,7 +72498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44f1688d-4ceb-440e-9c75-975a02e90ac5", + "id": "4dc0aa11-b610-44b8-b328-997749cd6955", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72554,7 +72554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2edc984d-174b-41a4-b346-35ee0cab5c72", + "id": "ae4e6ec3-aba2-4f98-aac6-f05ec7b9f25e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72610,7 +72610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d68972f-0d47-45c2-a0e2-5e3a7bd89df2", + "id": "456257b8-9ad2-4805-96bb-d8795a12f105", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72666,7 +72666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "def2107c-5166-4722-b594-ecf0e55050c2", + "id": "e1394fde-9425-4eae-9cb3-94c5405b3452", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72728,7 +72728,7 @@ } }, { - "id": "4c5f2a0e-f369-428a-8907-9fdd9baf6cd7", + "id": "9ed3a73a-4c48-4ff0-8bab-417c044a1f6c", "name": "Get Password Sync Group by ID", "request": { "name": "Get Password Sync Group by ID", @@ -72769,7 +72769,7 @@ }, "response": [ { - "id": "f9de9ca8-9590-46e5-a0ed-841ed8292888", + "id": "f208adfc-0d2b-45ba-8ebc-c423df173246", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -72813,7 +72813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1d3103e-c997-4b42-a8e8-37fc73a8ef0c", + "id": "32aac611-ffd5-4259-9eee-f1f83d2b384f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72857,7 +72857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30bb6c1d-0560-4a75-8c3f-394a26d2564f", + "id": "2f359971-5766-4394-a735-e22fb17741cf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72901,7 +72901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8ef7c74-db47-48f9-af72-af688883729e", + "id": "127e703a-e0a5-4862-9926-5a3c1ec1ff13", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72945,7 +72945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a1b0c69-8279-4082-b559-91503fabf07c", + "id": "413a3d28-bee1-4598-b533-403e53dd3399", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -72989,7 +72989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4c22c61-a4f4-48bc-b827-b3db14889f98", + "id": "8a163638-a0b6-45c6-8729-d1715378f981", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -73033,7 +73033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f353cfb8-899d-4a0f-9b8e-35fde280c7fa", + "id": "a141195f-6840-4ba1-9907-ecd9bfb9b8dd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73083,7 +73083,7 @@ } }, { - "id": "1a25f66c-8cc1-42f7-ab4c-f4240458891f", + "id": "28992ffa-3b9e-4488-9133-eaa2e24aed96", "name": "Update Password Sync Group by ID", "request": { "name": "Update Password Sync Group by ID", @@ -73137,7 +73137,7 @@ }, "response": [ { - "id": "373e2e50-63e5-4c23-985f-6c718acad40f", + "id": "f5b180b4-754a-40ec-a096-95adbd148f14", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -73194,7 +73194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "958be8e3-0546-4fed-afb2-48cbd44be62b", + "id": "25bb2437-9032-40fc-b7d1-652f8c93925a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73251,7 +73251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc9b1bee-31d5-4c55-8e29-b67df89093ab", + "id": "69b73121-ab75-4729-8e6c-cb2a9f1344f2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73308,7 +73308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d2f677c-8e07-4f44-944d-0c3e3b196c82", + "id": "1e9144da-9fba-4314-95cd-7132a566f92e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73365,7 +73365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78ae9043-42ff-4aaa-808f-3e60d6ae4c57", + "id": "147bc4fe-a554-4bfb-bda4-24c5bddf8516", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -73422,7 +73422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3af72386-b58f-42c1-afb4-64d9e1e5e141", + "id": "5cbcef08-24d1-444a-8819-9b2cb5cf1b97", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -73479,7 +73479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e4856b2-758f-411e-9ceb-7dc5cafcc951", + "id": "c50ed4d1-829f-4800-b445-0d45fd73f6ae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73542,7 +73542,7 @@ } }, { - "id": "a1c75295-02e0-46e8-8534-84e7be0d96cf", + "id": "1385524a-05db-4792-876a-db9e95e46c98", "name": "Delete Password Sync Group by ID", "request": { "name": "Delete Password Sync Group by ID", @@ -73583,7 +73583,7 @@ }, "response": [ { - "id": "24ad2737-af13-4993-85ef-8ed278ac80f9", + "id": "5c7cefe6-c3ca-4cb2-bccb-a2c0f61ab03a", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -73617,7 +73617,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d973d8e8-fa69-4791-b195-840507905076", + "id": "c5f3e963-ccce-466f-9263-e531e1b4e5f4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73661,7 +73661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38329e48-efd4-4b6b-bd2a-7cae18c43eb7", + "id": "baaac57d-94c4-4ad7-a745-46417d03c11a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73705,7 +73705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b61d0e83-9c06-4f09-a11d-3b23879bf99b", + "id": "cd701fa0-bcb2-459a-be25-6ab9efe07e05", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73749,7 +73749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7521cf0-062e-4bd0-86f5-08231ce12a66", + "id": "52b2341b-2ba0-4643-ab7e-bde8fbbea66d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -73793,7 +73793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c4fda97-786d-45aa-aaf3-c725b9b2dfac", + "id": "84c6b0c2-7e1c-404b-b38a-a76553716f17", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73849,7 +73849,7 @@ "description": "Use this API to implement personal access token (PAT) functionality. \nWith this functionality in place, users can use PATs as an alternative to passwords for authentication in IdentityNow. \n\nPATs embed user information into the client ID and secret. \nThis replaces the API clients' need to store and provide a username and password to establish a connection, improving IdentityNow organizations' integration security. \n\nIn IdentityNow, users can do the following to create and manage their PATs: Select the dropdown menu under their names, select Preferences, and then select Personal Access Tokens. \nThey must then provide a description about the token's purpose. \nThey can then select 'Create Token' at the bottom of the page to generate and view the Secret and Client ID. \n\nRefer to [Managing Personal Access Tokens](https://documentation.sailpoint.com/saas/help/common/generate_tokens.html) for more information about PATs.\n", "item": [ { - "id": "9069629b-f53b-46e2-9951-b77f6817f29b", + "id": "ef00b606-5ed8-4821-9728-05585ae13024", "name": "List Personal Access Tokens", "request": { "name": "List Personal Access Tokens", @@ -73897,7 +73897,7 @@ }, "response": [ { - "id": "55739ade-2c54-4057-b5fe-2bd1926848d4", + "id": "90cc0f03-c8b8-4922-ab55-a05d09a3ecb1", "name": "List of personal access tokens.", "originalRequest": { "url": { @@ -73959,7 +73959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aaef58cf-7a13-42cb-a878-96becf096be9", + "id": "866324b4-cc2a-4857-a1c5-f95099fb1e2f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74021,7 +74021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "063438b6-8a66-4949-8bbb-717dcc90b2e8", + "id": "38ca3d88-90aa-44a2-b32e-5108a34309ef", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74083,7 +74083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0a93e66-7224-4486-be15-58576e9ad7ac", + "id": "600f65ff-6915-4960-9822-4351c2b1a8b5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74145,7 +74145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9624013b-c90c-4113-a981-7765a740deb1", + "id": "f4571d93-3f03-4536-90b2-67a032ae7c92", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74207,7 +74207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87f95735-a1ac-43fa-b6dd-1f9b9be60a18", + "id": "13151897-b2a2-44f0-ade1-79ef4311d773", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74275,7 +74275,7 @@ } }, { - "id": "38a463e9-eedf-4f93-b499-16814d70e702", + "id": "9cdb318a-c58c-4338-bc91-6663e6c93f18", "name": "Create Personal Access Token", "request": { "name": "Create Personal Access Token", @@ -74317,7 +74317,7 @@ }, "response": [ { - "id": "37e8bae6-d7c2-4424-8af8-54f8fc3f3eeb", + "id": "121be302-5244-42d2-9c25-598072bf9753", "name": "Created. Note - this is the only time Personal Access Tokens' secret attribute will be displayed.", "originalRequest": { "url": { @@ -74373,7 +74373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77a11e68-6975-483e-8989-3e20b12e6da3", + "id": "f2c1a694-0b19-473a-9e6a-02c3cab44af1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74429,7 +74429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "720454df-205c-4c09-823d-1912d5211bf5", + "id": "3e43f798-9a1b-4945-82ff-9cc385efaeb0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74485,7 +74485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03e88b37-1620-4641-a966-9ede94d7bf56", + "id": "9a2e80bd-1f20-4d8f-aa7b-c3fd5b594a6d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74541,7 +74541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8a9145e-51d9-4f7f-8bd7-9f9b24e64058", + "id": "3112afd4-7a30-43d2-b3ca-fc410c07fff1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74597,7 +74597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42657d18-b78d-4e58-b8b6-c024d125ee5b", + "id": "529dad04-c112-428c-a9c2-f5309279b516", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74659,7 +74659,7 @@ } }, { - "id": "4b3a1e1d-171a-4fa5-ad5f-c07c4305a95a", + "id": "9cc13b27-2d72-4669-a129-6f0454182839", "name": "Patch Personal Access Token", "request": { "name": "Patch Personal Access Token", @@ -74713,7 +74713,7 @@ }, "response": [ { - "id": "92aa0d16-bd1b-4683-8bd2-308319e81d9c", + "id": "4de27efb-44d9-41a3-b584-7797edf52fac", "name": "Indicates the PATCH operation succeeded, and returns the PAT's new representation.", "originalRequest": { "url": { @@ -74770,7 +74770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "539c2c8a-3d06-4f12-8143-3aee93ca131e", + "id": "0f6576b9-72e5-4c48-8e76-577ad6d79f4f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74827,7 +74827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "746a9d96-344c-42ea-be6b-5d022b730d68", + "id": "a0e3b8fa-cab3-47d6-9d48-5ac74019f8b6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74884,7 +74884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a4f4d75-0245-417c-8dc9-cc280a01e4c8", + "id": "efa9aea4-b665-4f8f-a64b-45d1304ff710", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74941,7 +74941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f536219-bef6-44a0-abfb-c584c472b75c", + "id": "dea4cb82-3580-45f3-beae-1583ecf86ba8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -74998,7 +74998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4694aeaa-1be8-42d5-91c7-06afd3d635bd", + "id": "5a77945f-7865-40f8-9458-0d380ebea116", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75055,7 +75055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67ca8323-458e-4a1d-b78b-45b062c9c838", + "id": "b439f6f5-e9d9-4d03-92a2-26d51ee616c0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75118,7 +75118,7 @@ } }, { - "id": "27b0c0c2-d0c0-4349-a335-743e04edf5e4", + "id": "02c7d04f-006a-4f87-801e-08f4e1b57af9", "name": "Delete Personal Access Token", "request": { "name": "Delete Personal Access Token", @@ -75159,7 +75159,7 @@ }, "response": [ { - "id": "fd51a13e-2998-4bba-9792-01781efb6a80", + "id": "0598b232-877a-4c13-b8f4-bda6bf80745a", "name": "No content.", "originalRequest": { "url": { @@ -75193,7 +75193,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4bb3bb86-5000-43c8-8968-aae70fb00746", + "id": "16fa61d4-1436-46f4-9514-720e0b1f0406", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75237,7 +75237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54f97df5-03b1-43bc-9577-81d449040d90", + "id": "c93b7768-b930-4921-910a-191417e4e277", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75281,7 +75281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "539ff055-ff3f-4daa-9db1-173fe85cb15b", + "id": "d5860ed7-b1e9-477f-a2d5-ebb3231caf70", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75325,7 +75325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ad3da28-1671-47b1-b24a-c4d3d28a8148", + "id": "46f18f78-255b-4462-9246-7f00354d0b28", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -75369,7 +75369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6e1979b-4ced-45f1-b4cb-c31db35d88b4", + "id": "cf9e19ed-c019-4442-a6ff-d655fb4dce7e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75413,7 +75413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a053a22-66a5-4360-b5dc-a1e97e116973", + "id": "853fa500-6126-41e3-bc94-7a0210154b75", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75469,7 +75469,7 @@ "description": "Use this API in conjunction with [Public Identites Config](https://developer.sailpoint.com/idn/api/v3/public-identities-config) to enable non-administrators to view identities' publicly visible attributes. \nWith this functionality in place, non-administrators can view identity attributes other than the default attributes (email, lifecycle state, and manager), depending on which identity attributes their organization administrators have made public. \nThis can be helpful for access approvers, certification reviewers, managers viewing their direct reports' access, and source owners viewing their tasks.\n", "item": [ { - "id": "f43db7de-9b7d-4837-9ae1-24d6f2f4a3bf", + "id": "977ae8ca-da7a-454f-981d-464d64f375b4", "name": "Get a list of public identities", "request": { "name": "Get a list of public identities", @@ -75550,7 +75550,7 @@ }, "response": [ { - "id": "f0ae6f74-e0d6-40c5-bb26-e166c7d601f9", + "id": "b895647d-c89e-4a60-a6be-481363023d75", "name": "A list of public identity objects.", "originalRequest": { "url": { @@ -75648,7 +75648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6187c289-5216-446b-9520-f0853df85ab9", + "id": "dbe3f969-2ae7-4d3d-93d6-4cb856650879", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75746,7 +75746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69cbd522-ec24-4d31-8156-954169d652ef", + "id": "e77d2189-22ec-4ca5-998b-7b2feb6e94b5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75844,7 +75844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "469ef50a-0a55-47bf-af47-253074390369", + "id": "15ce4c63-35fb-4795-b8dd-85b77e234503", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75942,7 +75942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3824614d-5bcc-4d05-848a-78f9275c4fe7", + "id": "d0d3cc68-f0bb-4e99-987f-9c55b86a3d49", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76040,7 +76040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe4c756d-a2ee-4419-86fd-b2b6cfbba3ec", + "id": "f97a3b80-8218-4dfb-bb99-b0fa8163aaef", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76150,7 +76150,7 @@ "description": "Use this API to implement public identity configuration functionality. \nWith this functionality in place, administrators can make up to 5 identity attributes publicly visible so other non-administrator users can see the relevant information they need to make decisions. \nThis can be helpful for approvers making approvals, certification reviewers, managers viewing their direct reports' access, and source owners viewing their tasks.\n\nBy default, non-administrators can select an identity and view the following attributes: email, lifecycle state, and manager. \nHowever, it may be helpful for a non-administrator reviewer to see other identity attributes like department, region, title, etc.\nAdministrators can use this API to make those necessary identity attributes public to non-administrators. \n\nFor example, a non-administrator deciding whether to approve another identity's request for access to the Workday application, whose access may be restricted to members of the HR department, would want to know whether the identity is a member of the HR department. \nIf an administrator has used [Update Public Identity Config](https://developer.sailpoint.com/idn/api/v3/update-public-identity-config) to make the \"department\" attribute public, the approver can see the department and make a decision without requesting any more information.\n", "item": [ { - "id": "d9c80415-b8a8-4e18-ab82-8ab56680918f", + "id": "c64fd989-574d-4c73-8f2e-87e35b0b8893", "name": "Get the Public Identities Configuration", "request": { "name": "Get the Public Identities Configuration", @@ -76179,7 +76179,7 @@ }, "response": [ { - "id": "44a6c6fc-a273-4003-8a80-b1ce771365d4", + "id": "c72a41a4-d969-4f05-a3fb-46db969be9d4", "name": "Request succeeded.", "originalRequest": { "url": { @@ -76222,7 +76222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03880d96-76ba-43f9-936f-01ed9cc8d3e1", + "id": "d31a4ab7-dbd4-43ae-aa5c-421bd3e59b2a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76265,7 +76265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bac00a7-a55d-4171-a701-50dea4d090f5", + "id": "89fd43c4-95da-42d3-95cf-4393fe06da74", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76308,7 +76308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d2cbb39-146e-45f0-a141-653a7ceaed37", + "id": "4f9ede7c-d145-4406-8128-0da4a9c48261", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76351,7 +76351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "249b0aa1-9ac6-4226-845b-20b5b8f3f06c", + "id": "b8ec53bc-e5e9-427d-b8f5-96f466ee86c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76394,7 +76394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57b49dec-5814-41c8-967d-ac08312f2d80", + "id": "f88de493-7354-47c7-900e-46b5fa527476", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76443,7 +76443,7 @@ } }, { - "id": "e7aea24c-fe89-42f9-8de3-072f3104d69a", + "id": "bf0bf836-ced7-4362-87af-3b3a53b52b66", "name": "Update the Public Identities Configuration", "request": { "name": "Update the Public Identities Configuration", @@ -76485,7 +76485,7 @@ }, "response": [ { - "id": "c5e07f0c-f356-485c-9c37-dda85466fe03", + "id": "a42cdf38-dc51-4548-9031-2d708064e342", "name": "Request succeeded.", "originalRequest": { "url": { @@ -76541,7 +76541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c89e16e-128b-4ced-8d26-f5d306369d67", + "id": "b6598e4f-e6eb-449c-8feb-3eb3ae3efadc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76597,7 +76597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11100ca9-fd3a-4827-b186-0f14c8652fc7", + "id": "13d51f77-6237-42d0-925f-8e54fd310520", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76653,7 +76653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e37d49c-2c55-4637-a15f-7e7b63ead131", + "id": "aec5545c-b03a-4ec2-8c76-1719f5bbc330", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76709,7 +76709,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51555340-6291-4cc0-ba4f-61ccad8a30f3", + "id": "5132bf11-f2ff-4f37-98d7-2c1dc10b40c4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76765,7 +76765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6caf7b4-2f61-400d-a6dc-986806e83b11", + "id": "55f7455d-ee55-42ea-9f58-a9a242085eae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76833,7 +76833,7 @@ "description": "Use this API to implement reports lifecycle managing and monitoring.\nWith this functionality in place, users can run reports, view their results, and cancel reports in progress. \nThis can be potentially helpful for auditing purposes. \n", "item": [ { - "id": "d0f6e554-1964-467a-88e1-40edf9338234", + "id": "4afdcdb0-5731-4053-8f02-2c401893db73", "name": "Get Report Result", "request": { "name": "Get Report Result", @@ -76885,7 +76885,7 @@ }, "response": [ { - "id": "c583cbcb-8f36-4cbc-9d59-e1e9d7028850", + "id": "4ca58786-d7a4-40c2-997b-932df97858c9", "name": "Details about report that was run or is running.", "originalRequest": { "url": { @@ -76940,7 +76940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "643a0e32-26bc-4248-859d-7295917934ef", + "id": "98422eb8-cd00-45ae-a383-261639afb556", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76995,7 +76995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b911959-05e0-4cac-9578-e80d03f0e6ac", + "id": "c9da8b80-6025-4e60-b771-ff7de0038654", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77050,7 +77050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d72f47a-0913-4c95-b694-c6f9b5e92a94", + "id": "89eb77f6-6703-4d7f-b58d-325b300075bd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77105,7 +77105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d95b625-c976-4cff-a359-2642cc6ccbf9", + "id": "df2c5aee-5b18-4428-b7be-eb097aa2a2bc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77160,7 +77160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e28c94c5-762d-4be3-a2cf-41f335fc2eee", + "id": "5d6bc2e0-3803-47c1-99c0-a7d97980f34b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77221,7 +77221,7 @@ } }, { - "id": "a086fb1b-b50c-4ff0-8ce9-f5c08a71b7f0", + "id": "f249e122-2044-4d82-8305-2e58f6a44545", "name": "Run Report", "request": { "name": "Run Report", @@ -77264,7 +77264,7 @@ }, "response": [ { - "id": "42d110b7-309a-46d0-a58b-44ee0e2eaff9", + "id": "cfba3d70-9a6e-478f-b28b-1165e02517be", "name": "Identities Details Report task result.", "originalRequest": { "url": { @@ -77321,7 +77321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1b82b1a-6523-415c-b256-d1083e73daf6", + "id": "bc6ec2fe-9901-4577-981f-e7d7b4098b8f", "name": "Identities Details Report task result.", "originalRequest": { "url": { @@ -77378,7 +77378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52d0db36-8973-44ee-81f9-2b78243104c9", + "id": "8e0e9183-efc5-4083-8871-a103b0d62869", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77435,7 +77435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "609dad3a-a964-4a5e-8b38-62f1c71e993c", + "id": "f5f996b6-bb4f-4ba2-b377-f2552b2e246b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77492,7 +77492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce3ee236-b50e-4b46-8c18-c0417001941c", + "id": "82815391-2d72-47ea-8f4e-c922584a4a9a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77549,7 +77549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2f2d187-0cc4-4b01-92bf-dd40d1ef88da", + "id": "0452f2fd-20f6-4801-8c76-f923db2c2e8d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77606,7 +77606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8be88f96-8e4f-4349-bc10-c4a33dbef665", + "id": "d4b2f0e8-5ab1-49c3-aa8e-0689901ee30c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77669,7 +77669,7 @@ } }, { - "id": "be573032-c5e8-4e22-8548-77bbae322fd5", + "id": "f535fbe1-fddd-4bf1-ba90-19bea7b26f15", "name": "Cancel Report", "request": { "name": "Cancel Report", @@ -77711,7 +77711,7 @@ }, "response": [ { - "id": "b58e6c89-8065-4a39-a14f-8f42716ff0f3", + "id": "6449875c-2f1b-4684-b5e2-5ffc353613c5", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -77746,7 +77746,7 @@ "_postman_previewlanguage": "text" }, { - "id": "039bd614-9dd7-4e94-9e72-8660c8d60863", + "id": "0b0339a5-db7f-49ca-b0e6-a0dcfb2e0c25", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77791,7 +77791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a48e68e-e205-412c-acca-f07ec2ef02f1", + "id": "1f4abffa-6a98-462c-b491-db07b2da3e78", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77836,7 +77836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fb6bfc5-2a27-4a09-8c20-8731587d91bd", + "id": "c2317392-31b3-49de-81cc-7e8a0c9760c9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77881,7 +77881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8f2e93f-446a-417f-9683-1a07de270162", + "id": "efda52c8-d21f-4ba2-99ac-a3df55c983d2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77926,7 +77926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51a9cade-3e2f-456b-a834-90b5b2f84ba7", + "id": "99f36012-2d79-4e52-92ed-cb16e639bd15", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77977,7 +77977,7 @@ } }, { - "id": "5b38f9f5-4722-411c-acdd-040bb587cac7", + "id": "11ac957a-ab7a-4c60-88f0-b8bdbdd92506", "name": "Get Report File", "request": { "name": "Get Report File", @@ -78046,7 +78046,7 @@ }, "response": [ { - "id": "5c3f14ac-a2b4-4463-aa08-b2fd86450d78", + "id": "95a7a94c-e028-4dbc-b36a-8cb886b81a5a", "name": "Report file in selected format. CSV by default.", "originalRequest": { "url": { @@ -78122,12 +78122,12 @@ "value": "attachment;filename=\\\"fileName\"" } ], - "body": "cupidatat velit ut dolor", + "body": "ut nulla pariatur", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "0ea02119-230c-4081-8c31-8eca8b50dec2", + "id": "ccb42c03-ccf4-4776-a87d-69e55ffec7e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78199,7 +78199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "787db109-2749-43b3-9148-a1f1972dc02f", + "id": "b7e63eeb-4df0-4f62-9f14-e291c36bfa15", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78271,7 +78271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "823f3aa9-0a6d-4f8b-8017-0348af518a1e", + "id": "bf8e0067-0709-4839-98f9-a392e39e651b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78343,7 +78343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1da6e8b-aaf4-466d-a723-1aaf98c41b85", + "id": "dc724f48-d802-4b11-9261-e87a562a62cd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -78415,7 +78415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8eb72bcb-65d2-4c0d-95d3-c965319b9cd3", + "id": "08985076-5c41-4803-bf16-b6dea35f993b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78487,7 +78487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e0109e6-daa0-498c-bd2c-92120e4a62c6", + "id": "93b5019e-bde2-4cad-ad58-4e0558b54a26", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78571,7 +78571,7 @@ "description": "Use this API to implement requestable object functionality. \nWith this functionality in place, administrators can determine which access items can be requested with the [Access Request APIs](https://developer.sailpoint.com/idn/api/v3/access-requests), along with their statuses. \nThis can be helpful for administrators who are implementing and customizing access request functionality as a way of checking which items are requestable as they are created, assigned, and made available.\n", "item": [ { - "id": "c9ed46cf-4b02-42a7-9505-f64e01db36a7", + "id": "86c538a5-5212-456f-b8bf-3bbfefde8418", "name": "Requestable Objects List", "request": { "name": "Requestable Objects List", @@ -78682,7 +78682,7 @@ }, "response": [ { - "id": "8a25d0a2-f112-4a09-9a0c-39b2927ad644", + "id": "e2cace93-1ddd-4d23-8e38-436af62c660c", "name": "List of requestable objects", "originalRequest": { "url": { @@ -78807,7 +78807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d014f2a-e123-4491-b31c-5c15635ea8f0", + "id": "ae191b7c-d909-4e49-8a72-70273f2e8c38", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78932,7 +78932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24d6fef7-5ba1-4844-8a27-e8c0d11f7657", + "id": "60cc4e63-4d86-412d-a71b-bedfc2eac783", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79057,7 +79057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69591f0e-73fb-4ebe-b72f-3f7f6d066f04", + "id": "0ddc78c3-33f4-47d8-90d0-74ef0374db98", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79182,7 +79182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67b46f78-87ee-46c5-9530-7bbd73f84edb", + "id": "d9320593-62ff-4368-b088-8ed4da5b4230", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79307,7 +79307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2180bcc4-bc63-457f-9ebd-2b7d03b49df9", + "id": "c9413833-0188-44c0-a9c1-ef4eab919053", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79444,7 +79444,7 @@ "description": "Use this API to implement and customize role functionality.\nWith this functionality in place, administrators can create roles and configure them for use throughout IdentityNow. \nIdentityNow can use established criteria to automatically assign the roles to qualified users. This enables users to get all the access they need quickly and securely and administrators to spend their time on other tasks.\n\nEntitlements represent the most granular level of access in IdentityNow. \nAccess profiles represent the next level and often group entitlements. \nRoles represent the broadest level of access and often group access profiles. \n\nFor example, an Active Directory source in IdentityNow can have multiple entitlements: the first, 'Employees,' may represent the access all employees have at the organization, and a second, 'Developers,' may represent the access all developers have at the organization.\n\nAn administrator can then create a broader set of access in the form of an access profile, 'AD Developers' grouping the 'Employees' entitlement with the 'Developers' entitlement.\n\nAn administrator can then create an even broader set of access in the form of a role grouping the 'AD Developers' access profile with another profile, 'GitHub Developers,' grouping entitlements for the GitHub source.\n\nWhen users only need Active Directory employee access, they can request access to the 'Employees' entitlement.\n\nWhen users need both Active Directory employee and developer access, they can request access to the 'AD Developers' access profile.\n\nWhen users need both the 'AD Developers' access profile and the 'GitHub Developers' access profile, they can request access to the role grouping both. \n\nRoles often represent positions within organizations. \nFor example, an organization's accountant can access all the tools the organization's accountants need with the 'Accountant' role. \nIf the accountant switches to engineering, a qualified member of the organization can quickly revoke the accountant's 'Accountant' access and grant access to the 'Engineer' role instead, granting access to all the tools the organization's engineers need.\n\nIn IdentityNow, adminstrators can use the Access drop-down menu and select Roles to view, configure, and delete existing roles, as well as create new ones. \nAdministrators can enable and disable the role, and they can also make the following configurations: \n\n- Manage Access: Manage the role's access by adding or removing access profiles.\n\n- Define Assignment: Define the criteria IdentityNow uses to assign the role to identities. \nUse the first option, 'Standard Criteria,' to provide specific criteria for assignment like specific account attributes, entitlements, or identity attributes. \nUse the second, 'Identity List,' to specify the identities for assignment.\n\n- Access Requests: Configure roles to be requestable and establish an approval process for any requests that the role be granted or revoked. \nDo not configure a role to be requestable without establishing a secure access request approval process for that role first. \n\nRefer to [Working with Roles](https://documentation.sailpoint.com/saas/help/access/roles.html) for more information about roles.\n", "item": [ { - "id": "09f1455d-dc6c-4158-b0c5-5a944cf9c162", + "id": "afd7e31a-c8d6-4864-86d3-010d4b60c334", "name": "List Roles", "request": { "name": "List Roles", @@ -79546,7 +79546,7 @@ }, "response": [ { - "id": "6d308dc3-fc80-450a-a52b-516da5bf76ed", + "id": "6712bc33-1519-46ba-a96d-e8e91aa776a1", "name": "List of Roles", "originalRequest": { "url": { @@ -79662,7 +79662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00c05a28-54ac-4c50-9e70-ed1633125ea1", + "id": "56a7c790-f6c6-496b-8cc1-a5ee0a5f4730", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79778,7 +79778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4722a0ef-1260-45d2-a890-2add7486f091", + "id": "afb08f35-636b-42a4-bab8-b0dd99493cde", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79894,7 +79894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3757e93f-3a96-44da-9942-02d5ca0bb1c2", + "id": "b48997f6-824a-4fd2-ad09-a3af35639f40", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80010,7 +80010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6aa9422e-357b-43ec-8a69-f559f885b1f1", + "id": "aed6cc22-0c88-4b9d-9edf-39979d7a14f0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80126,7 +80126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec30126b-7890-4e06-89ef-e7b87b5841ff", + "id": "b05c9d88-e014-41fc-8c6d-e8d6aaca8206", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80248,7 +80248,7 @@ } }, { - "id": "bfa821b6-7d62-4436-ab3a-ab0122055ab9", + "id": "7c8e88c4-3848-4f21-8396-633fcba2be6e", "name": "Create a Role", "request": { "name": "Create a Role", @@ -80290,7 +80290,7 @@ }, "response": [ { - "id": "f927b1de-812a-49b8-a0f6-e802fbbae548", + "id": "ee3351e8-e4f9-461d-804e-7b3e0fd43bc8", "name": "Role created", "originalRequest": { "url": { @@ -80346,7 +80346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b96d783-04c5-458f-bb23-5051e53f2a2c", + "id": "901627f1-8507-4ff1-b52c-de70f6941d6d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80402,7 +80402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f06a5c7-8d32-4854-bf4d-3066bbebf577", + "id": "ddb968bd-21db-4eb8-9820-0f9a874ef0c7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80458,7 +80458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14e7611e-f5fe-41af-9ced-f992cb0527d3", + "id": "36d1de5a-616a-4ace-844f-799b85054bfe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80514,7 +80514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3614120d-0697-4238-ab96-394214a4390a", + "id": "be9bc9a5-2eff-4d7f-bda2-68f169363a15", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80570,7 +80570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba8ae4d8-36a6-4119-94f1-9fb03c589f5a", + "id": "4140dbc0-146e-47c4-8e51-bea004dab321", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80632,7 +80632,7 @@ } }, { - "id": "5c86f60e-1013-46d9-b5a9-0e232be779ea", + "id": "45b19d2b-9980-46fa-a72c-a25f4177cbe7", "name": "Get a Role", "request": { "name": "Get a Role", @@ -80673,7 +80673,7 @@ }, "response": [ { - "id": "7e80fd63-c54e-4247-b9f9-d31b19e3aaef", + "id": "c7f45900-d6c8-47d9-a9ff-352030cf8f34", "name": "List of all Roles", "originalRequest": { "url": { @@ -80717,7 +80717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38cc99bf-e2e0-4ac5-bb92-3e341b0b019c", + "id": "40ebf740-cfd5-42ff-a696-45fc448594ab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80761,7 +80761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1390c61b-cc57-460c-adce-390e5d36ced7", + "id": "0b1f37b9-a667-4c87-accc-e000fc5c4f60", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80805,7 +80805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5251593-eb6d-4287-8210-ecf9e3eda665", + "id": "51fdcc9a-14ba-4258-b16c-3a4abcfab6f7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80849,7 +80849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52e85992-da59-4ed0-833d-1f02eb0248b1", + "id": "6e903e05-3fa9-44aa-89b2-86d08a30da22", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80893,7 +80893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09f54669-9292-496a-9488-652d46df9d03", + "id": "0b8f046f-7e8d-495e-bdd1-3c7b8eb5d10f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80943,7 +80943,7 @@ } }, { - "id": "2ac8965d-0350-43da-a34e-cb1cbca42065", + "id": "b694d4eb-2107-4100-9350-30855c88b40a", "name": "Patch a specified Role", "request": { "name": "Patch a specified Role", @@ -80997,7 +80997,7 @@ }, "response": [ { - "id": "823b79ad-99d0-4d39-9e80-a5ac35eb3e5c", + "id": "7465a64c-e09b-4ca1-b5ab-934b3be39af1", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -81054,7 +81054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c79ee54f-b3cc-4039-8a21-8acad17f514b", + "id": "1f2e1b93-d9ea-4b07-9824-d32129b93154", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -81111,7 +81111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfcd5fb9-4845-4067-999e-cd6964b7233f", + "id": "453f4ba2-4bd9-4a55-a01f-9202ab4e6a35", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -81168,7 +81168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2b50035-fe50-4e51-8f88-4ed98bfb7e8c", + "id": "b8b48a23-e19c-48ae-896f-f14991875000", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -81225,7 +81225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ed33ffa-3d7c-47ed-a264-96c504b01f81", + "id": "f06ff5e1-bb3c-41d4-8ef9-f5c6bfe74788", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -81282,7 +81282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5eac8aec-df6e-46d1-87bf-44a81c824643", + "id": "450e6139-594d-42fe-8773-e769a245afc9", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -81339,7 +81339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36ad4dc7-c5be-4477-bdda-958e5bbb61b6", + "id": "1910ea21-09c9-4939-8eb0-07a19a09b06b", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -81396,7 +81396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f66febb1-e290-4b05-95ca-c61b481ce00d", + "id": "a202deba-9ecd-4e00-8fc3-75a4b8f86430", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -81453,7 +81453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73a91812-4821-49c2-80c9-e68e7fa614b2", + "id": "860a4a99-ffd6-41ea-8dca-f803e1c8d97b", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -81510,7 +81510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a218da8-f7c6-472a-9378-6117656792c6", + "id": "a4c09396-1394-4be3-bdd8-b6671d0ea5c9", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -81567,7 +81567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "743950c1-feb1-49d6-8c8c-65e3c49d0e42", + "id": "56e0dd4b-e90e-4472-adbb-2f66b672ed6a", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -81624,7 +81624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85ab92e3-45ea-4cc1-98da-9a1db893685a", + "id": "175ed9f9-96c0-4886-a5fb-056d80f274a6", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -81681,7 +81681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be859534-8b94-45a5-a70f-08d821e54add", + "id": "70788d83-a5f2-4bb0-ac45-ee431d9ba10b", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -81738,7 +81738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9619548-d63d-4c19-be59-5cfab62b6a57", + "id": "f7f0a667-ff34-44d5-a581-0ec134eecaff", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -81795,7 +81795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1013259f-fddf-4fcb-9a29-89dc00508883", + "id": "d5e82310-5452-4fee-806e-053355fa114d", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -81852,7 +81852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ba43604-681e-48bb-9ac8-581d975bef0b", + "id": "f7edb2bb-6089-4feb-af61-d56a33cf2820", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -81915,7 +81915,7 @@ } }, { - "id": "2868e755-b0e3-4548-af42-1d04e06ed8aa", + "id": "2e2ba905-0a0b-4f56-a596-856361ae8d9a", "name": "Delete a Role", "request": { "name": "Delete a Role", @@ -81956,7 +81956,7 @@ }, "response": [ { - "id": "8d760c55-c981-4496-8d45-cd17155db32a", + "id": "907e3124-caf0-40d2-a212-ec76aa3a76e0", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -81990,7 +81990,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ad948adf-fc22-4fb8-9b65-dca408f7894f", + "id": "92271472-be58-4aa3-9397-fc4fc961fb3e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82034,7 +82034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ca10343-9314-47de-be6f-46608ec5c072", + "id": "2ed03176-7c5b-40f0-acce-9cc80ef742f3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82078,7 +82078,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdbb38f3-8089-4745-9de7-56839c4e89f4", + "id": "feb1cc78-a21e-4d2f-88d8-6d99d5839d4d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82122,7 +82122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97003dac-ae39-4064-9dbe-32bca7c2c946", + "id": "3a8331c2-f675-4244-a9ef-38463949d8ec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82166,7 +82166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4642354a-04f9-46fc-847f-5e41b15bda5a", + "id": "5e18c579-b952-4cb3-a610-07c802b9a0ea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82216,7 +82216,7 @@ } }, { - "id": "a61ab1a9-a28a-484b-a28f-1cb43b38c5f3", + "id": "450d4f76-e416-4270-9fdb-b0a3f3ec1ba1", "name": "Delete Role(s)", "request": { "name": "Delete Role(s)", @@ -82259,7 +82259,7 @@ }, "response": [ { - "id": "b6c3cdb6-4a9f-4646-aee6-98b412030d3f", + "id": "3235dfea-dc6d-4f56-ad42-e68f3973d80b", "name": "Returns an object with the id of the task performing the delete operation.", "originalRequest": { "url": { @@ -82316,7 +82316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cefc6b0-19be-4b68-906d-6aad11933fcc", + "id": "af30524e-3cf0-49d1-869e-f66704bfd8f9", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -82373,7 +82373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a34a2112-a835-4862-ac0f-11cf66172060", + "id": "1814047e-8829-4367-8ff3-2dff56b649cc", "name": "400.1 Role ids limit violation", "originalRequest": { "url": { @@ -82430,7 +82430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b15f247e-7510-4488-bb7e-177fe9308efc", + "id": "7eb4c7c2-fef8-417b-b7c0-b109f6748d7a", "name": "400.1.404 Referenced object not found", "originalRequest": { "url": { @@ -82487,7 +82487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cd930ca-4299-459f-bb70-ac991b8bda23", + "id": "6923b1c5-b96c-4c8d-aece-862b06c9cfc9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82544,7 +82544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "517e53d0-9e35-4c27-b3d9-458f96ac667c", + "id": "c17b1cae-e21a-4f1f-898e-85819d513056", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82601,7 +82601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6e8a6d9-a858-4077-ad44-1cb762df9263", + "id": "7a98e17b-e967-4372-af47-d4ac412c918b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82658,7 +82658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b61246e-4319-40ca-9166-5e00ae50159a", + "id": "0995f2b7-cda2-49d6-882f-23283ba40e63", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82721,7 +82721,7 @@ } }, { - "id": "1aba76ab-4d97-4eb4-9d22-f896ef8cf057", + "id": "e12b78c4-378b-4c9a-a279-206881c5578f", "name": "List Identities assigned a Role", "request": { "name": "List Identities assigned a Role", @@ -82806,7 +82806,7 @@ }, "response": [ { - "id": "4c393091-7c19-46e9-88ce-345ee1746d3b", + "id": "50f6d914-7452-4535-b1a8-bbab8b167f10", "name": "List of Identities assigned the Role", "originalRequest": { "url": { @@ -82897,7 +82897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a62033b2-c233-44b2-80d2-1c44cfca020e", + "id": "746cebc8-e3a2-43fb-a066-2073d4fd890c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82988,7 +82988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c31ccd86-fad8-4afa-a224-a5abd92c4af5", + "id": "72507ea5-eff6-4704-9b6a-c8fc9303ac27", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83079,7 +83079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acd8e2a7-8ab0-45ed-9acb-0a336e61c5f4", + "id": "8d26954b-e7c1-4afd-85c2-af43c1327fa7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83170,7 +83170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcbf183c-f757-4c78-9ab8-942b27b12cae", + "id": "1895da73-3007-4dff-a949-0b82eef9468b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83261,7 +83261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d55b0e1-8937-44f8-84a2-8697f2c37d56", + "id": "cb742f05-292a-4e5e-85c8-a04098eec1f1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83364,7 +83364,7 @@ "description": "Use this API to implement saved search functionality. \nWith saved search functionality in place, users can save search queries and then view those saved searches, as well as rerun them. \n\nSearch queries in IdentityNow can grow very long and specific, which can make reconstructing them difficult or tedious, so it can be especially helpful to save search queries. \nIt also opens the possibility to configure IdentityNow to run the saved queries on a schedule, which is essential to detecting user information and access changes throughout an organization's tenant and across all its sources. \nRefer to [Scheduled Search](https://developer.sailpoint.com/idn/api/v3/scheduled-search) for more information about running saved searches on a schedule. \n\nIn IdentityNow, users can save searches under a name, and then they can access that saved search and run it again when they want. \n\nRefer to [Managing Saved Searches](https://documentation.sailpoint.com/saas/help/search/saved-searches.html) for more information about saving searches and using them.\n", "item": [ { - "id": "a3a5877b-1d44-468d-82b8-fe759f4894a1", + "id": "882fd8a0-7a77-45c4-a8e5-d77ec683b792", "name": "Create a saved search", "request": { "name": "Create a saved search", @@ -83406,7 +83406,7 @@ }, "response": [ { - "id": "e76a0864-d89c-4639-b1ef-45467c66a456", + "id": "b6ef6930-b748-413a-984d-6a3b79d69a60", "name": "The persisted saved search.", "originalRequest": { "url": { @@ -83462,7 +83462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8be513d9-0d1f-4a2f-b075-f55e0ebf2d64", + "id": "8a56e6a4-2474-4bd7-bb21-cf74af0f8981", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83518,7 +83518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9e2e145-cf1c-46df-8764-1b892d2b9b65", + "id": "ddd041ab-2e07-461c-9675-0b2962369fe7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83574,7 +83574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f18e637-788a-4459-9a8c-e0f2db6bbca1", + "id": "7d819c0f-c894-4265-b8cf-25ba01e8e5c6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83630,7 +83630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95355151-c966-4c04-b6b7-5fb2b8659c49", + "id": "9e4bfeb0-2f7c-4f5b-a158-937a4d8c9fed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83686,7 +83686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f04107c-af87-40ee-a60a-268166260ebd", + "id": "11554d8d-138e-4904-b0df-37ea2482b6c2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83748,7 +83748,7 @@ } }, { - "id": "6eed4501-ea3c-4db5-8a86-63886c06b8c4", + "id": "e22f37cb-1bee-4fa5-a032-22010b23b708", "name": "A list of Saved Searches", "request": { "name": "A list of Saved Searches", @@ -83814,7 +83814,7 @@ }, "response": [ { - "id": "9cb8fa70-5a22-4fc9-8d9f-75af5647908d", + "id": "32a58757-450f-4b72-8c68-f7869f0524ea", "name": "The list of requested saved searches.", "originalRequest": { "url": { @@ -83903,7 +83903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b29a898-1ab5-4baa-b602-c66519cfdcc7", + "id": "e820d7f0-395c-4a81-a597-16295cf7ab0c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83983,7 +83983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73eea5df-e528-4b8d-bc99-e0304cf49a3e", + "id": "0128dd27-b6a4-4a0b-9679-fd78ab343b9e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84063,7 +84063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d8617e7-1b6e-48c0-b849-29cb6c07292e", + "id": "b8f70496-20cd-4ea1-a20c-227c9c5b4613", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84143,7 +84143,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6912d1c1-a989-4943-8121-bfa14223efea", + "id": "17f7a96b-13dc-4ba0-919c-af594e90898b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -84223,7 +84223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d1348c8-b70c-4cad-93b5-d3b85a3bc7eb", + "id": "27c109cc-7533-4472-9316-79ef1c550166", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84309,7 +84309,7 @@ } }, { - "id": "168741df-6b3d-497e-9bf1-e387ea61343d", + "id": "6b6fe841-2eb6-4634-ac74-ec2a9c8d7b7e", "name": "Updates an existing saved search\n", "request": { "name": "Updates an existing saved search\n", @@ -84363,7 +84363,7 @@ }, "response": [ { - "id": "c0c72a56-bf84-44ce-b181-5544c471b632", + "id": "88ee230b-46fa-49e5-ada1-8f3c7068a70b", "name": "The persisted saved search.", "originalRequest": { "url": { @@ -84420,7 +84420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19140c42-6965-4a66-89e1-a017c1873ce7", + "id": "e87d0294-2da3-4dbe-a913-c571d7657b43", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84477,7 +84477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af1a5b6b-cb28-4e09-bc5d-5e4e47d5c8fd", + "id": "90447322-804e-4661-83c6-c8782323ee91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84534,7 +84534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "286787b8-647e-4bf0-8591-57438c95bd11", + "id": "7ece4413-2ddb-4bfd-bc4b-89fee509fec8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84591,7 +84591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "852ec946-63a2-4296-b930-68b968281892", + "id": "8598fbab-6196-4268-937c-19023a41c349", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -84648,7 +84648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4450405b-a686-4ebc-b756-4e0255625523", + "id": "2842981e-860b-4501-a90b-c3ed6c350ea5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84711,7 +84711,7 @@ } }, { - "id": "3f6fa8d7-e3b7-4136-b938-533c63bb653b", + "id": "b2730d5a-f974-42eb-9013-cb2e81cb590d", "name": "Return saved search by ID", "request": { "name": "Return saved search by ID", @@ -84752,7 +84752,7 @@ }, "response": [ { - "id": "c357a169-e732-4f14-b509-1f8188f39245", + "id": "3471ed08-bba3-4953-a1fb-bdb2a16e7c9c", "name": "The requested saved search.", "originalRequest": { "url": { @@ -84796,7 +84796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "821ed924-04ce-4345-891e-5665723e040a", + "id": "8c8c32bf-5b3c-45f5-8b9b-2b43ca6006a0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84840,7 +84840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7138b2ce-7d64-4fe9-a139-0b14346ca3ef", + "id": "c09e9e26-18fe-4ec5-ae56-f121d0636217", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84884,7 +84884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f94fcf05-9122-422d-9e81-d2a66ff4cb3f", + "id": "f3c64979-69cf-41f6-9225-e11c79c6bb93", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84928,7 +84928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d732f47-caf9-431f-8502-1a74b6498b1b", + "id": "fee87488-d963-4a20-9e32-124f5c527f0e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -84972,7 +84972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83ab02ba-c99a-4371-9705-3f1ac689d940", + "id": "fcfb0e46-6f11-4792-a8c1-63bcdd4345ed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85016,7 +85016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc27dbe0-5eef-45af-b086-282c43e63f59", + "id": "252064e8-e131-4951-8990-f997b0e5ea44", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85066,7 +85066,7 @@ } }, { - "id": "363973f4-ef0b-436d-99d7-d0316784bbf0", + "id": "6b590c3b-cf1f-45f2-9759-f9bd8817f325", "name": "Delete document by ID", "request": { "name": "Delete document by ID", @@ -85107,7 +85107,7 @@ }, "response": [ { - "id": "daaebc29-1a98-48fa-a4be-6fd061e111ed", + "id": "8d745bd7-9654-42e0-8aa1-1e2fd8d932d2", "name": "No Content - Indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -85141,7 +85141,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4b42d08e-3478-46a9-af6a-4be499b02f4c", + "id": "2a4ff469-fa83-4934-b88d-cc59de2b5088", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85185,7 +85185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c580a3b8-eb5d-4091-a6dd-38010b8f4cf8", + "id": "22b90247-1fe1-4d09-8573-0881213aa39e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85229,7 +85229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f49340fb-1a4f-4c6b-bd2a-7a416273020d", + "id": "34accf5f-001c-4f8b-b44c-47ea1182401d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85273,7 +85273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dcca6a2-60da-4bb9-a8a4-fbaaec173444", + "id": "49e08a51-93b1-46bf-97fd-693f7e34153d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -85317,7 +85317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee04f316-945e-45cc-b91d-079de96797ee", + "id": "4bc1f393-a0bc-43b8-b1b3-ae3062b69d2a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85361,7 +85361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5527f36-91e0-4036-ac33-e77b3b3cad2a", + "id": "0dd99b74-5ff5-4d18-a8d9-456f4c718ad5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85411,7 +85411,7 @@ } }, { - "id": "c502322d-3320-4721-84a1-5ddfb9f2187b", + "id": "ca657c18-cfc7-43e7-b2cb-18327cbf1dec", "name": "Execute a saved search by ID", "request": { "name": "Execute a saved search by ID", @@ -85466,7 +85466,7 @@ }, "response": [ { - "id": "c9e4c423-3d07-454e-9d71-723c0efa41c1", + "id": "adb4a178-eac3-403f-9f5b-fc3f2be9bce9", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -85514,7 +85514,7 @@ "_postman_previewlanguage": "text" }, { - "id": "484575e8-6378-4afd-ab89-2948470e3f3a", + "id": "2a17db59-709e-44ee-89e1-2ffe935ff07b", "name": "Triggered by Scheduled Search", "originalRequest": { "url": { @@ -85572,7 +85572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f781c083-61e8-487d-8844-3ea0dd0cef06", + "id": "0593e991-1ca3-4746-ae41-7452c990afa6", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -85630,7 +85630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6140c2a3-b7d4-4755-9fad-6550933994ce", + "id": "50969308-023e-402b-917a-5c70c3cfacad", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -85688,7 +85688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0a58196-a73b-43bd-ba5c-5aa9b74447c2", + "id": "17a6a0d3-95a8-4176-a985-02bf0b9e8e82", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -85746,7 +85746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37d4354c-e08f-429e-a2c5-f33e95a41c8a", + "id": "edbd1611-0967-4ea2-a740-70f76acc1b9e", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -85804,7 +85804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aaf3b36a-dd46-487d-8b7f-d2c02f69b8e5", + "id": "035b0826-ce2d-4568-b4eb-6fb59ac043d4", "name": "Triggered by Scheduled Search", "originalRequest": { "url": { @@ -85862,7 +85862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3af2cfe9-9b81-452c-8649-765d0e068bb4", + "id": "1babe3c4-624f-40b4-beaf-390f62b67760", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -85932,7 +85932,7 @@ "description": "Use this API to implement scheduled search functionality. \nWith scheduled search functionality in place, users can run saved search queries on their tenants on a schedule, and IdentityNow emails them the search results. \nUsers can also share these search results with other users by email by adding those users as subscribers, or those users can subscribe themselves. \n\nOne of the greatest benefits of saving searches is the ability to run those searches on a schedule. \nThis is essential for organizations to constantly detect any changes to user information or access throughout their tenants and across all their sources. \nFor example, the manager Amanda Ross can schedule a saved search \"manager.name:amanda.ross AND attributes.location:austin\" on a schedule to regularly stay aware of changes with the Austin employees reporting to her.\nIdentityNow emails her the search results when the search runs, so she can work on other tasks instead of actively running this search.\n\nIn IdentityNow, scheduling a search involves a subscription. \nUsers can create a subscription for a saved search and schedule it to run daily, weekly, or monthly (you can only use one schedule option at a time). \nThe user can add other identities as subscribers so when the scheduled search runs, the subscribers and the user all receive emails. \n\nBy default, subscriptions exclude detailed results from the emails, for security purposes. \nIncluding detailed results about user access in an email may expose sensitive information.\nHowever, the subscription creator can choose to include the information in the emails. \n\nBy default, IdentityNow sends emails to the subscribers even when the searches do not return new results. \nHowever, the subscription creator can choose to suppress these empty emails. \n\nUsers can also subscribe to saved searches that already have existing subscriptions so they receive emails when the searches run. \nA saved search can have up to 10 subscriptions configured at a time. \n\nThe subscription creator can enable, disable, or delete the subscription. \n\nRefer to [Subscribing to Saved Searches](https://documentation.sailpoint.com/saas/help/search/saved-searches.html#subscribing-to-saved-searches) for more information about scheduling searches and subscribing to them.\n", "item": [ { - "id": "6f10de13-aeae-4945-8e09-a5987b190735", + "id": "9251e0e3-e270-4376-b63e-05c3376e9298", "name": "Create a new scheduled search", "request": { "name": "Create a new scheduled search", @@ -85974,7 +85974,7 @@ }, "response": [ { - "id": "f17c69ab-e5f2-4445-ab9c-55d616eb8b45", + "id": "dfa2c5b6-afed-44ac-9538-1bd1db1b34e5", "name": "Daily Search", "originalRequest": { "url": { @@ -86030,7 +86030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a565da4-e1ef-4973-af10-e24b98a048b1", + "id": "e5399362-7198-42d2-9343-504a3a12b1e1", "name": "Weekly Search", "originalRequest": { "url": { @@ -86086,7 +86086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20534327-fcd2-4b4c-aeae-12a67c31d767", + "id": "e4603bf8-753c-44c1-aa52-518401c14337", "name": "Monthly Search", "originalRequest": { "url": { @@ -86142,7 +86142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d29f44d-91ea-4e30-b2bb-f389a9e4107f", + "id": "9028ae11-d2eb-4241-a3c8-7ff3d4071481", "name": "Annual Search", "originalRequest": { "url": { @@ -86198,7 +86198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e99658f3-92fe-4453-ab35-db7251c598df", + "id": "d4b894c4-769d-44dc-aa9c-a89064685f97", "name": "Calendar Search", "originalRequest": { "url": { @@ -86254,7 +86254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cb71ff1-0bd2-4552-8246-4ffdd0022c18", + "id": "6014ae46-93f6-48bb-94fc-99127a5f27d6", "name": "Weekly Search", "originalRequest": { "url": { @@ -86310,7 +86310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d50010c8-09b1-4c50-b11e-44ad26dd9bd8", + "id": "09dd460c-36c6-425b-b02f-8ab863341529", "name": "Monthly Search", "originalRequest": { "url": { @@ -86366,7 +86366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f1b4f41-5c53-43d1-9100-ac33c9898583", + "id": "162db61d-99df-41b5-a062-c3fdb59120c7", "name": "Annual Search", "originalRequest": { "url": { @@ -86422,7 +86422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ae2c471-d697-4b1b-9ee1-893236ff4b0f", + "id": "3b1bccd9-6a7d-4df1-80fc-21dc2d689095", "name": "Calendar Search", "originalRequest": { "url": { @@ -86478,7 +86478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7f08a9e-ab7c-4d1b-8bd9-c77459ddc785", + "id": "de1731d7-caf3-4e4d-a14a-78e69f644b5c", "name": "Monthly Search", "originalRequest": { "url": { @@ -86534,7 +86534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b75d603b-2e05-4dee-83d6-5e435b22f195", + "id": "baac34de-52c5-4e11-a82c-db6a165aff2d", "name": "Annual Search", "originalRequest": { "url": { @@ -86590,7 +86590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a6434ec-360b-4544-b93c-212a29b8489f", + "id": "eeec30f9-8028-4a44-b40e-0ea9bebd71f4", "name": "Calendar Search", "originalRequest": { "url": { @@ -86646,7 +86646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d4c8eef-88e8-4670-8eb6-306e8ee8c98e", + "id": "f8a215dd-c544-407a-b251-20cd4e3422c5", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -86702,7 +86702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8f7654b-7ec1-4ae6-a1ce-809748cb7fb4", + "id": "9b6cae3b-cba5-48cf-ab6b-6d1aaf3e86cd", "name": "Calendar Search", "originalRequest": { "url": { @@ -86758,7 +86758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39a63ccb-1a14-41ef-a9e1-390b2faa250a", + "id": "0d6e3a54-5cf1-4500-be82-42dbf3930acc", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -86814,7 +86814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1621e2bc-694e-4121-89ac-16a89fe140ca", + "id": "66c168a3-0efa-40da-b880-fecb0a36cb53", "name": "Daily Search", "originalRequest": { "url": { @@ -86870,7 +86870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "685c2380-b737-4397-a33a-0c5bd2d3b4a7", + "id": "512cd870-dcc4-4b5b-a200-7aa965aab6a6", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -86932,7 +86932,7 @@ } }, { - "id": "7128d218-d722-411d-a17c-c0d5c08c0f80", + "id": "bccae739-c12a-454e-8f00-661271ab9eaf", "name": "List scheduled searches", "request": { "name": "List scheduled searches", @@ -86998,7 +86998,7 @@ }, "response": [ { - "id": "4eb8b48c-d827-4825-bca6-2efb67f90c8f", + "id": "676019de-0cb8-4366-8388-6bc12a6421b0", "name": "The list of requested scheduled searches.", "originalRequest": { "url": { @@ -87087,7 +87087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07915347-0788-4992-9182-7f75e7040859", + "id": "11459899-d921-4ce6-b345-5028296de14e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87167,7 +87167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d09b73f9-dfcb-4b26-b83e-0de453629c8f", + "id": "d649e3eb-fb8f-4c54-a6ee-df289955263a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87247,7 +87247,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a6bcff1-d1fa-49e1-be98-16538a5da596", + "id": "14e1343e-5cf6-45fa-9e16-c3875141d398", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87327,7 +87327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d0d993e-1aab-4e34-aa70-81e00f289c75", + "id": "df00e071-840a-449f-92ce-98213b5bddf0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -87407,7 +87407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b213eee-2e8f-48f6-9b20-5c627ec7363f", + "id": "0e079d74-ef86-4467-a8bb-c55803a5b381", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87487,7 +87487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4824bfd-6595-45ec-bd78-58ec2c28fc11", + "id": "c0bdcc7b-f0b5-419c-a756-d1ddfd70a9ca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87573,7 +87573,7 @@ } }, { - "id": "71ee58ed-fafa-48cc-9fd8-706abd93aa84", + "id": "dd8f6f57-1c98-4372-9f47-e6c68d1a4891", "name": "Update an existing Scheduled Search", "request": { "name": "Update an existing Scheduled Search", @@ -87627,7 +87627,7 @@ }, "response": [ { - "id": "ea4c73dc-5262-4124-90dc-d5f93360fb33", + "id": "cb52fd53-3f18-4428-b8c5-eb943e7f5c3e", "name": "The persisted scheduled search.", "originalRequest": { "url": { @@ -87684,7 +87684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8959fb2f-f271-4c07-a9e3-96968bba2d67", + "id": "9996ccbd-57a0-4244-8d08-ef848f923858", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87741,7 +87741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48c4aad4-4ff5-47b5-a4dc-e769811099cd", + "id": "5df2a62f-66d9-4e6e-9caf-d79fa051163e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87798,7 +87798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3345e9a7-e54c-480e-a281-cccbc4a55b53", + "id": "48fd9eb7-9686-45a3-9a2a-2de678b1dc57", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87855,7 +87855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb7229af-1012-432d-9802-7643bd49aec8", + "id": "5e253eeb-94c2-412e-94f8-0eb4ab78f9d3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -87912,7 +87912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a9f9e2f-c9a6-4c1a-a4a7-75e469ea1079", + "id": "4cf41b09-b291-4890-a545-366fed288807", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87969,7 +87969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea1f8c48-5e18-4560-bfe6-4c92c9973457", + "id": "0cae6675-f017-444d-90cb-de969fd3f00a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88032,7 +88032,7 @@ } }, { - "id": "af63a873-4b7b-4263-ad5e-5b6af5d5d77d", + "id": "be798d56-f2db-42d2-bc32-7a1ad5e4331c", "name": "Get a Scheduled Search", "request": { "name": "Get a Scheduled Search", @@ -88073,7 +88073,7 @@ }, "response": [ { - "id": "4b463721-641d-48a9-bcc0-89db24945f5f", + "id": "7cd6739e-59d6-4df7-89b7-cee6eaefe073", "name": "The requested scheduled search.", "originalRequest": { "url": { @@ -88117,7 +88117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c09eb53-4ba5-4baa-a987-5b1c2e714fc5", + "id": "724c5b11-5450-4cb8-b65d-e2d9136e0cf6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88161,7 +88161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee63103d-409c-4d58-bddb-54ad41687d4a", + "id": "ee6de77f-a901-487d-8fa6-6d14cac761c4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88205,7 +88205,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f51b947b-ba94-44f3-a9c1-299384ae1eb0", + "id": "201dc29c-93da-4bdc-9aba-d02d07b008e0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88249,7 +88249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc94e3bb-ceaf-4cc1-984c-7fe98734fe4b", + "id": "9ce4d00f-3bc2-44b5-94a9-d6e7cbbb87a5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -88293,7 +88293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd22c55e-09bb-48b3-b0a2-4ff9053a64a6", + "id": "21200200-da04-4fe1-a24f-13b182bbec49", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88337,7 +88337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "598959a1-4e4c-4751-b883-8b474963f5aa", + "id": "4545d4de-928f-470d-be15-ed904953e1d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88387,7 +88387,7 @@ } }, { - "id": "2e359591-4f07-4e46-954b-53a86a59bd49", + "id": "142764ae-2de7-4425-9c56-6430b8e01ab7", "name": "Delete a Scheduled Search", "request": { "name": "Delete a Scheduled Search", @@ -88428,7 +88428,7 @@ }, "response": [ { - "id": "32d6a414-cd08-411b-b8f4-b59687f4925c", + "id": "bb2519ca-50c7-4fca-9b93-0c64311d6151", "name": "No Content - Indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -88462,7 +88462,7 @@ "_postman_previewlanguage": "text" }, { - "id": "671dd7f1-e93a-400d-abdd-d190e8e2eb13", + "id": "9fcc8847-92e2-4963-992c-cf278dc9a288", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88506,7 +88506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe8c7cf6-7d4f-4c1f-80de-c54f37049e68", + "id": "4c06479d-4ca9-4155-a7ed-21330c47aff3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88550,7 +88550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3afe5f2-67a5-4bd2-a7d3-1ea7d0e61993", + "id": "ab8481ac-2788-4547-95ab-21988f8c401b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88594,7 +88594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6727d504-65d9-4d9e-b24a-4bbaacfdeed9", + "id": "2bbf8947-8dca-4d86-b808-ee7387bb3b58", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -88638,7 +88638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb104307-c0b0-4070-a471-da16f04ac098", + "id": "84174b06-1f7a-4bd4-af45-cc0090995993", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88682,7 +88682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5beb8c26-3624-47ac-b27e-61dcfe2e5152", + "id": "dd085d1a-5ab4-452f-b432-af7d4549bbb1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88732,7 +88732,7 @@ } }, { - "id": "ab6265bf-d20c-425a-a65a-8b2ad55ef306", + "id": "9c0167ba-43cf-456b-8c8b-d3dc7056412a", "name": "Unsubscribe a recipient from Scheduled Search", "request": { "name": "Unsubscribe a recipient from Scheduled Search", @@ -88787,7 +88787,7 @@ }, "response": [ { - "id": "2f75926c-de20-44da-a5ed-f703381198db", + "id": "be748ff4-92ed-4dfe-aed1-91a811f1c622", "name": "No Content - Indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -88835,7 +88835,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4ad43080-6e05-4b68-bccd-7e8575f2d9c2", + "id": "06b7daa1-5bfd-460c-8d15-e850dd84b9f9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88893,7 +88893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b9b0fd7-f8bd-41fd-b7c3-3a486c8cc73d", + "id": "2dcb6557-11ea-414f-93bd-bd1e0f120bfa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88951,7 +88951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a245d13-7c58-4bcc-affb-36a51aa0954f", + "id": "4f072481-9203-4256-826e-edda7a4eab21", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -89021,7 +89021,7 @@ "description": "Use this API to implement search functionality. \nWith search functionality in place, users can search their tenants for nearly any information from throughout their organizations. \n\nIdentityNow enables organizations to store user data from across all their connected sources and manage the users' access, so the ability to query and filter that data is essential. \nIts search goes through all those sources and finds the results quickly and specifically. \n\nThe search query is flexible - it can be very broad or very narrow. \nThe search only returns results for searchable objects it is filtering for. \nThe following objects are searchable: identities, roles, access profiles, entitlements, events, and account activities. \nBy default, no filter is applied, so a search for \"Ad\" returns both the identity \"Adam.Archer\" as well as the role \"Administrator.\"\n\nUsers can further narrow their results by using IdentityNow's specific syntax and punctuation to structure their queries. \nFor example, the query \"attributes.location:austin AND NOT manager.name:amanda.ross\" returns all results associated with the Austin location, but it excludes those associated with the manager Amanda Ross.\nRefer to [Building a Search Query](https://documentation.sailpoint.com/saas/help/search/building-query.html) for more information about how to construct specific search queries. \n\nRefer to [Using Search](https://documentation.sailpoint.com/saas/help/search/index.html) for more information about IdentityNow's search and its different possibilities. \n\nThe search feature uses Elasticsearch as a datastore and query engine. \nThe power of Elasticsearch makes this feature suitable for ad-hoc reporting.\nHowever, data from the operational databases (ex. identities, roles, events, etc) has to be ingested into Elasticsearch. \nThis ingestion process introduces a latency from when the operational data is created to when it is available in search. \nDepending on the system load, this can take a few seconds to a few minutes. \nPlease keep this latency in mind when you use search.\n", "item": [ { - "id": "c9cd8c8e-5a9c-4910-a430-3f976b04b996", + "id": "4a6b7a0f-d760-4ce8-a21b-2d3586ce105a", "name": "Perform Search", "request": { "name": "Perform Search", @@ -89091,7 +89091,7 @@ }, "response": [ { - "id": "94d39cfd-f70d-4dee-ad98-8e47adf7eeb2", + "id": "01d18b20-33ea-4766-8168-fb69c277072d", "name": "A collection of AccessProfiles", "originalRequest": { "url": { @@ -89184,7 +89184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe88126b-7bf7-4b65-8359-c49baf968d26", + "id": "59a16e53-b22e-408d-8fdf-9e3b426e7fa8", "name": "A collection of Entitlements", "originalRequest": { "url": { @@ -89277,7 +89277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3fa299d-fe22-4f32-8d1d-223b7d14b8e8", + "id": "93678759-4fe8-4c7f-bbbd-495935adb294", "name": "A collection of Events", "originalRequest": { "url": { @@ -89370,7 +89370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97f1f04c-591d-4b0a-875e-a618fa1d56c7", + "id": "163d927a-265e-4bc0-9f30-2f8b3a869e64", "name": "A collection of Identities", "originalRequest": { "url": { @@ -89463,7 +89463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05dc10b7-f96c-4543-b4b7-eed1d01764fd", + "id": "c2b97501-c8d2-4c05-95b8-969fd59bc41c", "name": "A collection of Roles", "originalRequest": { "url": { @@ -89556,7 +89556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e8ff4c5-0b3c-43c7-9985-149d330b4cd6", + "id": "cbf36231-e41e-48cd-8052-dbdb17d76c2b", "name": "Filter with Exists", "originalRequest": { "url": { @@ -89649,7 +89649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25911fdb-c02f-4690-902c-73bef5c4779f", + "id": "b76b07a1-d1b5-4d92-bd55-803fefbc2775", "name": "Filter with Range", "originalRequest": { "url": { @@ -89742,7 +89742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4860ba0e-2969-4d5a-a79b-bf84d27a30eb", + "id": "c813efad-3d27-49ed-ae3b-986029448517", "name": "Filter with Terms", "originalRequest": { "url": { @@ -89835,7 +89835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79df0522-10f0-4bce-a9ef-ffc69bc2e3bb", + "id": "02b7228b-c7da-40a1-8d17-6a6f070596c1", "name": "Filter with Exists", "originalRequest": { "url": { @@ -89919,7 +89919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "278b2a26-53e3-427c-bb9e-9d4ef55c4fd5", + "id": "9a8c0bd5-9620-4a68-ba33-29d57ea161ab", "name": "Filter with Range", "originalRequest": { "url": { @@ -90003,7 +90003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed1cfe1e-a96f-4e9f-9c21-0a4789ded81d", + "id": "e0261b69-97cb-4aea-8aae-1970a56aa662", "name": "Filter with Terms", "originalRequest": { "url": { @@ -90087,7 +90087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f0ed7de-9101-4681-a966-9a02d79675c4", + "id": "1b32db16-ec2b-44d3-a22f-05a1311767aa", "name": "Filter with Range", "originalRequest": { "url": { @@ -90171,7 +90171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0e8a1ed-c6b0-4ff0-abdb-a3534fcfbba2", + "id": "a1caafee-564b-47b3-a43b-6c6f6dd5118a", "name": "Filter with Terms", "originalRequest": { "url": { @@ -90255,7 +90255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e6e23ff-2541-41a3-9afd-7922f62f48e6", + "id": "69161375-ff3c-4101-8c02-23c06c178708", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -90339,7 +90339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd871407-8380-4d1d-97ab-0ba5e5d25580", + "id": "9fc7c4c2-a183-473b-ba08-70ea5ad839ea", "name": "Query with Fields", "originalRequest": { "url": { @@ -90423,7 +90423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cab07b1-ffdc-41a0-a7c6-2eca66d1154b", + "id": "7c9dd310-42d8-402f-82f4-e66e025e7481", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -90513,7 +90513,7 @@ } }, { - "id": "893beb59-2074-4e30-b504-d5b3bf38d899", + "id": "9b474462-f092-42b1-af1c-a38ec4573efb", "name": "Count Documents Satisfying a Query", "request": { "name": "Count Documents Satisfying a Query", @@ -90556,7 +90556,7 @@ }, "response": [ { - "id": "1b3f5999-aa2a-4cda-869c-288c362838cb", + "id": "f8d3f43b-4fab-4c53-94ae-b44efa841845", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -90613,7 +90613,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8e9b49be-538b-4f90-bd1f-170cd7083ced", + "id": "dc9027f1-51d8-4bce-a133-0675b1c252a0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90670,7 +90670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0a0c254-6c91-494a-a0e3-0b71cf724ba2", + "id": "6d790ab6-d209-45ec-bf10-5e2b60abfffc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90727,7 +90727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78204af4-f3d3-400f-bd22-aa5b7b1d538d", + "id": "d21ef677-e66c-4d4e-8347-f282e59be686", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90784,7 +90784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "916f93e7-ebea-418f-99f6-2e8d02eb7b6a", + "id": "18cf3b51-e9a0-442c-937a-284017384a41", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90841,7 +90841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a2f2f1f-8345-4d79-9c93-2ec9986d7f89", + "id": "d8d25f95-fff6-4bef-9bec-3291be6c97d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90904,7 +90904,7 @@ } }, { - "id": "2a6d83f3-3d3a-4540-b2e2-92560ed0a419", + "id": "93ef5ddf-9fd4-46e6-a126-a47d41c1d885", "name": "Perform a Search Query Aggregation", "request": { "name": "Perform a Search Query Aggregation", @@ -90975,7 +90975,7 @@ }, "response": [ { - "id": "ee70d464-67c6-4925-aeff-274a23fc24c7", + "id": "3d49687a-b15d-4c4b-b15a-1761ca90a49f", "name": "MetricAggregation", "originalRequest": { "url": { @@ -91069,7 +91069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6888fec-341e-4c00-9362-2b745e43d076", + "id": "aef785af-1c11-4e18-986c-bc5d4ec27e69", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -91163,7 +91163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46c9ec17-808f-4681-9fde-6498280bb5e6", + "id": "fd5ea745-ed2c-48d5-add4-b63a5f2269e7", "name": "BucketAggregation", "originalRequest": { "url": { @@ -91257,7 +91257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb0866ac-f126-4a1d-a0f4-9b41474dc129", + "id": "7698d8fc-bb12-4caa-b1d8-9796fb44db5a", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -91351,7 +91351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0581548-384e-4390-82a4-a8e80b21d9ea", + "id": "25766023-5c3d-46b3-a187-25e1ad883cd9", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -91445,7 +91445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ff87f6c-4c89-4751-b583-ab45469156e6", + "id": "9cd0ddcd-d9c1-4d20-b671-16088f08ee69", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -91539,7 +91539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4432f283-14f7-48bd-8c47-bc7d626e3aa9", + "id": "841bcae6-8647-4f61-8093-e12980638bbe", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -91633,7 +91633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26b27b3d-7882-4a6a-82a5-894db11a4f16", + "id": "213ea697-0783-44b5-ac99-a2941132a671", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -91727,7 +91727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c08c5c9f-ef6f-4da6-bcf3-2f04f4e0c8d3", + "id": "c2b89183-4c31-470c-b865-2572bc8608db", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -91821,7 +91821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58a7c611-9eeb-41ad-a9a7-8dea264fddb8", + "id": "1700ed23-ec99-4fbb-9542-b6f4a198bc46", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -91915,7 +91915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b691e0f2-734b-4627-a5b7-d9cb6f669c0a", + "id": "678452f3-8b83-461b-80a1-fb32dbb21009", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -92000,7 +92000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e198f20-08e9-49b5-a9cb-9b1e4886ba00", + "id": "7513ce87-1393-421f-b53e-4ff744540d81", "name": "BucketAggregation", "originalRequest": { "url": { @@ -92085,7 +92085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d3441b2-d648-4604-86de-77000499cb32", + "id": "11991018-3de2-4b02-a2fa-ace0f4844e29", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -92170,7 +92170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e827db45-71f9-4e66-8323-da78c71e6bba", + "id": "e525471d-c103-4cfe-86ff-95229e9d15bc", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -92255,7 +92255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0153ef72-765b-470e-8174-b3e8772917ee", + "id": "8ce951a5-8f18-4b6c-a7ae-4987529957de", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -92340,7 +92340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fc46e1c-6d4e-4cc5-a63e-a415a8b102f5", + "id": "c4b627fd-6bf9-4164-a4a9-9c1759918d3a", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -92425,7 +92425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e353ff37-f7d6-4a30-a301-c74056246fec", + "id": "e2015a1e-ba0b-461d-883b-3d829590ff55", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -92510,7 +92510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31a17b1e-e990-47ff-a757-e935c8c62c71", + "id": "eda26044-413c-45c9-9b28-44213cf050a1", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -92595,7 +92595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f1861fd-9836-488b-9f69-fb463ed682fa", + "id": "69446272-06bb-4d45-8fad-af730c43d3b9", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -92680,7 +92680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c67e3826-9ddc-4e0b-a2ec-f72f70f6737c", + "id": "be29e628-7c86-4c9f-9f7d-0e25e3af356a", "name": "BucketAggregation", "originalRequest": { "url": { @@ -92765,7 +92765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd84ed87-d0bd-409a-8ab8-4fc9a8007ae3", + "id": "0d810074-0ac5-4fec-9e24-4695b0af78a5", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -92850,7 +92850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6eb24cb7-03ed-4bb1-8398-1dfdbfcabf8a", + "id": "7c92d4ef-3473-4f76-aa9f-29cdb1417078", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -92935,7 +92935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3af99664-8823-4cda-b91c-bb714d6696da", + "id": "9fd1d572-ecc4-4d55-a0e5-532ac6c7f099", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -93020,7 +93020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb4f7590-2add-4920-8806-f0e54c9a2700", + "id": "f53a7587-9ad5-42b1-831f-32433d289c76", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -93105,7 +93105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8aa25c36-1bbd-4a73-b37e-b3848f255831", + "id": "ff409c89-eab6-4bd8-b26a-17d84f321b59", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -93190,7 +93190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5ca3b8a-2a5d-48ef-96db-d663eb21e7df", + "id": "86b70ffa-2e71-415a-b953-3ae8e8378c08", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -93275,7 +93275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15565eb9-23da-4fb1-b095-0b07cfd90c9b", + "id": "459a8ecd-fd4d-4ab2-99fa-454728931ca5", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -93360,7 +93360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0612e83-143e-446d-ae33-4e0e1b8bf6e3", + "id": "eb0a3934-2e52-4ece-a0d6-b60c3632cb58", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -93445,7 +93445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4741c6e1-7094-44f9-85ae-a3ee14c01172", + "id": "fbbc3fba-a6ed-4bb4-b324-ec85969a80ad", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -93530,7 +93530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b36c1504-2330-4421-b97b-482cd4fd4ddd", + "id": "d8367e3c-9025-4315-bf44-ba9d2096b567", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -93615,7 +93615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e55dc1d-5ea3-4cc1-9d76-e4aed9f39c22", + "id": "2420dfe6-58f1-42f6-8441-8adb0375d0f1", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -93700,7 +93700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1b92e3e-d3d9-48ae-8b40-dd9bdc4693ef", + "id": "41c72275-308e-42a8-bcd3-8d4750d89caf", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -93785,7 +93785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf633de5-ffba-458f-acb1-dc7ee3831314", + "id": "da20f436-f3e0-4778-9dc8-4a10ba6893f8", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -93870,7 +93870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76af751c-6007-49d4-bdc2-eb569f57f8ee", + "id": "d6ec02d6-bfe2-4055-b88d-8dbea055da02", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -93955,7 +93955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a5d5dfc-1205-4647-9f24-18219fcf01a8", + "id": "7e5f5d1f-beb1-4d80-ae8b-4d4c0b96ce80", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -94040,7 +94040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ec14436-234f-4cfe-9c17-17528e0b4ccc", + "id": "6a1f91d3-12a6-45fa-8820-231ac4c9f81f", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -94125,7 +94125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11eff6d0-170d-4d77-8b30-192076125377", + "id": "26c3c826-4c17-4ad9-b377-e4246a020731", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -94210,7 +94210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92019ca2-3fc4-4260-bb8e-5c89a905824a", + "id": "5d0aae93-c2ee-45e3-8309-25694a67fd8c", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -94295,7 +94295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e583ec0-4db9-4d4c-aaee-1b592cd27644", + "id": "f675f710-69eb-45c0-9ddd-5f5313a3975a", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -94380,7 +94380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "694df031-89fc-412d-8a25-709d22323e22", + "id": "7d689547-8ba7-464d-a48b-7b7a1b8a6584", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -94465,7 +94465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8773f62e-045e-49a5-84a5-82ddf5d22669", + "id": "6bcbf598-284a-459a-a615-55056cafd7d7", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -94550,7 +94550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1824bd10-162c-4622-9851-662171f3ea59", + "id": "7909920f-b01f-413d-9fed-a561ccfa5a1c", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -94635,7 +94635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "021403b0-bf1a-469b-b4dc-c07be55493db", + "id": "5c6072fd-f0bf-470f-bef7-8cd7c30bf1c6", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -94720,7 +94720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa1d6ac9-dff7-4a69-9cef-64886d1760e5", + "id": "947ada36-250a-4614-aaf9-69aa27708040", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -94805,7 +94805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b823fa2-c18d-48fc-94d9-306ce859bb4b", + "id": "f9780896-fe14-4e88-b8df-780106e8787c", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -94896,7 +94896,7 @@ } }, { - "id": "4fc27012-9580-431e-9f1d-7f76951a4006", + "id": "fc93e3c7-a2e1-469a-97d4-174b1be446f6", "name": "Get a Document by ID", "request": { "name": "Get a Document by ID", @@ -94948,7 +94948,7 @@ }, "response": [ { - "id": "4db1a556-9e2e-4648-911a-349de8522a47", + "id": "1049f750-d515-4d55-82ed-27aa169cc348", "name": "AccessProfile", "originalRequest": { "url": { @@ -94993,7 +94993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f5fade0-7de8-471f-9a8b-7d1d29ecf95d", + "id": "d8315240-c1f6-4a0a-8454-6db8411b379e", "name": "Entitlement", "originalRequest": { "url": { @@ -95038,7 +95038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "543d31b8-1ea5-48ff-aee9-d87d56a9e68a", + "id": "b29384fe-c9dd-4f62-9115-9377685c9b2a", "name": "Event", "originalRequest": { "url": { @@ -95083,7 +95083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3a306e5-0c41-4dcc-b273-0f0cb2ea8c2c", + "id": "6abba3c4-5cb3-4953-b46f-06b80a641a94", "name": "Identity", "originalRequest": { "url": { @@ -95128,7 +95128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36182bf8-fdc1-470c-baa4-211fc5cad891", + "id": "ba369e43-57e6-44b2-be13-3d9022d1eecc", "name": "Role", "originalRequest": { "url": { @@ -95173,7 +95173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b5f2c8d-034b-4e99-8819-eae45dde3172", + "id": "5da4f3de-2e12-4b5a-a611-d979e797ce7d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95218,7 +95218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf5f2bf8-af08-4af6-8787-ca38b0420f8d", + "id": "8c144cf0-8bd7-4647-977b-1a169aea7669", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95263,7 +95263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "986d0bfa-fbf5-43bc-becc-cffe8161240f", + "id": "a7d7db49-fe0e-4a38-95ca-9c54e73156cf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95308,7 +95308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa6bcfeb-fcde-4479-8aa0-48cc442ea8ed", + "id": "19e8041e-b154-4155-94ed-b5779b8656fc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -95353,7 +95353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a3f5a20-a74c-46dc-8fdb-0f10ca55a358", + "id": "19b89b64-cd2a-4a1c-bfa2-b1c459e1d839", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95398,7 +95398,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b99b77ce-fb14-4536-9c15-5741c95dad06", + "id": "74e72b0e-2424-4535-8030-2d03ded4bae7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95455,7 +95455,7 @@ "description": "Use this API to implement and customize access request segment functionality. \nWith this functionality in place, administrators can create and manage access request segments. \nSegments provide organizations with a way to make the access their users have even more granular - this can simply the access request process for the organization's users and improves security by reducing the risk of overprovisoning access. \n\nSegments represent sets of identities, all grouped by specified identity attributes, who are only able to see and access the access items associated with their segments.\nFor example, administrators could group all their organization's London office employees into one segment, \"London Office Employees,\" by their shared location. \nThe administrators could then define the access items the London employees would need, and the identities in the \"London Office Employees\" would then only be able to see and access those items.\n\nIn IdentityNow, administrators can use the 'Access' drop-down menu and select 'Segments' to reach the 'Access Requests Segments' page. \nThis page lists all the existing access request segments, along with their statuses, enabled or disabled. \nAdministrators can use this page to create, edit, enable, disable, and delete segments. \nTo create a segment, an administrator must provide a name, define the identities grouped in the segment, and define the items the identities in the segment can access.\nThese items can be access profiles, roles, or entitlements. \n\nWhen administrators use the API to create and manage segments, they use a JSON expression in the `visibilityCriteria` object to define the segment's identities and access items. \n\nRefer to [Managing Access Request Segments](https://documentation.sailpoint.com/saas/help/requests/segments.html) for more information about segments in IdentityNow.\n", "item": [ { - "id": "5e1015f6-59df-42dc-8d77-a7ba7380850d", + "id": "98eae327-b4ca-4a1d-adbe-159f7872de9e", "name": "Create Segment", "request": { "name": "Create Segment", @@ -95497,7 +95497,7 @@ }, "response": [ { - "id": "59e02102-8f0e-4fba-ac06-1b7c1092cd1b", + "id": "920cc519-e612-4497-9997-7ad177f2378e", "name": "Segment created", "originalRequest": { "url": { @@ -95553,7 +95553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c87518d1-40c0-4993-a12e-29e7ab889264", + "id": "ad581e81-5044-443f-a718-4e0ef9248f00", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95609,7 +95609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cb83097-72e7-4c1e-bc10-0410d8adf0f6", + "id": "f1b20dfb-6f5d-4ced-89b2-0b72da071dc7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95665,7 +95665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bbb322b-a440-4975-b5cf-492000f62b41", + "id": "748b767f-1815-4372-846b-02842f8ad788", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95721,7 +95721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1993978-dd2f-4724-863e-4dd70c8f100e", + "id": "21f8274d-165c-4c1c-8e0d-1acd0069d138", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95777,7 +95777,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee830ae4-e483-452e-9063-7378ed79e112", + "id": "1b2751f5-dad9-44ed-9519-dba93ae97fde", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95839,7 +95839,7 @@ } }, { - "id": "4fffe857-9591-4eec-b23e-5fe89380524b", + "id": "da66ba71-e122-43fa-ae79-712a9ad2ac56", "name": "List Segments", "request": { "name": "List Segments", @@ -95896,7 +95896,7 @@ }, "response": [ { - "id": "e6776a11-5bce-4220-ac44-46092701cf0f", + "id": "061cbfc0-f482-4862-b9be-6dd5d32e8d04", "name": "List of all segments", "originalRequest": { "url": { @@ -95967,7 +95967,7 @@ "_postman_previewlanguage": "json" }, { - "id": "912d8203-9c25-4af3-8269-94c9dcd32619", + "id": "419fd6ee-ed2c-4265-89c2-248b46d2ec0a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96038,7 +96038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69d267e8-da17-44b6-afb3-bf3599ac24e2", + "id": "135efdf4-a9ad-4b04-98c2-c72d4361c17e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96109,7 +96109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7d71492-3a21-4fa2-9b64-dbbce32f4c3b", + "id": "22dff273-a24f-47bb-bc7e-e989be14fbba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96180,7 +96180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be6b64d2-56d8-44c1-8887-400546ebf429", + "id": "2511bf92-ea4b-4484-84fc-6d2789e8d392", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96251,7 +96251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dae51445-30eb-4462-aef8-db1c48ae8a85", + "id": "5500dc5b-052a-4532-a66a-beeb387ab0b3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96328,7 +96328,7 @@ } }, { - "id": "c0ef04c3-8b4a-4d16-8fd5-ad34a9db8f1d", + "id": "22e63eb7-26fb-4705-9aa9-9542a6f72816", "name": "Get Segment by ID", "request": { "name": "Get Segment by ID", @@ -96369,7 +96369,7 @@ }, "response": [ { - "id": "8d00e33d-b9bb-412e-a1af-3516a8aec854", + "id": "e742de5f-c673-4a7a-86fe-a97f603bf56a", "name": "Segment", "originalRequest": { "url": { @@ -96413,7 +96413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86edef1c-c51f-41a2-9730-203bca805faa", + "id": "9749d540-c6ab-4d9a-af70-1242aea9aaac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96457,7 +96457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89f6a831-40ef-4b41-b6b4-8defe05086f0", + "id": "cd81e07e-4e97-4858-9414-6e3019594138", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96501,7 +96501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80199d44-724a-4118-98fe-387785f816f2", + "id": "0e4dfaa4-c6e5-41d9-8f45-88ca1c992ef4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96545,7 +96545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae0defa7-574b-4b68-9109-8c4fa99e2e7d", + "id": "0e139016-cc21-4121-8921-ae911242b0d5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -96589,7 +96589,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54d1f3e8-b2ff-4e6b-9c91-f114b6219c3e", + "id": "08be3228-a52a-4eda-99fe-cec2015ac4cf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96633,7 +96633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7df83c81-b6b4-4673-bd45-f6cfd6edc1ea", + "id": "168dffa9-b589-4f55-9f20-1ec06bdf4702", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96683,7 +96683,7 @@ } }, { - "id": "fcd30c61-3ef3-4344-a699-449dbc5b1997", + "id": "959157ed-01ee-48c0-b089-98ba6d187928", "name": "Delete Segment by ID", "request": { "name": "Delete Segment by ID", @@ -96724,7 +96724,7 @@ }, "response": [ { - "id": "075fa325-e238-4d80-92ba-a77b26451f1a", + "id": "537645a1-0b42-452b-a1da-48e3832caf35", "name": "No content.", "originalRequest": { "url": { @@ -96758,7 +96758,7 @@ "_postman_previewlanguage": "text" }, { - "id": "19918947-7f5b-4577-b73f-b93c48cd803c", + "id": "3c554aab-01ad-45a7-a876-64e4b8f3f440", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96802,7 +96802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "641e05c0-9675-4304-a14a-47a9c9f4deb6", + "id": "ae0897c6-92e1-4382-bbf5-20c4f7dfcb9c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96846,7 +96846,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e551ae2-a2dd-401c-befe-5bd8a9f1b569", + "id": "1b7ff5be-45f3-4374-8b53-ebeed54ba97b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96890,7 +96890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d14eac1-2b8b-4573-8502-49a97cac6535", + "id": "9a4ba8b2-f42a-430f-a667-c0f11b77ef83", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -96934,7 +96934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75a54376-dbbe-439c-941a-7d3951a89038", + "id": "3f7a3e4a-5d5b-423f-aa51-0f0f727d4256", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96978,7 +96978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0420c68e-0082-4b92-9d65-f735f874394e", + "id": "588f7d80-bc7c-48ed-a8b0-41de8edebc52", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97028,7 +97028,7 @@ } }, { - "id": "eee441f2-3497-4d39-a24b-3573df1be5f2", + "id": "721b59e1-5dc8-42ee-82c3-adfbda63e94f", "name": "Update Segment", "request": { "name": "Update Segment", @@ -97082,7 +97082,7 @@ }, "response": [ { - "id": "c90ba00a-a2cf-4969-a5aa-8ebb7ac51e46", + "id": "b6323fe0-cdc0-4615-9548-99914a8e17e6", "name": "Indicates the PATCH operation succeeded, and returns the segment's new representation.", "originalRequest": { "url": { @@ -97139,7 +97139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90a1692f-7829-486f-ad13-837fa14f0ce6", + "id": "8d2ff2b7-2ffb-4c73-80f5-bd1af18e44eb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97196,7 +97196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b134d710-2e08-4016-8ee9-31b60ce330b3", + "id": "738b6afa-f29f-4e3a-ad11-3d6423394ae8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97253,7 +97253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcd5e458-4cbc-47f5-acc6-5ea1ebeb0006", + "id": "ccaf02e4-e0bf-4a1d-a98c-0fa0d208433a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97310,7 +97310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e3a786e-460b-4cf4-a0e6-34171cbbbaa9", + "id": "541418e6-56b5-487d-9803-893090484456", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -97367,7 +97367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d1dc0a2-5d49-4f19-8ed0-f6d62c858eb6", + "id": "d74fdd16-9f5f-4eb9-8fcc-1e312d7806d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97424,7 +97424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1330bc34-ab4e-4167-8e2d-cb0fc8c07621", + "id": "0af5f0de-c5ce-40d0-9e91-b599aa09ac00", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97493,7 +97493,7 @@ "description": "Use this API to build an integration between IdentityNow and a service desk ITSM (IT service management) solution. \nOnce an administrator builds this integration between IdentityNow and a service desk, users can use IdentityNow to raise and track tickets that are synchronized between IdentityNow and the service desk. \n\nIn IdentityNow, administrators can create a service desk integration (sometimes also called an SDIM, or Service Desk Integration Module) by going to Admin > Connections > Service Desk and selecting 'Create.'\n\nTo create a Generic Service Desk integration, for example, administrators must provide the required information on the General Settings page, the Connectivity and Authentication information, Ticket Creation information, Status Mapping information, and Requester Source information on the Configure page. \nRefer to [Integrating SailPoint with Generic Service Desk](https://documentation.sailpoint.com/connectors/generic_sd/help/integrating_generic_service_desk/intro.html) for more information about the process of setting up a Generic Service Desk in IdentityNow.\n\nAdministrators can create various service desk integrations, all with their own nuances. \nThe following service desk integrations are available: \n\n- [Atlassian Cloud Jira Service Management](https://documentation.sailpoint.com/connectors/atlassian/jira_cloud/help/integrating_jira_cloud_sd/introduction.html)\n\n- [Atlassian Server Jira Service Management](https://documentation.sailpoint.com/connectors/atlassian/jira_server/help/integrating_jira_server_sd/introduction.html)\n\n- [BMC Helix ITSM Service Desk](https://documentation.sailpoint.com/connectors/bmc/helix_ITSM_sd/help/integrating_bmc_helix_itsm_sd/intro.html)\n\n- [BMC Helix Remedyforce Service Desk](https://documentation.sailpoint.com/connectors/bmc/helix_remedyforce_sd/help/integrating_bmc_helix_remedyforce_sd/intro.html)\n\n- [Generic Service Desk](https://documentation.sailpoint.com/connectors/generic_sd/help/integrating_generic_service_desk/intro.html)\n\n- [ServiceNow Service Desk](https://documentation.sailpoint.com/connectors/servicenow/sdim/help/integrating_servicenow_sdim/intro.html)\n\n- [Zendesk Service Desk](https://documentation.sailpoint.com/connectors/zendesk/help/integrating_zendesk_sd/introduction.html)\n", "item": [ { - "id": "2394f484-e6d1-4d90-9e39-1cf0a9020683", + "id": "53ea013e-b2f0-4d4b-8bcd-0a7211d5ed89", "name": "List existing Service Desk Integrations", "request": { "name": "List existing Service Desk Integrations", @@ -97568,7 +97568,7 @@ }, "response": [ { - "id": "f75239f0-1b05-45b3-99d3-1d3eed90ac43", + "id": "c4eff6aa-313f-48e7-bfd1-4863e2b6f42f", "name": "List of ServiceDeskIntegrationDto", "originalRequest": { "url": { @@ -97657,7 +97657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f36d2e69-19f1-46ea-a055-bedb8423a349", + "id": "65937391-98ff-4983-aca7-17810c9aac39", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97746,7 +97746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dee8d15-0a2d-4cfd-8710-657fd9af6d47", + "id": "b8b2f692-dadb-44a3-ad10-201a607fcaa4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97835,7 +97835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4257ebde-de39-4fb8-82ef-8be516daba94", + "id": "2eb1a5e1-ddcb-487b-ac61-9acb4a1571b0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97924,7 +97924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0706ec63-51bf-4236-92f6-726983b2fac6", + "id": "357e07bd-2d8c-425f-ad47-146974576a93", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -98013,7 +98013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64ec18a1-7102-4efe-855d-7f8c68aef254", + "id": "4d80d3f7-0f87-4569-9f3b-dcdc1fd5c999", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98102,7 +98102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "503aa02d-188b-4190-903a-08db6e6a1bbb", + "id": "579cd4df-59e0-4386-a304-ae7f82c2ba54", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98197,7 +98197,7 @@ } }, { - "id": "430f77e8-0ba1-43e0-9afa-5cb1bf1525bb", + "id": "c2d8d655-3596-4df6-b6e2-2ba8119457fc", "name": "Create new Service Desk integration", "request": { "name": "Create new Service Desk integration", @@ -98239,7 +98239,7 @@ }, "response": [ { - "id": "89295fa6-0d8e-4e0f-b5c7-04a4bfa5fa4d", + "id": "48da2858-bab0-4aa1-b18a-dec25a30a6cb", "name": "details of the created integration", "originalRequest": { "url": { @@ -98295,7 +98295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48061a6c-c2b7-42fe-ac85-f9a715725d7b", + "id": "e8e79b5b-2b75-4795-a99c-ced4bc6848b6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98351,7 +98351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b74c820-f70c-43df-b1ad-0668e6a249ad", + "id": "e5f15388-2139-41a6-8f92-b90d345d851d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98407,7 +98407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec73793b-dfc6-43f8-9d98-392ef5fd0dce", + "id": "ca0c0006-99c3-43a5-a376-d66c052ad524", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98463,7 +98463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "207d17c3-a0a7-4229-8b55-14c8e74960b4", + "id": "a80cf5ab-b900-40be-8416-418e121ffc9f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -98519,7 +98519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fbc789e-9289-435d-b3b5-f0005430bf2d", + "id": "59a94dd2-08c2-4a56-a74d-b8387a82f15b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98575,7 +98575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a44889bb-d1a4-461d-91eb-c8e2c43fda92", + "id": "e6c3e323-1f5d-4a53-bb83-20657468194d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98637,7 +98637,7 @@ } }, { - "id": "88799b49-f365-4d0d-a0b7-4c9e16ac25be", + "id": "c1665817-ae64-4c8a-a917-1f46ffab722e", "name": "Get a Service Desk integration", "request": { "name": "Get a Service Desk integration", @@ -98678,7 +98678,7 @@ }, "response": [ { - "id": "39a42bf1-b858-4dd6-9e12-100b025e2438", + "id": "a5da616e-7de2-412d-85bb-ba5d2998d91d", "name": "ServiceDeskIntegrationDto with the given ID", "originalRequest": { "url": { @@ -98722,7 +98722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "837fd31b-c086-4d92-b244-6ab0508bb4d3", + "id": "1bb66344-5a82-42cc-8848-52a1ccfaae75", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98766,7 +98766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29062b97-a91c-4e8a-a719-2bf8f5bfbb6c", + "id": "e57d1382-7494-41a5-8f46-69d5fd14173d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98810,7 +98810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "872afcd5-7051-43da-b937-31b5e0c48af3", + "id": "f1784989-ea72-4617-bfa3-25b4af8db7ae", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98854,7 +98854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ac54352-e8f7-4bbe-8307-6571140952f5", + "id": "ba8df147-2c69-4e5d-b82f-046a6d7a1b08", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -98898,7 +98898,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03abd134-d4cf-4905-b07d-b36aa48b886e", + "id": "972a5e0b-7c2f-4ad5-83a0-29df4c32406a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98942,7 +98942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb87df74-445e-4ac6-b2ed-e298902d5f78", + "id": "acd58378-6e62-4024-b3f8-5b9c6d6cf515", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98992,7 +98992,7 @@ } }, { - "id": "b4acaaa6-6cdf-40a1-8361-d322aa5de27f", + "id": "4514535b-4792-4a2d-aa53-9a04380da257", "name": "Update a Service Desk integration", "request": { "name": "Update a Service Desk integration", @@ -99046,7 +99046,7 @@ }, "response": [ { - "id": "5b5e44ce-9b70-4fc9-ad74-f374e071acef", + "id": "2cf11000-fe12-463c-ad78-1f8f64ff4db2", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -99103,7 +99103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e09894ae-5f3d-4ae1-a9d7-ec8697fc132f", + "id": "4f6b96d7-2267-412d-8eed-d6a1e00451a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99160,7 +99160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86aec320-e8ce-441f-9934-ef6e58e68ac0", + "id": "37104961-031a-4196-9fa8-70ec45d7c310", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99217,7 +99217,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19d8892b-49c9-49b0-83e4-c2c3f2ade3b4", + "id": "e8c305bf-c017-434f-abcf-003f39119f11", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99274,7 +99274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d149d4a4-3250-4c0a-ba6b-5945ff23c47e", + "id": "5de8dc4e-0282-41e1-bcda-2993b3b757cf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -99331,7 +99331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f750f56-9f07-45af-bd2e-2c23ec79f1d6", + "id": "e1cedcbc-0d6c-4813-9e75-f02b374ab3ce", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99388,7 +99388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74f21a92-edd0-480b-ab06-b362fcc7a92b", + "id": "9bb88bf3-0d1a-4aa2-93b4-3e48ac9d8eda", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99451,7 +99451,7 @@ } }, { - "id": "250f11e1-42f1-4ab8-a6c6-e759f08f9c38", + "id": "ac8775e2-518e-4061-a794-4e4948d19799", "name": "Delete a Service Desk integration", "request": { "name": "Delete a Service Desk integration", @@ -99492,7 +99492,7 @@ }, "response": [ { - "id": "7e1909e8-fdfd-437b-93f9-2a173ade5466", + "id": "7de6ccad-0ade-46b3-a244-55ff4806b0eb", "name": "Service Desk integration with the given ID successfully deleted", "originalRequest": { "url": { @@ -99526,7 +99526,7 @@ "_postman_previewlanguage": "text" }, { - "id": "237a9a16-159b-46db-ac72-b0c617d54d64", + "id": "b527e835-8ada-4dc0-bea3-d63ad381ba19", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99570,7 +99570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f663f6ee-14b5-4b07-a524-9e6c13513caa", + "id": "4999d136-66eb-4588-96b0-3037b75c3acd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99614,7 +99614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a988c059-9e8d-497d-9891-ccda49b9890d", + "id": "136af3e1-8551-45d2-9840-642d7fc52902", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99658,7 +99658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "857f8a19-fef8-453e-94df-e2ce3829e30a", + "id": "08d394be-cf54-4929-b6f0-de19e75b10be", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -99702,7 +99702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc008b37-26e4-45ed-ac65-2a44a6b100cb", + "id": "33d130bd-24b1-4dbe-95d3-0a1b3419c181", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99746,7 +99746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bce9b9f-1632-42fa-8c2b-6907aeeaef6b", + "id": "8d212f00-6e17-468e-ac22-a3a869f3badc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99796,7 +99796,7 @@ } }, { - "id": "05448ad3-3e8e-4581-8df0-e0569e6b79d8", + "id": "b3004cd4-7cf1-4b99-b80d-0d1536a53ad1", "name": "Service Desk Integration Update PATCH", "request": { "name": "Service Desk Integration Update PATCH", @@ -99850,7 +99850,7 @@ }, "response": [ { - "id": "4ac04ac1-d04f-4797-8a81-afa04cc908cc", + "id": "7233a92f-0f1d-4c12-8bf1-8f9f20f6103b", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -99907,7 +99907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e8d84bc-1c40-40b7-9407-813b6e9fdbdb", + "id": "9529548c-e11d-4bc6-af78-0a74949857cc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99964,7 +99964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d6f16ef-4447-447c-bcb6-af77a97acbd8", + "id": "489218ed-64a0-4761-bab3-edf6bf612a65", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100021,7 +100021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f794e477-ad08-4d62-9cae-0847af973dcc", + "id": "b944fc0f-4424-4087-96dd-96f704dc2cdb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100078,7 +100078,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba0a4822-d713-4cad-9ca2-63681143f61a", + "id": "76ea6560-984b-4f40-a362-01fff1a46964", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -100135,7 +100135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "607b8f0a-3174-498e-b941-4684c2bafe26", + "id": "d0c61b87-f4e7-402a-be39-a7e5588c8557", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100192,7 +100192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "356f9124-008d-4333-9f2a-5e4549c9cbc0", + "id": "8f107b11-8a1f-4970-b118-3ec95c7bdc2f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100255,7 +100255,7 @@ } }, { - "id": "6fc0bd2f-6c6f-4fa3-9610-664891c0f5db", + "id": "c7063bda-1120-48d6-b9b3-45dc5924e1e7", "name": "Service Desk Integration Types List.", "request": { "name": "Service Desk Integration Types List.", @@ -100285,7 +100285,7 @@ }, "response": [ { - "id": "cd0429c2-83d0-4862-a0c0-fae75048dded", + "id": "28f3c183-1d8f-4f88-89c9-8e0cea8b7c14", "name": "Responds with an array of the currently supported Service Desk integration types.", "originalRequest": { "url": { @@ -100329,7 +100329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4671aa2-8e2b-4116-83eb-49279b578dbf", + "id": "374df552-c944-43c1-9b75-99fa75eaff16", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100373,7 +100373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbb09c56-0d3f-4c59-a5c1-4253b2eb2d21", + "id": "da0cea83-8014-4615-aed1-c5ec1ae39860", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100417,7 +100417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b3d5e2f-8cd6-4849-b41d-0f49a3e3d5f8", + "id": "8119e833-b964-4897-90df-ff6447bdb173", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100461,7 +100461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bceb19d-8541-40fb-9a08-d7d8db3624b6", + "id": "8420a167-0ca5-4d82-94ee-5bfd97d509c8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -100505,7 +100505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "754b933e-45dc-473b-aabc-8bae7594a20e", + "id": "dc759305-2e2b-4a88-baf9-e2a507d6bbac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100549,7 +100549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cca22ff8-9544-4fe0-a688-90e03d77b87d", + "id": "007a73b6-06b3-4ad0-9d61-b947d573af52", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100599,7 +100599,7 @@ } }, { - "id": "e7d13ff3-77b7-46ac-9e83-c4fb73f68575", + "id": "a3686186-e5a1-4cf7-9487-e16e6c7f266a", "name": "Service Desk integration template by scriptName.", "request": { "name": "Service Desk integration template by scriptName.", @@ -100641,7 +100641,7 @@ }, "response": [ { - "id": "dbd3a85b-4f27-4748-94f3-7dabe7040c31", + "id": "76cd6d64-1f8d-4cbc-8381-fa6879e07ff5", "name": "Responds with the ServiceDeskIntegrationTemplateDto with the specified scriptName.", "originalRequest": { "url": { @@ -100686,7 +100686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9e57250-917e-4cc1-bcc4-3727077ab23c", + "id": "9a622b34-34f8-4458-8c90-89d88e6095f9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100731,7 +100731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7105cdb-1143-4ac8-86ab-fb46a1705b48", + "id": "f6fc1d63-3f41-4e18-885e-0d38bda38b16", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100776,7 +100776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2271ac82-3bbc-4196-94d1-437ca5247023", + "id": "93777dc5-ed0d-4b8d-9ee8-b74029dbcd20", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100821,7 +100821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b892e007-c314-4d6c-bb46-b94713fb127f", + "id": "14c25e84-3ef2-417d-a2a3-0439f3ed127c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -100866,7 +100866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d47b135b-d83d-4dcc-8c4e-2d8e6b8956c8", + "id": "1dfc0aea-a36e-47b9-831d-0ae8141a4849", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100911,7 +100911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e09a984e-ac83-485f-8f36-f10e43da5b43", + "id": "476e2a50-7247-4d24-adde-6141f8a61e11", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100962,7 +100962,7 @@ } }, { - "id": "441f3818-4da2-4611-a539-ff16f24ae5a2", + "id": "fdad652a-a413-4b61-abb6-e0e330c2b0b9", "name": "Get the time check configuration", "request": { "name": "Get the time check configuration", @@ -100992,7 +100992,7 @@ }, "response": [ { - "id": "852cdce3-c01e-47d6-ad12-baa932640973", + "id": "9c6c9569-702c-404e-b576-3fe16023d532", "name": "QueuedCheckConfigDetails containing the configured values", "originalRequest": { "url": { @@ -101036,7 +101036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6efd4048-e36a-4a6d-9492-4bb71e699823", + "id": "344e7595-e9e4-4681-8384-827cc0e73c58", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101080,7 +101080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "074c655a-1962-454e-9c0a-a9c449435e7a", + "id": "8308f24b-9f7c-415c-a436-8c40ac5b7ed6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101124,7 +101124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2089891-0e6a-46c6-9cc8-b7dec8de8065", + "id": "e1ce96d3-381f-4fb7-bfd6-8e9102b456aa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101168,7 +101168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f44dd68b-f5e1-45ed-8ed8-c30d54390594", + "id": "78b9e55f-05a3-4135-8cb6-5fb9ed33ed33", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -101212,7 +101212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fa04a63-1141-4b5b-9a6a-9dafa8ceebc2", + "id": "71b485fb-59bb-41ad-85ca-7b3faab7c2b7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101256,7 +101256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af7a6d50-8a65-4326-a092-b82f21ec69f6", + "id": "e7a9d058-4332-4e81-bdcd-e4d6218f2c96", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101306,7 +101306,7 @@ } }, { - "id": "7e6f2414-0d19-465c-bd38-3e7b8c2e5379", + "id": "daf9d657-774b-4401-99bc-cf51eaf26235", "name": "Update the time check configuration", "request": { "name": "Update the time check configuration", @@ -101349,7 +101349,7 @@ }, "response": [ { - "id": "26e900df-dbbc-4834-93d7-fe0823b7533a", + "id": "9158e91b-871d-487a-a8a3-cff598fd3d44", "name": "QueuedCheckConfigDetails as updated", "originalRequest": { "url": { @@ -101406,7 +101406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7741ac50-e857-479a-8a83-1cbf5ace0468", + "id": "7690c708-f11f-47dd-928c-d0ba7d8426f2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101463,7 +101463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1b7aba8-83d5-499a-8244-b291f1bb9cd3", + "id": "20a36c87-063e-4e06-a222-bf555a358561", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101520,7 +101520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d046601-a15a-46e2-b35a-f22c21554413", + "id": "c96c25f1-2e34-40f7-a5b0-7f27e11dd31f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101577,7 +101577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a703653b-8a6d-4606-8533-98deb3372758", + "id": "91d6d5ab-96af-4079-8987-543a5217feef", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -101634,7 +101634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f49b751-6e75-4e80-a198-afbbe05dd910", + "id": "7b43cbbd-b420-4606-8762-3427d1c189c4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101691,7 +101691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "635be474-d4c9-4ced-8db0-5394cc6403a6", + "id": "503bc045-c920-49e1-9465-41966d6ed6e1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101760,7 +101760,7 @@ "description": "Use this API to implement and manage \"separation of duties\" (SOD) policies. \nWith SOD policy functionality in place, administrators can organize the access in their tenants to prevent individuals from gaining conflicting or excessive access. \n\n\"Separation of duties\" refers to the concept that people shouldn't have conflicting sets of access - all their access should be configured in a way that protects your organization's assets and data. \nFor example, people who record monetary transactions shouldn't be able to issue payment for those transactions.\nAny changes to major system configurations should be approved by someone other than the person requesting the change. \n\nOrganizations can use \"separation of duties\" (SOD) policies to enforce and track their internal security rules throughout their tenants.\nThese SOD policies limit each user's involvement in important processes and protects the organization from individuals gaining excessive access. \n\nTo create SOD policies in IdentityNow, administrators use 'Search' and then access 'Policies'.\nTo create a policy, they must configure two lists of access items. Each access item can only be added to one of the two lists.\nThey can search for the entitlements they want to add to these access lists.\n\n>Note: You can have a maximum of 500 policies of any type (including general policies) in your organization. In each access-based SOD policy, you can have a maximum of 50 entitlements in each access list. \n\nOnce a SOD policy is in place, if an identity has access items on both lists, a SOD violation will trigger. \nThese violations are included in SOD violation reports that other users will see in emails at regular intervals if they're subscribed to the SOD policy.\nThe other users can then better help to enforce these SOD policies. \n\nTo create a subscription to a SOD policy in IdentityNow, administrators use 'Search' and then access 'Layers'.\nThey can create a subscription to the policy and schedule it to run at a regular interval. \n\nRefer to [Managing Policies](https://documentation.sailpoint.com/saas/help/sod/manage-policies.html) for more information about SOD policies. \n\nRefer to [Subscribe to a SOD Policy](https://documentation.sailpoint.com/saas/help/sod/policy-violations.html#subscribe-to-an-sod-policy) for more information about SOD policy subscriptions.\n", "item": [ { - "id": "7fcbf893-0e25-4e4a-910c-bb12e6a685cd", + "id": "835d1ea6-ddb2-4907-bc3f-a5918d83483d", "name": "Create SOD policy", "request": { "name": "Create SOD policy", @@ -101802,7 +101802,7 @@ }, "response": [ { - "id": "f3d65df6-af6f-4df6-b588-5c754010fa27", + "id": "7102eb47-495f-4058-881d-2735eb96ab82", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -101858,7 +101858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4970f683-9815-48e7-9a5a-178d83f753da", + "id": "bc3652fc-48cf-49c1-860b-fa44f1ab7bef", "name": "General Policy", "originalRequest": { "url": { @@ -101914,7 +101914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c75b54bd-9795-461e-8c4f-b51c3ec5b4ff", + "id": "ae4a0a83-50f5-447a-93ee-c03338fc63ae", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -101970,7 +101970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6276a9bb-44c8-4201-a3c7-343b0b85bfa2", + "id": "a148abb2-e8fb-4566-ad08-36c532e3e0e9", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -102026,7 +102026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b82d85d-806a-41e2-9254-750cab83ec8c", + "id": "937ae345-d1e5-4a80-8576-28e15d1744b0", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -102082,7 +102082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0501efe3-1bb4-4458-9ce9-9e4d174ef494", + "id": "9c3b4dd4-b1f8-4793-8303-d8aa21a84cd9", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -102138,7 +102138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1ab3647-7126-4c93-a6c8-2a907fa6bace", + "id": "fc393ae3-d198-4f91-b5f2-e20eea613ede", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -102200,7 +102200,7 @@ } }, { - "id": "cc11b2ca-e923-42c0-8311-1ae12f8f4ff5", + "id": "e6529528-40c5-4abc-8808-047b9460a9da", "name": "List SOD policies", "request": { "name": "List SOD policies", @@ -102266,7 +102266,7 @@ }, "response": [ { - "id": "6dedb607-2921-4fe5-bba1-711445bdd6c5", + "id": "26300c46-14ea-4e59-a36c-d6812d4ae67d", "name": "List of all SOD policies.", "originalRequest": { "url": { @@ -102346,7 +102346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e4865b7-34b6-47e4-9eba-eca243e47b23", + "id": "39c7dc6b-e7d0-46e1-a162-2e623501af5f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102426,7 +102426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a970b044-3627-42fb-b36b-d9c684214dfc", + "id": "35406e5f-1d56-49b4-a9e4-2ba3b3a4bd37", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102506,7 +102506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59062f6b-4c85-4f96-89cc-43f514ff3181", + "id": "7b09f76c-700f-404e-acbe-86dedabb8c64", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102586,7 +102586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b3aaca8-aa0f-4bb3-90ca-f3aa222d0e93", + "id": "78f3e89d-de09-4de7-b301-f003b77955e1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102666,7 +102666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "156d0318-c294-41e5-a6d4-e2698858acf6", + "id": "cc90a1a3-582c-4c4f-bf0e-78b11d555d38", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102752,7 +102752,7 @@ } }, { - "id": "e329b1b8-1dd3-4d60-abd6-3ab982eba87c", + "id": "e5bc4cca-dcea-4941-9136-6374da901eb9", "name": "Get SOD policy by ID", "request": { "name": "Get SOD policy by ID", @@ -102793,7 +102793,7 @@ }, "response": [ { - "id": "a5e198b4-35d1-4a35-8c78-1e4d68670e80", + "id": "364a43a0-18a8-44aa-a53a-e9ec965ce5f2", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -102837,7 +102837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7261a056-2077-4a30-bbd7-a2feeba68c6d", + "id": "26d99225-f5d2-457f-906b-645776a54305", "name": "General Policy", "originalRequest": { "url": { @@ -102881,7 +102881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bfdef00-bb44-4186-adaf-682172077121", + "id": "cc797241-a85f-452a-9b15-998c60ae51ca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102925,7 +102925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fe3c213-809a-4ad0-b69f-f29966d3346f", + "id": "d8017f69-3d36-4cf5-8727-aa10af64ec91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102969,7 +102969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0630d24f-416a-4b21-968d-66493f7adf00", + "id": "7a9a867c-13a2-4728-a6a5-4e5f3f6f1135", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103013,7 +103013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e104318-7123-4427-9b18-23f9de2aee33", + "id": "8aeb7448-0d01-4648-99c1-bc968b952510", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -103057,7 +103057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b82cc93-6b31-4a79-b872-7fe658076f27", + "id": "bed02d7c-a04e-4804-8f03-e05413af1f27", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103101,7 +103101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a911a1da-b655-43c3-9466-ee8f140da55f", + "id": "37c6d259-ff68-47b1-a48b-10f1d40dfa59", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103151,7 +103151,7 @@ } }, { - "id": "9357196b-5b01-46f9-a00d-f015c98e3379", + "id": "b91cd1fd-ae00-4220-b91f-0161be3ce947", "name": "Update SOD policy by ID", "request": { "name": "Update SOD policy by ID", @@ -103205,7 +103205,7 @@ }, "response": [ { - "id": "2da27db1-6dcf-489b-b017-f996aa2b8464", + "id": "92df03e0-f7b2-475f-bc15-69cc00861f01", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -103262,7 +103262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2f033c8-119c-48a7-8f14-a97debae5983", + "id": "ca8d726b-4e2a-4db8-bcb0-4e92ae763568", "name": "General Policy", "originalRequest": { "url": { @@ -103319,7 +103319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d59eeebe-51c1-41fd-b4e9-1691d45e20a8", + "id": "7e3bd4d8-77f5-4e18-8513-46745e415d98", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -103376,7 +103376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fd995d3-2fe9-4048-b9c6-a46e3c0bd510", + "id": "24290d06-6c6e-455b-8f1f-7fd8b6e43ed2", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -103433,7 +103433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b7926e5-5bb9-4d27-b402-fbc1952ee693", + "id": "7e40f354-bb1f-4b4b-93b8-b5ab7e82d01d", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -103490,7 +103490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16664882-62e4-44ef-b39e-2ee168826ce0", + "id": "af96053d-36d9-494f-9e4b-a42ea628b8f0", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -103547,7 +103547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c87af86-b874-4405-a3ef-48c8ab70e456", + "id": "97962e62-b691-4a87-9400-944042fa5359", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -103604,7 +103604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70e31dca-1f69-4241-9902-d41e03e43f8c", + "id": "a666cc21-2164-4ab4-b5fe-7af6e81f6bd4", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -103667,7 +103667,7 @@ } }, { - "id": "d84ae8f0-9674-4a22-adb0-a33874903533", + "id": "86b3238e-9ca6-42f9-a3df-887798805124", "name": "Delete SOD policy by ID", "request": { "name": "Delete SOD policy by ID", @@ -103718,7 +103718,7 @@ }, "response": [ { - "id": "77c112cf-e426-4ded-be3c-c5f4b7652d15", + "id": "e810d7ba-8b39-4229-be51-34a1a38e37c7", "name": "No content.", "originalRequest": { "url": { @@ -103762,7 +103762,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e3421a7d-fcca-4185-a1a2-0f3dee643fbc", + "id": "f0d399fa-cc3d-47f6-bf0a-b6ca623b2fb8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103816,7 +103816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19a37417-b7b7-45c9-8645-559c78a37fdc", + "id": "e03598de-ea1f-483f-87bb-afc509fb2e16", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103870,7 +103870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7da454e2-b3fb-4207-9bdb-7763964e8a75", + "id": "974c5185-8e8d-472a-8ade-437feafc29f1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103924,7 +103924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71e7eb7e-4c99-4060-8d68-8022442a115b", + "id": "97f451a9-e9ed-4849-9afc-1b2fd16e4eec", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -103978,7 +103978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9512b4da-ed25-4723-81ab-34d5e055c91e", + "id": "6b204ba2-0391-4410-a8f2-b2c327536f08", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104032,7 +104032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f79fa09-2b4e-4eb6-88f3-250ce4758bf4", + "id": "7dab4fbb-1602-4707-94a3-3144baa37718", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104092,7 +104092,7 @@ } }, { - "id": "7905d69c-7b84-46a2-b1b8-fef1225003bb", + "id": "299d8473-968e-452a-a6b6-e4b12fa3602c", "name": "Patch SOD policy by ID", "request": { "name": "Patch SOD policy by ID", @@ -104146,7 +104146,7 @@ }, "response": [ { - "id": "0a1217c6-833f-440d-9b81-feef7b6dd1f8", + "id": "841b0240-7951-4954-a217-a2756d04536c", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -104203,7 +104203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19034b4a-1c44-4e2c-86a6-8fac6393effb", + "id": "2ce02e67-3f47-4414-991d-3f524b7cc49f", "name": "General Policy", "originalRequest": { "url": { @@ -104260,7 +104260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a1b3326-87f1-47e7-a1c3-0a5c6e62676e", + "id": "8fc2078a-60af-4b1a-8c8c-6f1c564d7cb8", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -104317,7 +104317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c2f896a-f6c6-4051-b505-5bf03fc99ded", + "id": "74ff2cd9-d28c-41de-8e97-ecf827bdee46", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -104374,7 +104374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5b77c22-1e0f-4bf5-a7b0-6a89f8854d50", + "id": "8b9a4974-8eb3-4be3-8ad0-bf1874932e20", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -104431,7 +104431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea12b8a4-a9af-4af7-b0f6-60d3741cc927", + "id": "21fcdea3-ffc9-4ec4-9e09-8ccc7b0aeaed", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -104488,7 +104488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b41bfe3c-f18c-4fe6-9669-f2d388da41b8", + "id": "201a7f95-aae3-416b-8c5f-f9473e48d51e", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -104545,7 +104545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2469fd6e-5bad-4c3c-b739-e3375a1a8c20", + "id": "8207209b-42dc-45b8-a1dd-ba9ac6467338", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -104608,7 +104608,7 @@ } }, { - "id": "343ed2ea-e318-4551-a4b2-66bccd39c70a", + "id": "fb7b61a9-c7f2-493d-9e15-1f7b570bcb51", "name": "Evaluate one policy by ID", "request": { "name": "Evaluate one policy by ID", @@ -104650,7 +104650,7 @@ }, "response": [ { - "id": "3062a918-6598-4fca-bd29-72dcb4bc3915", + "id": "1e92967a-2b30-4a17-9b12-5d2cc4934c97", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -104695,7 +104695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "756666e9-3f1a-45e7-9a6f-b912d7a785c7", + "id": "13555218-339f-4456-bc7c-d8a25cfb0d87", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104740,7 +104740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fdf7997-4e36-4673-8daf-4ad65da71d0f", + "id": "3581b637-aa11-4e85-8629-67e452e8320f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104785,7 +104785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "111fd0f4-7b9b-4847-8bb2-f8efa2102749", + "id": "7087d7e6-1325-458b-99fb-04658942c546", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104830,7 +104830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d1334c4-6ba0-4fb5-9864-f1de79988d8a", + "id": "32af5bed-1b3d-43cc-830a-dcf094be2c2b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104875,7 +104875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab7e5b33-484b-43e4-adea-c21092d61cbe", + "id": "6ded2226-aa0c-4277-b837-6f6e6d5025db", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104926,7 +104926,7 @@ } }, { - "id": "b2bed596-0f8f-4c31-a792-7367bee29b87", + "id": "816f4cfa-3d42-48c3-9815-7fc980e473e0", "name": "Get SOD policy schedule", "request": { "name": "Get SOD policy schedule", @@ -104968,7 +104968,7 @@ }, "response": [ { - "id": "8384a02a-392b-42cd-8bc4-099ecccca5bb", + "id": "3a67ec87-834d-4848-9693-38c26f34f5c1", "name": "SOD policy schedule.", "originalRequest": { "url": { @@ -105013,7 +105013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9213c59d-a3c7-40ec-80a5-df91595fb054", + "id": "6e80235f-17b8-47d2-9774-43583065673b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105058,7 +105058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e28cf97a-b68c-48ec-84b1-cc542ba5149a", + "id": "90e02299-a823-41cc-b095-671711107790", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105103,7 +105103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94ff979a-eb5d-46c0-aca9-45869ea745a8", + "id": "65e7a517-2e8f-467b-9c47-bab2da7a2147", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105148,7 +105148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42e74e3f-8b61-4489-9872-13443d108489", + "id": "460a1d37-0f17-4e31-8712-b99d51db6247", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105193,7 +105193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43751620-b2cb-465e-b85a-511834c646eb", + "id": "b66a79a4-798d-403b-bda6-979f4ec868fa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105244,7 +105244,7 @@ } }, { - "id": "6c71677c-a071-4f76-a237-1e25cc9cc918", + "id": "20768194-882f-4e9d-acbb-70794fbad1d1", "name": "Update SOD Policy schedule", "request": { "name": "Update SOD Policy schedule", @@ -105299,7 +105299,7 @@ }, "response": [ { - "id": "4ac829f3-df60-4f0e-9db8-563d08ddf176", + "id": "7e73bd44-f50d-4508-97e6-19c0b56f66a5", "name": "Created or updated SOD policy schedule.", "originalRequest": { "url": { @@ -105357,7 +105357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be4957ce-9180-4e91-9d5c-8202d58f35fc", + "id": "3e9f67d6-5f40-4c34-930d-7cb8012035bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105415,7 +105415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d0e2432-1a25-415d-b1f9-be03b967914c", + "id": "37fcf50b-6a3e-43ad-aa73-d1d77ecb8b6d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105473,7 +105473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acb7f72a-5df3-4b6d-af20-acfedab2b7f9", + "id": "10bbd086-de6e-45a3-a7d7-06257ee6c9ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105531,7 +105531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75d9c829-9edc-4f57-9b2f-a53fb557406d", + "id": "879fa748-8877-487c-aea8-2576a9c036ae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105589,7 +105589,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9f23807-0388-44d5-adc3-1d7cd8583d07", + "id": "0cf71396-1896-469b-a16d-78968ded2b4f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105653,7 +105653,7 @@ } }, { - "id": "7f5debe6-d7b3-42ce-8701-dcd40d859d12", + "id": "74ad11e3-0cbc-4580-8224-ddad5306edf4", "name": "Delete SOD policy schedule", "request": { "name": "Delete SOD policy schedule", @@ -105695,7 +105695,7 @@ }, "response": [ { - "id": "2827522a-1207-4a6f-8f9a-2aa0469d50b2", + "id": "42dab65a-2c6b-43e4-a764-c1725f095eb1", "name": "No content response.", "originalRequest": { "url": { @@ -105730,7 +105730,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5e81e601-b5b9-42a4-b903-710da53ada95", + "id": "b897d9ca-e21e-444d-9b17-48957c8527b9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105775,7 +105775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e63020ac-1676-4bb1-85e1-279ea00fcc83", + "id": "53598701-bab6-4e5b-a38d-ff864becc8f8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105820,7 +105820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cf32c71-8c67-4f08-963c-3ad7002fa286", + "id": "56675371-4122-4941-b4da-8f2fbf48c809", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105865,7 +105865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "968125d9-5214-443b-af65-b161dc001124", + "id": "e5e4ef65-a24c-4504-906e-374569754a84", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -105910,7 +105910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f9e74e9-a07f-40d5-93fd-648ac56b90e1", + "id": "7d2dbe41-724b-464f-bab0-3b873661dce8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105955,7 +105955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9506bcc-6dbf-4a00-a7c7-ae1afbb6d13a", + "id": "d10a36bc-015a-4b1f-87b2-44e76d98a285", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106006,7 +106006,7 @@ } }, { - "id": "d4ec836a-564e-4eed-bd30-7d77c960d622", + "id": "457ac528-e675-4fc0-8554-9e042c8e4d7b", "name": "Runs SOD policy violation report", "request": { "name": "Runs SOD policy violation report", @@ -106049,7 +106049,7 @@ }, "response": [ { - "id": "92537bec-33ce-4d78-a73d-b74b79b32c88", + "id": "b8b10801-af2f-4c2c-863b-b9f31837de92", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -106095,7 +106095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "220c9901-ca4e-41ec-9011-24e8bc3bbff3", + "id": "14976b76-e4e9-4bcc-bcc5-3b2a134283f7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106141,7 +106141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef32fc2b-8749-4f53-9a55-b9f83e944f39", + "id": "b77b7a28-5af2-47b6-907d-47de28fdfcf1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106187,7 +106187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae221ac9-f241-4fd3-aa49-071199f5caf4", + "id": "a2f45d74-27b3-4352-9a20-8e24e27cb5fc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106233,7 +106233,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1086e4c0-8d5d-4033-8ed5-9d4f4ba9f33e", + "id": "fc4616f5-d84b-41f7-87df-88a6c779bbe1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -106279,7 +106279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36c5adf3-7502-4e24-86eb-100d3d4ea6f4", + "id": "53713639-3d1c-4a7f-8a1a-076f221ae04f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106325,7 +106325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "561c95f0-242a-4b90-9b2d-7cfc20d1992f", + "id": "cbba4d4b-875d-4840-bd8f-d60c24b5f277", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106377,7 +106377,7 @@ } }, { - "id": "d5c4c8c2-765f-4e8f-8ad1-3a191a2aa146", + "id": "5cddd7bc-866c-440c-9eed-7510a01d4bb5", "name": "Get SOD violation report status", "request": { "name": "Get SOD violation report status", @@ -106419,7 +106419,7 @@ }, "response": [ { - "id": "facb0e91-de8f-4676-9236-f2314aecb235", + "id": "0f14c138-8c0b-4f97-9cef-f8df2d945dc5", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -106464,7 +106464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87a183a4-a12d-4dd1-88d8-e8e4c26d28ee", + "id": "e28e11a3-356c-4f8b-aa34-bf0f3b7ddf16", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106509,7 +106509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c55af1be-08f3-419c-82f5-3fc0cbf3cc96", + "id": "791ece10-a2ed-418f-94d7-232b0cfafc0f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106554,7 +106554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da40c9d0-cb00-4246-8953-70aaf5321124", + "id": "4dc6eecc-ee07-48eb-ba9a-28998d61a4a3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106599,7 +106599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bf96a07-91eb-47d5-adbe-3caaff615236", + "id": "1a7627b0-15e4-43c9-8596-f3e9883fa184", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -106644,7 +106644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcd40df9-780a-4dd8-9ff5-398e55a5e970", + "id": "12c28bf9-f3a6-48c5-b7a5-34828a383b8b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106689,7 +106689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b18b55d-dbc8-4e0b-a4fb-e08471a0442d", + "id": "0584d96d-642b-41fc-8148-a73c49c8d5c9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106740,7 +106740,7 @@ } }, { - "id": "5652bf29-d50b-4214-aa0f-c6934045ac8e", + "id": "6ae2c306-1208-4b45-8263-814a1e8644a5", "name": "Get violation report run status", "request": { "name": "Get violation report run status", @@ -106782,7 +106782,7 @@ }, "response": [ { - "id": "6616f0c3-6bff-4688-aeb6-c8b0d83992c4", + "id": "3e8f1a00-794f-4c91-b2eb-9919abf7340f", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -106827,7 +106827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57aff5ac-6ec3-496d-baa2-6ccfcf320111", + "id": "d73dc38e-53c1-4ff6-b7c7-d9728308ab02", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106872,7 +106872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e58c8d47-54ac-4339-b8f6-e478b929b871", + "id": "eb83b8bc-29ba-4b72-be74-b0888fbacd3d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106917,7 +106917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da3abc47-23c4-4e8a-bb1c-e2fd789505b1", + "id": "e52a4097-4466-4fd2-acb2-d80a9a66f7a3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106962,7 +106962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c907ccc-4d93-4a82-bcc6-1c975a1644fd", + "id": "ac81ab98-2f1b-4e33-8152-da7ffd7ad9be", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -107007,7 +107007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40eb21d0-889e-4e55-acc2-b71795a7e97f", + "id": "f0def35d-8b19-4151-9c60-a9cfc6a2e776", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107052,7 +107052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b379361-8c15-4f45-9388-af815c586b41", + "id": "e37a881b-4010-4328-9962-444782b6da98", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107103,7 +107103,7 @@ } }, { - "id": "fae95650-a06c-4417-a066-723c54d5e283", + "id": "6cac9c35-0934-47ef-8ede-084f9d6b62bf", "name": "Runs all policies for org", "request": { "name": "Runs all policies for org", @@ -107146,7 +107146,7 @@ }, "response": [ { - "id": "e05b7b0e-b26c-4c2e-aef1-f227996729b3", + "id": "2499de37-0935-4c13-a957-f883f798c619", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -107203,7 +107203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41eceda5-920e-4b74-b3af-2054cef6f883", + "id": "ecc1693c-cb4b-4a01-9b99-c43ff352a3e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107260,7 +107260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4f03abd-eac7-44ee-8543-2d8977c97a63", + "id": "33a1006a-7f22-4082-88fa-63d05a749f7d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107317,7 +107317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c7a9f28-acaa-4428-a6d8-ae323ed57d36", + "id": "9dcc6978-728f-491f-8fa1-df57dc71c0bf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107374,7 +107374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b7f578f-5e12-4d7a-b176-8000278ed4a0", + "id": "b542a7d4-0720-4393-abdf-7d7625406859", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107431,7 +107431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "562de80b-6c06-4a14-8d0d-a7056c09aa92", + "id": "ae08d424-2ae8-4bc6-a6a4-554b6100ac77", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107494,7 +107494,7 @@ } }, { - "id": "d5e39f81-ffa6-4dbf-878f-08e67029d771", + "id": "e7e954b3-ee0d-4d19-a3cf-d4d891da40e8", "name": "Get multi-report run task status", "request": { "name": "Get multi-report run task status", @@ -107523,7 +107523,7 @@ }, "response": [ { - "id": "89875b1a-fe4d-44c6-96eb-19425c457aa7", + "id": "0283f5bb-16bc-4764-9bef-f56fd34724f2", "name": "Status of the violation report run task for all policy run.", "originalRequest": { "url": { @@ -107566,7 +107566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08b2a5a2-8946-498b-bdb6-d0cf7db3e8a6", + "id": "813d5153-006e-4515-b32f-8e0a427bf33a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107609,7 +107609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd20e03c-a97c-470f-a196-af9816e3a324", + "id": "2ee36e02-68fd-4e20-bfe5-96cfa7b4d9ef", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107652,7 +107652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a890c9d8-39df-4436-9cde-3bb988408055", + "id": "e9c2b1f7-4e90-4072-8c7e-d40c91b3641e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107695,7 +107695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89890ca6-4fe7-47d9-9633-8ed08e31b325", + "id": "2228fe83-6d5e-4922-8559-98073ee328d4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107738,7 +107738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05391bae-0ba0-4006-b7ae-0adef8451d36", + "id": "cda8a272-c118-4b8a-a825-ccf9499589c1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107787,7 +107787,7 @@ } }, { - "id": "46000bf2-f7b9-488e-a3f0-f8dc1564a4a1", + "id": "c5fe748f-4500-46d9-bee2-e6073f4112e1", "name": "Download violation report", "request": { "name": "Download violation report", @@ -107829,7 +107829,7 @@ }, "response": [ { - "id": "40477be8-7e95-49d9-af58-5c7db3d74a45", + "id": "13efe461-6452-4fca-aff8-10b885ff5bb3", "name": "Returns the PolicyReport.zip that contains the violation report file.", "originalRequest": { "url": { @@ -107869,12 +107869,12 @@ "value": "application/zip" } ], - "body": "cupidatat velit ut dolor", + "body": "ut nulla pariatur", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "b5328b28-a59b-4ac7-a68d-30722e6c6ce6", + "id": "4ab14630-ed9d-4e87-92bb-cb5c40643bef", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107919,7 +107919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e03c18a8-e527-4913-9b5d-3b3db37f67a1", + "id": "1955f74b-2755-4527-828b-42acb7eb8eb3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107964,7 +107964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5042c52c-e364-46e9-8d0a-d51f46c8a02a", + "id": "fdc5bd09-d299-4b76-8583-0ef6338fb6ae", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108009,7 +108009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14f011c8-bd34-4dc6-afcb-376006f86527", + "id": "d6cf803f-6464-4e7b-b0ee-74429a21a8ab", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -108054,7 +108054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a9f9f95-d2c1-4d2e-b82e-a6c8f035017c", + "id": "7344deb6-44e8-4d57-9c98-55a5f1fc2596", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108099,7 +108099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fce9d2c-a1e6-417a-a417-014ccc4dd131", + "id": "d2f460db-dda0-4e52-a2fd-555de7cf3946", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108150,7 +108150,7 @@ } }, { - "id": "55a3a126-7b33-4a01-8928-58b6755308d4", + "id": "c4298247-88a6-461c-aab5-65f9867d4ff8", "name": "Download custom violation report", "request": { "name": "Download custom violation report", @@ -108203,7 +108203,7 @@ }, "response": [ { - "id": "92431ed1-9537-4226-8f2f-921a2f2dcff0", + "id": "03ca155c-bfa5-41d4-8235-1dc9b9fa3125", "name": "Returns the zip file with given custom name that contains the violation report file.", "originalRequest": { "url": { @@ -108244,12 +108244,12 @@ "value": "application/zip" } ], - "body": "cupidatat velit ut dolor", + "body": "ut nulla pariatur", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "d945de68-336b-49e0-83c2-035f3b5b0c72", + "id": "4dc46f1c-165a-4601-94ff-7f9a7eb213a0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108295,7 +108295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89f5ef1b-b885-4bb8-b6a3-20d69106c5ce", + "id": "c9fe0b45-5c31-4022-add9-9a28563b11d4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108341,7 +108341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1ec44a5-e92b-4d96-9967-31802a5584f8", + "id": "26908cb2-5c9d-444e-b9eb-4a8f244f96ec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108387,7 +108387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b21636dd-3894-46af-819d-70f122b71785", + "id": "1fd37514-d2a4-47db-a968-effff93fd1e5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -108433,7 +108433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d895f932-777c-49ba-8b2f-fd508e465b99", + "id": "3318e4c2-5ec5-40e4-a72e-2c5ab263b1ac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108479,7 +108479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a5546fd-462e-441c-86c9-4fad6105b65d", + "id": "f9d95f58-c396-4762-a463-ec973d644ff8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108537,7 +108537,7 @@ "description": "Use this API to check for current \"separation of duties\" (SOD) policy violations as well as potential future SOD policy violations. \nWith SOD violation functionality in place, administrators can get information about current SOD policy violations and predict whether an access change will trigger new violations, which helps to prevent them from occurring at all. \n\n\"Separation of duties\" refers to the concept that people shouldn't have conflicting sets of access - all their access should be configured in a way that protects your organization's assets and data. \nFor example, people who record monetary transactions shouldn't be able to issue payment for those transactions.\nAny changes to major system configurations should be approved by someone other than the person requesting the change. \n\nOrganizations can use \"separation of duties\" (SOD) policies to enforce and track their internal security rules throughout their tenants.\nThese SOD policies limit each user's involvement in important processes and protects the organization from individuals gaining excessive access. \n\nOnce a SOD policy is in place, if an identity has conflicting access items, a SOD violation will trigger. \nThese violations are included in SOD violation reports that other users will see in emails at regular intervals if they're subscribed to the SOD policy.\nThe other users can then better help to enforce these SOD policies.\n\nAdministrators can use the SOD violations APIs to check a set of identities for any current SOD violations, and they can use them to check whether adding an access item would potentially trigger a SOD violation. \nThis second option is a good way to prevent SOD violations from triggering at all. \n\nRefer to [Handling Policy Violations](https://documentation.sailpoint.com/saas/help/sod/policy-violations.html) for more information about SOD policy violations. \n", "item": [ { - "id": "ea67192d-926d-4c9c-80ab-337f02d41694", + "id": "caf36603-5603-43df-a600-060477bda996", "name": "Predict SOD violations for identity.", "request": { "name": "Predict SOD violations for identity.", @@ -108580,7 +108580,7 @@ }, "response": [ { - "id": "89ecfaac-e015-4623-ba7c-43867d2c1119", + "id": "35cad9e4-bd73-4262-992c-d07c4ac8ecb9", "name": "Violation Contexts", "originalRequest": { "url": { @@ -108637,7 +108637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbebf6a4-e2d3-4d3e-b886-270c4c637eea", + "id": "9f4d32a4-763f-404a-a7a4-8051e84d17ba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108694,7 +108694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2ddb114-3329-4468-8fc8-282dafb487b2", + "id": "55050954-d121-4e47-9ab6-acf571a3b72b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108751,7 +108751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc82bcad-e087-4d18-b290-76faa6e60aa3", + "id": "05497840-d1d1-4ff8-8488-dad13ed53a46", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108808,7 +108808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c598535-bb28-4674-8992-b393a09b0054", + "id": "e3057abe-a477-478f-84e1-1cc9fef0ccc1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -108865,7 +108865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c79ea47d-a152-4447-abf4-94c63fcd5147", + "id": "dd59bbba-7e52-470f-883f-9ee57a2191f4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108922,7 +108922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aee21c78-a348-4354-a426-46914ab93d16", + "id": "60a2aa3b-5091-47ca-9443-ebf3b7643974", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108985,7 +108985,7 @@ } }, { - "id": "5f371e11-99a6-410b-8cc3-3801b576c202", + "id": "a9f650ea-4e59-4825-933a-65913cadafb3", "name": "Check SOD violations", "request": { "name": "Check SOD violations", @@ -109028,7 +109028,7 @@ }, "response": [ { - "id": "b4b7526c-4749-4009-8300-225695bd664e", + "id": "bd094af5-c0e4-4e90-a11f-7ddfc65a2bb1", "name": "Request ID with a timestamp.", "originalRequest": { "url": { @@ -109085,7 +109085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "817b928c-6f5f-4b31-8065-cdf886619a48", + "id": "9e84ed89-bcaa-4ff9-95b6-cafbaeb030c2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109142,7 +109142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea527968-57fd-40d8-b7a7-4c14b9766684", + "id": "07ee72f8-fed8-42a3-a896-26b3456b3b8f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109199,7 +109199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ca57e86-72cc-48ba-8b01-9d5668d2b119", + "id": "1c6e41c9-f12d-4364-8809-c6dcec87262d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109256,7 +109256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6591af7b-cc1e-460b-9437-ec19f105f7d6", + "id": "05c4aa04-0c1a-4267-96f4-98317e8831e8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -109313,7 +109313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5636a979-1b9c-4a38-9c14-0d18ade5c21d", + "id": "09a7bd66-bdb3-4f00-8e27-c6c620895138", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109370,7 +109370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69154120-337b-4928-b23a-cdbd0383dbed", + "id": "05967639-1173-48e2-9262-772b943aa633", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109439,7 +109439,7 @@ "description": "Use this API to implement source usage insight functionality.\nWith this functionality in place, administrators can gather information and insights about how their tenants' sources are being used.\nThis allows organizations to get the information they need to start optimizing and securing source usage.\n", "item": [ { - "id": "4ab1b4db-6497-40f2-bb13-033aa1a7387a", + "id": "86f0fb86-87fa-4c62-9b8a-7e1fe4255b6d", "name": "Finds status of source usage", "request": { "name": "Finds status of source usage", @@ -109481,7 +109481,7 @@ }, "response": [ { - "id": "27e5f408-1318-4651-8117-e1db7207ffdd", + "id": "015efd13-c140-461f-818b-c71199eea825", "name": "Status of the source usage insights setup by IDN source ID.", "originalRequest": { "url": { @@ -109526,7 +109526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08bb0453-38e5-4fb0-b9d7-825bd1b44745", + "id": "12601a39-f55e-40c8-8099-b2815b0c3fbe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109571,7 +109571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "783262d7-b6d1-4b92-a24f-60c4eb9938eb", + "id": "59d02e28-66d8-4c45-b5c9-221cbc3261fd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109616,7 +109616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f700f83f-51c8-4e6e-8cd9-7b9272606435", + "id": "bd089935-a2d8-4bac-89ba-7398aad97866", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109661,7 +109661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e95937ad-a930-4814-89fa-822f264b945f", + "id": "48ce35fc-766f-434c-9e7f-8dc4043e42ab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109706,7 +109706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f31895c9-9c45-4312-b088-78971efdbf62", + "id": "a186350f-fcab-4dff-906d-8b837a2f0ec3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109757,7 +109757,7 @@ } }, { - "id": "f4872446-b6e9-43ce-88b7-bf3bcaccc054", + "id": "09386d79-8366-4a0c-99c6-4ca4d1a4c140", "name": "Returns source usage insights", "request": { "name": "Returns source usage insights", @@ -109836,7 +109836,7 @@ }, "response": [ { - "id": "07e88b62-9f7e-496a-9b9a-a76fefd1d720", + "id": "98d19050-17d7-400b-835b-9ac8bd96a9b1", "name": "Summary of source usage insights for past 12 months.", "originalRequest": { "url": { @@ -109918,7 +109918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ca17157-e701-4551-a13f-0fc01e339144", + "id": "fec849a3-e783-40ee-8baf-7edc9b07a5ac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110000,7 +110000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d000a6b-623e-4674-b2cb-db3fa518f8d2", + "id": "81c37501-0776-45d7-935c-f2f7360c73b3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110082,7 +110082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be50ada3-f07e-4add-a3af-dd51f4f6d04c", + "id": "782a4d0e-ea25-44c2-bbe5-62273ff29951", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110164,7 +110164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3912640-483b-4f40-b980-752f770e60d5", + "id": "2ca9d6f6-dd75-48d2-81c4-fab719d718d9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110246,7 +110246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55c1f375-72c9-425e-9057-5359c70f6d2e", + "id": "9e9281f2-4e8b-4509-b122-96ae5f7ef7e9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110340,7 +110340,7 @@ "description": "Use this API to implement and customize source functionality. \nWith source functionality in place, organizations can use IdentityNow to connect their various sources and user data sets and manage access across all those different sources in a secure, scalable way. \n\n[Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html) refer to the IdentityNow representations for external applications, databases, and directory management systems that maintain their own sets of users, like Dropbox, GitHub, and Workday, for example.\nOrganizations may use hundreds, if not thousands, of different source systems, and any one employee within an organization likely has a different user record on each source, often with different permissions on many of those records. \nConnecting these sources to IdentityNow makes it possible to manage user access across them all.\nThen, if a new hire starts at an organization, IdentityNow can grant the new hire access to all the sources they need.\nIf an employee moves to a new department and needs access to new sources but no longer needs access to others, IdentityNow can grant the necessary access and revoke the unnecessary access for all the employee's various sources. \nIf an employee leaves the company, IdentityNow can revoke access to all the employee's various source accounts immediately. \nThese are just a few examples of the many ways that source functionality makes identity governance easier, more efficient, and more secure. \n\nIn IdentityNow, administrators can create configure, manage, and edit sources, and they can designate other users as source admins to be able to do so.\nThey can also designate users as source sub-admins, who can perform the same source actions but only on sources associated with their governance groups.\nAdmins go to Connections > Sources to see a list of the existing source representations in their organizations. \nThey can create new sources or select existing ones. \n\nTo create a new source, the following must be specified: Source Name, Description, Source Owner, and Connection Type.\nRefer to [Configuring a Source](https://documentation.sailpoint.com/saas/help/accounts/loading_data.html#configuring-a-source) for more information about the source configuration process. \n\nIdentityNow connects with its sources either by a direct communication with the source server (connection information specific to the source must be provided) or a flat file feed, a CSV file containing all the relevant information about the accounts to be loaded in.\nDifferent sources use different connectors to share data with IdentityNow, and each connector's setup process is specific to that connector. \nSailPoint has built a number of connectors to come out of the box and connect to the most common sources, and SailPoint actively maintains these connectors.\nRefer to [IdentityNow Connectors](https://documentation.sailpoint.com/connectors/identitynow/landingpages/help/landingpages/identitynow_connectivity_landing.html) for more information about these SailPoint supported connectors. \nRefer to the following links for more information about two useful connectors: \n\n- [JDBC Connector](https://documentation.sailpoint.com/connectors/jdbc/help/integrating_jdbc/introduction.html): This customizable connector an directly connect to databases that support JDBC (Java Database Connectivity).\n\n- [Web Services Connector](https://documentation.sailpoint.com/connectors/webservices/help/integrating_webservices/introduction.html): This connector can directly connect to databases that support Web Services. \n\nRefer to [SaaS Connectivity](https://developer.sailpoint.com/idn/docs/saas-connectivity) for more information about SailPoint's new connectivity framework that makes it easy to build and manage custom connectors to SaaS sources. \n\nWhen admins select existing sources, they can view the following information about the source:\n\n- Associated connections (any associated identity profiles, apps, or references to the source in a transform).\n\n- Associated user accounts. These accounts are linked to their identities - this provides a more complete picture of each user's access across sources.\n\n- Associated entitlements (sets of access rights on sources).\n\n- Associated access profiles (groupings of entitlements). \n\nThe user account data and the entitlements update with each data aggregation from the source. \nOrganizations generally run scheduled, automated data aggregations to ensure that their data is always in sync between their sources and their IdentityNow tenants so an access change on a source is detected quickly in IdentityNow.\nAdmins can view a history of these aggregations, and they can also run manual imports. \nRefer to [Loading Account Data](https://documentation.sailpoint.com/saas/help/accounts/loading_data.html) for more information about manual and scheduled aggregations. \n\nAdmins can also make changes to determine which user account data IdentityNow collects from the source and how it correlates that account data with identity data. \nTo define which account attributes the source shares with IdentityNow, admins can edit the account schema on the source.\nRefer to [Managing Source Account Schemas](https://documentation.sailpoint.com/saas/help/accounts/schema.html) for more information about source account schemas and how to edit them. \nTo define the mapping between the source account attributes and their correlating identity attributes, admins can edit the correlation configuration on the source. \nRefer to [Assigning Source Accounts to Identities](https://documentation.sailpoint.com/saas/help/accounts/correlation.html) for more information about this correlation process between source accounts and identities.\n\nAdmins can also delete sources, but they must first ensure that the sources no longer have any active connections: the source must not be associated with any identity profile or any app, and it must not be referenced by any transform.\nRefer to [Deleting Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html#deleting-sources) for more information about deleting sources. \n\nWell organized, mapped out connections between sources and IdentityNow are essential to achieving comprehensive identity access governance across all the source systems organizations need. \nRefer to [Managing Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html) for more information about all the different things admins can do with sources once they are connected.\n", "item": [ { - "id": "23d92efb-e1e8-4292-b49c-d07f042cb0a5", + "id": "313da669-692f-4de8-ae20-82077db84182", "name": "Lists all sources in IdentityNow.", "request": { "name": "Lists all sources in IdentityNow.", @@ -110424,7 +110424,7 @@ }, "response": [ { - "id": "9dd6ddc7-7fb9-4cee-949c-84f1f8838e1a", + "id": "8517be69-ad72-4f65-8952-c7f3c44dce38", "name": "List of Source objects", "originalRequest": { "url": { @@ -110522,7 +110522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20b95d3c-0df6-44ab-8677-7fb6b72d2cb7", + "id": "17a8ca51-d4d9-46ad-89f3-ee9b6dacae67", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110620,7 +110620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02daf6b9-82ca-42ab-964c-3acbd6e1e22f", + "id": "2d3d124b-eb94-46e7-9b48-85077065cb24", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110718,7 +110718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dd8a330-80bd-40c7-ba8d-fb8b0f8358b6", + "id": "7bbbb14e-773b-48b2-b571-f943338e4eb1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110816,7 +110816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72db6a36-bb82-40bc-a03c-79bbda8cafcf", + "id": "b73e7a8d-9bd1-4a81-8381-c60358788ea9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -110914,7 +110914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e2c815f-5767-40ec-bc70-540c81995068", + "id": "ea5b875e-8300-4287-a2b7-6928fd5bdaf9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111012,7 +111012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45f977ae-6979-4e9c-b392-a395d8765952", + "id": "9d958050-00f6-4420-9345-891fd2f3dc11", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111116,7 +111116,7 @@ } }, { - "id": "c16c3501-af3c-4265-becf-e94c680a6d16", + "id": "842d869e-12dc-4ccf-ba41-b022e53340cf", "name": "Creates a source in IdentityNow.", "request": { "name": "Creates a source in IdentityNow.", @@ -111168,7 +111168,7 @@ }, "response": [ { - "id": "516f95cc-4f24-4e48-a56c-df2d0380eda9", + "id": "24d79cb7-477b-4676-b2ee-01fe9d3ac1db", "name": "Created Source object. Any passwords will only show the the encrypted cipher-text, as they are not decrypt-able in IdentityNow cloud-based services, per IdentityNow security design.", "originalRequest": { "url": { @@ -111234,7 +111234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b5bfc79-5254-4573-b54e-6480815fa703", + "id": "f4407cdd-76ba-4ce5-be18-0642b709a3a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111300,7 +111300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4b8a4d4-4d8d-4c26-9e1c-f6a48670fefb", + "id": "57c096a1-8269-4108-add8-f18fc512192f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111366,7 +111366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84970abd-b4ff-4cf1-81a2-4b15765cdc8c", + "id": "4b3297f9-2978-4388-b560-71fc989d91e6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111432,7 +111432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66161fa7-443a-4288-be16-56e89aeca5ba", + "id": "daf2454e-c488-47a1-aa7c-d9b166aca83b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111498,7 +111498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3e555d7-b2aa-4433-944f-f58a06bde2a2", + "id": "994b2d5c-456b-4f8b-a1e9-157973c2d3f1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111570,7 +111570,7 @@ } }, { - "id": "fb257054-00d0-4a63-b9ae-132e90a337a2", + "id": "02b4238f-d55e-46c8-930a-f97f35423185", "name": "Get Source by ID", "request": { "name": "Get Source by ID", @@ -111611,7 +111611,7 @@ }, "response": [ { - "id": "b7fbf541-6011-46a4-b8c8-1b79c6b51e33", + "id": "1a3584f0-b6bb-4cad-806a-238bff9a1c34", "name": "A Source object", "originalRequest": { "url": { @@ -111655,7 +111655,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a67fd3af-0ede-4bf1-8d4a-9f4530764c37", + "id": "0b5f98cd-76d7-4e25-aac9-bc9df2acecc2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111699,7 +111699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e629e72-8bb1-4c9d-820c-67fc7f0d66ba", + "id": "2338512b-c185-4ebf-b7c1-5bab16102954", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111743,7 +111743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c9b56c5-29ca-4341-bd82-de042a77ee40", + "id": "21718e0e-b143-4f3e-b628-a3c4c436871f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111787,7 +111787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "651e3fda-02b4-496d-96f6-d9d895a9ae1e", + "id": "8db20a7d-cb1f-4e22-9fff-d91472d156d9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -111831,7 +111831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e515c0b-d523-46f6-8136-7053b5078ba7", + "id": "2fac3167-592c-4efe-88b3-cafdfdcbe2ed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111875,7 +111875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a307d3f-fadf-4252-ae33-47c9a93e3e1f", + "id": "34f3ec34-fc2d-4b0a-9bd9-fb7d9c8271af", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111925,7 +111925,7 @@ } }, { - "id": "3d9422d7-289d-464c-b1e4-d9f782fb75e4", + "id": "1a5c0d39-3544-4f13-84e4-2fbcefcd66ed", "name": "Update Source (Full)", "request": { "name": "Update Source (Full)", @@ -111979,7 +111979,7 @@ }, "response": [ { - "id": "b27b0518-baca-4407-8bb7-dd3e7a94fd5f", + "id": "0021363e-b9d6-406c-b4be-ad6ed36f4e6c", "name": "Updated Source object. Any passwords will only show the the encrypted cipher-text, as they are not decrypt-able in IdentityNow cloud-based services, per IdentityNow security design.", "originalRequest": { "url": { @@ -112036,7 +112036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ae2156d-a4ff-4577-befc-bd4a1d4b6d99", + "id": "384d444f-d9e4-4820-b2fc-92454ffb1b27", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112093,7 +112093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b30854d4-9139-40b5-9149-cda3ad2d38d9", + "id": "6ab90531-1ce2-4ed9-8bb3-9a5030a426a8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112150,7 +112150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ef62823-be90-4149-9bdd-d063dbf45ff8", + "id": "06e67474-26e8-4ce0-87a1-1eaee1856572", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112207,7 +112207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e931bff9-9336-4122-a45a-d444bf9045ac", + "id": "d89ed9f8-e5bf-4eef-a804-dd6ee20ffa58", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -112264,7 +112264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "378fac10-914d-4772-a699-e30fc7c09d7e", + "id": "8364babf-5674-4116-bbd3-51f87a0ee3da", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112321,7 +112321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3c2eed5-84c2-49bc-9a82-743096f0200e", + "id": "671c2c2e-2ff0-46a5-a35d-af2d2fc5d97f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112384,7 +112384,7 @@ } }, { - "id": "8f4ead3c-b0a4-49b7-8df6-5498ff51c671", + "id": "af8cabf4-9066-4fdb-97c9-73631a74f851", "name": "Update Source (Partial)", "request": { "name": "Update Source (Partial)", @@ -112438,7 +112438,7 @@ }, "response": [ { - "id": "c1de128b-f1b5-4c3e-b0be-81650674e9a9", + "id": "50bbd3d8-ecc5-429d-86db-fa0ee2919ab2", "name": "Edit the source description", "originalRequest": { "url": { @@ -112495,7 +112495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76dc8021-0c2c-4747-ba12-ea6230ca9e4c", + "id": "7c6fa082-fd47-4177-956c-2d9566af323a", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -112552,7 +112552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4596f573-0d4d-4aec-8515-a896eb60e297", + "id": "5a070803-c0a8-4ee7-83d3-6a0fef97be28", "name": "Edit source features", "originalRequest": { "url": { @@ -112609,7 +112609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c69963e-9fdb-4ef5-aa8d-c8bd549ae54e", + "id": "3ce48c4f-9494-403e-9f60-e0c7e293afe7", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -112666,7 +112666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bd9b42a-0aae-4a47-9091-a09aca654dbf", + "id": "c449eb18-df2f-4941-9bc1-26215e2cebc9", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -112723,7 +112723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93b99426-1dc3-4148-86d3-e31f01d1ec27", + "id": "077bdd10-c6f9-4b11-a39c-9da856e44723", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -112780,7 +112780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d831a5b-54a2-4e75-8965-225893ab523d", + "id": "366a708e-9965-4f83-9a6e-bda9fb5edda6", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -112837,7 +112837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fbb0c2d-3bc4-4f07-86c1-bb87cdf2cb75", + "id": "2909f8a3-f2a6-4892-b98b-4802e6764672", "name": "Edit source features", "originalRequest": { "url": { @@ -112894,7 +112894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "037a1f50-ccd3-4080-8456-27ce69f22be5", + "id": "75246f81-fd89-4ab8-9f77-390646b46ada", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -112951,7 +112951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b2d0543-1c6f-4ba7-8bc4-e1554fbc63c2", + "id": "056163bc-9023-4905-879e-de1af20a70c7", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -113008,7 +113008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5f2539d-05bc-434a-9c7c-d00f4ab92334", + "id": "141a739f-df1d-4e8e-ab97-8b274916d584", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -113065,7 +113065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb459366-edfb-4e0f-9f10-8466f45161bd", + "id": "5bf7d0ac-78ec-493f-ae5c-3de86b2377b1", "name": "Edit source features", "originalRequest": { "url": { @@ -113122,7 +113122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c57e34c2-b421-4b8e-b469-2bdfcbcafdf5", + "id": "c8414300-c31f-44b6-aaa4-3c286334d994", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -113179,7 +113179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eff6c0b1-e306-4192-9b93-44c4c1329f83", + "id": "20392734-d620-4a88-a1aa-7299100c2230", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -113236,7 +113236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f9a09f7-05f2-471b-82b9-f9c2fae06dfe", + "id": "333a50f7-45a4-4d8a-a1f0-327bab7b5a77", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -113293,7 +113293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2cbfbf5-01c7-451c-993a-ca02ef230df0", + "id": "cfc6d947-1510-4791-8e36-24d067bf1a1a", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -113350,7 +113350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3f00f03-530a-4e62-994b-5eba67b6a13e", + "id": "60233bff-3a64-4e4c-86f4-1de35ad6a779", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -113407,7 +113407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8055440f-2c7f-465d-975b-99ba74b80b38", + "id": "25da7aef-ba82-4e47-90fe-e083362a367a", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -113464,7 +113464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d066885-4cd3-4847-bfb1-8e335071acb7", + "id": "8cad407b-a5e8-4c64-86b1-ab83149989c2", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -113521,7 +113521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8ad95c4-734b-4abb-9da3-2cfd609081ff", + "id": "9faa46ea-8712-4796-ade3-c3d51d4a42b7", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -113578,7 +113578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f16870b-9f30-4ac2-b714-eec17b27af57", + "id": "e7816d4a-b69d-4131-82d6-bbd2cd2bd907", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -113635,7 +113635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46a99091-c64a-4de5-8fea-4ca0e894bc0c", + "id": "555648cf-3bb2-4b6d-b358-6839cc889230", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -113698,7 +113698,7 @@ } }, { - "id": "7982816d-c0e0-4765-b1d3-41a4fd23c2d8", + "id": "5fb81b92-2e27-4c1c-a114-e07ed1975787", "name": "Delete Source by ID", "request": { "name": "Delete Source by ID", @@ -113739,7 +113739,7 @@ }, "response": [ { - "id": "f412d030-cd5b-4749-9e45-5594d2e69bb5", + "id": "2fd033e7-d323-4113-a5f2-9a579334f0ba", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -113783,7 +113783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93eb4c37-36eb-4aa7-9480-7fdde4a25c09", + "id": "78476ad7-ce4b-4707-b365-f115a736df73", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113827,7 +113827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36026036-621a-4221-b64a-dd667d5212e5", + "id": "48fe236a-9534-4164-b540-7905a933d992", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113871,7 +113871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "282539ce-cca9-4f15-9055-8468018e1c64", + "id": "77604c49-fa5d-479d-87d0-d3f4d41158c9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113915,7 +113915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "934445e2-f399-4d52-a9ed-095994966474", + "id": "8838f491-d83c-426e-bcb9-9927a6649abd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -113959,7 +113959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f4fb38a-34c9-4dfc-8907-1e3046b975f3", + "id": "caa82dae-bf94-4829-9fda-34026aa43931", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114003,7 +114003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4931f6e-6ac8-439d-9faf-a1f756871d0d", + "id": "544c752b-11ca-4903-9d67-e4fe474af453", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114053,7 +114053,7 @@ } }, { - "id": "5364ff31-369f-4229-ba27-47ea2058563f", + "id": "da1669b5-95cf-4e51-bd4a-44160c33fd3d", "name": "Lists ProvisioningPolicies", "request": { "name": "Lists ProvisioningPolicies", @@ -114095,7 +114095,7 @@ }, "response": [ { - "id": "be2936e5-30bd-4518-9ca7-0b2e619ee216", + "id": "685c2cce-1c4d-477d-bf28-053cf70731fb", "name": "List of ProvisioningPolicyDto objects", "originalRequest": { "url": { @@ -114140,7 +114140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cc51cd8-7f09-4475-97bb-ec1b13ac8d4e", + "id": "88647a85-29cb-4946-80e5-d6ba9dd12165", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114185,7 +114185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2eca0c49-acad-49b0-b6ae-b193061c9692", + "id": "bc91619d-383a-4543-b04e-c37715f24f7b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114230,7 +114230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a907d096-f0b1-4eb5-b27b-e09367e19f09", + "id": "f051cfb5-9c7a-4a79-ab61-77e9915d6b4e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114275,7 +114275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "227778c6-02bd-4e34-abd3-be372b4659a4", + "id": "7a162ae2-b0e1-40ae-a280-89a571735d37", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -114320,7 +114320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80b4bb00-c624-4cfc-bbde-7f91b5cf6e5c", + "id": "f81d13c3-8109-448f-b1a8-fc89616dca15", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114365,7 +114365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77cd4840-62aa-4b47-835a-819a33bfb407", + "id": "ac554e65-9859-4c0a-8817-2c5df281fae3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114416,7 +114416,7 @@ } }, { - "id": "229b0077-2868-4985-abb3-736c1ad19493", + "id": "958ce150-7ab9-4717-97cf-c0bb9a411cad", "name": "Create Provisioning Policy", "request": { "name": "Create Provisioning Policy", @@ -114471,7 +114471,7 @@ }, "response": [ { - "id": "84d7484f-0bdf-46e8-96ba-df8b62be4359", + "id": "e423bbcf-2108-400f-85eb-55db70087999", "name": "Created ProvisioningPolicyDto object", "originalRequest": { "url": { @@ -114529,7 +114529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "709a2a50-37d3-4654-a498-2422d3c64ff6", + "id": "d259851f-9f85-4a67-8abf-db032b24a0ae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114587,7 +114587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc355dfd-ef3d-40f9-8b9d-df0286d479d7", + "id": "6273a098-f27b-490f-8058-3c5af724e96a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114645,7 +114645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d8b5819-18f2-4806-821b-29710c53edd9", + "id": "acb998ca-cb95-41fa-924e-618ad49450a5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114703,7 +114703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ce25553-bc17-4608-a6bf-e22c016060f0", + "id": "9d767687-38fc-4cb4-a3ba-842c710c5322", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -114761,7 +114761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eea170ec-1c88-4fc0-98a5-ca51e5439748", + "id": "c72c3307-bd30-4b7d-bbcb-8aebbf8b8ab8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114819,7 +114819,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95ac956c-ccb1-4c9d-8524-8f7791a4be4d", + "id": "32028f20-e559-460f-8106-7ae348b3e21d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114883,7 +114883,7 @@ } }, { - "id": "389288b5-535c-40bd-a623-3003dc78ea75", + "id": "0abed7d8-47d3-41ea-ac6e-4aa7b4622bef", "name": "Get Provisioning Policy by UsageType", "request": { "name": "Get Provisioning Policy by UsageType", @@ -114936,7 +114936,7 @@ }, "response": [ { - "id": "fa2f0bb4-75e0-4f36-a56d-0a4911fc5f0c", + "id": "12c39e62-f513-4945-859b-4c2a4f441981", "name": "The requested ProvisioningPolicyDto was successfully retrieved.", "originalRequest": { "url": { @@ -114982,7 +114982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c0891be-76fe-4733-ae7b-0113b3a96344", + "id": "55394d76-6929-4ea1-876c-5749013d2495", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115028,7 +115028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb7500c6-70e0-4921-9eaf-4eefe7af1e9b", + "id": "608886b2-b558-463c-bfe9-10648c05dfe9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115074,7 +115074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ad78165-9847-45ba-a33f-3b4804bac775", + "id": "a999ecc1-ce63-45fc-b633-6e9abdc576ba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115120,7 +115120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "565ed0ac-83e9-483f-8605-2713e9757fb7", + "id": "79749d4b-5c29-45e6-9710-af5428a1ded9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -115166,7 +115166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d64c0d81-da23-4367-970c-7ff71313e642", + "id": "2b0a9906-d41f-4a2a-badc-b5b42e3649fe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115212,7 +115212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2391eb5-5e1a-4d1b-bc79-5ebd31218761", + "id": "e369cfad-ba0f-4f2c-a365-d037da0250bc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115264,7 +115264,7 @@ } }, { - "id": "769eafc2-ab1e-4edd-98b9-95a2469c1781", + "id": "891e3a59-698b-4394-84ba-95abcec16231", "name": "Update Provisioning Policy by UsageType", "request": { "name": "Update Provisioning Policy by UsageType", @@ -115330,7 +115330,7 @@ }, "response": [ { - "id": "0d160c20-526d-4e65-ab63-6bb14be196b0", + "id": "a8cbdaef-afbe-48ba-b25a-500a70ba8849", "name": "The ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -115389,7 +115389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a7ba773-21eb-4089-8e8b-1c1319394ef1", + "id": "d250e64c-3ea7-4915-8e9c-ebed32b72ffd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115448,7 +115448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4819b69-5355-457c-a8a8-f22b0b86eb4d", + "id": "a2667225-929e-49e4-8f0c-bc147a3e174a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115507,7 +115507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e3c344b-8391-43fa-9234-0e7af090242c", + "id": "a467076f-bd86-4bc6-b973-ba2af9b980a9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115566,7 +115566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ea6b525-85a3-4dd0-bd9d-acd2c707b229", + "id": "0292c8f9-c254-4e4e-8cea-909efcdf4ad5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -115625,7 +115625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "678d49bf-f185-4e8a-b224-41cee74ecbb1", + "id": "20b38cb0-4634-418e-93e6-4c3f448ca24c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115684,7 +115684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dccd1307-d1bc-409a-8453-5972b39c4bcb", + "id": "7dd228da-3beb-49a8-ac4c-821f4bf3885e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115749,7 +115749,7 @@ } }, { - "id": "bcc1d8e5-3c3d-4a09-a298-3f7daba8842e", + "id": "5b9c481d-fccc-448a-8697-a3b905380a7b", "name": "Partial update of Provisioning Policy", "request": { "name": "Partial update of Provisioning Policy", @@ -115815,7 +115815,7 @@ }, "response": [ { - "id": "cba92722-62eb-487f-bfd4-92cf40cc084b", + "id": "b23646fe-536d-49a5-b1d5-19c3cca8336f", "name": "The ProvisioningPolicyDto was successfully updated.", "originalRequest": { "url": { @@ -115874,7 +115874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d95729e-5707-4cf1-87de-96d701f87d34", + "id": "ea10a042-8d34-45f0-981b-db6bac700f9e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115933,7 +115933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d982d2ea-8811-448f-8969-c7f2d961cc73", + "id": "0bb5d2eb-1c02-40e7-9ab8-e6978cab24cb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115992,7 +115992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f690ce83-f163-4bfa-9b5d-81463511ff65", + "id": "c50521ba-11a5-42f0-b9b2-13c5f21ed339", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116051,7 +116051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a52144a7-3485-4001-9740-b0ae8ee0c7c0", + "id": "23438bee-b286-46ad-9bb3-e1c953373f57", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -116110,7 +116110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "099ad0bd-bf19-40fc-8292-1b2c7f6bb4b7", + "id": "84c8fcd1-1354-4651-8553-793a093a312e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116169,7 +116169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a582b8c-b1d3-40f7-901d-6a12adc1c8d3", + "id": "24d5f2a5-7697-426d-9f58-eca71cc8f10b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116234,7 +116234,7 @@ } }, { - "id": "19d3cb9b-1f33-4de2-b032-daf3bfcb33c0", + "id": "1565b899-8586-4933-a20c-f0bc3e88ff20", "name": "Delete Provisioning Policy by UsageType", "request": { "name": "Delete Provisioning Policy by UsageType", @@ -116287,7 +116287,7 @@ }, "response": [ { - "id": "becb4b55-cf5b-44d5-a631-2a35a4213254", + "id": "33a9805d-5b71-4a1c-8a89-a6bf610bb9b7", "name": "The ProvisioningPolicyDto was successfully deleted.", "originalRequest": { "url": { @@ -116323,7 +116323,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f438be2e-eff5-439a-baf5-5d9531536bbe", + "id": "4cce9128-b1c5-4aa0-acae-4726186b41b5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116369,7 +116369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf6f5b08-deb2-4cb2-8dc2-10f6ad337355", + "id": "09121081-57ca-4c53-86b0-2bc383e51ea6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116415,7 +116415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "023c3f19-b520-45e3-866a-b2ab9b72016c", + "id": "a9949b22-516c-445e-8879-16247bf7c998", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116461,7 +116461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46da45ad-031b-4347-9bf6-8884c91d0efc", + "id": "cec0ce7e-7a00-42ce-b292-bf6720bf1c60", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -116507,7 +116507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c5ea108-8771-46f9-9d9b-108ac7393f7f", + "id": "0b141c5b-8bcf-448f-ab99-4df4e5514622", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116553,7 +116553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "958d98bf-cfca-4e2c-a578-6f694e214e43", + "id": "57b10e7e-4077-4190-a8e2-556179787a34", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116605,7 +116605,7 @@ } }, { - "id": "2b8874cf-4996-46ac-b533-d7b82fe56d05", + "id": "7d5542cc-d972-4ed3-a56c-a3c82755c88f", "name": "Bulk Update Provisioning Policies", "request": { "name": "Bulk Update Provisioning Policies", @@ -116661,7 +116661,7 @@ }, "response": [ { - "id": "e239efd2-fb79-4aef-b0ca-e49d697fbf29", + "id": "d6906ce3-3580-40bb-8ca5-99a33ce2a88d", "name": "A list of the ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -116720,7 +116720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac393965-6185-4c8e-baa6-7996da045a9a", + "id": "36e22dc2-e793-4097-8285-c288f1b69579", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116779,7 +116779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "931813d0-d6fa-42ae-9899-3864ba2c42b0", + "id": "3c330be2-699d-45f9-b7e0-4da7a2b51fc7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116838,7 +116838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1c3e5b1-acdf-4f63-b7b3-3fccb3ed1172", + "id": "8336959f-cf20-4d44-a9f9-c1756f8119fe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116897,7 +116897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa93ea5f-f18f-4f52-9f18-ad6eb3c09c0b", + "id": "6e79de45-8864-4669-8fdd-d7c2331dc2c7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -116956,7 +116956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fc0f7d9-fb2e-4be2-9a53-6a38eb87152d", + "id": "7b2abe33-200c-41fd-a4dc-9da562419ae0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117015,7 +117015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e5c7d79-1e38-4014-ba16-333e7ee96464", + "id": "d773b367-8e3c-4b6a-8e79-184e6d8e46ba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117080,7 +117080,7 @@ } }, { - "id": "16385816-e9c3-4052-83b5-d5d5ccffb126", + "id": "35b99261-2e00-4ffb-af0c-bb51e4a59dfb", "name": "List Schemas on a Source", "request": { "name": "List Schemas on a Source", @@ -117132,7 +117132,7 @@ }, "response": [ { - "id": "42ffdeeb-3b0a-45d1-88bd-6d70afe5828c", + "id": "e431523c-0a9d-476c-bc41-cbf442ebd187", "name": "The Schemas were successfully retrieved.", "originalRequest": { "url": { @@ -117187,7 +117187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e26c9183-c43c-463b-8966-155f17573776", + "id": "27a0464f-9e93-4c28-b880-b0bc0c463744", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117242,7 +117242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8b72c5a-0e03-4bb4-ba44-08dab7f194f6", + "id": "79b6d16b-1598-4f36-a03d-07ef2d129784", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117297,7 +117297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "047d8a73-0d07-44f6-8549-233ad9f1a700", + "id": "5e9b9b00-72c4-4be4-832e-a37c5abb8ee5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117352,7 +117352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a84eb619-5f86-4228-8b61-02376e559546", + "id": "16eaac8e-dbcb-48b5-9612-bc8d9979e736", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -117407,7 +117407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "163191db-5614-441c-ae64-1879e99c5350", + "id": "b272c7a3-0f7d-4bd9-8335-ea734ae22140", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117462,7 +117462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a761fc0f-eca2-45d0-a495-691febaecf43", + "id": "40f243f5-f30b-4667-8bef-8f61a405b660", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117523,7 +117523,7 @@ } }, { - "id": "6e4c800f-c6bd-4535-bef5-253dca11b305", + "id": "3c20955f-a22a-4f47-80f0-5fd3582aa4be", "name": "Create Schema on a Source", "request": { "name": "Create Schema on a Source", @@ -117578,7 +117578,7 @@ }, "response": [ { - "id": "78be6432-6484-43fc-8332-79efbb37e17d", + "id": "009fe708-4624-4f0d-841d-0787ffa74001", "name": "The Schema was successfully created on the specified Source.", "originalRequest": { "url": { @@ -117636,7 +117636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bccb3408-a46b-43eb-a5e3-d643c05c893c", + "id": "5fb72aac-2abb-4e1b-9d3a-0d109f07facf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117694,7 +117694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a53fb5d1-d4a6-4dc2-91ad-77e57bc00e17", + "id": "b68b9e94-c58f-42f9-8e20-af7b958b9c99", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117752,7 +117752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e704df4-f1c1-40de-a172-7cbf8d7191a3", + "id": "020c51e5-1396-4d6a-b466-0de30220b182", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117810,7 +117810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b4dd961-f1cc-4d1e-856e-a91ceb1e0266", + "id": "9c162e25-d346-4354-b0b6-facec3e76e8a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117868,7 +117868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ec06628-0246-44be-8010-18723f47755f", + "id": "6c12b8cc-d120-4d85-a109-ade2fcb21aa4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117932,7 +117932,7 @@ } }, { - "id": "e3656c67-a92a-43e9-a2b7-7afbdda0c122", + "id": "7860f13b-1e7f-41d1-b95f-7d79defe074d", "name": "Get Source Schema by ID", "request": { "name": "Get Source Schema by ID", @@ -117985,7 +117985,7 @@ }, "response": [ { - "id": "1c4e69a8-184b-44e6-94aa-80bbc92761b2", + "id": "b5eefb98-63cc-4c27-a9eb-6e0f276e730a", "name": "The requested Schema was successfully retrieved.", "originalRequest": { "url": { @@ -118031,7 +118031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be9da0ed-259d-47f3-86f1-2e2a2b9259d2", + "id": "e005294e-a4d5-42f6-adbb-771c8224db7a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118077,7 +118077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d1ef83b-d101-45ee-9661-2b023a34c299", + "id": "eb09b7a3-3e99-4b80-8724-b0695da0243f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118123,7 +118123,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b97740e5-1bc5-4879-950a-727f0ae7300e", + "id": "608710e4-bfc9-47b8-bbcf-50dbdbbc21e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118169,7 +118169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9318b555-c9d4-4179-9eb0-85a252a88728", + "id": "7333339c-b81f-4008-a9ed-88bef8ced0d3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -118215,7 +118215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dbff218-9f53-4dc8-bfad-d3a5c94553b1", + "id": "d9cc07e0-9301-4740-8f33-07462797c3dd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118261,7 +118261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7c3a15d-1a8e-43e1-8474-9e636a2bb59a", + "id": "50bf9fe6-f605-4398-af70-fa74c013cd6a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118313,7 +118313,7 @@ } }, { - "id": "90b2845d-1f4f-41a9-9e86-eb7efa3bd570", + "id": "44691dd8-5616-4dd0-bc87-0ad743f1a35d", "name": "Update Source Schema (Full)", "request": { "name": "Update Source Schema (Full)", @@ -118379,7 +118379,7 @@ }, "response": [ { - "id": "7ff05974-784f-4804-81ef-c05e82a08289", + "id": "ac94fcd1-ffcb-41a4-8709-14300673aaa2", "name": "The Schema was successfully replaced.", "originalRequest": { "url": { @@ -118438,7 +118438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61440a27-b35f-47a8-9251-99027dc2f46e", + "id": "b041215d-ef7e-4a9a-9de6-0b3c3bb8483c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118497,7 +118497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ffb52d1-7b1c-40ef-9cf3-dd51ebae1dc3", + "id": "566c163a-2d5f-4746-95f7-979cbe0b9bd6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118556,7 +118556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "342401c9-d086-4a84-84d0-17ce241d5206", + "id": "eafb9c38-b375-4e8f-ada5-b012f691dabb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118615,7 +118615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b757f61-9cd3-4d24-877e-d9f7cbbdf38e", + "id": "5927baf8-62d9-441b-a19e-f5932ab5b580", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -118674,7 +118674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79338083-3a6c-4ae2-a7d2-9237d48b36ae", + "id": "191cebab-1828-4b71-a7d2-c1eb8712ad53", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118733,7 +118733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa09490a-b708-4502-a700-7afc3ecd51ce", + "id": "0b95ced6-0d9e-4d60-a1ab-37aecf43fd0e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118798,7 +118798,7 @@ } }, { - "id": "c032ea94-5d23-454e-bef3-e740e9496ef8", + "id": "c43b23a3-551c-4e90-9fed-e31b6eff45ab", "name": "Update Source Schema (Partial)", "request": { "name": "Update Source Schema (Partial)", @@ -118864,7 +118864,7 @@ }, "response": [ { - "id": "0607e198-fb57-422a-9fba-f9348c5bde6d", + "id": "8fd3db5c-89db-488f-aae9-f6d4b8cb1c19", "name": "The Schema was successfully updated.", "originalRequest": { "url": { @@ -118923,7 +118923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc6a6eb4-ed2d-4a77-87ca-3808aed4174b", + "id": "d9734f15-6144-4398-8f9f-9ae37164dbc5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118982,7 +118982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d8e1d69-ecad-4b7c-a7aa-f704ce6bf9f7", + "id": "91e4b145-2f86-443e-a76f-db657ebc4c78", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119041,7 +119041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fb21148-451e-4460-927b-6a174ecc571a", + "id": "93fb5cf9-6d98-4ede-88d7-b6039a2fd8d4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119100,7 +119100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "710a7be2-1d64-4e3f-9be8-efa995965a6b", + "id": "7040e0f3-6c29-40c6-b5c9-3a9f2b160aec", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -119159,7 +119159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d28258bb-edbf-4677-9b3c-3a0bc0ef707a", + "id": "ab9a7ad3-d076-4875-a3e0-bb9f613bce95", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119218,7 +119218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2762213f-4a1b-4799-abfb-d539b3ae4236", + "id": "e192f4e9-54d5-4574-96b9-8d1c9cb2c5a6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119283,7 +119283,7 @@ } }, { - "id": "f304861b-d3f7-4b20-b726-c0fc589527a8", + "id": "18ab09d7-884b-49d3-9777-f1e919b040b5", "name": "Delete Source Schema by ID", "request": { "name": "Delete Source Schema by ID", @@ -119333,7 +119333,7 @@ }, "response": [ { - "id": "87f00754-f130-4f78-b3d6-bdb0c2b9f0b6", + "id": "6734a13e-7eac-41cf-9284-a84f96e6f8d4", "name": "The Schema was successfully deleted.", "originalRequest": { "url": { @@ -119369,7 +119369,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b1f1bcdc-08e3-4086-973b-c897ef5f8ad9", + "id": "76b0078f-d238-4439-b9b4-48f706d9e9d9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119415,7 +119415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cd2f775-31b4-4465-806d-35337baa62ae", + "id": "c25b27f7-e29f-4169-bd75-c313dc8ea686", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119461,7 +119461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "517f6450-607f-40b9-b43f-2835c83ad759", + "id": "a454ff31-1b8e-4ee3-b960-66a7eca5752a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119507,7 +119507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdefc916-5188-4731-8ad9-55245a0b4d10", + "id": "fc9c711d-01ce-4e51-83a0-c16a8d20c858", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -119553,7 +119553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ae5f33a-925f-4a08-9e4d-eee8d027d37d", + "id": "c532312d-cd40-4c7e-adfa-c396d9cad72d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119599,7 +119599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ab54321-b2ed-43be-8e82-3c342473aa93", + "id": "614babe7-07d1-4617-be48-9ff34e813f55", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119651,7 +119651,7 @@ } }, { - "id": "802080a1-34b4-4631-af94-b48cbee836dd", + "id": "1d7a2dd0-7b66-46b9-8dff-1d1fb693a44d", "name": "Fetches source health by id", "request": { "name": "Fetches source health by id", @@ -119693,7 +119693,7 @@ }, "response": [ { - "id": "1499b2d4-b2a5-44c3-a8d5-942b1732262f", + "id": "78f70f4d-7233-45da-bc82-30719e307e82", "name": "Fetched source health successfully", "originalRequest": { "url": { @@ -119738,7 +119738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f494aea-958c-4bcf-ad17-d25533d65e20", + "id": "e67b06a5-9270-40d7-b42c-6cf02518150e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119783,7 +119783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3e7d2f8-5a9c-4f0e-8d6c-69e44fc6d141", + "id": "ed6d1c66-8629-4c3b-9fca-de20be6d21a6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119828,7 +119828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75b9f34c-0843-4d23-bf17-be73b0f66e02", + "id": "fc5a608c-5cd2-461e-9b15-0df92e731533", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119873,7 +119873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da8f5585-400a-42b3-be63-f127f4ffe325", + "id": "694a4468-06ae-4eab-947a-a27a610862cf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -119918,7 +119918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72f645b0-ca2d-4128-8f82-f5f1a7d04a5b", + "id": "a5ef3db9-a987-4b18-8129-ecd1f57211cd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119963,7 +119963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e29429a-2a04-4c0c-b0c7-690164eec2c9", + "id": "534557bb-0279-4bee-89b2-a4f447573fcd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120014,7 +120014,7 @@ } }, { - "id": "1a4f35b7-0f6b-4c4c-b97c-84256858f9f1", + "id": "be825918-473b-48e9-acc6-d8734b991381", "name": "Downloads source accounts schema template", "request": { "name": "Downloads source accounts schema template", @@ -120057,7 +120057,7 @@ }, "response": [ { - "id": "e92b938a-5185-4fca-8030-c59934b4b796", + "id": "3cbe2131-5a63-41db-805b-c1e2aec592c2", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -120103,7 +120103,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2e4db30a-ebe5-418b-862e-7a7c6619d0bd", + "id": "535d4f30-8e4d-4d17-bb38-bf3f0fde0b3c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120149,7 +120149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33896b99-2567-4fc8-9d59-95b7225345b6", + "id": "36f60a20-e055-4c8f-bbc1-41a3be741d10", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120195,7 +120195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ffe7105-c70c-4d5e-84ee-4714d39dd383", + "id": "e7cc81a4-f4a8-46b2-8954-21bf90add966", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120241,7 +120241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcdb276c-e562-4c8e-9c8b-715a1dff4b69", + "id": "5b16d1ab-bbdf-4cea-b9af-988f693abedf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -120287,7 +120287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a01a5c1-4172-4929-950a-7598991887c2", + "id": "352e36c5-f6e1-4948-adf6-0470907245c0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120333,7 +120333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd1348f1-f7a3-40bd-ad9e-6a94bd897c82", + "id": "3187f323-11a4-4c4f-b489-7d7c04041fb5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120385,7 +120385,7 @@ } }, { - "id": "8d3c3390-93c3-44c6-9bb3-196cb1093e7a", + "id": "1c1196f4-6346-478b-b562-ab7296e85ff7", "name": "Uploads source accounts schema template", "request": { "name": "Uploads source accounts schema template", @@ -120437,7 +120437,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -120445,7 +120445,7 @@ }, "response": [ { - "id": "7f5d7ae2-f560-40ba-b52c-2bc0c9557d99", + "id": "ed0e7a09-2c33-4abb-bb4c-ed2f604d6cb3", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -120489,7 +120489,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -120508,7 +120508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa8b1bde-cb18-48af-8fc2-541237c2c667", + "id": "0bffc0d8-57b6-43b8-a6a2-04e0f46a361e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120552,7 +120552,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -120571,7 +120571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39d8b50a-364c-4a8b-828a-e0a2002823d9", + "id": "af4be592-8e52-4f66-87e8-acc0dab3f00c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120615,7 +120615,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -120634,7 +120634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59e784f3-9583-412e-a2e2-6039f2205881", + "id": "9ea79e34-b99b-498b-93a1-be36be28a6c3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120678,7 +120678,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -120697,7 +120697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5ae4f99-a118-48f6-aa41-82a43db8747c", + "id": "b9abcb98-390c-442b-9bfd-f5d05cd1f178", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120741,7 +120741,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -120760,7 +120760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "179efc0b-76e3-4f3c-a7e9-8fb49599b7fd", + "id": "099e6416-1931-4c6e-acdb-bb99eb428d99", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120804,7 +120804,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -120829,7 +120829,7 @@ } }, { - "id": "51153756-607b-488e-b641-f630c0f5d477", + "id": "06ec3733-4b36-4ec2-86ff-aab2fc259954", "name": "Downloads source entitlements schema template", "request": { "name": "Downloads source entitlements schema template", @@ -120882,7 +120882,7 @@ }, "response": [ { - "id": "d3cbbe47-7ac4-49a9-aab6-129fcb019453", + "id": "fdfca910-176f-4441-a604-0f13df055350", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -120938,7 +120938,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4454fda5-8057-4aeb-89e4-62f149ad7b3a", + "id": "28a4de2a-d34c-4b27-b571-a377e7ef8450", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120994,7 +120994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f8cb190-72fa-4d9a-a929-ba074b49f4df", + "id": "9976864a-35b5-45b5-95f1-caa8e9650472", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121050,7 +121050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6070ce1-6913-4917-82ae-3873a942981c", + "id": "fcb697ba-e618-4487-8049-5a4038a3802e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121106,7 +121106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b400575a-8f71-45cd-97b0-5f7a47bfd2bb", + "id": "eb8cac9e-888c-4fb8-ab51-bb979df8289c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -121162,7 +121162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7e34142-b23b-4087-8bbe-ccf18c2acd7a", + "id": "50ebb2d7-6a3d-4c66-a180-114e1a952495", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121218,7 +121218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ca1f934-cace-4896-bb15-a4af5adff5e3", + "id": "4b63752c-5034-4f6b-967c-008dc973222b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121280,7 +121280,7 @@ } }, { - "id": "54a27c45-8ece-4b3d-957f-5f2a90378499", + "id": "060e6b16-84c4-4c66-b2bd-55901934cea2", "name": "Uploads source entitlements schema template", "request": { "name": "Uploads source entitlements schema template", @@ -121342,7 +121342,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -121350,7 +121350,7 @@ }, "response": [ { - "id": "cb128d4b-d7cb-4d67-96e6-fb895c7155af", + "id": "2400a710-3892-48c0-be10-adb693647428", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -121404,7 +121404,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -121423,7 +121423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0e9d8ef-ff2d-4e0a-8e81-882cf1b6a416", + "id": "b930fa24-9ac7-406c-a9be-b6f58bf1c772", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121477,7 +121477,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -121496,7 +121496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77b93e47-5c94-458a-8ea1-d187afb8c4e3", + "id": "cc990c6f-2980-433b-a8b9-fa2270f03c0f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121550,7 +121550,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -121569,7 +121569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "324e551e-dee9-44d3-8e5f-52df6b853110", + "id": "6f7356f0-3450-46ff-991a-c30ff2af2164", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121623,7 +121623,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -121642,7 +121642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87dcd700-dbc6-46e8-ba16-738a64f0fcab", + "id": "a4041f90-4b42-4124-905d-94705f0147d4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121696,7 +121696,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -121715,7 +121715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bc5de89-53d1-4f28-80c1-5dac1baeb6fe", + "id": "4d6b45d9-cd61-492b-b686-6b09caea4bcf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121769,7 +121769,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -121794,7 +121794,7 @@ } }, { - "id": "e21efc59-463c-4158-a8d9-d4e1ee413993", + "id": "d9caeab5-0724-4e0e-b136-0e66b0443460", "name": "Upload connector file to source", "request": { "name": "Upload connector file to source", @@ -121845,7 +121845,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -121853,7 +121853,7 @@ }, "response": [ { - "id": "3b294132-2cc4-411f-a8a8-986e62dd3d56", + "id": "0e85436c-987a-4225-afcc-82233d081a7e", "name": "Uploaded the file successfully and sent all post-upload events", "originalRequest": { "url": { @@ -121896,7 +121896,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -121915,7 +121915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34210d56-430e-47f2-b7b3-dda49bb1a562", + "id": "1f658b64-5176-4a77-bc32-1f3fc064bb70", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121958,7 +121958,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -121977,7 +121977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9e09b12-1cc8-4b6e-82e4-6fdf22823f30", + "id": "64841aaf-141e-43f5-a032-4ea2d3b081f5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122020,7 +122020,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -122039,7 +122039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7aafa8d5-c713-46e8-9509-704e77100f5b", + "id": "ed8d4baf-2146-4a94-826a-2365f2edf7b3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122082,7 +122082,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -122101,7 +122101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27eeadc5-43a3-4df2-85c6-87571781f6ba", + "id": "c7490c0b-4164-46a6-8b16-2ed00684daa5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122144,7 +122144,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -122163,7 +122163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f137b9d0-6c16-4dd4-ad6e-cf3e3e807863", + "id": "cac284f4-4cd7-4f6c-919b-0e736b1429c7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122206,7 +122206,7 @@ "type": "text/plain" }, "key": "file", - "value": "anim quis nulla", + "value": "mollit labore aliqua proident ut", "type": "text" } ] @@ -122237,7 +122237,7 @@ "description": "Use this API to implement object tagging functionality. \nWith object tagging functionality in place, any user in an organization can use tags as a way to group objects together and find them more quickly when the user searches IdentityNow. \n\nIn IdentityNow, users can search their tenants for information and add tags objects they find.\nTagging an object provides users with a way of grouping objects together and makes it easier to find these objects in the future. \n\nFor example, if a user is searching for an entitlement that grants a risky level of access to Active Directory, it's possible that the user may have to search through hundreds of entitlements to find the correct one. \nOnce the user finds that entitlement, the user can add a tag to the entitlement, \"AD_RISKY\" to make it easier to find the entitlement again.\nThe user can add the same tag to multiple objects the user wants to group together for an easy future search, and the user can also do so in bulk.\nWhen the user wants to find that tagged entitlement again, the user can search for \"tags:AD_RISKY\" to find all objects with that tag. \n\nWith the API, you can tag even more different object types than you can in IdentityNow (access profiles, entitlements, identities, and roles). \nYou can use the API to tag all these objects:\n\n- Access profiles \n\n- Applications \n\n- Certification campaigns\n\n- Entitlements\n\n- Identities \n\n- Roles \n\n- SOD (separation of duties) policies\n\n- Sources \n\nYou can also use the API to directly find, create, and manage tagged objects without using search queries. \n\nThere are limits to tags: \n\n- You can have up to 500 different tags in your tenant.\n\n- You can apply up to 30 tags to one object. \n\n- You can have up to 10,000 tag associations, pairings of 1 tag to 1 object, in your tenant. \n\nBecause of these limits, it is recommended that you work with your governance experts and security teams to establish a list of tags that are most expressive of governance objects and access managed by IdentityNow. \n\nThese are the types of information often expressed in tags: \n\n- Affected departments\n\n- Compliance and regulatory categories \n\n- Remediation urgency levels \n\n- Risk levels \n\nRefer to [Tagging Items in Search](https://documentation.sailpoint.com/saas/help/search/index.html?h=tags#tagging-items-in-search) for more information about tagging objects in IdentityNow. \n", "item": [ { - "id": "96d4c63e-581e-4bef-b631-6c9ec6feecbd", + "id": "16314057-e59d-4520-851a-8b1a086e4756", "name": "List Tagged Objects", "request": { "name": "List Tagged Objects", @@ -122303,7 +122303,7 @@ }, "response": [ { - "id": "3c2e3f64-39f5-4bc8-b26e-8139329399de", + "id": "c94a9201-d0e0-446c-ab51-475cdc89725e", "name": "List of all tagged objects.", "originalRequest": { "url": { @@ -122383,7 +122383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1607e4f2-dd10-4eb8-908e-ef0a609c92b2", + "id": "a998bb22-8d8e-4c9d-94b9-463145e3bd76", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122463,7 +122463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b96e729-d12a-4794-bc7e-f59b4d16b1ec", + "id": "777f37b6-7f55-46da-af44-888f84fd5ac9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122543,7 +122543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a24f7396-c2f0-4f40-bcb3-b992b8fbd6c6", + "id": "38b01773-5a62-428c-9b68-479f0f452dde", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122623,7 +122623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9c3deb8-230a-4732-a095-20d6a2bfbc16", + "id": "980016ad-e2da-4859-b610-ab58e5320b32", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122703,7 +122703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a72531d6-61b7-4371-9230-a38a1bed24b1", + "id": "b288db7e-598c-4abe-857c-4885862cdca5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122789,7 +122789,7 @@ } }, { - "id": "f8e4d32a-fc0e-4210-a0be-176f7118e83d", + "id": "9f088794-2ac5-42b9-a2ad-560c5a913542", "name": "Add Tag to Object", "request": { "name": "Add Tag to Object", @@ -122831,7 +122831,7 @@ }, "response": [ { - "id": "b311e440-dc33-4bfc-a98f-205ea450a8d9", + "id": "41844a9c-d8c5-4232-b48e-37b895321df7", "name": "Created.", "originalRequest": { "url": { @@ -122877,7 +122877,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1b1f05a8-5451-4233-9cff-1b663f9fe811", + "id": "a15977ef-18c7-490e-941a-5e0942ac905a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122933,7 +122933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "976b2230-6101-48d2-b4e6-8cbd588afbbe", + "id": "fc54e596-dfe3-4dcc-9082-9732eee8195d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122989,7 +122989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab93a841-4f22-4d22-97b2-f45a8a038c75", + "id": "91fd7d48-7ed5-4fa0-9039-75b8ed97cd1f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123045,7 +123045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de1958d2-393b-4655-9b95-c87f9162e63b", + "id": "e82269e0-1946-42f9-aa7c-11a65b7f85de", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123101,7 +123101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88948519-90c3-4570-99a9-d780c9960eaf", + "id": "963fde1e-bafb-40b9-9484-036f07c23649", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123163,7 +123163,7 @@ } }, { - "id": "60318c41-e795-4222-95be-0e4787940eef", + "id": "2ce4c36e-f8db-479b-b701-c68e2199beb7", "name": "List Tagged Objects by Type", "request": { "name": "List Tagged Objects by Type", @@ -123241,7 +123241,7 @@ }, "response": [ { - "id": "ad2d65a2-48ec-4704-bf39-596f275d9ed7", + "id": "0b79c7bc-345b-446d-a5d1-6e1b6962bd54", "name": "List of all tagged objects for specified type.", "originalRequest": { "url": { @@ -123322,7 +123322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "281e1cbb-3574-490b-aebc-c0ec4967bdc1", + "id": "de1981c9-3ff7-4f78-acd6-f72334b4f073", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123403,7 +123403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "542893f7-146e-4ae8-b5a7-4f2e614e693b", + "id": "c22a3227-dadc-4b1c-b2e8-6b457a775c06", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123484,7 +123484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9871b38-0823-4d7f-9b4b-257f139380ec", + "id": "1a0873f9-f61d-4c1e-bf58-8722552e8dc3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123565,7 +123565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46ce8f1c-6094-4453-acf2-7d477f68ca3e", + "id": "19d0b3c5-a141-471a-968c-5cd409108318", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123646,7 +123646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d434bf9-e202-4076-9667-264215b17ee0", + "id": "ef87d138-7794-481a-8603-e1c6dca124af", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123733,7 +123733,7 @@ } }, { - "id": "704b3855-ae11-4e15-9ac6-565b5f6e1cab", + "id": "06eac799-ac48-44e2-80f4-d6f6733b557b", "name": "Get Tagged Object", "request": { "name": "Get Tagged Object", @@ -123785,7 +123785,7 @@ }, "response": [ { - "id": "6b436562-ab16-4af9-8b36-4a0726bb21a5", + "id": "6c23fbee-fa5a-4bb4-98ff-0805df266726", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -123830,7 +123830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12905151-81c8-4ec1-b385-b40dd67af99a", + "id": "35e26be2-8efc-4b46-ada4-62be58ccf7be", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123875,7 +123875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf5cfe3d-6bf1-411d-8781-c220e8c05254", + "id": "f3997fa3-2e8d-4007-9cb8-daa7650fead5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123920,7 +123920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d854e52e-96f7-4b15-8157-056a95e4f2ae", + "id": "e91027a1-ad75-4afa-85f2-2beef5e8865c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123965,7 +123965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14e7b79c-63a7-446b-8ce7-14636cef16ca", + "id": "dada7f54-5a6d-4b39-8376-4d570c5f2127", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124010,7 +124010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98b25026-419b-4dcc-93a3-94907d756784", + "id": "4f162c3e-275c-46c7-8cf8-ace3dfcd4b13", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124061,7 +124061,7 @@ } }, { - "id": "1d9dd02e-b699-4ea5-b380-f1f1c7d533f7", + "id": "35405459-bf92-4cc2-a08d-6591a97f5f2e", "name": "Update Tagged Object", "request": { "name": "Update Tagged Object", @@ -124126,7 +124126,7 @@ }, "response": [ { - "id": "3da6dd02-6d00-4789-9a28-933f90e3d2f3", + "id": "b662e7b2-0936-4ac5-8a94-bb1e71590741", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -124184,7 +124184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1c4a8a9-40d0-48d6-bb24-12f04fe2e659", + "id": "62113b5f-2453-4bb7-96c0-8cc2dbc98ca2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124242,7 +124242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9509c25-8059-4bbc-8ffd-ce65b0ac594f", + "id": "7cea3880-888b-4aef-b99f-158b55852b22", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124300,7 +124300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c24c01ae-36ca-4824-a6b6-6508839f16b2", + "id": "95397fe5-0cb6-49ba-b3b8-2a128974a131", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124358,7 +124358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "061f0ba9-1e13-46f5-92b9-1b28d0320d7b", + "id": "aaa928bf-a2ae-43c7-ab54-d262dd4b4911", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124416,7 +124416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5fc68ca-59ab-42a0-9702-00dcbdbeafc7", + "id": "82550f52-af44-47de-9bf6-09977d5e1f75", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124480,7 +124480,7 @@ } }, { - "id": "345222d4-2b0d-4795-a753-34d5ab911a52", + "id": "5dcb329e-8960-45fd-a606-335125080727", "name": "Delete Tagged Object", "request": { "name": "Delete Tagged Object", @@ -124532,7 +124532,7 @@ }, "response": [ { - "id": "6e6bc072-7659-49a1-9def-7089ae0e2f9a", + "id": "a55b43c3-4f68-4211-baf5-5f202e892e5d", "name": "No content.", "originalRequest": { "url": { @@ -124567,7 +124567,7 @@ "_postman_previewlanguage": "text" }, { - "id": "018824ee-0e82-4ac0-8100-9a808a7d25aa", + "id": "3967f644-d980-4344-a00b-484c8a8ecab3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124612,7 +124612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "560a5107-9f51-4ca8-87db-8d4c21b86491", + "id": "b92a7f02-cb61-4572-ae18-45f72b502151", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124657,7 +124657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cf7ae29-3a5b-40d9-a729-a8492b70cd5d", + "id": "cdbd8c61-8a08-4e8e-befe-2226f6d14df3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124702,7 +124702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1871a993-585b-4baf-b34f-643f0f95d61a", + "id": "a4266e06-df6f-4486-ac70-07abb1442825", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124747,7 +124747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40fa5d6b-8a39-445b-997a-a35f9531f223", + "id": "ab9321bd-6d93-40f8-a276-cc8440ad4541", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124798,7 +124798,7 @@ } }, { - "id": "c5a1b7a6-d672-42fc-a257-d593c77391cc", + "id": "534c1db2-270e-4619-ad6c-84243bed64f2", "name": "Tag Multiple Objects", "request": { "name": "Tag Multiple Objects", @@ -124841,7 +124841,7 @@ }, "response": [ { - "id": "7b0c7df9-0268-4ab6-acbd-cc19678bf4f2", + "id": "c7a38aef-f283-4cd9-8438-c3675da407ff", "name": "Request succeeded.", "originalRequest": { "url": { @@ -124898,7 +124898,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd0455ab-446a-4fc3-82d9-9fb022667da6", + "id": "d306f907-b522-426a-a800-5f5c1807cecf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124955,7 +124955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc2ca038-bf5f-4692-8fbe-44296a390f25", + "id": "1851e6c3-81e7-4a1f-9af4-bd15ee417910", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125012,7 +125012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f8550a0-cb6a-41c2-a188-e6fc527b77d5", + "id": "db0e973a-e63f-4809-a2a7-fc1951dcb11a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125069,7 +125069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5477e16-cd2d-4291-a860-97325ad85bd8", + "id": "59fd330f-fed2-4af2-afa2-d9d63b5c00a7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125126,7 +125126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14e89ac5-ff4b-4131-9946-19b3e5402a06", + "id": "45c55c3f-b3b3-45f4-a7e4-74d2b08f7942", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125189,7 +125189,7 @@ } }, { - "id": "4e98d9b2-6587-46d8-96d9-f3d85543875b", + "id": "bdac843a-e302-4fa5-8814-f2b3ea04fa44", "name": "Remove Tags from Multiple Objects", "request": { "name": "Remove Tags from Multiple Objects", @@ -125232,7 +125232,7 @@ }, "response": [ { - "id": "ffa79fe0-79d9-484b-b220-a483c5e69169", + "id": "366edac3-1550-4cc5-a3d6-9c41d37d6a9a", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -125279,7 +125279,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ad76d2fc-eab8-4651-8bfd-75f37a7f4870", + "id": "8508b16a-46fb-46f4-ab67-9a85db6fdcd9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125336,7 +125336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "640a9c55-0f9c-4ece-984e-c08924f2a138", + "id": "2990d837-abfb-4ad5-9074-29448968dc29", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125393,7 +125393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab02e16a-dba1-4794-86bb-8d925aa39840", + "id": "fd69bd49-0da4-4373-b47c-8c5dcc6dbd03", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125450,7 +125450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "338943ee-491a-491c-8338-f9c97f98d9ed", + "id": "d10a8be1-5219-46a7-9d2e-1c0f8fe53b62", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125507,7 +125507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a2bf598-f73c-40fb-a2d5-a7508e32a90a", + "id": "fbe67358-a013-49cc-9e2d-2fd351223886", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125576,7 +125576,7 @@ "description": "The purpose of this API is to expose functionality for the manipulation of Transform objects.\nTransforms are a form of configurable objects which define an easy way to manipulate attribute data without having\nto write code. These endpoints don't require API calls to other resources, audit service is used for keeping track\nof which users have made changes to the Transforms.\n\nRefer to [Transforms](https://developer.sailpoint.com/idn/docs/transforms) for more information about transforms.\n", "item": [ { - "id": "72b799b9-1acd-47c8-ac0b-4b6010d25dd0", + "id": "27e31f1c-a73f-42fd-ab55-895f05c2e609", "name": "List transforms", "request": { "name": "List transforms", @@ -125651,7 +125651,7 @@ }, "response": [ { - "id": "b60a5e40-4bb6-4e61-93a7-232fd0f90a7a", + "id": "ddb31569-7f1e-4e0b-ba3a-345c41240993", "name": "A list of transforms matching the given criteria.", "originalRequest": { "url": { @@ -125740,7 +125740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aaa37f52-00da-4213-84ac-91d589729de9", + "id": "a0c59b71-887f-43b4-a6d2-c8af761df220", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125829,7 +125829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22d86118-c9d7-4344-bb2c-a70d913a4ba0", + "id": "a19352ad-94a7-4295-99b8-626a151c1e3d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125918,7 +125918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "033c06b0-019b-48b4-9556-2cd31e9f3a43", + "id": "ed0a9bc4-e9f9-459e-970d-1346f14d307e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126007,7 +126007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90691c3e-18d6-4d7d-aca3-e63e6b493337", + "id": "65e17b7d-d396-426f-94b0-be1e13798c6e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -126096,7 +126096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45f95c47-1313-497a-b144-5eb03e8baec1", + "id": "01f7a7d8-9aed-4df4-a2f1-d5e87beeb7c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126185,7 +126185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b28f0067-5594-4f72-b425-a8a9943ee3e9", + "id": "797ad9bf-f5d3-4aa1-bdb4-0b09b80ce92e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126280,7 +126280,7 @@ } }, { - "id": "c7d8cf4d-6ff3-476d-ae64-6a73ddb04281", + "id": "9280840e-3a16-4b97-a32a-0ab386bed9cf", "name": "Create transform", "request": { "name": "Create transform", @@ -126322,7 +126322,7 @@ }, "response": [ { - "id": "58f330ca-2e54-4a39-9daa-15c901e9e8b4", + "id": "702da7ad-ab95-4151-a078-1f45e6cec649", "name": "Indicates the transform was successfully created and returns its representation.", "originalRequest": { "url": { @@ -126378,7 +126378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1ed7266-d89c-4e95-a663-0cb49443b3b2", + "id": "185ec02c-e68c-4d70-8adb-a92406871b45", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126434,7 +126434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6ac8a6f-8953-498f-acff-74444207316b", + "id": "c13045fc-5800-49e5-a94a-39bfb1ffde46", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126490,7 +126490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "209c0667-2d01-453c-8cc5-4c515798ed72", + "id": "abef210e-3710-4dce-b6e7-e24c8372c745", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126546,7 +126546,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a94ede94-675e-41ba-923f-d55258fafc56", + "id": "f1c6b8bd-f1a1-428f-a0ca-2a75c5f68be9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -126602,7 +126602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb64c90a-6f90-4fab-b346-489b14f75ad5", + "id": "34274f8f-97bf-49eb-a2ec-ecd27212cb2d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126658,7 +126658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3aad72d4-970a-42dd-bcb8-7a9054cc1243", + "id": "21df8298-aa53-4faa-9643-d6f8e335d438", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126720,7 +126720,7 @@ } }, { - "id": "c9130ffd-25d6-4e0c-a2ce-d26f6027e560", + "id": "d10ff5be-755d-467c-86e6-c4e9fa762eca", "name": "Transform by ID", "request": { "name": "Transform by ID", @@ -126761,7 +126761,7 @@ }, "response": [ { - "id": "0564a5f1-02df-4a18-ae80-2c6a1da414d4", + "id": "1d703460-411e-47a6-954a-1f889d6aafa6", "name": "Transform with the given ID", "originalRequest": { "url": { @@ -126805,7 +126805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ec0f1fe-b017-492d-8ad8-f217b2a69d59", + "id": "4d9380e6-78bc-4325-99a9-590f338430e4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126849,7 +126849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f7345a4-fbfa-49d0-97d8-129271c959bf", + "id": "bca3d61a-77ff-48e2-9cd3-8542f0ce3509", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126893,7 +126893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5e513c8-967b-43ca-b31e-db7fa1ff57ef", + "id": "f318ad58-4757-46df-96ee-bca90ec8fed7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126937,7 +126937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fc016ec-6e0e-4724-900e-3645cdf96fd4", + "id": "4e86f1e6-ef2e-4d46-8ffe-581ad7753287", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -126981,7 +126981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5f8f55c-c5cb-41df-9a32-f130ef0603bb", + "id": "8f6b2ccd-f70e-4c56-9ded-0126419e22a6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127025,7 +127025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65f98fda-c1fc-49c9-8b03-fbbf04a64dc1", + "id": "e603f902-c8af-4417-a811-235bb859aa84", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127075,7 +127075,7 @@ } }, { - "id": "11334f2a-37fd-4f12-a026-660d84979884", + "id": "d2784fc2-b21c-40db-922f-ffa7481cc2a6", "name": "Update a transform", "request": { "name": "Update a transform", @@ -127129,7 +127129,7 @@ }, "response": [ { - "id": "5d419e2f-de36-43fe-85fd-5c2d13fd4a77", + "id": "943cbb91-c806-4261-a5dc-05336d027b07", "name": "Indicates the transform was successfully updated and returns its new representation.", "originalRequest": { "url": { @@ -127186,7 +127186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd409cd1-8e4b-4406-bb2d-edac32e2932e", + "id": "0af485af-4e34-47ce-bd64-bd73802cb187", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127243,7 +127243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc6f1b32-3c52-4db9-91a0-c295bbaa9cd1", + "id": "b286085a-d851-4cdb-86c1-e0de00145ae3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127300,7 +127300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b8e2722-3a2a-4bd4-aec5-61894d0ce1d3", + "id": "1519abbc-1e2e-4147-a4a7-6fc2128e51ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127357,7 +127357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a8d23a7-9abd-4b4b-bb68-15d12e5a85bf", + "id": "1096cbbb-373e-489c-a9bf-10f51941d360", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -127414,7 +127414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfa4293a-b36a-4f5e-bcb2-00dc780bca84", + "id": "bc08ffde-19e4-454b-bff5-0dbba20acff2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127471,7 +127471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc631417-79b1-42ab-ab2c-432e24c95d64", + "id": "a7249751-7972-49bc-bd68-edb8e705901d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127534,7 +127534,7 @@ } }, { - "id": "5482f79c-31b6-4cb4-982c-4f4a6e9cbda7", + "id": "562c0480-09b7-4d2b-b364-70b86516167b", "name": "Delete a transform", "request": { "name": "Delete a transform", @@ -127575,7 +127575,7 @@ }, "response": [ { - "id": "fcb2b09f-2104-4e07-bca6-29d8df5b521a", + "id": "91d737f2-d149-48f8-9ffb-7c3aafca77ec", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -127609,7 +127609,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7f6bd300-efe5-4456-86d3-d50aa9b314b9", + "id": "f98b12b4-96fb-4aa5-9a05-b54e15487dd2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127653,7 +127653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a4f8c7f-983b-44cf-bb9b-3bc8e5b04003", + "id": "972fc976-6d2d-48e0-b1ce-d4be741c0552", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127697,7 +127697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "910867c3-0ae3-4fc1-8a04-27f888893fc5", + "id": "c4d34d4b-6207-44c9-a380-f68b9d7b9e91", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127741,7 +127741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd1c4c9b-5152-4eca-b0bf-868c0038d3ff", + "id": "cfe7b2e1-ab2a-4f51-b52e-4f835ee0ea85", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -127785,7 +127785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37176829-aeac-4b72-b2ae-3b648343dcfb", + "id": "b03b428b-aa94-4a68-8ec5-80e45463a00e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127829,7 +127829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06bfd412-b1c8-42e6-935e-31730a7b7ae4", + "id": "d4ebefca-15d1-4af2-aed8-52493f3e726e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127885,7 +127885,7 @@ "description": "Use this API to implement work item functionality. \nWith this functionality in place, users can manage their work items (tasks). \n\nWork items refer to the tasks users see in IdentityNow's Task Manager. \nThey can see the pending work items they need to complete, as well as the work items they have already completed. \nTask Manager lists the work items along with the involved sources, identities, accounts, and the timestamp when the work item was created. \nFor example, a user may see a pending 'Create an Account' work item for the identity Fred.Astaire in GitHub for Fred's GitHub account, fred-astaire-sp. \nOnce the user completes the work item, the work item will be listed with his or her other completed work items. \n\nTo complete work items, users can use their dashboards and select the 'My Tasks' widget. \nThe widget will list any work items they need to complete, and they can select the work item from the list to review its details. \nWhen they complete the work item, they can select 'Mark Complete' to add it to their list of completed work items. \n\nRefer to [Task Manager](https://documentation.sailpoint.com/saas/user-help/task_manager.html) for more information about work items, including the different types of work items users may need to complete.\n", "item": [ { - "id": "36e8ca72-d6b4-4575-b051-b0f383361848", + "id": "f80d72aa-2800-4131-913a-dacd3de00409", "name": "List Work Items", "request": { "name": "List Work Items", @@ -127951,7 +127951,7 @@ }, "response": [ { - "id": "7a5610dc-0cf3-4646-a3f4-b26d06f1d200", + "id": "57f2a775-7236-4c1a-b3f7-bf404451618c", "name": "List of work items", "originalRequest": { "url": { @@ -128031,7 +128031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb376aa3-44a0-4327-aa37-0576904c00cf", + "id": "1c073664-c5b2-4980-90d5-05041dbca71a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128111,7 +128111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d0a499a-56dc-4bcc-8872-cfe3b43d9739", + "id": "b543b9c6-7f5a-4873-8c91-56f1d8ec62a7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128191,7 +128191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e671ea8-94fa-4ab0-9f1d-b677e91c1611", + "id": "7dfa390c-3a7f-4bcc-917f-a064a8dbbbfb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -128271,7 +128271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9b8761d-bb83-4a70-823e-c94eea205052", + "id": "bdd38ba9-7ad7-4556-893d-7691757c928f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128351,7 +128351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3457bf70-4062-495f-a252-deff4243bf7e", + "id": "77116ee5-47b5-472c-a449-3c724351279f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128437,7 +128437,7 @@ } }, { - "id": "24f52c53-d780-4150-b8d8-451cecfa784f", + "id": "95058713-d041-4b48-b722-7aba2be319fa", "name": "Completed Work Items", "request": { "name": "Completed Work Items", @@ -128504,7 +128504,7 @@ }, "response": [ { - "id": "b85041c2-ce36-42ea-8d3d-15bc51b98003", + "id": "3e500673-e643-4357-899b-cb1a92ef740c", "name": "List of completed work items.", "originalRequest": { "url": { @@ -128585,7 +128585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "009a05d0-0674-4519-84b2-1253fd1691e8", + "id": "48e42392-4fdc-4cb4-91cd-3b20f629bb2b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128666,7 +128666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd313065-1a51-475d-8214-51ee2bc20896", + "id": "181daa29-5afa-40f6-8523-77fc50d1daa1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128747,7 +128747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90e875ad-ecfb-4469-a50f-591c5c2c690f", + "id": "93516ba3-6af5-4ced-a522-474cdada9961", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -128828,7 +128828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25bc497c-612a-4151-8389-f066f6544bd8", + "id": "e218c1b6-f9ab-45ac-ba0a-43403a7f112b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128909,7 +128909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08fbe9db-dfed-4f46-8dc5-0483dbd84158", + "id": "91eeffd4-a32e-49c1-98f7-7e4f9fd8695e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128996,7 +128996,7 @@ } }, { - "id": "c6998ba2-2fe9-4fa7-84ed-529db6a16a4f", + "id": "d8e6030b-7d44-40c6-8631-9b5f9d64834f", "name": "Count Work Items", "request": { "name": "Count Work Items", @@ -129036,7 +129036,7 @@ }, "response": [ { - "id": "940955a5-5ab7-4d4b-afff-13b0e02c6fcd", + "id": "8f6627e0-bc51-42e8-b1d5-9a8a3cfafae0", "name": "List of work items", "originalRequest": { "url": { @@ -129090,7 +129090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8699b027-7224-4cf5-bbca-19453068829d", + "id": "a0762571-06c2-4373-867c-852189a8c5f7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129144,7 +129144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54d074b0-417b-4c39-8c54-5d74f1c3646f", + "id": "b185edc0-65a8-4a8c-be95-9d2af0b5c4e1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129198,7 +129198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26c408cc-29f4-486b-a3c6-f3e96078cefb", + "id": "582c2e2e-5593-44cf-85de-c1bbc051d59d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -129252,7 +129252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ece4edc-36f5-4392-a738-f5f3a6b244e7", + "id": "7aa3fd69-4afc-43d1-a069-a5cc5d422072", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129306,7 +129306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20b45020-17ce-4ffc-866a-499794e87b61", + "id": "d470b4d1-5b66-4936-a56b-df5009523760", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129366,7 +129366,7 @@ } }, { - "id": "1257aae4-00cd-46dc-850b-4425550bec76", + "id": "044fb38c-3902-4fa3-89d4-fac88b7b0aa2", "name": "Count Completed Work Items", "request": { "name": "Count Completed Work Items", @@ -129407,7 +129407,7 @@ }, "response": [ { - "id": "59209b67-ef29-47f6-a74c-03df13b2f5a6", + "id": "5e5b7c43-de59-4dd5-9fbf-f6208964f0c2", "name": "List of work items", "originalRequest": { "url": { @@ -129462,7 +129462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a29a69a-99ee-4179-9b3d-26a907cf5b3e", + "id": "8d3928da-062d-46b0-829a-4d212310447e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129517,7 +129517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f0bdca5-172c-41d6-bd97-a7f0375ca881", + "id": "43429525-ed96-4551-bd79-acec4b94c853", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129572,7 +129572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccb76558-1f49-499d-ae77-a370b0d5521e", + "id": "16a55fd2-5b4b-45c9-8724-17bb74644b13", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -129627,7 +129627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10898c3d-6d6d-4684-9cac-b80b2dbcf80c", + "id": "533e6bc1-0406-49cb-afb2-03002a4d7eb9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129682,7 +129682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "144202b9-f844-4450-8100-bedfae26b42f", + "id": "1cc2be7b-f5de-4c60-ab46-74bb857ad6a6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129743,7 +129743,7 @@ } }, { - "id": "f60c2197-8ecc-4643-bb10-8e152dbef4a7", + "id": "14d0a08c-47cf-46dd-a3e8-80386f17a80e", "name": "Work Items Summary", "request": { "name": "Work Items Summary", @@ -129783,7 +129783,7 @@ }, "response": [ { - "id": "b41c66ea-c97c-4925-8c07-74ce3bcc2792", + "id": "bc164a64-4659-4198-8b75-ba7a82503c58", "name": "List of work items", "originalRequest": { "url": { @@ -129837,7 +129837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13f7ac71-a8cd-4572-816e-8c7cdae69237", + "id": "8af4c542-6511-41af-8fb6-7c6a04820a07", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129891,7 +129891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "568613aa-01f1-46b5-86a1-a48461e74ca3", + "id": "31b7179c-6a90-4939-98c4-df8213a901cf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129945,7 +129945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c03250d-c695-4916-813c-f0fc94da771f", + "id": "85f97c05-69fd-4089-967d-beb9ee03bb1c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -129999,7 +129999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec9c9a1e-39db-4d3a-a63a-4d39ddd1de0d", + "id": "27bc1208-69a9-4c70-ae36-829aabad326a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130053,7 +130053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6e3ae3e-1059-4747-b178-97f694a1b62c", + "id": "2ae8b923-6fbe-4156-8a74-5d6e50db78b7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130113,7 +130113,7 @@ } }, { - "id": "fdb0b6fb-3e7c-4a6b-9108-3fff01927225", + "id": "ba3193d8-b695-4fe9-9100-f206fb1807a0", "name": "Get a Work Item", "request": { "name": "Get a Work Item", @@ -130154,7 +130154,7 @@ }, "response": [ { - "id": "3b04c082-ac62-4e59-9009-2cb299cc13d3", + "id": "f7c364a5-d624-4987-a3ef-e2fb2071b1cf", "name": "The work item with the given ID.", "originalRequest": { "url": { @@ -130198,7 +130198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8a16012-1c63-41ce-9441-f84530e06d87", + "id": "2aeb75fd-f228-4239-938f-7cc4352bc0a8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130242,7 +130242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fca946a-2399-4ee3-b614-d1b8d20d98c3", + "id": "02d7d845-7bbd-4ed2-8a43-beb214d42118", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130286,7 +130286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "448f8f6d-7845-4e42-a9e0-4d67c7d56ea0", + "id": "473efc59-cbca-402b-b10b-96374428047c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -130330,7 +130330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c5021d0-d92f-4672-b61f-348145078838", + "id": "ba38959c-d90c-456c-aae5-cb7ffc2a639a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130374,7 +130374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "143e8228-daf4-44e6-b20b-800f2488a890", + "id": "91844048-606e-427f-a99e-35b2ea117fc5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130424,7 +130424,7 @@ } }, { - "id": "8cd1c606-6b6a-4019-b7da-354ab587bc64", + "id": "8a432726-b00e-4a9e-af07-5a8d0b6cf76c", "name": "Complete a Work Item", "request": { "name": "Complete a Work Item", @@ -130465,7 +130465,7 @@ }, "response": [ { - "id": "97278b21-99c8-4f80-a2de-04796727a99d", + "id": "9ce7e529-91d5-4b84-a552-8b3dcd2d71a9", "name": "A WorkItems object", "originalRequest": { "url": { @@ -130509,7 +130509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4b1ebb2-00a8-4b66-8b2e-52f9daf3db5f", + "id": "ec0058a8-bbf0-49a3-a824-da65a313a442", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130553,7 +130553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c3c2e0a-89c1-4570-9cf5-3a8ba83a54b8", + "id": "a3101be6-af13-4a9a-be17-7dbf977f634c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130597,7 +130597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77a0ccfa-5fcb-4725-b46b-70254e6b3071", + "id": "bedb30c5-b78b-43bd-b150-8a32c9f71c34", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130641,7 +130641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85885aab-8da2-43c9-80cb-adcf31f307fa", + "id": "a61cc16c-8908-414d-b6ec-2ef5ffd33b70", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -130685,7 +130685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16afde6f-f145-441a-8165-9ddaf4ffdd0d", + "id": "643769c3-cbf9-4289-a8ee-16fb5463c5c1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130729,7 +130729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b7c6633-f131-46ab-858f-2d514fb61f73", + "id": "6b1de456-e819-4d6e-9d38-af64d8dc4dfa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130779,7 +130779,7 @@ } }, { - "id": "16f0fe00-32ea-4349-80ab-bd023b8273c0", + "id": "720a4b19-c4fc-4223-afe1-9a539d31bff2", "name": "Approve an Approval Item", "request": { "name": "Approve an Approval Item", @@ -130832,7 +130832,7 @@ }, "response": [ { - "id": "3262acf8-6feb-4dc5-b427-2b36fb5c24af", + "id": "4dff1071-42ea-4325-b9c8-14c34fa5881f", "name": "A work items details object.", "originalRequest": { "url": { @@ -130878,7 +130878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "392851f1-641a-460c-bc53-5165c7f28bc6", + "id": "0df5919f-d86d-4c12-bcc7-27a3e3edae41", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130924,7 +130924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e13b858-5427-438b-8882-d2bc943bec5d", + "id": "e2e1984e-e61a-4fd6-b26e-68531594a91a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130970,7 +130970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd7adf51-c072-4771-80b2-897d502ee27e", + "id": "6326de31-09a8-4ffd-8dee-17d326325008", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131016,7 +131016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5431d5de-fcc3-4172-9444-cbc414b77004", + "id": "54cab635-0f64-4d12-ac1f-3a16ea889bb5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -131062,7 +131062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba5a771c-0a1a-466f-9583-8e1c36dcaf90", + "id": "74f4310c-fe07-4576-b90d-947a07747750", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131108,7 +131108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab62a2c8-4834-4891-9a36-7b458b91ed25", + "id": "2cfb9f12-4a84-4b75-bd57-e279571438eb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131160,7 +131160,7 @@ } }, { - "id": "841c4dfe-3490-41a4-85de-85c55fdc9e26", + "id": "e1b16b05-7a46-4547-b583-1cf0f844f24d", "name": "Reject an Approval Item", "request": { "name": "Reject an Approval Item", @@ -131213,7 +131213,7 @@ }, "response": [ { - "id": "8954900e-fc18-4bd5-ad68-e109a255b3a8", + "id": "9c2526a9-bd8f-434d-bb41-846ee3da4bb9", "name": "A work items details object.", "originalRequest": { "url": { @@ -131259,7 +131259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14f2d64e-761c-4376-b9e7-76fd0a36bd11", + "id": "8bb4578e-2d79-4c96-b5fb-e7fafad6d5f7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131305,7 +131305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a431807-eb69-4946-bc22-5cea86fc383f", + "id": "68b93219-15d6-4dcc-9c08-66b6cb91f61f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131351,7 +131351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8226ab54-0ac3-425c-9f69-67a2859ceb86", + "id": "5f0dc431-25a9-4cc9-9fb5-bb0081faa92d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131397,7 +131397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f1a4c79-8347-42a0-960b-996447e56244", + "id": "d46638d2-5edd-4c7f-b4b2-f22f40707ecd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -131443,7 +131443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8f7635a-adad-48d1-8b2c-cfe5c2503420", + "id": "e2736171-f73b-4567-9dec-749178cbc792", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131489,7 +131489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "923baf72-f7e9-4c16-b4fa-ba1c99877e36", + "id": "798f2385-26d6-443e-9179-bcaf9af3be91", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131541,7 +131541,7 @@ } }, { - "id": "a7788bd6-66fc-421d-a0cd-acd584b4a82a", + "id": "86aa5485-1c98-4477-924b-e94a6c47a403", "name": "Bulk approve Approval Items", "request": { "name": "Bulk approve Approval Items", @@ -131583,7 +131583,7 @@ }, "response": [ { - "id": "750a8209-38fb-4842-9e63-4ff57f8c0d9e", + "id": "84d8bda3-1267-49f4-b6ed-50b448d811c9", "name": "A work items details object.", "originalRequest": { "url": { @@ -131628,7 +131628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f7a7202-216b-48c1-a1c4-4f8acb380b1a", + "id": "c2ff48cf-62e1-45ef-abe8-59b0ceab6609", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131673,7 +131673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f18f141-d66f-4916-aebf-a4172a7ff58f", + "id": "5d88570c-8268-4eee-8ecc-335e36295742", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131718,7 +131718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6396fb40-bfbb-4891-9ad0-5e8cd3ce0ead", + "id": "d9cb0fd8-33c7-4dbe-88e5-6ef38f4135c0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131763,7 +131763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea2ae662-8ce3-4a1a-88ef-e731d9387252", + "id": "739e9bea-cd35-4cef-a434-0e236771a9ed", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -131808,7 +131808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e9daa28-27ff-4343-9c83-c98df1060b41", + "id": "a76dd83e-36da-4cd2-8f28-770f80b31576", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131853,7 +131853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27c73072-e8cc-4ead-a7f6-ab997c080bfd", + "id": "4f67ac84-2e9b-4e2b-a1d4-52c6f02fc768", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131904,7 +131904,7 @@ } }, { - "id": "7f0db119-4287-47bb-9b3f-8d286c8d152c", + "id": "6476533d-3c48-4d66-b7d6-936534dc72f2", "name": "Bulk reject Approval Items", "request": { "name": "Bulk reject Approval Items", @@ -131946,7 +131946,7 @@ }, "response": [ { - "id": "e1f85341-b26f-4466-b229-b19afe8ac800", + "id": "538cea56-1ef3-44b2-94e4-d7ec9905943c", "name": "A work items details object.", "originalRequest": { "url": { @@ -131991,7 +131991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82cc0cdc-95a6-4895-b8b4-45ac87869454", + "id": "cec23bbb-8bd4-459b-a0a9-f0a57871c16a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132036,7 +132036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5c3d9bb-2883-4ffe-a785-b6a7e5048f16", + "id": "de72bbe7-0efa-4a6c-b78e-eb3d16fbb65e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132081,7 +132081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21dea9cf-4aba-47f9-933e-4b535cb012ad", + "id": "7d931aa5-84a5-44b9-b70e-ad9909607a13", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132126,7 +132126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f33bba8-8c93-4f0f-be0f-503bdde452bb", + "id": "2276a0bc-baf0-4e4f-b517-0c2358a2d382", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -132171,7 +132171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f240528f-4119-464a-95ab-707e0b0f3580", + "id": "ef24ab34-3250-452b-a2ae-c40be0cc05fe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132216,7 +132216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6e06f76-fef0-4ae1-8185-b57cdd4f69f6", + "id": "533bceac-0226-4e63-9a6e-ca320a9f850c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132267,7 +132267,7 @@ } }, { - "id": "f2b050d7-2634-4dd7-83d5-3372368ea8c7", + "id": "346e7f72-709c-47e6-8815-3fbf106795e7", "name": "Submit Account Selections", "request": { "name": "Submit Account Selections", @@ -132322,7 +132322,7 @@ }, "response": [ { - "id": "b7d0a458-0157-46e6-ad04-625e44e72d2e", + "id": "ed1c9cf9-f002-41f5-b790-793a9ec2bdd9", "name": "A work items details object.", "originalRequest": { "url": { @@ -132380,7 +132380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12226eab-bdf1-4a96-98cc-10525ccf2552", + "id": "efcb46fb-8bcb-4fcf-bd8e-a4675474b094", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132438,7 +132438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcd388d2-4fae-49af-adfa-7892a05b6c76", + "id": "982dc2e6-8fc7-49e6-8e84-e6d48c01e8c4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132496,7 +132496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5ef5dba-7ddf-48fb-a836-08559771cbc7", + "id": "24711a4e-7160-47d9-b69f-841f924816e4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132554,7 +132554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0338dce7-57f9-4500-8157-885914642738", + "id": "1c05ecc0-9d00-4861-bf9c-2ab08d4b9168", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -132612,7 +132612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57386058-d2dd-4085-8b27-526c4ad95bde", + "id": "5d7420c6-9997-4967-89d8-c4a99915ebd8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132670,7 +132670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b27e262-b9c9-4d64-b5c4-d7774ccf657e", + "id": "d80b4ad7-d4d1-4c98-9450-759b2ad60a78", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132734,6 +132734,7309 @@ } } ] + }, + { + "name": "Workflows", + "description": "Workflows allow administrators to create custom automation scripts directly within IdentityNow. These automation scripts respond to [event triggers](https://developer.sailpoint.com/idn/docs/event-triggers#how-to-get-started-with-event-triggers) and perform a series of actions to perform tasks that are either too cumbersome or not available in the IdentityNow UI. Workflows can be configured via a graphical user interface within IdentityNow, or by creating and uploading a JSON formatted script to the Workflow service. The Workflows API collection provides the necessary functionality to create, manage, and test your workflows via REST.\n", + "item": [ + { + "id": "a01906da-ad8d-4d02-a2d2-7cb1d8e3bdcc", + "name": "List Workflows", + "request": { + "name": "List Workflows", + "description": { + "content": "List all workflows in the tenant.", + "type": "text/plain" + }, + "url": { + "path": [ + "workflows" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "8543f4e5-a4da-4177-b457-723f6d9e3321", + "name": "List of workflows", + "originalRequest": { + "url": { + "path": [ + "workflows" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n },\n {\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "32a48c20-5a22-4707-b3c6-b024b0128dea", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "workflows" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "55b35634-1213-4762-8470-ac8bd6e96ccf", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "workflows" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "4b4afdb8-1f4f-4aa1-bf6a-598e49ea3155", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "workflows" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "7b409331-9b18-4778-ac55-1e4c5ae8a3d5", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "workflows" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "c892b8e0-6e55-4740-8f3f-e3420b9b8c89", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "workflows" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "498dba56-6cdb-40c1-bf09-02bdea847e97", + "name": "Get Workflow By Id", + "request": { + "name": "Get Workflow By Id", + "description": { + "content": "Get a single workflow by id.", + "type": "text/plain" + }, + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", + "key": "id", + "disabled": true, + "description": { + "content": "(Required) Id of the workflow", + "type": "text/plain" + } + } + ] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "75a81270-be38-4df5-89eb-c6f2de0ec6dd", + "name": "The workflow object", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "3d7bc7c2-f5e3-487c-8689-4979dff0e472", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "7cb9bb47-f313-4bdd-99c5-246e41af0778", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "f50813f5-10b1-4be1-acbb-73a2e5da2d97", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "50499dbe-84a0-4eb4-b1c3-e7cb7d0170f7", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "22709f32-92a4-4693-8fbd-9ccf562ad5cb", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "ae2fbdff-3f80-47d6-9f92-e88ab808425e", + "name": "Update Workflow", + "request": { + "name": "Update Workflow", + "description": { + "content": "Perform a full update of a workflow. The updated workflow object is returned in the response.", + "type": "text/plain" + }, + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", + "key": "id", + "disabled": true, + "description": { + "content": "(Required) Id of the Workflow", + "type": "text/plain" + } + } + ] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "response": [ + { + "id": "5c96b045-7023-4322-9ff0-e257ae9261db", + "name": "The Workflow object", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "3d8de689-d8fe-4522-8bd2-f4e917a20268", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "5fbf38ce-8084-4a70-8838-0c1acf509a0e", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "a6b06479-2e5c-41b5-a7e6-0af00b832360", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "6e70cb30-7149-4245-bad1-1f965f5b2f9f", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "9a61ffe8-4a73-4749-8edd-6431de3eb778", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PUT", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "16fcead4-2381-47dd-ae5f-10a3f920e73b", + "name": "Patch Workflow", + "request": { + "name": "Patch Workflow", + "description": { + "content": "Partially update an existing Workflow using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.", + "type": "text/plain" + }, + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", + "key": "id", + "disabled": true, + "description": { + "content": "(Required) Id of the Workflow", + "type": "text/plain" + } + } + ] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Send Email\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Send an email to the identity who's attributes changed.\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/enabled\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/definition\",\n \"value\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/trigger\",\n \"value\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\"\n }\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "response": [ + { + "id": "34953390-cf7b-4ab3-bd6b-da121b1db4c5", + "name": "The Workflow object", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Send Email\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Send an email to the identity who's attributes changed.\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/enabled\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/definition\",\n \"value\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/trigger\",\n \"value\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\"\n }\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "1d750e2f-58c1-42fe-bc2c-c38d129cf9c2", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Send Email\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Send an email to the identity who's attributes changed.\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/enabled\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/definition\",\n \"value\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/trigger\",\n \"value\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\"\n }\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "26d3ecbf-67ab-443a-ac34-3610c3168d96", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Send Email\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Send an email to the identity who's attributes changed.\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/enabled\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/definition\",\n \"value\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/trigger\",\n \"value\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\"\n }\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "2894b85f-93dd-493d-be12-d7e1b296430f", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Send Email\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Send an email to the identity who's attributes changed.\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/enabled\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/definition\",\n \"value\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/trigger\",\n \"value\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\"\n }\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "702cffb6-f5ae-451b-a787-bc8764a05d72", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Send Email\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Send an email to the identity who's attributes changed.\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/enabled\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/definition\",\n \"value\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/trigger\",\n \"value\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\"\n }\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "3c345860-b1d6-4b0c-8ed4-007d265e98a7", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json-patch+json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "PATCH", + "body": { + "mode": "raw", + "raw": "[\n {\n \"op\": \"replace\",\n \"path\": \"/name\",\n \"value\": \"Send Email\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/owner\",\n \"value\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/description\",\n \"value\": \"Send an email to the identity who's attributes changed.\"\n },\n {\n \"op\": \"replace\",\n \"path\": \"/enabled\",\n \"value\": false\n },\n {\n \"op\": \"replace\",\n \"path\": \"/definition\",\n \"value\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n }\n },\n {\n \"op\": \"replace\",\n \"path\": \"/trigger\",\n \"value\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\"\n }\n }\n }\n]", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "78a6143b-8ca4-4a79-ae60-dcdafd981506", + "name": "Delete Workflow By Id", + "request": { + "name": "Delete Workflow By Id", + "description": { + "content": "Delete a workflow. **Enabled workflows cannot be deleted**. They must first be disabled.", + "type": "text/plain" + }, + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", + "key": "id", + "disabled": true, + "description": { + "content": "(Required) Id of the Workflow", + "type": "text/plain" + } + } + ] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "DELETE", + "body": {} + }, + "response": [ + { + "id": "0ca0159f-231d-4f84-8079-1ee2d374ed10", + "name": "No content - indicates the request was successful but there is no content to be returned in the response.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "No Content", + "code": 204, + "header": [], + "cookie": [], + "_postman_previewlanguage": "text" + }, + { + "id": "8cbb66a1-05d6-4f8a-a3ed-ace57480a27d", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "1031de16-a5e0-4fa8-a185-b7895d167ec6", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "57a7c32c-6683-47d6-a0a1-9514634e19fb", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "441bfdb9-7dec-45d5-9299-a6f0c8ff1d92", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "ca9570c8-8096-46e3-b10e-dba066c128b4", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "DELETE", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "fe2cbe39-9dee-4d06-8456-7b73cbf984ff", + "name": "Create Workflow", + "request": { + "name": "Create Workflow", + "description": { + "content": "Create a new workflow with the desired trigger and steps specified in the request body.", + "type": "text/plain" + }, + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "key": "id" + } + ] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "response": [ + { + "id": "2c195890-76d1-4b36-9821-784f14e5fad2", + "name": "Event Trigger", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "87db7d6f-ea19-4b42-b54d-e3e8d642fafa", + "name": "Scheduled Trigger", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"SCHEDULED\",\n \"attributes\": {\n \"cronString\": \"0 * */3 */5 *\"\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "36170114-58da-4f13-a334-ea8f1e3bf534", + "name": "External Trigger", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity whose attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"name\": \"search-and-notify\",\n \"description\": \"Run a search and notify the results\"\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "5debe667-d82b-437a-8b13-6bef95f83bcf", + "name": "Scheduled Trigger", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"SCHEDULED\",\n \"attributes\": {\n \"cronString\": \"0 * */3 */5 *\"\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "1d940aa7-80ba-427a-907e-ed0a874a971b", + "name": "External Trigger", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity whose attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"name\": \"search-and-notify\",\n \"description\": \"Run a search and notify the results\"\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "8449b555-4f85-4497-931e-deff577231ef", + "name": "External Trigger", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity whose attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EXTERNAL\",\n \"attributes\": {\n \"name\": \"search-and-notify\",\n \"description\": \"Run a search and notify the results\"\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "4154dd30-f869-4dd7-b84d-3e1eba0d9fd9", + "name": "An example of a 403 response object", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "6dbc8d19-7ce8-4e70-bafd-107e6cbdec78", + "name": "Event Trigger", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "1658de48-693c-499f-b31f-43b62c88e62f", + "name": "An example of a 500 response object", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"action\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter\": \"$.changes[?(@.attribute == 'manager')]\"\n }\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "3738b1ee-5344-4554-b9f0-35d579df7dee", + "name": "Test Workflow By Id", + "request": { + "name": "Test Workflow By Id", + "description": { + "content": "Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/idn/docs/event-triggers/available) for an example input for the trigger that initiates this workflow.\nThis endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint.\n**This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**", + "type": "text/plain" + }, + "url": { + "path": [ + "workflows", + ":id", + "test" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", + "key": "id", + "disabled": true, + "description": { + "content": "(Required) Id of the workflow", + "type": "text/plain" + } + } + ] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"identity\": {\n \"id\": \"ee769173319b41d19ccec6cea52f237b\",\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n },\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"oldValue\": \"sales\",\n \"newValue\": \"marketing\"\n },\n {\n \"attribute\": \"manager\",\n \"oldValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423237b\",\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n },\n \"newValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423236c\",\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"oldValue\": \"john.doe@hotmail.com\",\n \"newValue\": \"john.doe@gmail.com\"\n }\n ]\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "response": [ + { + "id": "06ea113b-c4c7-4d0e-9caf-ae6818c0c4cd", + "name": "The Workflow object", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "test" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"identity\": {\n \"id\": \"ee769173319b41d19ccec6cea52f237b\",\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n },\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"oldValue\": \"sales\",\n \"newValue\": \"marketing\"\n },\n {\n \"attribute\": \"manager\",\n \"oldValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423237b\",\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n },\n \"newValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423236c\",\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"oldValue\": \"john.doe@hotmail.com\",\n \"newValue\": \"john.doe@gmail.com\"\n }\n ]\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"workflowExecutionId\": \"0e11cefa-96e7-4b67-90d0-065bc1da5753\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "1e6c105c-6eb5-4fbf-bc18-fba4227297ff", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "test" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"identity\": {\n \"id\": \"ee769173319b41d19ccec6cea52f237b\",\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n },\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"oldValue\": \"sales\",\n \"newValue\": \"marketing\"\n },\n {\n \"attribute\": \"manager\",\n \"oldValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423237b\",\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n },\n \"newValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423236c\",\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"oldValue\": \"john.doe@hotmail.com\",\n \"newValue\": \"john.doe@gmail.com\"\n }\n ]\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "19beb882-801f-49fe-a8da-e389ea02013e", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "test" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"identity\": {\n \"id\": \"ee769173319b41d19ccec6cea52f237b\",\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n },\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"oldValue\": \"sales\",\n \"newValue\": \"marketing\"\n },\n {\n \"attribute\": \"manager\",\n \"oldValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423237b\",\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n },\n \"newValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423236c\",\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"oldValue\": \"john.doe@hotmail.com\",\n \"newValue\": \"john.doe@gmail.com\"\n }\n ]\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "fae6b279-4838-4a9a-9c52-8af046ce6789", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "test" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"identity\": {\n \"id\": \"ee769173319b41d19ccec6cea52f237b\",\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n },\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"oldValue\": \"sales\",\n \"newValue\": \"marketing\"\n },\n {\n \"attribute\": \"manager\",\n \"oldValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423237b\",\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n },\n \"newValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423236c\",\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"oldValue\": \"john.doe@hotmail.com\",\n \"newValue\": \"john.doe@gmail.com\"\n }\n ]\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "ca7ecb0d-bb6f-48e9-bed3-a2aacc066309", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "test" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"identity\": {\n \"id\": \"ee769173319b41d19ccec6cea52f237b\",\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n },\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"oldValue\": \"sales\",\n \"newValue\": \"marketing\"\n },\n {\n \"attribute\": \"manager\",\n \"oldValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423237b\",\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n },\n \"newValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423236c\",\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"oldValue\": \"john.doe@hotmail.com\",\n \"newValue\": \"john.doe@gmail.com\"\n }\n ]\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "641277e1-d597-413f-b231-d515f13b4a49", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "test" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"identity\": {\n \"id\": \"ee769173319b41d19ccec6cea52f237b\",\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n },\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"oldValue\": \"sales\",\n \"newValue\": \"marketing\"\n },\n {\n \"attribute\": \"manager\",\n \"oldValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423237b\",\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n },\n \"newValue\": {\n \"id\": \"ee769173319b41d19ccec6c235423236c\",\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"oldValue\": \"john.doe@hotmail.com\",\n \"newValue\": \"john.doe@gmail.com\"\n }\n ]\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "764efa7e-c391-4141-a37b-ff51abd15581", + "name": "List Workflow Executions", + "request": { + "name": "List Workflow Executions", + "description": { + "content": "This lists the executions for a given workflow. Workflow executions are available for up to 90 days before being archived. By default, you can get a maximum of 250 executions. To get executions past the first 250 records, you can do the following:\n1. Use the [Get Workflows](https://developer.sailpoint.com/idn/api/beta/list-workflows) endpoint to get your workflows.\n2. Get your workflow ID from the response.\n3. You can then do either of the following:\n\n - Filter to find relevant workflow executions.\n For example, you can filter for failed workflow executions: `GET /workflows/:workflowID/executions?filters=status eq \"Failed\"`\n\n - You can paginate through results with the `offset` parameter.\n For example, you can page through 50 executions per page and use that as a way to get to the records past the first 250.\n Refer to [Paginating Results](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results) for more information about the query parameters you can use to achieve pagination.", + "type": "text/plain" + }, + "url": { + "path": [ + "workflows", + ":id", + "executions" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**startTime**: *eq, lt, le, gt, ge*\n\n**status**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "status eq \"Failed\"" + } + ], + "variable": [ + { + "type": "any", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", + "key": "id", + "disabled": true, + "description": { + "content": "(Required) Id of the workflow", + "type": "text/plain" + } + } + ] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "ff8d88f9-dcaf-4fdf-8c14-08dd5f58d42c", + "name": "List of workflow executions for the given workflow", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "executions" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**startTime**: *eq, lt, le, gt, ge*\n\n**status**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "status eq \"Failed\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"id\": \"b393f4e2-4785-4d7f-ab27-3a6b8ded4c81\",\n \"workflowId\": \"d201c5d9-d37b-4a2f-af14-66414f39d568\",\n \"requestId\": \"41e12a74fa7b4a6a98ae47887b64acdb\",\n \"startTime\": \"2022-02-07T20:13:29.356648026Z\",\n \"closeTime\": \"2022-02-07T20:13:31.682410165Z\",\n \"status\": \"Completed\"\n },\n {\n \"id\": \"b393f4e2-4785-4d7f-ab27-3a6b8ded4c81\",\n \"workflowId\": \"d201c5d9-d37b-4a2f-af14-66414f39d568\",\n \"requestId\": \"41e12a74fa7b4a6a98ae47887b64acdb\",\n \"startTime\": \"2022-02-07T20:13:29.356648026Z\",\n \"closeTime\": \"2022-02-07T20:13:31.682410165Z\",\n \"status\": \"Completed\"\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "f9af2e98-adcd-4efd-a248-0abaf5ba194a", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "executions" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**startTime**: *eq, lt, le, gt, ge*\n\n**status**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "status eq \"Failed\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "796dcda5-cf30-43d8-963b-0c7d063e3e9c", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "executions" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**startTime**: *eq, lt, le, gt, ge*\n\n**status**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "status eq \"Failed\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "d2f5c63f-7190-4988-9689-7c7b76293590", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "executions" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**startTime**: *eq, lt, le, gt, ge*\n\n**status**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "status eq \"Failed\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "d0e48f0d-fa64-4204-ac1b-7e08551d94b5", + "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "executions" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**startTime**: *eq, lt, le, gt, ge*\n\n**status**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "status eq \"Failed\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Not Found", + "code": 404, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"404 Not found\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server did not find a current representation for the target resource.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "d6e957b5-4cce-42f6-b2dc-2efa10f04900", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "executions" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**startTime**: *eq, lt, le, gt, ge*\n\n**status**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "status eq \"Failed\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "293ee4d5-ad1c-4db7-b073-c7b31d92edd0", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "executions" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored.\n\nSince requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used.\n\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "count", + "value": "true" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**startTime**: *eq, lt, le, gt, ge*\n\n**status**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "status eq \"Failed\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "d7a24ec6-a7af-403d-afd4-e8fe5ae52a8a", + "name": "Get a Workflow Execution", + "request": { + "name": "Get a Workflow Execution", + "description": { + "content": "Get a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a 404 Not Found.", + "type": "text/plain" + }, + "url": { + "path": [ + "workflow-executions", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", + "key": "id", + "disabled": true, + "description": { + "content": "(Required) Id of the workflow execution", + "type": "text/plain" + } + } + ] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "d3c9b477-ab98-4581-94fa-0681a4a2d3e2", + "name": "The workflow execution", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"id\": \"b393f4e2-4785-4d7f-ab27-3a6b8ded4c81\",\n \"workflowId\": \"d201c5d9-d37b-4a2f-af14-66414f39d568\",\n \"requestId\": \"41e12a74fa7b4a6a98ae47887b64acdb\",\n \"startTime\": \"2022-02-07T20:13:29.356648026Z\",\n \"closeTime\": \"2022-02-07T20:13:31.682410165Z\",\n \"status\": \"Completed\"\n },\n {\n \"id\": \"b393f4e2-4785-4d7f-ab27-3a6b8ded4c81\",\n \"workflowId\": \"d201c5d9-d37b-4a2f-af14-66414f39d568\",\n \"requestId\": \"41e12a74fa7b4a6a98ae47887b64acdb\",\n \"startTime\": \"2022-02-07T20:13:29.356648026Z\",\n \"closeTime\": \"2022-02-07T20:13:31.682410165Z\",\n \"status\": \"Completed\"\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "ebfcbf79-6466-4ece-a48c-544f58d6ad51", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "a5c57e04-c613-45e5-99ff-317b19b0a180", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "339dc441-7476-4121-a008-0f3410b29015", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "2cd06cb1-5c44-4f15-9c5d-060c2f71bf0f", + "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Not Found", + "code": 404, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"404 Not found\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server did not find a current representation for the target resource.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "7e651d24-b56b-4db8-aa77-52b820f64166", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "1cc190fb-a5f5-43de-b303-d97f9d4c878b", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "acf1750c-7b76-4ebd-a4d7-b436a5da6096", + "name": "Get Workflow Execution History", + "request": { + "name": "Get Workflow Execution History", + "description": { + "content": "Get a detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a 404 Not Found.", + "type": "text/plain" + }, + "url": { + "path": [ + "workflow-executions", + ":id", + "history" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", + "key": "id", + "disabled": true, + "description": { + "content": "(Required) Id of the workflow execution", + "type": "text/plain" + } + } + ] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "88b1098a-388c-4787-bb15-c6b8aa82fd26", + "name": "List of workflow execution events for the given workflow execution", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id", + "history" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"type\": \"WorkflowTaskScheduled\",\n \"timestamp\": \"2022-02-07T20:13:31.640618296Z\",\n \"attributes\": {}\n },\n {\n \"type\": \"WorkflowTaskScheduled\",\n \"timestamp\": \"2022-02-07T20:13:31.640618296Z\",\n \"attributes\": {}\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "1d30fd28-60cd-4e08-b8e1-fbbd93a2d7a5", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id", + "history" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "a0e8ec41-1f15-4d03-bff6-7a085f642971", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id", + "history" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "dacedebb-4303-4c6e-86b9-d65805f19441", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id", + "history" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "d1a30f78-8ae6-4c60-8e1a-100917b703c5", + "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id", + "history" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Not Found", + "code": 404, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"404 Not found\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server did not find a current representation for the target resource.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "43958d79-e78b-469b-bc6e-6f3479edac55", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id", + "history" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "7b74b387-b760-4b8c-8dd9-92e502e63e38", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id", + "history" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "856f7734-b813-4c04-a871-3c559cdf3e81", + "name": "Cancel Workflow Execution by ID", + "request": { + "name": "Cancel Workflow Execution by ID", + "description": { + "content": "Use this API to cancel a running workflow execution.", + "type": "text/plain" + }, + "url": { + "path": [ + "workflow-executions", + ":id", + "cancel" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", + "key": "id", + "disabled": true, + "description": { + "content": "(Required) The workflow execution ID", + "type": "text/plain" + } + } + ] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "POST", + "body": {} + }, + "response": [ + { + "id": "eea79d50-a1e8-4923-bc18-50d601509127", + "name": "No content - indicates the request was successful but there is no content to be returned in the response.", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id", + "cancel" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": {} + }, + "status": "No Content", + "code": 204, + "header": [], + "cookie": [], + "_postman_previewlanguage": "text" + }, + { + "id": "3b6257ec-4f78-41cd-bae4-33a3fa03415f", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id", + "cancel" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "43fca518-9efa-4ebf-8b75-bd9589709de7", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id", + "cancel" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "26143074-abee-4195-8e0d-3db86e317a22", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id", + "cancel" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "0e30fa0e-520f-4e27-aa4c-7262f7b7dd34", + "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id", + "cancel" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": {} + }, + "status": "Not Found", + "code": 404, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"404 Not found\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server did not find a current representation for the target resource.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "c20d5446-3880-48a1-9e7d-1ed3d44395c9", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id", + "cancel" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "663cc7a7-7ea9-4d6d-b6c7-55ed2b0f924d", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "workflow-executions", + ":id", + "cancel" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "364a1d60-0967-4e7e-aca9-a09c076b7e48", + "name": "List Complete Workflow Library", + "request": { + "name": "List Complete Workflow Library", + "description": { + "content": "This lists all triggers, actions, and operators in the library", + "type": "text/plain" + }, + "url": { + "path": [ + "workflow-library" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "b81ea361-b37b-460e-b546-2ba5af587f3a", + "name": "List of workflow steps", + "originalRequest": { + "url": { + "path": [ + "workflow-library" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n },\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "39affd83-1ab2-4343-8aaa-a35e0e2fb1b4", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "workflow-library" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "8374efd9-e86a-481a-b059-01a647e4dcb3", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "workflow-library" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "38d6588b-3068-439e-b131-d9d535e11fe1", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "workflow-library" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "f84b315b-ad85-419b-ad1d-243c23a42403", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "workflow-library" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "6708b55a-3e34-4f2a-a7b9-0e07b20333f9", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "workflow-library" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "611c7bf8-1b43-4b63-a45a-2f1cd1c8a388", + "name": "List Workflow Library Actions", + "request": { + "name": "List Workflow Library Actions", + "description": { + "content": "This lists the workflow actions available to you.", + "type": "text/plain" + }, + "url": { + "path": [ + "workflow-library", + "actions" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "id eq \"sp:create-campaign\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "c11fe4b6-c650-43f5-9b61-992bd8f95ba4", + "name": "List of workflow actions", + "originalRequest": { + "url": { + "path": [ + "workflow-library", + "actions" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "id eq \"sp:create-campaign\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n },\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "c374721c-fc18-4cce-ae53-c009ec009d1d", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "workflow-library", + "actions" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "id eq \"sp:create-campaign\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "42a87d0f-4cd0-4643-8ad1-c080d650fddd", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "workflow-library", + "actions" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "id eq \"sp:create-campaign\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "eee8d79e-a944-401b-9131-20ca30c82434", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "workflow-library", + "actions" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "id eq \"sp:create-campaign\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "d06c4c68-4a79-452b-8072-7cfee4cc120a", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "workflow-library", + "actions" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "id eq \"sp:create-campaign\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "e5b93a61-567c-4fc4-be18-febd018458db", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "workflow-library", + "actions" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "id eq \"sp:create-campaign\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "9e22210b-6f92-4cb2-9e8c-3afd149e41d7", + "name": "List Workflow Library Triggers", + "request": { + "name": "List Workflow Library Triggers", + "description": { + "content": "This lists the workflow triggers available to you", + "type": "text/plain" + }, + "url": { + "path": [ + "workflow-library", + "triggers" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "id eq \"idn:identity-attributes-changed\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "f6edfbf6-1b74-4e49-ac2e-7d9273521128", + "name": "List of workflow triggers", + "originalRequest": { + "url": { + "path": [ + "workflow-library", + "triggers" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "id eq \"idn:identity-attributes-changed\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"id\": \"idn:identity-attributes-changed\",\n \"type\": \"EVENT\",\n \"name\": \"Identity Attributes Changed\",\n \"description\": \"One or more identity attributes changed.\",\n \"isDynamicSchema\": false,\n \"inputExample\": {\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"newValue\": \"marketing\",\n \"oldValue\": \"sales\"\n },\n {\n \"attribute\": \"manager\",\n \"newValue\": {\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n },\n \"oldValue\": {\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"newValue\": \"john.doe@gmail.com\",\n \"oldValue\": \"john.doe@hotmail.com\"\n }\n ],\n \"identity\": {\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n }\n }\n },\n {\n \"id\": \"idn:identity-attributes-changed\",\n \"type\": \"EVENT\",\n \"name\": \"Identity Attributes Changed\",\n \"description\": \"One or more identity attributes changed.\",\n \"isDynamicSchema\": false,\n \"inputExample\": {\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"newValue\": \"marketing\",\n \"oldValue\": \"sales\"\n },\n {\n \"attribute\": \"manager\",\n \"newValue\": {\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n },\n \"oldValue\": {\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"newValue\": \"john.doe@gmail.com\",\n \"oldValue\": \"john.doe@hotmail.com\"\n }\n ],\n \"identity\": {\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n }\n }\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "4c3461aa-e11b-4e3f-b2cb-1cd884e3c0e6", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "workflow-library", + "triggers" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "id eq \"idn:identity-attributes-changed\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "1624ab79-d815-448c-8ba7-c6397d56c04b", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "workflow-library", + "triggers" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "id eq \"idn:identity-attributes-changed\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "dae4c388-5cde-489f-8859-a92bdbffabe0", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "workflow-library", + "triggers" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "id eq \"idn:identity-attributes-changed\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "6d510a1e-0e96-472f-844c-58d3a0794399", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "workflow-library", + "triggers" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "id eq \"idn:identity-attributes-changed\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "2c8c5966-66f1-4653-86b4-aa2b2c5d0cd7", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "workflow-library", + "triggers" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [ + { + "disabled": true, + "description": { + "content": "Max number of results to return.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "limit", + "value": "250" + }, + { + "disabled": true, + "description": { + "content": "Offset into the full result set. Usually specified with *limit* to paginate through the results.\nSee [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.", + "type": "text/plain" + }, + "key": "offset", + "value": "0" + }, + { + "disabled": true, + "description": { + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq*", + "type": "text/plain" + }, + "key": "filters", + "value": "id eq \"idn:identity-attributes-changed\"" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "73bba8fc-e8f1-40b0-a482-0a8f5d9b1687", + "name": "List Workflow Library Operators", + "request": { + "name": "List Workflow Library Operators", + "description": { + "content": "This lists the workflow operators available to you", + "type": "text/plain" + }, + "url": { + "path": [ + "workflow-library", + "operators" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "ae08c7ca-cece-4526-83b3-cba35b066e76", + "name": "List of workflow operators", + "originalRequest": { + "url": { + "path": [ + "workflow-library", + "operators" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "[\n {\n \"id\": \"sp:compare-boolean\",\n \"name\": \"Compare Boolean Values\",\n \"type\": \"OPERATOR\",\n \"description\": \"Compare two boolean values and decide what happens based on the result.\",\n \"formFields\": [\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable B.\",\n \"helpText\": \"\",\n \"label\": \"Variable A\",\n \"name\": \"variableA.$\",\n \"required\": true,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"Select an operation.\",\n \"label\": \"Operation\",\n \"name\": \"operator\",\n \"options\": [\n {\n \"label\": \"Equals\",\n \"value\": \"BooleanEquals\"\n }\n ],\n \"required\": true,\n \"type\": \"select\"\n },\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable A.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB.$\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"Enter True or False.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB\",\n \"required\": false,\n \"type\": \"text\"\n }\n ]\n },\n {\n \"id\": \"sp:compare-boolean\",\n \"name\": \"Compare Boolean Values\",\n \"type\": \"OPERATOR\",\n \"description\": \"Compare two boolean values and decide what happens based on the result.\",\n \"formFields\": [\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable B.\",\n \"helpText\": \"\",\n \"label\": \"Variable A\",\n \"name\": \"variableA.$\",\n \"required\": true,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"Select an operation.\",\n \"label\": \"Operation\",\n \"name\": \"operator\",\n \"options\": [\n {\n \"label\": \"Equals\",\n \"value\": \"BooleanEquals\"\n }\n ],\n \"required\": true,\n \"type\": \"select\"\n },\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable A.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB.$\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"Enter True or False.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB\",\n \"required\": false,\n \"type\": \"text\"\n }\n ]\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "87bc20f8-054f-49d4-9396-f860362df125", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "workflow-library", + "operators" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "ec545fa4-d1ee-408e-839d-9f30205772a2", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "workflow-library", + "operators" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "66a2a6a4-d5c3-40f5-81ab-3757e5d3e13d", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "workflow-library", + "operators" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "cf7f00f6-811b-45c1-8561-9cc0732781c4", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "workflow-library", + "operators" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "2a071866-cc4a-42bd-a6a8-4d10480798a8", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "workflow-library", + "operators" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "GET", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "32b44c5c-9619-4d3c-aa2b-2e670f8808ed", + "name": "Generate External Trigger OAuth Client", + "request": { + "name": "Generate External Trigger OAuth Client", + "description": { + "content": "Create OAuth client ID, client secret, and callback URL for use in an external trigger. External triggers will need this information to generate an access token to authenticate to the callback URL and submit a trigger payload that will initiate the workflow.", + "type": "text/plain" + }, + "url": { + "path": [ + "workflows", + ":id", + "external", + "oauth-clients" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", + "key": "id", + "disabled": true, + "description": { + "content": "(Required) Id of the workflow", + "type": "text/plain" + } + } + ] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "POST", + "body": {} + }, + "response": [ + { + "id": "5c7a43a8-d920-46f0-b0d9-3e5a37164fc6", + "name": "The OAuth Client object", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "external", + "oauth-clients" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": {} + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"1a58c03a6bf64dc2876f6988c6e2c7b7\",\n \"secret\": \"00cc24a7fe810fe06a7cb38bc168ae104d703c7abb296f9944dc68e69ddb578b\",\n \"url\": \"https://tenant.api.identitynow.com/beta/workflows/execute/external/c17bea3a-574d-453c-9e04-4365fbf5af0b\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "d17f4575-907d-4987-9a03-c3b539c4b2d6", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "external", + "oauth-clients" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": {} + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "eca79244-b09c-45c3-8d8b-53630bc874d0", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "external", + "oauth-clients" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": {} + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "b1b4ea7d-5d46-48c9-8b31-5f58b1b89116", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "external", + "oauth-clients" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": {} + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "1642d0f2-37e0-411b-93a4-78cbba7c9f77", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "external", + "oauth-clients" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": {} + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "92fc5062-14ec-48fe-a32e-4644b682d558", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "workflows", + ":id", + "external", + "oauth-clients" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": {} + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "cd211651-ab7d-4841-bc76-77094e268c90", + "name": "Execute Workflow via External Trigger", + "request": { + "name": "Execute Workflow via External Trigger", + "description": { + "content": "This endpoint allows a service outside of IdentityNow to initiate a workflow that uses the \"External Trigger\" step. The external service will invoke this endpoint with the input data it wants to send to the workflow in the body.", + "type": "text/plain" + }, + "url": { + "path": [ + "workflows", + "execute", + "external", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", + "key": "id", + "disabled": true, + "description": { + "content": "(Required) Id of the workflow", + "type": "text/plain" + } + } + ] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"customAttribute1\": \"value1\",\n \"customAttribute2\": \"value2\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "response": [ + { + "id": "27ac29b2-5052-4759-bda3-ae9bec134b9d", + "name": "The Workflow object", + "originalRequest": { + "url": { + "path": [ + "workflows", + "execute", + "external", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"customAttribute1\": \"value1\",\n \"customAttribute2\": \"value2\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"workflowExecutionId\": \"0e11cefa-96e7-4b67-90d0-065bc1da5753\",\n \"message\": \"Workflow was not executed externally. Check enabled flag on workflow definition\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "3f220d7e-31f7-478c-a2e4-72be518150a4", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "workflows", + "execute", + "external", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"customAttribute1\": \"value1\",\n \"customAttribute2\": \"value2\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "2a611906-ea34-4ad3-8017-46e8eafc381a", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "workflows", + "execute", + "external", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"customAttribute1\": \"value1\",\n \"customAttribute2\": \"value2\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "51c59ae8-9d41-40db-a818-d8245e3de041", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "workflows", + "execute", + "external", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"customAttribute1\": \"value1\",\n \"customAttribute2\": \"value2\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "a83de4db-a3b4-4d73-a1b2-b8d9a43edc92", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "workflows", + "execute", + "external", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"customAttribute1\": \"value1\",\n \"customAttribute2\": \"value2\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "4bd2dd60-506b-4d7d-8920-5bbe1272dcdf", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "workflows", + "execute", + "external", + ":id" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"customAttribute1\": \"value1\",\n \"customAttribute2\": \"value2\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + }, + { + "id": "4046b886-5282-41df-8869-796a8991e2db", + "name": "Test Workflow via External Trigger", + "request": { + "name": "Test Workflow via External Trigger", + "description": { + "content": "Validate a workflow with an \"External Trigger\" can receive input. The response includes the input that the workflow received, which can be used to validate that the input is intact when it reaches the workflow.", + "type": "text/plain" + }, + "url": { + "path": [ + "workflows", + "execute", + "external", + ":id", + "test" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [ + { + "type": "any", + "value": "c17bea3a-574d-453c-9e04-4365fbf5af0b", + "key": "id", + "disabled": true, + "description": { + "content": "(Required) Id of the workflow", + "type": "text/plain" + } + } + ] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"test\": \"hello world\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "response": [ + { + "id": "5f110526-14a0-4fc4-a934-bce7e2e526b0", + "name": "Responds with the test input", + "originalRequest": { + "url": { + "path": [ + "workflows", + "execute", + "external", + ":id", + "test" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"test\": \"hello world\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"payload\": {\n \"test\": \"hello world\"\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "471d40b2-9f71-4326-a0a9-2978254be953", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "workflows", + "execute", + "external", + ":id", + "test" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"test\": \"hello world\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Bad Request", + "code": 400, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"400.1 Bad Request Content\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ],\n \"causes\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "1cec1cd0-0aaf-4f5a-9fb5-7a7504c7d4e4", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "workflows", + "execute", + "external", + ":id", + "test" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"test\": \"hello world\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Unauthorized", + "code": 401, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"error\": \"JWT validation failed: JWT is expired\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "f78075d6-ae4e-499b-afb2-71f314dd8c3f", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "workflows", + "execute", + "external", + ":id", + "test" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"test\": \"hello world\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Forbidden", + "code": 403, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"403 Forbidden\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The server understood the request but refuses to authorize it.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "795cee7e-9656-4a18-af9f-44ca26f4aa7e", + "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", + "originalRequest": { + "url": { + "path": [ + "workflows", + "execute", + "external", + ":id", + "test" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"test\": \"hello world\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Too Many Requests", + "code": 429, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"message\": \" Rate Limit Exceeded \"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "9d908e0b-47c7-4f42-a12d-d460abe67a68", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "workflows", + "execute", + "external", + ":id", + "test" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"input\": {\n \"test\": \"hello world\"\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Internal Server Error", + "code": 500, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"detailCode\": \"500.0 Internal Fault\",\n \"trackingId\": \"b21b1f7ce4da4d639f2c62a57171b427\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"An internal fault occurred.\"\n }\n ]\n}", + "cookie": [], + "_postman_previewlanguage": "json" + } + ], + "event": [], + "protocolProfileBehavior": { + "disableBodyPruning": true + } + } + ] } ], "event": [ @@ -132814,7 +140117,7 @@ } ], "info": { - "_postman_id": "110750a9-dc38-4fe2-85c6-7caf0f28a12c", + "_postman_id": "2d647aa7-4e8d-4d3a-9674-4ef96ff5b7b8", "name": "IdentityNow V3 API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": {