diff --git a/dereferenced/deref-sailpoint-api.beta.json b/dereferenced/deref-sailpoint-api.beta.json index 162ed3c..1463fcb 100644 --- a/dereferenced/deref-sailpoint-api.beta.json +++ b/dereferenced/deref-sailpoint-api.beta.json @@ -271,6 +271,22 @@ "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" }, + { + "name": "Manual Discover Applications", + "description": "Use this API to manually upload application names to be correlated to an IDN connector.\n" + }, + { + "name": "Manual Discover Applications Template", + "description": "Use this API to download the CSV template to send to the application discovery service.\n" + }, + { + "name": "Discovered Applications", + "description": "Use this API to retrieve all the available discovered apps for a given tenant id.\n" + }, + { + "name": "Vendor Connector Mappings", + "description": "Use this API to manage mappings between various SaaS vendors and IdentityNow (IDN) connectors.\n" + }, { "name": "Icons", "description": "Use this API to implement functionality related to object icons (application icons for example). \nWith this functionality in place, administrators can set or remove an icon for specific object type for use throughout IdentityNow.\n" @@ -276524,6 +276540,2865 @@ } } }, + "/manual-discover-applications": { + "post": { + "summary": "CSV Upload to discover applications", + "tags": [ + "Manual Discover Applications" + ], + "description": "This API allows for the upload of a CSV file containing application data to be manually correlated to potential IDN connector(s).", + "security": [ + { + "UserContextAuth": [ + "idn:application-discovery:write" + ] + } + ], + "operationId": "sendManualDiscoverApplicationsCsvTemplate", + "requestBody": { + "content": { + "multipart/form-data": { + "schema": { + "type": "object", + "properties": { + "csvFile": { + "type": "string", + "format": "binary" + } + }, + "required": [ + "csvFile" + ] + } + } + } + }, + "responses": { + "200": { + "description": "The CSV has been successfully processed.", + "content": { + "multipart/form-data": { + "schema": { + "type": "object", + "properties": { + "file": { + "type": "string", + "format": "binary", + "description": "The CSV file to upload containing `application_name` and `description` columns. Each row represents an application to be discovered.", + "example": "application_name,description\n\"Sample App\",\"This is a sample description for Sample App.\"\n\"Another App\",\"Description for Another App.\"" + } + }, + "required": [ + "file" + ] + } + } + } + }, + "400": { + "description": "Bad request - There was an error with the CSV format or validation failed (e.g., `application_name` missing). Error message should be provided in response.\n", + "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." + } + ] + } + } + } + } + } + } + } + } + }, + "/manual-discover-applications-template": { + "get": { + "summary": "CSV template download for discovery", + "tags": [ + "Manual Discover Applications Template" + ], + "description": "Allows the user to download an example CSV file with two columns `application_name` and `domain`. The CSV file contains a single row with the values 'Example Application' and 'Example Description'.\n", + "security": [ + { + "UserContextAuth": [ + "idn:application-discovery:read" + ] + } + ], + "operationId": "getManualDiscoverApplicationsCsvTemplate", + "responses": { + "200": { + "description": "A CSV file download was successful.", + "content": { + "text/csv": { + "schema": { + "type": "object", + "properties": { + "application_name": { + "type": "string", + "description": "Name of the example application.", + "example": "Example Application" + }, + "domain": { + "type": "string", + "description": "Description of the example application's domain.", + "example": "Example Description" + } + } + } + } + } + }, + "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." + } + ] + } + } + } + } + } + } + } + } + }, + "/discovered-applications": { + "get": { + "operationId": "getDiscoveredApplications", + "tags": [ + "Discovered Applications" + ], + "summary": "Retrieve discovered applications for tenant", + "description": "Fetches a list of applications that have been identified within the environment. This includes details such as application names, discovery dates, potential correlated saas_vendors and related suggested connectors.\n", + "security": [ + { + "UserContextAuth": [ + "idn:application-discovery:read" + ] + } + ], + "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": "filter", + "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 \n \nFiltering is supported for the following fields and operators:\n\n**name**: *eq, sw, co*\n\n**description**: *eq, sw, co*\n", + "example": "name eq \"Okta\" and description co \"Okta\"", + "required": false, + "style": "form" + }, + { + "in": "query", + "name": "sorters", + "schema": { + "type": "string", + "format": "comma-separated" + }, + "description": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **name, description, discoveredAt, discoverySource**", + "example": "name" + } + ], + "responses": { + "200": { + "description": "Successfully retrieved list of discovered applications.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "array", + "description": "An array of discovered applications for a given tenant", + "example": [ + { + "id": "app-123", + "name": "ExampleApp", + "discoverySource": "CSV", + "discoveredVendor": "ExampleVendor", + "description": "An application for managing examples.", + "recommendedConnectors": [ + "ConnectorA", + "ConnectorB" + ], + "discoveredTimestamp": "2023-01-01T12:00:00Z" + } + ], + "items": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid", + "description": "Unique identifier for the discovered application.", + "example": "2d9180835d2e5168015d32f890ca1581" + }, + "name": { + "type": "string", + "description": "Name of the discovered application.", + "example": "ExampleApp" + }, + "discoverySource": { + "type": "string", + "description": "Source from which the application was discovered.", + "example": "CSV" + }, + "discoveredVendor": { + "type": "string", + "description": "The vendor associated with the discovered application.", + "example": "ExampleVendor" + }, + "description": { + "type": "string", + "description": "A brief description of the discovered application.", + "example": "An application for managing examples." + }, + "recommendedConnectors": { + "type": "array", + "items": { + "type": "string" + }, + "description": "List of recommended connectors for the application.", + "example": [ + "ConnectorA", + "ConnectorB" + ] + }, + "discoveredTimestamp": { + "type": "string", + "format": "date-time", + "description": "The timestamp when the application was discovered, in ISO 8601 format.", + "example": "2023-01-01T12:00:00Z" + } + } + } + } + } + } + } + }, + "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." + } + ] + } + } + } + } + } + } + } + } + }, + "/vendor-connector-mappings": { + "get": { + "security": [ + { + "UserContextAuth": [ + "idn:application-discovery:read" + ] + } + ], + "operationId": "getVendorConnectorMappings", + "tags": [ + "Vendor Connector Mappings" + ], + "summary": "List vendor connector mappings", + "description": "Retrieves a list of mappings between SaaS vendors and IDN connectors, detailing the connections established for correlation.\n", + "responses": { + "200": { + "description": "Successfully retrieved list.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "The unique identifier for the vendor-connector mapping.", + "example": "78733556-9ea3-4f59-bf69-e5cd92b011b4" + }, + "vendor": { + "type": "string", + "description": "The name of the vendor.", + "example": "Example vendor" + }, + "connector": { + "type": "string", + "description": "The name of the connector.", + "example": "Example connector" + }, + "createdAt": { + "type": "string", + "format": "date-time", + "description": "The creation timestamp of the mapping.", + "example": "2024-03-13T12:56:19.391294Z" + }, + "createdBy": { + "type": "string", + "description": "The identifier of the user who created the mapping.", + "example": "admin" + }, + "updatedAt": { + "type": "object", + "nullable": true, + "properties": { + "Time": { + "type": "string", + "format": "date-time", + "description": "The timestamp when the mapping was last updated, represented in ISO 8601 format.", + "example": "2024-03-14T12:56:19.391294Z" + }, + "Valid": { + "type": "boolean", + "description": "A flag indicating if the 'Time' field is set and valid.", + "default": false, + "example": true + } + }, + "description": "An object representing the nullable timestamp of the last update." + }, + "updatedBy": { + "type": "object", + "nullable": true, + "properties": { + "String": { + "type": "string", + "description": "The identifier of the user who last updated the mapping, if available.", + "example": "user-67891" + }, + "Valid": { + "type": "boolean", + "description": "A flag indicating if the 'String' field is set and valid.", + "default": false, + "example": true + } + }, + "description": "An object representing the nullable identifier of the user who last updated the mapping." + }, + "deletedAt": { + "type": "object", + "nullable": true, + "properties": { + "Time": { + "type": "string", + "format": "date-time", + "description": "The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.", + "example": "0001-01-01T00:00:00Z" + }, + "Valid": { + "type": "boolean", + "description": "A flag indicating if the 'Time' field is set and valid, i.e., if the mapping has been deleted.", + "default": false, + "example": false + } + }, + "description": "An object representing the nullable timestamp of when the mapping was deleted." + }, + "deletedBy": { + "type": "object", + "nullable": true, + "properties": { + "String": { + "type": "string", + "description": "The identifier of the user who deleted the mapping, if applicable.", + "example": "" + }, + "Valid": { + "type": "boolean", + "description": "A flag indicating if the 'String' field is set and valid, i.e., if the mapping has been deleted.", + "default": false, + "example": false + } + }, + "description": "An object representing the nullable identifier of the user who deleted the mapping." + } + } + }, + "example": [ + { + "id": "78733556-9ea3-4f59-bf69-e5cd92b011b4", + "vendor": "Example Vendor", + "connector": "Example Connector", + "createdAt": "2024-03-13T12:56:19.391294Z", + "createdBy": "admin", + "updatedAt": { + "Time": "2024-03-14T12:56:19.391294Z", + "Valid": true + }, + "updatedBy": { + "String": "user-67891", + "Valid": true + }, + "deletedAt": { + "Time": "0001-01-01T00:00:00Z", + "Valid": false + }, + "deletedBy": { + "String": "", + "Valid": false + } + }, + { + "id": "78733556-9ea3-4f59-bf69-e5cd92b011b5", + "vendor": "Another Corporation", + "connector": "Another Connector", + "createdAt": "2024-04-13T11:46:19.391294Z", + "createdBy": "admin", + "updatedAt": { + "Time": "0001-01-01T00:00:00Z", + "Valid": false + }, + "updatedBy": { + "String": "", + "Valid": false + }, + "deletedAt": { + "Time": "0001-01-01T00:00:00Z", + "Valid": false + }, + "deletedBy": { + "String": "", + "Valid": false + } + } + ] + } + } + } + }, + "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." + } + ] + } + } + } + } + } + }, + "405": { + "description": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "errorName": { + "description": "A message describing the error", + "example": "NotSupportedException" + }, + "errorMessage": { + "description": "Description of the error", + "example": "Cannot consume content type" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + } + } + } + } + } + }, + "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": { + "security": [ + { + "UserContextAuth": [ + "idn:application-discovery:write" + ] + } + ], + "operationId": "createVendorConnectorMapping", + "tags": [ + "Vendor Connector Mappings" + ], + "summary": "Create a vendor connector mapping", + "description": "Creates a new mapping between a SaaS vendor and an IDN connector to establish correlation paths.\n", + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "The unique identifier for the vendor-connector mapping.", + "example": "78733556-9ea3-4f59-bf69-e5cd92b011b4" + }, + "vendor": { + "type": "string", + "description": "The name of the vendor.", + "example": "Example vendor" + }, + "connector": { + "type": "string", + "description": "The name of the connector.", + "example": "Example connector" + }, + "createdAt": { + "type": "string", + "format": "date-time", + "description": "The creation timestamp of the mapping.", + "example": "2024-03-13T12:56:19.391294Z" + }, + "createdBy": { + "type": "string", + "description": "The identifier of the user who created the mapping.", + "example": "admin" + }, + "updatedAt": { + "type": "object", + "nullable": true, + "properties": { + "Time": { + "type": "string", + "format": "date-time", + "description": "The timestamp when the mapping was last updated, represented in ISO 8601 format.", + "example": "2024-03-14T12:56:19.391294Z" + }, + "Valid": { + "type": "boolean", + "description": "A flag indicating if the 'Time' field is set and valid.", + "default": false, + "example": true + } + }, + "description": "An object representing the nullable timestamp of the last update." + }, + "updatedBy": { + "type": "object", + "nullable": true, + "properties": { + "String": { + "type": "string", + "description": "The identifier of the user who last updated the mapping, if available.", + "example": "user-67891" + }, + "Valid": { + "type": "boolean", + "description": "A flag indicating if the 'String' field is set and valid.", + "default": false, + "example": true + } + }, + "description": "An object representing the nullable identifier of the user who last updated the mapping." + }, + "deletedAt": { + "type": "object", + "nullable": true, + "properties": { + "Time": { + "type": "string", + "format": "date-time", + "description": "The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.", + "example": "0001-01-01T00:00:00Z" + }, + "Valid": { + "type": "boolean", + "description": "A flag indicating if the 'Time' field is set and valid, i.e., if the mapping has been deleted.", + "default": false, + "example": false + } + }, + "description": "An object representing the nullable timestamp of when the mapping was deleted." + }, + "deletedBy": { + "type": "object", + "nullable": true, + "properties": { + "String": { + "type": "string", + "description": "The identifier of the user who deleted the mapping, if applicable.", + "example": "" + }, + "Valid": { + "type": "boolean", + "description": "A flag indicating if the 'String' field is set and valid, i.e., if the mapping has been deleted.", + "default": false, + "example": false + } + }, + "description": "An object representing the nullable identifier of the user who deleted the mapping." + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Successfully created a new vendor connector mapping.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "The unique identifier for the vendor-connector mapping.", + "example": "78733556-9ea3-4f59-bf69-e5cd92b011b4" + }, + "vendor": { + "type": "string", + "description": "The name of the vendor.", + "example": "Example vendor" + }, + "connector": { + "type": "string", + "description": "The name of the connector.", + "example": "Example connector" + }, + "createdAt": { + "type": "string", + "format": "date-time", + "description": "The creation timestamp of the mapping.", + "example": "2024-03-13T12:56:19.391294Z" + }, + "createdBy": { + "type": "string", + "description": "The identifier of the user who created the mapping.", + "example": "admin" + }, + "updatedAt": { + "type": "object", + "nullable": true, + "properties": { + "Time": { + "type": "string", + "format": "date-time", + "description": "The timestamp when the mapping was last updated, represented in ISO 8601 format.", + "example": "2024-03-14T12:56:19.391294Z" + }, + "Valid": { + "type": "boolean", + "description": "A flag indicating if the 'Time' field is set and valid.", + "default": false, + "example": true + } + }, + "description": "An object representing the nullable timestamp of the last update." + }, + "updatedBy": { + "type": "object", + "nullable": true, + "properties": { + "String": { + "type": "string", + "description": "The identifier of the user who last updated the mapping, if available.", + "example": "user-67891" + }, + "Valid": { + "type": "boolean", + "description": "A flag indicating if the 'String' field is set and valid.", + "default": false, + "example": true + } + }, + "description": "An object representing the nullable identifier of the user who last updated the mapping." + }, + "deletedAt": { + "type": "object", + "nullable": true, + "properties": { + "Time": { + "type": "string", + "format": "date-time", + "description": "The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.", + "example": "0001-01-01T00:00:00Z" + }, + "Valid": { + "type": "boolean", + "description": "A flag indicating if the 'Time' field is set and valid, i.e., if the mapping has been deleted.", + "default": false, + "example": false + } + }, + "description": "An object representing the nullable timestamp of when the mapping was deleted." + }, + "deletedBy": { + "type": "object", + "nullable": true, + "properties": { + "String": { + "type": "string", + "description": "The identifier of the user who deleted the mapping, if applicable.", + "example": "" + }, + "Valid": { + "type": "boolean", + "description": "A flag indicating if the 'String' field is set and valid, i.e., if the mapping has been deleted.", + "default": false, + "example": false + } + }, + "description": "An object representing the nullable identifier of the user who deleted the mapping." + } + } + } + } + } + }, + "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." + } + ] + } + } + } + } + } + }, + "405": { + "description": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "errorName": { + "description": "A message describing the error", + "example": "NotSupportedException" + }, + "errorMessage": { + "description": "Description of the error", + "example": "Cannot consume content type" + }, + "trackingId": { + "type": "string", + "description": "Unique tracking id for the error.", + "example": "e7eab60924f64aa284175b9fa3309599" + } + } + } + } + } + }, + "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": { + "security": [ + { + "UserContextAuth": [ + "idn:application-discovery:write" + ] + } + ], + "operationId": "deleteVendorConnectorMapping", + "tags": [ + "Vendor Connector Mappings" + ], + "summary": "Delete a vendor connector mapping", + "description": "Soft deletes a mapping between a SaaS vendor and an IDN connector, removing the established correlation.\n", + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "string", + "description": "The unique identifier for the vendor-connector mapping.", + "example": "78733556-9ea3-4f59-bf69-e5cd92b011b4" + }, + "vendor": { + "type": "string", + "description": "The name of the vendor.", + "example": "Example vendor" + }, + "connector": { + "type": "string", + "description": "The name of the connector.", + "example": "Example connector" + }, + "createdAt": { + "type": "string", + "format": "date-time", + "description": "The creation timestamp of the mapping.", + "example": "2024-03-13T12:56:19.391294Z" + }, + "createdBy": { + "type": "string", + "description": "The identifier of the user who created the mapping.", + "example": "admin" + }, + "updatedAt": { + "type": "object", + "nullable": true, + "properties": { + "Time": { + "type": "string", + "format": "date-time", + "description": "The timestamp when the mapping was last updated, represented in ISO 8601 format.", + "example": "2024-03-14T12:56:19.391294Z" + }, + "Valid": { + "type": "boolean", + "description": "A flag indicating if the 'Time' field is set and valid.", + "default": false, + "example": true + } + }, + "description": "An object representing the nullable timestamp of the last update." + }, + "updatedBy": { + "type": "object", + "nullable": true, + "properties": { + "String": { + "type": "string", + "description": "The identifier of the user who last updated the mapping, if available.", + "example": "user-67891" + }, + "Valid": { + "type": "boolean", + "description": "A flag indicating if the 'String' field is set and valid.", + "default": false, + "example": true + } + }, + "description": "An object representing the nullable identifier of the user who last updated the mapping." + }, + "deletedAt": { + "type": "object", + "nullable": true, + "properties": { + "Time": { + "type": "string", + "format": "date-time", + "description": "The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.", + "example": "0001-01-01T00:00:00Z" + }, + "Valid": { + "type": "boolean", + "description": "A flag indicating if the 'Time' field is set and valid, i.e., if the mapping has been deleted.", + "default": false, + "example": false + } + }, + "description": "An object representing the nullable timestamp of when the mapping was deleted." + }, + "deletedBy": { + "type": "object", + "nullable": true, + "properties": { + "String": { + "type": "string", + "description": "The identifier of the user who deleted the mapping, if applicable.", + "example": "" + }, + "Valid": { + "type": "boolean", + "description": "A flag indicating if the 'String' field is set and valid, i.e., if the mapping has been deleted.", + "default": false, + "example": false + } + }, + "description": "An object representing the nullable identifier of the user who deleted the mapping." + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Successfully deleted the specified vendor connector mapping.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "count": { + "type": "integer", + "description": "The number of vendor connector mappings successfully deleted.", + "example": 1 + } + } + } + } + } + }, + "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." + } + ] + } + } + } + } + } + } + } + } + }, "/icons/{objectType}/{objectId}": { "put": { "operationId": "setIcon", diff --git a/dereferenced/deref-sailpoint-api.beta.yaml b/dereferenced/deref-sailpoint-api.beta.yaml index fffec19..beb7220 100644 --- a/dereferenced/deref-sailpoint-api.beta.yaml +++ b/dereferenced/deref-sailpoint-api.beta.yaml @@ -977,6 +977,18 @@ tags: - 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. + - name: Manual Discover Applications + description: | + Use this API to manually upload application names to be correlated to an IDN connector. + - name: Manual Discover Applications Template + description: | + Use this API to download the CSV template to send to the application discovery service. + - name: Discovered Applications + description: | + Use this API to retrieve all the available discovered apps for a given tenant id. + - name: Vendor Connector Mappings + description: | + Use this API to manage mappings between various SaaS vendors and IdentityNow (IDN) connectors. - name: Icons description: | Use this API to implement functionality related to object icons (application icons for example). @@ -209632,6 +209644,2100 @@ paths: - locale: en-US localeOrigin: DEFAULT text: An internal fault occurred. + /manual-discover-applications: + post: + summary: CSV Upload to discover applications + tags: + - Manual Discover Applications + description: This API allows for the upload of a CSV file containing application data to be manually correlated to potential IDN connector(s). + security: + - UserContextAuth: + - 'idn:application-discovery:write' + operationId: sendManualDiscoverApplicationsCsvTemplate + requestBody: + content: + multipart/form-data: + schema: + type: object + properties: + csvFile: + type: string + format: binary + required: + - csvFile + responses: + '200': + description: The CSV has been successfully processed. + content: + multipart/form-data: + schema: + type: object + properties: + file: + type: string + format: binary + description: The CSV file to upload containing `application_name` and `description` columns. Each row represents an application to be discovered. + example: |- + application_name,description + "Sample App","This is a sample description for Sample App." + "Another App","Description for Another App." + required: + - file + '400': + description: | + Bad request - There was an error with the CSV format or validation failed (e.g., `application_name` missing). Error message should be provided in response. + 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. + /manual-discover-applications-template: + get: + summary: CSV template download for discovery + tags: + - Manual Discover Applications Template + description: | + Allows the user to download an example CSV file with two columns `application_name` and `domain`. The CSV file contains a single row with the values 'Example Application' and 'Example Description'. + security: + - UserContextAuth: + - 'idn:application-discovery:read' + operationId: getManualDiscoverApplicationsCsvTemplate + responses: + '200': + description: A CSV file download was successful. + content: + text/csv: + schema: + type: object + properties: + application_name: + type: string + description: Name of the example application. + example: Example Application + domain: + type: string + description: Description of the example application's domain. + example: Example Description + '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. + /discovered-applications: + get: + operationId: getDiscoveredApplications + tags: + - Discovered Applications + summary: Retrieve discovered applications for tenant + description: | + Fetches a list of applications that have been identified within the environment. This includes details such as application names, discovery dates, potential correlated saas_vendors and related suggested connectors. + security: + - UserContextAuth: + - 'idn:application-discovery:read' + 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: filter + 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: + + **name**: *eq, sw, co* + + **description**: *eq, sw, co* + example: name eq "Okta" and description co "Okta" + required: false + style: form + - in: query + name: sorters + schema: + type: string + format: comma-separated + description: |- + Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) + + Sorting is supported for the following fields: **name, description, discoveredAt, discoverySource** + example: name + responses: + '200': + description: Successfully retrieved list of discovered applications. + content: + application/json: + schema: + type: array + items: + type: array + description: An array of discovered applications for a given tenant + example: + - id: app-123 + name: ExampleApp + discoverySource: CSV + discoveredVendor: ExampleVendor + description: An application for managing examples. + recommendedConnectors: + - ConnectorA + - ConnectorB + discoveredTimestamp: '2023-01-01T12:00:00Z' + items: + type: object + properties: + id: + type: string + format: uuid + description: Unique identifier for the discovered application. + example: 2d9180835d2e5168015d32f890ca1581 + name: + type: string + description: Name of the discovered application. + example: ExampleApp + discoverySource: + type: string + description: Source from which the application was discovered. + example: CSV + discoveredVendor: + type: string + description: The vendor associated with the discovered application. + example: ExampleVendor + description: + type: string + description: A brief description of the discovered application. + example: An application for managing examples. + recommendedConnectors: + type: array + items: + type: string + description: List of recommended connectors for the application. + example: + - ConnectorA + - ConnectorB + discoveredTimestamp: + type: string + format: date-time + description: 'The timestamp when the application was discovered, in ISO 8601 format.' + example: '2023-01-01T12:00:00Z' + '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. + /vendor-connector-mappings: + get: + security: + - UserContextAuth: + - 'idn:application-discovery:read' + operationId: getVendorConnectorMappings + tags: + - Vendor Connector Mappings + summary: List vendor connector mappings + description: | + Retrieves a list of mappings between SaaS vendors and IDN connectors, detailing the connections established for correlation. + responses: + '200': + description: Successfully retrieved list. + content: + application/json: + schema: + type: array + items: + type: object + properties: + id: + type: string + description: The unique identifier for the vendor-connector mapping. + example: 78733556-9ea3-4f59-bf69-e5cd92b011b4 + vendor: + type: string + description: The name of the vendor. + example: Example vendor + connector: + type: string + description: The name of the connector. + example: Example connector + createdAt: + type: string + format: date-time + description: The creation timestamp of the mapping. + example: '2024-03-13T12:56:19.391294Z' + createdBy: + type: string + description: The identifier of the user who created the mapping. + example: admin + updatedAt: + type: object + nullable: true + properties: + Time: + type: string + format: date-time + description: 'The timestamp when the mapping was last updated, represented in ISO 8601 format.' + example: '2024-03-14T12:56:19.391294Z' + Valid: + type: boolean + description: A flag indicating if the 'Time' field is set and valid. + default: false + example: true + description: An object representing the nullable timestamp of the last update. + updatedBy: + type: object + nullable: true + properties: + String: + type: string + description: 'The identifier of the user who last updated the mapping, if available.' + example: user-67891 + Valid: + type: boolean + description: A flag indicating if the 'String' field is set and valid. + default: false + example: true + description: An object representing the nullable identifier of the user who last updated the mapping. + deletedAt: + type: object + nullable: true + properties: + Time: + type: string + format: date-time + description: 'The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.' + example: '0001-01-01T00:00:00Z' + Valid: + type: boolean + description: 'A flag indicating if the ''Time'' field is set and valid, i.e., if the mapping has been deleted.' + default: false + example: false + description: An object representing the nullable timestamp of when the mapping was deleted. + deletedBy: + type: object + nullable: true + properties: + String: + type: string + description: 'The identifier of the user who deleted the mapping, if applicable.' + example: '' + Valid: + type: boolean + description: 'A flag indicating if the ''String'' field is set and valid, i.e., if the mapping has been deleted.' + default: false + example: false + description: An object representing the nullable identifier of the user who deleted the mapping. + example: + - id: 78733556-9ea3-4f59-bf69-e5cd92b011b4 + vendor: Example Vendor + connector: Example Connector + createdAt: '2024-03-13T12:56:19.391294Z' + createdBy: admin + updatedAt: + Time: '2024-03-14T12:56:19.391294Z' + Valid: true + updatedBy: + String: user-67891 + Valid: true + deletedAt: + Time: '0001-01-01T00:00:00Z' + Valid: false + deletedBy: + String: '' + Valid: false + - id: 78733556-9ea3-4f59-bf69-e5cd92b011b5 + vendor: Another Corporation + connector: Another Connector + createdAt: '2024-04-13T11:46:19.391294Z' + createdBy: admin + updatedAt: + Time: '0001-01-01T00:00:00Z' + Valid: false + updatedBy: + String: '' + Valid: false + deletedAt: + Time: '0001-01-01T00:00:00Z' + Valid: false + deletedBy: + String: '' + Valid: false + '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. + '405': + description: 'Method Not Allowed - indicates that the server knows the request method, but the target resource doesn''t support this method.' + content: + application/json: + schema: + type: object + properties: + errorName: + description: A message describing the error + example: NotSupportedException + errorMessage: + description: Description of the error + example: Cannot consume content type + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + '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: + security: + - UserContextAuth: + - 'idn:application-discovery:write' + operationId: createVendorConnectorMapping + tags: + - Vendor Connector Mappings + summary: Create a vendor connector mapping + description: | + Creates a new mapping between a SaaS vendor and an IDN connector to establish correlation paths. + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + id: + type: string + description: The unique identifier for the vendor-connector mapping. + example: 78733556-9ea3-4f59-bf69-e5cd92b011b4 + vendor: + type: string + description: The name of the vendor. + example: Example vendor + connector: + type: string + description: The name of the connector. + example: Example connector + createdAt: + type: string + format: date-time + description: The creation timestamp of the mapping. + example: '2024-03-13T12:56:19.391294Z' + createdBy: + type: string + description: The identifier of the user who created the mapping. + example: admin + updatedAt: + type: object + nullable: true + properties: + Time: + type: string + format: date-time + description: 'The timestamp when the mapping was last updated, represented in ISO 8601 format.' + example: '2024-03-14T12:56:19.391294Z' + Valid: + type: boolean + description: A flag indicating if the 'Time' field is set and valid. + default: false + example: true + description: An object representing the nullable timestamp of the last update. + updatedBy: + type: object + nullable: true + properties: + String: + type: string + description: 'The identifier of the user who last updated the mapping, if available.' + example: user-67891 + Valid: + type: boolean + description: A flag indicating if the 'String' field is set and valid. + default: false + example: true + description: An object representing the nullable identifier of the user who last updated the mapping. + deletedAt: + type: object + nullable: true + properties: + Time: + type: string + format: date-time + description: 'The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.' + example: '0001-01-01T00:00:00Z' + Valid: + type: boolean + description: 'A flag indicating if the ''Time'' field is set and valid, i.e., if the mapping has been deleted.' + default: false + example: false + description: An object representing the nullable timestamp of when the mapping was deleted. + deletedBy: + type: object + nullable: true + properties: + String: + type: string + description: 'The identifier of the user who deleted the mapping, if applicable.' + example: '' + Valid: + type: boolean + description: 'A flag indicating if the ''String'' field is set and valid, i.e., if the mapping has been deleted.' + default: false + example: false + description: An object representing the nullable identifier of the user who deleted the mapping. + responses: + '200': + description: Successfully created a new vendor connector mapping. + content: + application/json: + schema: + type: object + properties: + id: + type: string + description: The unique identifier for the vendor-connector mapping. + example: 78733556-9ea3-4f59-bf69-e5cd92b011b4 + vendor: + type: string + description: The name of the vendor. + example: Example vendor + connector: + type: string + description: The name of the connector. + example: Example connector + createdAt: + type: string + format: date-time + description: The creation timestamp of the mapping. + example: '2024-03-13T12:56:19.391294Z' + createdBy: + type: string + description: The identifier of the user who created the mapping. + example: admin + updatedAt: + type: object + nullable: true + properties: + Time: + type: string + format: date-time + description: 'The timestamp when the mapping was last updated, represented in ISO 8601 format.' + example: '2024-03-14T12:56:19.391294Z' + Valid: + type: boolean + description: A flag indicating if the 'Time' field is set and valid. + default: false + example: true + description: An object representing the nullable timestamp of the last update. + updatedBy: + type: object + nullable: true + properties: + String: + type: string + description: 'The identifier of the user who last updated the mapping, if available.' + example: user-67891 + Valid: + type: boolean + description: A flag indicating if the 'String' field is set and valid. + default: false + example: true + description: An object representing the nullable identifier of the user who last updated the mapping. + deletedAt: + type: object + nullable: true + properties: + Time: + type: string + format: date-time + description: 'The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.' + example: '0001-01-01T00:00:00Z' + Valid: + type: boolean + description: 'A flag indicating if the ''Time'' field is set and valid, i.e., if the mapping has been deleted.' + default: false + example: false + description: An object representing the nullable timestamp of when the mapping was deleted. + deletedBy: + type: object + nullable: true + properties: + String: + type: string + description: 'The identifier of the user who deleted the mapping, if applicable.' + example: '' + Valid: + type: boolean + description: 'A flag indicating if the ''String'' field is set and valid, i.e., if the mapping has been deleted.' + default: false + example: false + description: An object representing the nullable identifier of the user who deleted the mapping. + '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. + '405': + description: 'Method Not Allowed - indicates that the server knows the request method, but the target resource doesn''t support this method.' + content: + application/json: + schema: + type: object + properties: + errorName: + description: A message describing the error + example: NotSupportedException + errorMessage: + description: Description of the error + example: Cannot consume content type + trackingId: + type: string + description: Unique tracking id for the error. + example: e7eab60924f64aa284175b9fa3309599 + '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: + security: + - UserContextAuth: + - 'idn:application-discovery:write' + operationId: deleteVendorConnectorMapping + tags: + - Vendor Connector Mappings + summary: Delete a vendor connector mapping + description: | + Soft deletes a mapping between a SaaS vendor and an IDN connector, removing the established correlation. + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + id: + type: string + description: The unique identifier for the vendor-connector mapping. + example: 78733556-9ea3-4f59-bf69-e5cd92b011b4 + vendor: + type: string + description: The name of the vendor. + example: Example vendor + connector: + type: string + description: The name of the connector. + example: Example connector + createdAt: + type: string + format: date-time + description: The creation timestamp of the mapping. + example: '2024-03-13T12:56:19.391294Z' + createdBy: + type: string + description: The identifier of the user who created the mapping. + example: admin + updatedAt: + type: object + nullable: true + properties: + Time: + type: string + format: date-time + description: 'The timestamp when the mapping was last updated, represented in ISO 8601 format.' + example: '2024-03-14T12:56:19.391294Z' + Valid: + type: boolean + description: A flag indicating if the 'Time' field is set and valid. + default: false + example: true + description: An object representing the nullable timestamp of the last update. + updatedBy: + type: object + nullable: true + properties: + String: + type: string + description: 'The identifier of the user who last updated the mapping, if available.' + example: user-67891 + Valid: + type: boolean + description: A flag indicating if the 'String' field is set and valid. + default: false + example: true + description: An object representing the nullable identifier of the user who last updated the mapping. + deletedAt: + type: object + nullable: true + properties: + Time: + type: string + format: date-time + description: 'The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.' + example: '0001-01-01T00:00:00Z' + Valid: + type: boolean + description: 'A flag indicating if the ''Time'' field is set and valid, i.e., if the mapping has been deleted.' + default: false + example: false + description: An object representing the nullable timestamp of when the mapping was deleted. + deletedBy: + type: object + nullable: true + properties: + String: + type: string + description: 'The identifier of the user who deleted the mapping, if applicable.' + example: '' + Valid: + type: boolean + description: 'A flag indicating if the ''String'' field is set and valid, i.e., if the mapping has been deleted.' + default: false + example: false + description: An object representing the nullable identifier of the user who deleted the mapping. + responses: + '200': + description: Successfully deleted the specified vendor connector mapping. + content: + application/json: + schema: + type: object + properties: + count: + type: integer + description: The number of vendor connector mappings successfully deleted. + example: 1 + '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. '/icons/{objectType}/{objectId}': put: operationId: setIcon diff --git a/postman/collections/sailpoint-api-beta.json b/postman/collections/sailpoint-api-beta.json index fa2e19c..99bae3d 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": "561a4374-0312-4fa9-bf71-8185f76a00d0", + "id": "e8f20410-7286-42f4-bcd5-15f1e26c7f9e", "name": "List Access Profiles", "request": { "name": "List Access Profiles", @@ -107,7 +107,7 @@ }, "response": [ { - "id": "79c6e2d2-8ea5-4d74-b0f5-f8c0b1526050", + "id": "6ef1d181-d5a6-421f-aad1-84a116bd21f9", "name": "List of Access Profiles", "originalRequest": { "url": { @@ -223,7 +223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d51bb66-445c-485e-9130-4625ab1bb7e1", + "id": "09f0199d-7ce0-4c59-b123-ed063341af77", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -339,7 +339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4aceb2d4-aa34-4a31-86ee-ec1652785b9f", + "id": "59419f9e-65d6-48fc-a7a8-b06576108a17", "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": "35207f8a-c887-48b5-b507-ba6b9a4e4813", + "id": "e9c78ec0-dd2f-41b3-8efb-aa45fa2f6d25", "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": "1e07dc63-bfba-4324-9fac-3a6ba816cfbb", + "id": "02c760af-0d32-4ad4-ac54-fcbfdb25d44d", "name": "Too Many Requests - Returned in response to too many requests in 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": "ea07ba2a-1b9c-45c7-bcff-a9601632bc65", + "id": "a6f1df72-ea56-49a2-b901-a7d0e100d1e9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -809,7 +809,7 @@ } }, { - "id": "e2a84416-bf95-4b0d-a7fa-faae95f88ed6", + "id": "60ae5991-0ec0-44d7-a75c-4d102b877067", "name": "Create an Access Profile", "request": { "name": "Create an Access Profile", @@ -851,7 +851,7 @@ }, "response": [ { - "id": "58a6765b-0571-4119-a807-861b7c972cdf", + "id": "1406a560-e4b6-47e4-8e62-f10df6138b11", "name": "Access Profile created", "originalRequest": { "url": { @@ -907,7 +907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75b902aa-b9e4-493a-8469-f3574e6c4ecf", + "id": "4165f4ab-ea2c-4e32-a3ba-9f7f085dc782", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -963,7 +963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7748f90d-5a04-4fca-aeb5-e55977304a37", + "id": "e12e95bd-ec8c-4116-bae0-3aa66589046e", "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": "056355be-0380-4b74-b6f8-824914a5a879", + "id": "d5c72393-b9a9-43a5-81fc-d752c19b8cb7", "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": "3d940a2b-4b1a-4aca-8489-2aba6d0626ac", + "id": "5d449d7a-d8ef-4321-85dd-d7f02e26e3a1", "name": "Too Many Requests - Returned in response to too many requests in 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": "35d54c2b-0230-4db6-adb8-eee11c987ee3", + "id": "d00e87df-4979-4d59-8cd8-0b3dc95a4827", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1193,7 +1193,7 @@ } }, { - "id": "2f9b047a-a57f-49ef-b3d9-fae1fa1974ad", + "id": "59141d06-93c5-4931-8be2-64fe60b86478", "name": "Get an Access Profile", "request": { "name": "Get an Access Profile", @@ -1234,7 +1234,7 @@ }, "response": [ { - "id": "4d65f81c-5ba8-4903-9c52-4084aa1b12ac", + "id": "6bf27fe8-5a52-4987-bf65-bfd220fb62ab", "name": "An AccessProfile", "originalRequest": { "url": { @@ -1278,7 +1278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6966b0a6-cb00-4117-b505-e9d6ef623d39", + "id": "405e58a4-23e5-4d30-8f0b-3fd219559c45", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1322,7 +1322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "747fe1f2-f78b-4b7e-a9cc-4dc8c2f3b29b", + "id": "3d897770-534d-42a8-bbc6-777a055e7b1e", "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": "d48b4c43-e6a5-4d40-bec3-f2623f03bdef", + "id": "7eb92905-9426-4163-89bd-6c67dfda14f9", "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": "8fd66eee-a8d8-4ff3-a8de-956d11883446", + "id": "c27793ce-4936-4fe1-be9e-72c963e93f50", "name": "Too Many Requests - Returned in response to too many requests in 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": "7b1dfd8f-135c-41a8-829a-58cba4262fd9", + "id": "78ff1dc0-51d6-4f7f-812e-a1b7e9d71888", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1504,7 +1504,7 @@ } }, { - "id": "30eaf874-dd9b-4378-afe4-fad502c84b4a", + "id": "339af20c-9e46-4420-9031-6abcd0aee08e", "name": "Patch a specified Access Profile", "request": { "name": "Patch a specified Access Profile", @@ -1558,7 +1558,7 @@ }, "response": [ { - "id": "d61ba46d-aafe-4d99-afc7-8988350fc258", + "id": "3b810b5e-9f29-42b5-b734-7fe6501fb4c9", "name": "Add Entitlements", "originalRequest": { "url": { @@ -1615,7 +1615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b2918b5-050e-4689-bdd5-d3a961860516", + "id": "ff6fb5c5-ad8a-4719-a462-26d5e66a3927", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -1672,7 +1672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cc65721-e566-4c29-bcdd-f0c0a1444797", + "id": "d918cdee-2b64-4440-8777-b0370d998d93", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -1729,7 +1729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fab00723-6c32-4646-9770-3ce08d4d6000", + "id": "37358df0-428d-47d8-b727-f3634733042b", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -1786,7 +1786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d88200c1-6484-4913-901e-f929b766af1b", + "id": "1f2fd092-9d32-4565-8f58-46aa4dda34c1", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -1843,7 +1843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "106ea21d-7ab9-442f-85fb-d92fa125e019", + "id": "ab656e28-76be-419c-a87e-451a6a27b217", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -1900,7 +1900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7891388-8293-4dd9-b8ad-85c60a67fdf2", + "id": "a9863361-3fdf-4e7b-9e8f-a1e0765b3436", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -1957,7 +1957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "068c7498-ec08-4c2b-8b1c-84e5130374f9", + "id": "2d46907c-e676-4d28-abef-c8ebf16ae794", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -2014,7 +2014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a4e91ce-9026-4b25-b316-d0aacffbe3f9", + "id": "78dd2eb3-da2e-452d-bf59-8c7c9c96e678", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2071,7 +2071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "758b811a-552d-4c8c-bf39-4ad1f6316eb6", + "id": "2ba941c7-ae29-4fb5-a52d-38499da8fecf", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -2128,7 +2128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdab9bfe-9247-418f-b934-2933b8521a0f", + "id": "7baecb2f-5b08-43bc-8acc-70d4658a8b66", "name": "Add Entitlements", "originalRequest": { "url": { @@ -2185,7 +2185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f91987fe-62e0-40db-9a98-538374309b01", + "id": "1db5b65c-c9ba-42b5-8831-0c078bd3f6d7", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -2248,7 +2248,7 @@ } }, { - "id": "f5f39fdb-df8a-4fb3-bb60-77a1e9cf48f7", + "id": "05edb607-08e4-478f-a3fb-41c3b6f61f67", "name": "Delete the specified Access Profile", "request": { "name": "Delete the specified Access Profile", @@ -2289,7 +2289,7 @@ }, "response": [ { - "id": "a895516e-6eda-4170-94ac-5a48e840c8f2", + "id": "b94adba0-a1ad-48f5-98df-fd5e47a5f02b", "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": "53e6dcfd-c58f-4445-9269-a3cc663800f2", + "id": "035b6f94-98d0-4d0e-af14-658927b3d16a", "name": "Returned when an access profile cannot be deleted as it's being used.", "originalRequest": { "url": { @@ -2367,7 +2367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03138a2d-245c-4dae-aec7-aadbed6351b7", + "id": "ac91538f-791e-4e1c-88bd-0883138eb3ab", "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": "396eccb7-9dcf-4100-9b2e-3e0b75285c5b", + "id": "d080cf54-a5b5-4aba-92f3-feea0e8c7d7f", "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": "70ae108d-e3db-4d7f-aa28-ec32bfa6f4cb", + "id": "cfe37d9b-5335-4739-8640-127363742e9e", "name": "Too Many Requests - Returned in response to too many requests in 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": "683eaed7-ede9-44fc-8c2d-0443c013609c", + "id": "a12f42cf-f0ec-44e1-b5ba-ca1989474689", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2549,7 +2549,7 @@ } }, { - "id": "db51dd4c-d79c-4a8b-a123-d4b03c5aa251", + "id": "aeda6909-e740-46af-99e9-a2444743960f", "name": "Delete Access Profile(s)", "request": { "name": "Delete Access Profile(s)", @@ -2592,7 +2592,7 @@ }, "response": [ { - "id": "abd856c7-c937-432a-a8ea-5148b6b085fe", + "id": "1096d2a5-f436-423b-8a11-cb7b89fd1a53", "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": "9d74f822-747a-418a-b355-09c8109c8c6c", + "id": "7fce3da5-7b43-45fc-b869-c4618f25eba5", "name": "Returned if at least one deletion will be performed.", "originalRequest": { "url": { @@ -2706,7 +2706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a53c7f70-6c0f-4705-87c8-84eba7e84dd9", + "id": "21c9a165-cd45-41bc-9add-9751675f05c0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2763,7 +2763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c4dc451-7fe1-4544-a149-3b5af5de051f", + "id": "352008d1-490a-4aa1-9d0d-e2fc5c579b1a", "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": "763fe7f4-35ad-404e-9f3e-afeef4abf552", + "id": "17f7a45d-3a62-4d59-aa89-6a75830d9eae", "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": "70f251b6-ff93-4569-84ba-90c241d9028b", + "id": "97e9284d-47cb-4fba-b107-8f0991a90df8", "name": "Too Many Requests - Returned in response to too many requests in 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": "e757918e-f956-4462-952b-549c7b7e3102", + "id": "8cdf6120-b605-4af5-b14c-737822c7bef2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2997,7 +2997,7 @@ } }, { - "id": "ae744fa1-c665-4294-b314-1cd26ef5e86f", + "id": "1bfcb4ff-520e-4711-abac-c74fc17cf6d1", "name": "Update Access Profile(s) requestable field.", "request": { "name": "Update Access Profile(s) requestable field.", @@ -3040,7 +3040,7 @@ }, "response": [ { - "id": "ea3e2855-8417-4fc9-ab30-d91c7897e645", + "id": "de50e339-a9cd-4bd6-9dba-d5d853bff6b2", "name": "List of updated and not updated Access Profiles.", "originalRequest": { "url": { @@ -3097,7 +3097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91183451-f4b4-4715-9f02-a42f86978306", + "id": "39b3bf9e-ea8b-45b5-9dc2-bba386a767ab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -3154,7 +3154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a73871d-85bf-4b81-8610-930c87db61f4", + "id": "0626ca4a-b879-4cf9-ab9e-c8bf990c51b4", "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": "b2bb3b9a-4e63-4f76-978a-cabf3d95b250", + "id": "f58f90f5-0cff-4ccd-8ed7-8fcec0d1d9f0", "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": "e6919c7b-6fc7-4b95-b34d-8f8f480b6e5b", + "id": "fa09dbc8-992f-4d0d-abc4-ead3c82c042c", "name": "Precondition Failed - Returned in response if API/Feature not enabled for an organization.", "originalRequest": { "url": { @@ -3325,7 +3325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf09a1d2-8ebc-4f39-a73a-6d213968e1ed", + "id": "acb7caa2-2861-481a-92ac-26fe6311d33c", "name": "Too Many Requests - Returned in response to too many requests in 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": "4acaaac4-5bf3-4961-88f0-fa541317b012", + "id": "6db60a0a-f0f3-40fc-b24d-b5d9bbf0f040", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -3445,7 +3445,7 @@ } }, { - "id": "8de7bed9-35ed-4e55-8954-361135547af2", + "id": "b538f9d3-0a05-43da-b8cb-78b9b2c15b78", "name": "List Access Profile's Entitlements", "request": { "name": "List Access Profile's Entitlements", @@ -3533,7 +3533,7 @@ }, "response": [ { - "id": "605afff6-6620-4cc8-8b77-9dc2d5e32e63", + "id": "c9bf155f-3414-4230-843f-8be9f8ae2cfa", "name": "List of Entitlements", "originalRequest": { "url": { @@ -3624,7 +3624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9095041a-ee45-4163-a900-ba3ddea50ee6", + "id": "eb5c799d-dd14-41d0-98a6-2bdaa738530b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -3715,7 +3715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cbfd749-6e76-4233-9755-188aa159050f", + "id": "514171a5-7a1a-465d-8853-66e5dcfc2482", "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": "dcc35868-cb90-462d-9d28-8c88c5952bce", + "id": "cc02d0cf-81a1-496d-b937-644e81038afc", "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": "99eb2832-3f4c-43ff-8133-18db649a6c67", + "id": "5e7e2556-3146-4a9a-b270-3aa12201bb1a", "name": "Too Many Requests - Returned in response to too many requests in 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": "63afebed-4ac1-4743-b3f1-4d3b67b1f934", + "id": "a42f0466-7764-4f0e-936b-99e9fb813f48", "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": "7b42c07f-51cc-4306-b8dc-1d59b19b214a", + "id": "88cd127d-b406-452b-a256-8cb82e44cd81", "name": "Pending Access Request Approvals List", "request": { "name": "Pending Access Request Approvals List", @@ -4115,7 +4115,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -4151,7 +4151,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -4160,7 +4160,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -4176,7 +4176,7 @@ }, "response": [ { - "id": "d82fbe24-840b-4701-ad8a-999d538a6488", + "id": "cc6bae7c-2bb0-4004-a8e9-348f5e6ac144", "name": "List of Pending Approvals.", "originalRequest": { "url": { @@ -4195,7 +4195,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -4231,7 +4231,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -4240,7 +4240,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -4275,7 +4275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f719dbcd-72b2-4ec3-b175-cbee4e53980f", + "id": "e910aa53-4801-4417-93f7-d6cdb3531ef8", "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": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -4330,7 +4330,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -4339,7 +4339,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -4374,7 +4374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f24de6e1-4cac-45fe-99e9-f21e6d32a2f1", + "id": "d8497736-5c02-4ade-99c9-80b0f96e94a1", "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": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -4429,7 +4429,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -4438,7 +4438,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -4473,7 +4473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85a521f5-a80a-45eb-9ef1-4abbfff76d75", + "id": "27f41f66-dc4b-4353-a0c3-9b5788d281d1", "name": "Too Many Requests - Returned in response to too many requests in 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": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -4528,7 +4528,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -4537,7 +4537,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -4572,7 +4572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c24af45-75b9-45d8-9849-ef0c39755462", + "id": "9c128fb8-c820-44c8-93fa-cc6d9fe84ab6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4591,7 +4591,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -4627,7 +4627,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -4636,7 +4636,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -4677,7 +4677,7 @@ } }, { - "id": "1b2d2ecc-3022-457a-ad19-cea01958660f", + "id": "a9901656-0788-4931-913c-971f6849f55e", "name": "Completed Access Request Approvals List", "request": { "name": "Completed Access Request Approvals List", @@ -4701,7 +4701,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -4737,7 +4737,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -4746,7 +4746,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -4762,7 +4762,7 @@ }, "response": [ { - "id": "188db832-4e0e-42a0-bfda-a5d49b71ea22", + "id": "f1c21e1c-67a2-4286-8ea2-c31de0e00318", "name": "List of Completed Approvals.", "originalRequest": { "url": { @@ -4781,7 +4781,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -4817,7 +4817,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -4826,7 +4826,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "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\": \"dolor consectetur magna mollit Lorem\"\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\": \"Lorem non\"\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\": \"non\"\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\": \"aliqua eiusmod\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "46cab165-b506-4cfb-a8dd-fea289d3b602", + "id": "d042c673-e360-4c9a-a069-3c1e17bc562b", "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": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -4916,7 +4916,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -4925,7 +4925,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -4960,7 +4960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e0d9922-1fdc-4b0f-a30a-4ab8942f532b", + "id": "0e5218b0-0e77-4c3c-aa65-22c09dd02983", "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": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -5015,7 +5015,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -5024,7 +5024,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -5059,7 +5059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95d54bd0-6f83-418f-9e08-791ec96d0aef", + "id": "69c57822-deb3-4b7d-9ac2-3104a5f51cd4", "name": "Too Many Requests - Returned in response to too many requests in 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": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -5114,7 +5114,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -5123,7 +5123,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -5158,7 +5158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb00dce0-fd9e-456f-b99f-e75d43d28a00", + "id": "24f39bd7-a5fa-4d11-84e1-a96a67fdf1d2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5177,7 +5177,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -5213,7 +5213,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -5222,7 +5222,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -5263,7 +5263,7 @@ } }, { - "id": "529bb123-c23d-40a2-8836-0af3f955fb5b", + "id": "ef7928d7-bc82-4f20-9811-32c6eca43272", "name": "Approves an access request approval.", "request": { "name": "Approves an access request approval.", @@ -5318,7 +5318,7 @@ }, "response": [ { - "id": "e0a90c7b-70a7-4b9b-b8fa-bcb71de62740", + "id": "d8a52185-04c2-4bc2-b8e4-7d7326c82841", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -5376,7 +5376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "808b0762-da14-4a62-8741-58b51393315b", + "id": "1ef102cb-f696-43d1-9e60-7513ac6940d2", "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": "4c431c86-1e27-4101-b87a-6fc89a855577", + "id": "5b763ef7-622a-495c-bb4e-6e9f8637e1f7", "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": "22df3c8c-c62b-4d47-a383-4a41ecd21df7", + "id": "7bd0658e-97d7-4d11-b0e2-463b0e86bbdb", "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": "9d07d671-a75f-41c8-ae65-f5565ff49881", + "id": "057d550f-e989-4bba-83e4-1812788a0921", "name": "Too Many Requests - Returned in response to too many requests in 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": "5b4d18ee-4f9a-4401-9623-a244877ea7d6", + "id": "3ffc9609-bf01-49b8-bd81-75362fb790b1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5672,7 +5672,7 @@ } }, { - "id": "12873138-5eff-4a1e-8ee4-a381f6164529", + "id": "dcda92dc-b0de-41b6-8001-24311d1c0eca", "name": "Rejects an access request approval.", "request": { "name": "Rejects an access request approval.", @@ -5727,7 +5727,7 @@ }, "response": [ { - "id": "5fe6df4a-edad-4852-bb37-5b9ef731716f", + "id": "508d6fc6-cf68-4d63-8c44-d2a69d8f92f3", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -5785,7 +5785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57b71e52-1686-421d-a7e5-7968406bf99e", + "id": "dc8976d7-9c60-40e1-889b-87912f1cb893", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5843,7 +5843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9712a700-6bc7-4eae-89e0-826a2293515a", + "id": "6080d31b-0b1d-4165-a6bd-cc7d1165830b", "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": "883f2cac-ca2c-4819-aa0c-3fed4be753f5", + "id": "f8bac63d-f7ff-4663-8300-35a58aedffa8", "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": "5c73bd18-dbef-4e87-b0d1-bf5b31664ada", + "id": "cac6b2c5-7070-404a-8190-c4bdaa2d3321", "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": "765a22b1-e28f-43d6-a598-a7fb82d82dba", + "id": "2b5639bc-5a87-4414-b3f7-13d2a85eb4cc", "name": "Too Many Requests - Returned in response to too many requests in 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": "f6f6d359-45e8-4de8-be85-d0de67a5b6b2", + "id": "b92dbbb9-d37b-4ef1-96fb-4ce52c338dd2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6139,7 +6139,7 @@ } }, { - "id": "e50ec382-a68a-4a37-b021-6a4435079319", + "id": "fa32c260-8857-49ae-b944-84347e003902", "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\": \"ut mollit aliqua\",\n \"comment\": \"dolore voluptate in\"\n}", + "raw": "{\n \"newOwnerId\": \"minim fugiat\",\n \"comment\": \"Excepteur anim in consequat\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6194,7 +6194,7 @@ }, "response": [ { - "id": "c6d8adc7-a262-479e-8a9d-16bfecde5d2c", + "id": "bbe4cb19-8535-498b-9ec4-d6cf2bb69a14", "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\": \"ut mollit aliqua\",\n \"comment\": \"dolore voluptate in\"\n}", + "raw": "{\n \"newOwnerId\": \"minim fugiat\",\n \"comment\": \"Excepteur anim in consequat\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6252,7 +6252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4da7cd11-cccd-438c-869c-28405deeacd1", + "id": "1b9f55b9-bb24-48b6-92a6-00213e4557b5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -6288,7 +6288,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"ut mollit aliqua\",\n \"comment\": \"dolore voluptate in\"\n}", + "raw": "{\n \"newOwnerId\": \"minim fugiat\",\n \"comment\": \"Excepteur anim in consequat\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6310,7 +6310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8ce7a44-ab29-4a2b-8916-27346be67aee", + "id": "741e86be-9d4e-4747-b5d9-27fe33776e24", "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\": \"ut mollit aliqua\",\n \"comment\": \"dolore voluptate in\"\n}", + "raw": "{\n \"newOwnerId\": \"minim fugiat\",\n \"comment\": \"Excepteur anim in consequat\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6368,7 +6368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7c43f29-351e-4b2d-b0c2-121bcaf5b694", + "id": "f436d81d-d603-4a56-8800-667f52aef15d", "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\": \"ut mollit aliqua\",\n \"comment\": \"dolore voluptate in\"\n}", + "raw": "{\n \"newOwnerId\": \"minim fugiat\",\n \"comment\": \"Excepteur anim in consequat\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6426,7 +6426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a234a3fd-f2c5-4bfd-9295-b7085be0340e", + "id": "15184c9a-61d3-43e1-bb41-e7e88fd6de25", "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\": \"ut mollit aliqua\",\n \"comment\": \"dolore voluptate in\"\n}", + "raw": "{\n \"newOwnerId\": \"minim fugiat\",\n \"comment\": \"Excepteur anim in consequat\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6484,7 +6484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f27b5306-11d6-47ce-9304-37cfbd2cb4ba", + "id": "ef843c8b-a0ad-4948-aba5-3d0b391d38ec", "name": "Too Many Requests - Returned in response to too many requests in 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\": \"ut mollit aliqua\",\n \"comment\": \"dolore voluptate in\"\n}", + "raw": "{\n \"newOwnerId\": \"minim fugiat\",\n \"comment\": \"Excepteur anim in consequat\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6542,7 +6542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bafb3be2-5d5d-4809-b33f-447b17efb0ed", + "id": "fdf5c1fd-266a-4ec9-8520-158c2c066ac5", "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\": \"ut mollit aliqua\",\n \"comment\": \"dolore voluptate in\"\n}", + "raw": "{\n \"newOwnerId\": \"minim fugiat\",\n \"comment\": \"Excepteur anim in consequat\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6606,7 +6606,7 @@ } }, { - "id": "2db455b4-8ac9-40e4-9097-30e7c339d5a2", + "id": "e079930d-0f73-4ffb-be8b-928840912a4b", "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": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -6639,7 +6639,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -6655,7 +6655,7 @@ }, "response": [ { - "id": "ccf93a2b-def6-4898-981b-62ff20e6a196", + "id": "90a7383b-acfc-46dd-9629-c5d555aae5d0", "name": "Number of pending, approved, rejected access request approvals.", "originalRequest": { "url": { @@ -6674,7 +6674,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -6683,7 +6683,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -6713,12 +6713,12 @@ "value": "application/json" } ], - "body": "{\n \"pending\": -70586735,\n \"approved\": -26331533,\n \"rejected\": -93141377\n}", + "body": "{\n \"pending\": -93727266,\n \"approved\": -90070434,\n \"rejected\": 44039071\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "096a2637-168b-490f-84db-f1632ff3a602", + "id": "81685682-80ea-4e11-abc4-af2c6082ef56", "name": "Client Error - Returned if the query parameter is invalid.", "originalRequest": { "url": { @@ -6737,7 +6737,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -6746,7 +6746,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -6781,7 +6781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa5816d8-905b-4350-b050-3c5c6950dd2d", + "id": "7632bb75-b601-4cb3-857b-f88e1c846785", "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": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -6809,7 +6809,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -6844,7 +6844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b25dee9-5e94-4c35-b2e6-14af1a008fdf", + "id": "ae1da997-076b-48b5-beff-9e90cdb25703", "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": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -6872,7 +6872,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -6907,7 +6907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5defc8ab-fb43-4f40-9c63-1c3d13b50942", + "id": "2b0d82ed-1da7-484a-8509-950e0c36ee29", "name": "Too Many Requests - Returned in response to too many requests in 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": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -6935,7 +6935,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -6970,7 +6970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07b5a495-a454-481e-89ca-aa63e7cdf458", + "id": "ea549c3f-33d8-4b8e-839f-4b0987fd4ab0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6989,7 +6989,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -6998,7 +6998,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "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": "14ab4f60-f6a0-4451-82e3-e07aadf5cce0", + "id": "a463e1d9-e491-453b-9979-e6d3d96b8375", "name": "Submit an Access Request", "request": { "name": "Submit an Access Request", @@ -7087,7 +7087,7 @@ }, "response": [ { - "id": "bde9fc4d-bdef-4a4f-ad49-7342a6195b89", + "id": "26c981fe-cb01-46d3-b26b-2fc7cdf82211", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7143,7 +7143,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48151a76-21e0-4314-8abf-1a745ea5ad1c", + "id": "17aeab9e-ff18-41e4-ab29-9a817b44a3e8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7199,7 +7199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20df5ba3-cde6-409e-aee0-f214a36903a2", + "id": "0e13b04e-9b7d-4e26-9f5e-d37f443b1b2f", "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": "4083c132-f1c9-4336-9cd3-c3ea6c6aeeb8", + "id": "ba2584a7-2558-4370-93fe-8e259b1a41fb", "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": "cfc4090c-3df8-487f-a2b9-7ba9ec717b6b", + "id": "eb9ed7dc-e973-464a-90bb-ded828981331", "name": "Too Many Requests - Returned in response to too many requests in 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": "34999836-6453-4f9a-b90e-cd40a58c3d84", + "id": "88215105-90ab-40c9-a944-fe753e5d326c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7429,7 +7429,7 @@ } }, { - "id": "a1477e04-20f6-45a6-ade0-e81e1e141c2a", + "id": "d0362a3d-c3e2-46d2-8a7d-aac0166909a7", "name": "Cancel Access Request", "request": { "name": "Cancel Access Request", @@ -7472,7 +7472,7 @@ }, "response": [ { - "id": "37568d50-2be9-440a-8a35-4bfdd50d2911", + "id": "be6a0383-6e3b-4fc1-bfcb-d1b42b8de664", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7529,7 +7529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "099e4a56-faf7-46b1-97ec-51f51150d559", + "id": "f7244d49-7d95-439f-b4ef-230c90bc0b39", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7586,7 +7586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd508ad3-b02e-42f3-9b90-5d4628246cd1", + "id": "be2a7b12-7e42-44c0-826b-47250aee4a19", "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": "7d34ff99-064b-4552-9316-e755f8405d96", + "id": "d7fabf44-a12a-4854-92bd-1e5c9fef93f2", "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": "393969fc-2cfa-4d33-a953-f899819f72c5", + "id": "aa38f6f5-b2d4-41f5-904e-ea1aa8c04099", "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": "17d3df1a-7d49-477f-91e7-91a98aea53b7", + "id": "b2ef744f-ca61-4a0c-89b2-e22279d5212b", "name": "Too Many Requests - Returned in response to too many requests in 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": "40fcb17b-4f53-424c-8399-fb42883864f4", + "id": "8898d88c-0c95-44fe-a614-53bfd251d6a0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7877,7 +7877,7 @@ } }, { - "id": "76332637-31b5-4bec-8f22-8d688c9d9ee8", + "id": "01b24311-0b53-48c7-b807-b1b22e7378ec", "name": "Close Access Request", "request": { "name": "Close Access Request", @@ -7920,7 +7920,7 @@ }, "response": [ { - "id": "bf3199f6-b43a-4044-9178-3c6ca3f0c776", + "id": "aa0ff093-4dcc-4b06-b951-ad8464a0e3f7", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7977,7 +7977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecde8ce7-942e-4603-bdf6-76abe4aec668", + "id": "d7429b74-1faf-4360-946c-68cf952435d0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8034,7 +8034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "609faf34-7179-47fc-8a90-401c53aa0048", + "id": "f2b03a4b-f87f-41f3-8aee-c5c064243dfa", "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": "a5d20df4-7677-4217-9cca-96fbcc0b42cf", + "id": "d2442dd5-f65e-4b15-9b55-8973da05d886", "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": "20855191-8f00-44dd-a733-d1f2da9f3771", + "id": "f02803ce-2e41-4f79-abad-2df0c866b560", "name": "Too Many Requests - Returned in response to too many requests in 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": "56ccb07c-c6d2-4488-8317-2d15cfa60e3c", + "id": "39cb85ec-019c-4eb2-a3a4-8c13bbafdb84", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8268,7 +8268,7 @@ } }, { - "id": "e9191b6c-c1fc-4bc9-98cb-0bc3a031893c", + "id": "1fb64b30-6ee2-4b54-807c-b971f2b81f09", "name": "Get Access Request Configuration", "request": { "name": "Get Access Request Configuration", @@ -8297,7 +8297,7 @@ }, "response": [ { - "id": "39158ab0-ff29-4450-a6e8-0790758c5157", + "id": "0f60cdbb-8ec8-4262-a81c-7164a1ce71e3", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -8340,7 +8340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdb65124-84d6-40af-a474-b11828331d14", + "id": "3f852ab3-fb0b-4f64-9213-4ae03b36e2f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8383,7 +8383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47ed075f-08a3-4d70-be83-92709aa70543", + "id": "3468b0ab-ff22-450c-b0be-4532830bf3c1", "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": "7f8096e9-04ef-41a5-883a-a7dd679f6893", + "id": "ead2ab50-e8c3-4286-8da7-b60e6a8037a0", "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": "cb04aeb5-b479-44e7-b8ef-825fa69804d7", + "id": "62850c24-1d3f-42e8-8c79-e3a1f57dffe5", "name": "Too Many Requests - Returned in response to too many requests in 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": "fc43ce7f-8aab-4cc3-825c-ba87f73156cf", + "id": "1c81be15-cf83-416d-bb67-80e278bef6db", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8561,7 +8561,7 @@ } }, { - "id": "80b13c42-8c83-4eea-bf83-d3be0fae6338", + "id": "1b71801d-8240-46bc-b422-0df49fb88b44", "name": "Update Access Request Configuration", "request": { "name": "Update Access Request Configuration", @@ -8603,7 +8603,7 @@ }, "response": [ { - "id": "55512393-dd1d-40a8-bf94-53b548f11cd2", + "id": "d6abe3ba-d0fa-4c9a-99f9-a05b88e07308", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -8659,7 +8659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "730c752c-6854-4060-a777-f7b3650a66e8", + "id": "48ea668c-57d3-4027-986d-31f0a1a24786", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8715,7 +8715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3b032a8-50ed-4be4-8479-26fd49bfa311", + "id": "b2b004bb-feb0-41ab-928f-3bbf9bdac689", "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": "913460a6-70b3-4430-ab44-caa4e7eafe45", + "id": "4e84d6bf-f0a6-4c5f-91b1-a7e8410b8d7e", "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": "e738b88f-a8a2-4049-856d-bcd82dcd7d47", + "id": "42725c86-ca83-4fb7-a2aa-7791acf04973", "name": "Too Many Requests - Returned in response to too many requests in 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": "fd0869ac-9bff-4b9b-a05c-a7bf5b9df167", + "id": "f1e318f6-999a-4feb-bd15-47c7f809a0d1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8945,7 +8945,7 @@ } }, { - "id": "071ff874-a998-4a33-95d0-137dec0891fd", + "id": "4d484922-faee-486c-8a12-96b1518b3392", "name": "Access Request Status", "request": { "name": "Access Request Status", @@ -9056,7 +9056,7 @@ }, "response": [ { - "id": "8bc0850b-61ee-4c17-9e50-b015f4bde352", + "id": "ce48f1af-2085-40b0-8662-f23ec739c8ae", "name": "List of requested item status.", "originalRequest": { "url": { @@ -9181,7 +9181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a34c21d-7db9-4e3c-94da-a5d0aa31302c", + "id": "a30bb3b7-3aea-49d8-8800-1bcfe180a74f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9306,7 +9306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34ad8e04-9f33-4b8f-90c9-094810a6e45f", + "id": "beb5be35-556b-4923-a138-7ad4ebbd9ca8", "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": "a3adb821-16be-4e5a-98c6-caf73b8b822d", + "id": "787c9dc3-1fb2-41d1-a826-7051b4813a45", "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": "9a3f5177-b1c2-4a68-8d65-33b21a330d1d", + "id": "9d8918ec-1dba-4eea-9848-2f05f521ab1a", "name": "Too Many Requests - Returned in response to too many requests in 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": "ea42a886-e93f-43c7-aecf-acba067c154c", + "id": "e31d6418-8ebd-48c3-951b-346a1d38a79a", "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": "1b044bdf-42b6-4d84-87be-4b4210549a81", + "id": "54f75304-16b1-4d7e-b62f-6571a56b7aef", "name": "Return access request identity metrics", "request": { "name": "Return access request identity metrics", @@ -9883,7 +9883,7 @@ }, "response": [ { - "id": "86c980f3-d7be-4c3b-b6ab-7ea68c20182d", + "id": "6714cee4-5ef4-4f7e-95e7-d78ff461cdbe", "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": "41493a0f-3a6a-4205-9799-fa2115f7e377", + "id": "356e4fdf-6290-4a56-ae5e-169193fa0ad7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9979,7 +9979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83be3a1e-c04e-4923-96da-94131004adf0", + "id": "fda6a4fe-8107-4037-955d-69e057bf61fd", "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": "14c59410-debc-4d4b-80c3-5517b5b87cde", + "id": "95b43762-b339-4273-973c-e1f3e14b453f", "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": "d0d3d7c5-bbc8-4a10-975c-0bc4bb55489b", + "id": "0e31dd5b-94b8-4247-8743-785c692b2228", "name": "Too Many Requests - Returned in response to too many requests in 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": "0e53ef5c-9f8d-4180-a294-3e3798ad74f0", + "id": "98120f88-025a-4d69-a178-ca5e13652345", "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": "885708da-8911-404a-849c-22d2ec299578", + "id": "0058b50e-2a6e-408a-934c-8ec0532ce730", "name": "List Account Activities", "request": { "name": "List Account Activities", @@ -10206,7 +10206,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10215,7 +10215,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10224,7 +10224,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10233,7 +10233,7 @@ "type": "text/plain" }, "key": "type", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10269,7 +10269,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10278,7 +10278,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -10294,7 +10294,7 @@ }, "response": [ { - "id": "537acfc2-47a6-4169-a784-c3175828add0", + "id": "9bf62a89-fc3a-4f8f-b52c-1d8565e59194", "name": "List of account activities", "originalRequest": { "url": { @@ -10312,7 +10312,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10321,7 +10321,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10330,7 +10330,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10339,7 +10339,7 @@ "type": "text/plain" }, "key": "type", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10375,7 +10375,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10384,7 +10384,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "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 \"ipsum__07\": \"nisi mollit culpa et\"\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 \"laborum9b0\": \"tempor sint dolor minim\",\n \"ut_93\": \"dolore irure eiusmod in\"\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]", + "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 \"Lorema\": \"minim proident Lorem do\"\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 \"sit_b6\": \"occaecat ut\",\n \"nisi_4f2\": \"sit\",\n \"irure_0\": \"irure sed\",\n \"consectetur_4a4\": \"est do Lorem\"\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": "ebc7f583-9940-4e95-8ad1-e6c39716816b", + "id": "85e0d59a-ada3-4cfc-b9f4-eab0738864fa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10437,7 +10437,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10446,7 +10446,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10455,7 +10455,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10464,7 +10464,7 @@ "type": "text/plain" }, "key": "type", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10500,7 +10500,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10509,7 +10509,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -10544,7 +10544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df53b9d0-15bf-4336-9bc1-660a41364d82", + "id": "a3e7ad93-dfa2-40a6-bbf7-0f0b37bc644d", "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": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10571,7 +10571,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10580,7 +10580,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10589,7 +10589,7 @@ "type": "text/plain" }, "key": "type", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10625,7 +10625,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10634,7 +10634,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -10669,7 +10669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0e0c22e-4fae-4cd4-9e9a-da463a8277d7", + "id": "af93e836-c0aa-4f9b-96d0-098458a721f4", "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": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10696,7 +10696,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10705,7 +10705,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10714,7 +10714,7 @@ "type": "text/plain" }, "key": "type", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10750,7 +10750,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10759,7 +10759,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -10794,7 +10794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e41bc91c-c9b2-4064-93e1-da7d14780179", + "id": "54f4f0ff-e3e5-470e-b2e7-ceff0667c639", "name": "Too Many Requests - Returned in response to too many requests in 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": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10821,7 +10821,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10830,7 +10830,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10839,7 +10839,7 @@ "type": "text/plain" }, "key": "type", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10875,7 +10875,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10884,7 +10884,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -10919,7 +10919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e013ed45-eb1a-4267-96cf-27c31dc0d86c", + "id": "3be5d28a-89b3-4f49-888c-8e2a286e66c1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10937,7 +10937,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10946,7 +10946,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10955,7 +10955,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -10964,7 +10964,7 @@ "type": "text/plain" }, "key": "type", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -11000,7 +11000,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -11009,7 +11009,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -11050,7 +11050,7 @@ } }, { - "id": "4163817f-3a97-4d78-ab34-3eb447d7ef51", + "id": "532329c2-00b6-4bef-bc8d-974317b010cf", "name": "Get Account Activity", "request": { "name": "Get Account Activity", @@ -11091,7 +11091,7 @@ }, "response": [ { - "id": "a81982dd-ab4f-4a0f-affd-154fd3f313dd", + "id": "3e18397b-14d0-484f-965b-baee3abd37d3", "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 \"eiusmod_4\": \"eu\"\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 \"cupidatat_072\": \"adipisicing eu proide\"\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": "b491f686-a948-4708-8e4a-f77277323d47", + "id": "cc408040-a592-40a9-b2cd-61a333e4e0cc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11179,7 +11179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5d38763-3571-4b81-9b32-21313a1d995c", + "id": "1cf43b1f-da63-4b54-bae6-1e184747cd8e", "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": "c6b5e4b7-e138-4489-8a2d-a9981e344c14", + "id": "e33e685f-eec8-42a7-a166-b8f9bd3a78dc", "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": "3f4f4da3-ec06-409a-bdb5-a699b69ccbee", + "id": "0f735773-6fbc-4be5-aae6-4b1265bb3b74", "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": "7d42c583-82c6-4e27-9ca1-4c67864d3d48", + "id": "f7bf6b47-2719-45d2-b353-3409bbdb7a58", "name": "Too Many Requests - Returned in response to too many requests in 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": "45543f17-7ac2-49ec-add5-4f2cad98f9d5", + "id": "645ae256-1d9d-40eb-b189-d83729830a84", "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": "8f21d6ed-11ad-4817-b295-a7b65aaec4fb", + "id": "2c2c690b-4a72-4189-abc9-4645e610823d", "name": "In-progress Account Aggregation status", "request": { "name": "In-progress Account Aggregation status", @@ -11453,7 +11453,7 @@ }, "response": [ { - "id": "1ae1e7e1-f354-4929-8623-9b8dcbf1371c", + "id": "3602ace2-68cf-41cd-acba-070e47b78d86", "name": "An account aggregation status object", "originalRequest": { "url": { @@ -11498,7 +11498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f37b425-16bd-446d-afaa-10ac3a0693ff", + "id": "385feffe-171b-4858-a065-16e937c6b75f", "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": "b68045f1-c3bb-47b7-aec6-0eaacd17ab68", + "id": "de645d7f-e3e2-4339-88cf-c8d75a8ac07f", "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": "1c583c98-8901-4434-b3b3-1a2889c52165", + "id": "ea260bcf-3bd3-44bc-bb80-77649d85a85d", "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": "f80b0129-215b-4ffd-9682-2aa96d62280b", + "id": "4ad73734-9c20-482b-8294-dd8a5308eddd", "name": "Too Many Requests - Returned in response to too many requests in 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": "d9729174-d359-4299-a89f-76cd96a8731a", + "id": "02f62e5c-60fd-463e-afa1-9223dfb3e511", "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": "a736ecbd-64a2-4e17-a069-6d89e05cf8b0", + "id": "34344820-4c53-4fd6-a003-b01fe7b0f13d", "name": "Returns account usage insights", "request": { "name": "Returns account usage insights", @@ -11814,7 +11814,7 @@ }, "response": [ { - "id": "ac535942-1018-4a8c-9d02-fadb24ea97ce", + "id": "668edb47-d271-4cdc-89b1-2422afca6f85", "name": "Summary of account usage insights for past 12 months.", "originalRequest": { "url": { @@ -11896,7 +11896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d366baa4-84a9-44d0-9c02-f29a23090c31", + "id": "7a4ed579-6c58-4690-a307-389db20f321a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11978,7 +11978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c82c9d6-720e-442e-bc92-9f3ea82e7073", + "id": "4f8dc31e-7efa-4914-b20e-0ab615485aa1", "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": "08634d64-6967-4a73-afb1-3fbae38d9032", + "id": "1df2ad8d-16ba-45e8-b092-ae4fe756c79c", "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": "bc672555-ef60-4e28-b0ed-055ac06fd754", + "id": "b6c9a9e0-0fa0-44e8-9215-1989533ea452", "name": "Too Many Requests - Returned in response to too many requests in 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": "af5c18bb-4f1b-4e6b-b33f-e7cf44cc7792", + "id": "f4387b25-a492-4455-9148-23ca21683f60", "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": "56eac0b8-2f58-4450-993b-56bd5d8d5710", + "id": "a1676f06-3918-4603-92d7-731449df8a89", "name": "Accounts List", "request": { "name": "Accounts List", @@ -12402,7 +12402,7 @@ }, "response": [ { - "id": "c2b0774b-333a-4eae-b684-163d13886c78", + "id": "7efaae69-1d23-4ffe-a72a-b36bd9d847c8", "name": "SlimAccounts", "originalRequest": { "url": { @@ -12500,7 +12500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b281f5e-e7fe-420d-b099-e99431cd6d6f", + "id": "3ff08246-655e-4913-a38b-2aea10d5018f", "name": "FullAccounts", "originalRequest": { "url": { @@ -12598,7 +12598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94cd3b42-7363-4b9a-a3c2-f70463bfbcdc", + "id": "e0e1732a-31c3-4995-89a1-9a375fc25d01", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12696,7 +12696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2821936f-fecb-48f0-8e71-419120d4803b", + "id": "7b06f787-895d-471f-8b68-3ae50de0f078", "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": "8ed3f5b6-22b0-4314-b931-b909b80dcf55", + "id": "3f8232fb-9f97-4f0f-9cf4-cf81a6d8f7ac", "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": "dfbebd1b-e340-4634-aba0-bd09dcc73d50", + "id": "50f3663f-43a6-428f-9130-49171aac1675", "name": "Too Many Requests - Returned in response to too many requests in 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": "cbcee5aa-3ee5-4e9e-8879-ea8b7c3b34a2", + "id": "191ac062-5dce-4c8c-8f1c-4c0a58987a3a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13094,7 +13094,7 @@ } }, { - "id": "6208efbe-8df7-4cf0-b64d-340ea640d9fa", + "id": "f3e21fa0-00f9-446a-b44d-9099233eef6c", "name": "Create Account", "request": { "name": "Create Account", @@ -13136,7 +13136,7 @@ }, "response": [ { - "id": "d55f2cb6-92d6-422d-b05b-4a4537bd91d1", + "id": "cd1d9037-c728-4df3-8b27-c16ef9fef5e5", "name": "Async task details", "originalRequest": { "url": { @@ -13192,7 +13192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d46b7d38-adcc-40e1-827e-740ea4db6d5d", + "id": "07accde7-af08-41de-a1f8-a7a93c128e3f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13248,7 +13248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cd8be0c-79b5-4286-bd29-88b52949b12d", + "id": "8ba601c8-8bd1-44a9-86a1-801cc3e51938", "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": "1b5db8e4-8b7c-4f18-b4b5-e50c2225ba0d", + "id": "1828f898-2794-411f-badc-36225552b3af", "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": "fe967d6a-88cc-4643-afe0-feef9e03f4ef", + "id": "54608675-8330-43e4-b1a9-75093eaf2a21", "name": "Too Many Requests - Returned in response to too many requests in 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": "5df9317f-1e86-410c-8287-bde7d5b9027f", + "id": "e1a86650-c9dc-48f5-82cc-2f483d181f4e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13478,7 +13478,7 @@ } }, { - "id": "ce475bdd-3512-4589-b507-978c1d647790", + "id": "356d9425-716b-4aec-a5c7-9110f0336b33", "name": "Account Details", "request": { "name": "Account Details", @@ -13519,7 +13519,7 @@ }, "response": [ { - "id": "f821d097-1936-425a-b720-3c089c75a092", + "id": "24497555-2dd6-4518-822c-902dc809378d", "name": "Account object.", "originalRequest": { "url": { @@ -13563,7 +13563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "380d2292-61f0-4700-921c-5a89c0bf22a3", + "id": "282ab88e-cb72-4a91-9993-65b0aca2ed17", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13607,7 +13607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3179dfb-5ced-4865-af32-9670f5ba1db2", + "id": "7aa89e93-a474-4198-a5af-c882d6ec9613", "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": "77357d94-7608-4d3b-acdd-a4e0d0b4c5b8", + "id": "c8ac632f-57a4-4a5f-88e6-c4768db0f9e9", "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": "70b57a28-270b-4f56-8958-05a8ba3ce517", + "id": "76cdf014-86b2-48c4-b53e-4fba989b1696", "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": "fe0f83e5-20ab-4899-8862-8be2b229e091", + "id": "4ae2c1d2-d290-48b0-acb3-bea23dc7781d", "name": "Too Many Requests - Returned in response to too many requests in 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": "1d6cf03f-d0e3-45b1-a8a9-dd0cdd867166", + "id": "881e9e7c-e93a-416b-aea5-72de51974f06", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13833,7 +13833,7 @@ } }, { - "id": "85c55dbd-6efc-4058-b8a5-1d05c7376ac7", + "id": "fb2fb6b5-eea3-448f-bea3-75b048a35721", "name": "Update Account", "request": { "name": "Update Account", @@ -13887,7 +13887,7 @@ }, "response": [ { - "id": "f79af9ec-c225-465c-8f88-4f63ffdb0227", + "id": "0b2a391b-d4c3-42a1-9509-ae600c903a68", "name": "Accepted. Update request accepted and is in progress.", "originalRequest": { "url": { @@ -13944,7 +13944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3afd937-569e-4b01-912f-624a594703ff", + "id": "2a5221d5-f6f3-41a6-a65f-f27cb756e586", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14001,7 +14001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a52def6-13b7-42c7-8915-63f905a0b52f", + "id": "f783de57-b854-46e8-91ef-fc45693c4483", "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": "e4777d02-4a51-49f3-ae21-ef72a1402f82", + "id": "b17509fc-ebec-4906-8b53-a02ab2603e51", "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": "e71fc896-90da-48e0-9e00-cd1ef6720059", + "id": "94f8678d-fe04-4323-b2cb-fefb9de7a404", "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": "bd159010-aa50-4157-ac89-a8cf21a5e463", + "id": "d6934810-71a1-4f7d-8533-367aeffb21c8", "name": "Too Many Requests - Returned in response to too many requests in 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": "bb8f18f0-2c46-4209-ac42-0e2b528f9ad9", + "id": "2356787e-f8a4-4a90-85af-18371c4ce512", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14292,7 +14292,7 @@ } }, { - "id": "daf826ab-d5d5-4b45-ba9b-999decc7e1e7", + "id": "810b3d84-f02f-497b-9f3f-5dfcda50df67", "name": "Update Account", "request": { "name": "Update Account", @@ -14346,7 +14346,7 @@ }, "response": [ { - "id": "ee091acf-e2a5-43de-9e1e-e2a0ea166f4d", + "id": "528ad837-1abe-4c1e-a000-f02468d52913", "name": "Async task details.", "originalRequest": { "url": { @@ -14403,7 +14403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53533939-a730-4814-b07f-14ae03f893e5", + "id": "75f39056-c7c4-48b6-a035-b136895ada46", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14460,7 +14460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f71ffc0-4ef9-4f8a-a1bb-46ffca2d5e9f", + "id": "6a1c2f06-0ee4-4828-847c-8c557e57d2e4", "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": "185e04ce-81ee-462c-a2f7-accbcd187cc2", + "id": "549a9be9-e34c-46ce-a507-3c7d0adfedd0", "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": "7d084cb3-ef3e-47ca-b0e9-4e2016343346", + "id": "07492a57-6d79-407d-b30b-7e1847870646", "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": "2e08d882-8c1d-4363-bb70-be9c0e087816", + "id": "da711410-e4a0-4a3d-8545-89ba314366dc", "name": "Too Many Requests - Returned in response to too many requests in 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": "43da4d53-4f81-4de6-9eef-89a9b83bc2ae", + "id": "fb31e1e8-0ebc-4c6a-ba35-d03db914fcff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14751,7 +14751,7 @@ } }, { - "id": "df4fefd1-7d02-4c84-a309-d8c8faebe590", + "id": "f4b7467e-3409-4535-96d4-8517df27d9dd", "name": "Delete Account", "request": { "name": "Delete Account", @@ -14792,7 +14792,7 @@ }, "response": [ { - "id": "dfe7f75d-6689-493b-9525-da1c774e3ff6", + "id": "295a6a6e-090b-4b21-8d6f-8f3124c8e57f", "name": "Async task details.", "originalRequest": { "url": { @@ -14836,7 +14836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17641fc7-0251-4b87-9665-dd0c7c73f8a1", + "id": "ff616dee-7ee3-40b8-ba2d-0a21796477ac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14880,7 +14880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dec927a-5038-4c4c-a82a-6eaef5ca6e01", + "id": "2043c9fb-63bc-4305-845f-4c56c2f41b78", "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": "41b9c241-c3f4-476f-a7fa-74390f8e4f8c", + "id": "03c591c3-f954-469b-a130-24590b4dc5eb", "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": "681357e4-6e3e-4e77-b2a9-58fe816a1950", + "id": "5d891a63-13b2-483d-a338-e430342eb1a7", "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": "bd8a9a26-5666-4c49-a637-47dd9af80c79", + "id": "b7023bcc-faec-4ca0-832b-c0da40ef2075", "name": "Too Many Requests - Returned in response to too many requests in 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": "77741027-7777-48b9-af0a-11791dea2014", + "id": "4c6e8467-7441-4bd0-b020-9dae1a19f9ee", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15106,7 +15106,7 @@ } }, { - "id": "9846c3c4-e178-4851-bd66-08e6d783c2cf", + "id": "1cb44018-6309-410c-85ae-f16573a272c2", "name": "Account Entitlements", "request": { "name": "Account Entitlements", @@ -15176,7 +15176,7 @@ }, "response": [ { - "id": "eff5182e-2000-45a2-80eb-fb1ebc97cb5a", + "id": "6e787dc6-6601-4773-9801-b38138c33faa", "name": "An array of account entitlements", "originalRequest": { "url": { @@ -15249,7 +15249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75c876d9-64e0-4feb-996f-4d5f7901d793", + "id": "248a96ec-6c9d-4b5a-a7b6-742e30b7c166", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15322,7 +15322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42dd98e9-4b62-4e9d-9955-2037032355ca", + "id": "4bd4b365-12d8-4f16-a7d2-3c0fc6e62de5", "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": "774bda6d-ad57-49c9-b5a8-ba05644f095b", + "id": "00523dc9-a1f3-46b6-bdbb-1a79bd9fe177", "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": "d35952b2-c918-4af5-a9f1-fe6ec936f4b8", + "id": "6a9728c5-26c2-4dfb-8bc8-61938ebcae73", "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": "68ac4072-85eb-4b0a-a9b2-008ed99087e2", + "id": "c98912c1-99cc-484b-a649-8aab5944db93", "name": "Too Many Requests - Returned in response to too many requests in 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": "5a2f6366-578f-4bac-bb34-1df087fff2eb", + "id": "7e0d5332-3fd0-4f30-bbf4-bea2d7bf21bb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15693,7 +15693,7 @@ } }, { - "id": "dc7bc435-7435-41e8-9bd2-544d14e3dd79", + "id": "2a50e67f-4a84-4892-ad58-07d2ff3ca504", "name": "Reload Account", "request": { "name": "Reload Account", @@ -15735,7 +15735,7 @@ }, "response": [ { - "id": "381e55d3-2a71-45ba-a5a9-11a62c2fca6c", + "id": "9ece8a26-5fc5-451b-aaea-5b336d65946d", "name": "Async task details", "originalRequest": { "url": { @@ -15780,7 +15780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3412043-6eb4-4405-bb1e-bf92cf30975c", + "id": "bf4054e7-6a56-4f1e-b9b0-b864342769cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15825,7 +15825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d706e736-309a-4fb9-bf43-5f960b37863c", + "id": "84e3ae7c-9374-4c3d-bddb-ab0cb8a04f8a", "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": "058c7ef2-7128-4ef1-b2a7-43046f605bfa", + "id": "50c9593e-2b42-4f68-9892-8020d63376c5", "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": "d677d6cc-4632-44d9-bf97-aa9bfe958f01", + "id": "1ad9bab5-6444-48bb-91e2-49023aefd76d", "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": "ff0360d8-5be7-4f64-b2af-5c04ffc58f28", + "id": "b33e7f87-8c63-42e4-81f3-692abfdc4d04", "name": "Too Many Requests - Returned in response to too many requests in 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": "1b11761d-3473-4892-ab6d-dfc30e2af53a", + "id": "f36e20bf-41ea-496f-adf7-0e2f60a61d6b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16056,7 +16056,7 @@ } }, { - "id": "dad59281-b37d-4836-bf51-2a308b4c096d", + "id": "639ce01e-77e5-486d-940b-782dca8ce835", "name": "Enable Account", "request": { "name": "Enable Account", @@ -16111,7 +16111,7 @@ }, "response": [ { - "id": "f1bd50cc-3bdd-4ed3-87ed-d4b3cc7505ce", + "id": "eaf19e55-e0e2-4869-9e5d-ec292ce9e6a1", "name": "Async task details", "originalRequest": { "url": { @@ -16169,7 +16169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3c39667-9724-4bd0-9216-084fb27f34b6", + "id": "63ca1d86-a2b8-40f6-bc90-679088c4620b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16227,7 +16227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b082ea1-ab3f-4a18-ad5c-9162b0a762c9", + "id": "131cc6fc-9fe9-4009-9959-02fbde0857d5", "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": "6f2a150b-f793-4f35-baab-6b94b6d12bc2", + "id": "840f8683-6822-4674-8e3d-78ac8250a361", "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": "99c06489-55fb-4e7e-8acc-bbd7dcf37a62", + "id": "7c1a28cc-ce6d-4d21-b7a2-1b1d8a5a03cf", "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": "056bbf04-d3ac-4007-9cd4-78634563d5af", + "id": "adf7e998-15e3-47b0-88df-6af3137d3fd3", "name": "Too Many Requests - Returned in response to too many requests in 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": "6936e329-8053-4447-9e81-eaa7fc18ea7d", + "id": "8b1f6ebd-1890-4194-b458-8af2158b9550", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16523,7 +16523,7 @@ } }, { - "id": "05ac2560-8267-4e41-af68-c907aa55dc05", + "id": "380b0caa-3b55-4b27-bce5-b6fb6201ae2b", "name": "Disable Account", "request": { "name": "Disable Account", @@ -16578,7 +16578,7 @@ }, "response": [ { - "id": "7ca42640-958a-4429-b217-e68c38ae7732", + "id": "90763c75-64fc-46df-a225-aa1c2d627ce5", "name": "Async task details", "originalRequest": { "url": { @@ -16636,7 +16636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "183023a5-32e5-4a61-91ab-e35679573841", + "id": "1f82840f-5786-464d-938a-2877c4744c4a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16694,7 +16694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cba99a3f-0c6c-4fd1-9509-903a604b4447", + "id": "259f12eb-3a9f-4aef-997f-1fa6eed3f891", "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": "418cdb43-530d-4991-b97c-966a04826693", + "id": "065dfe1f-01d6-4d49-acc2-f2054c64d895", "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": "86a4b5f0-fa29-4fcc-b1a3-4345383b1c67", + "id": "35b6838a-de9d-4726-9f70-ca7b4d08c584", "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": "2a6228fc-47af-4334-ac9c-65261eb6a839", + "id": "9e268595-95e6-49fa-a079-d4b7209ad445", "name": "Too Many Requests - Returned in response to too many requests in 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": "48576ddb-5ce0-40be-a593-9af21e59c1d7", + "id": "0eab486c-2f04-4ba8-a8d5-fe205a6e831b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16990,7 +16990,7 @@ } }, { - "id": "61cc1242-9904-4143-bc22-ec7a36386013", + "id": "2be3eba2-c061-46cc-95c4-17b89ce6f327", "name": "Unlock Account", "request": { "name": "Unlock Account", @@ -17045,7 +17045,7 @@ }, "response": [ { - "id": "095fed95-0c18-48ae-b149-11a43011194e", + "id": "dfecade3-62dc-449d-a869-a5c8aa035bf9", "name": "Async task details", "originalRequest": { "url": { @@ -17103,7 +17103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ca3891d-4162-49cf-a0fc-189b53777c64", + "id": "9dddc928-553d-4389-989e-06a47c3d8135", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17161,7 +17161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b61aa7f0-235c-4c3e-aa89-ef542ef70942", + "id": "6388faff-aab9-479c-b04e-edf4c3ad0b8b", "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": "5e977ab3-99de-4e7a-b3ef-40dde379b857", + "id": "782738fe-78c1-4b6f-853b-cbc05d7a4823", "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": "7a2d9ef1-73bd-450e-890b-a1a8ceac9bea", + "id": "13ee8fd9-2f91-42e1-9be3-764f6cc5ff03", "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": "36138a70-d479-48a2-8f58-c984a53c1218", + "id": "00dee0cb-cdcb-41be-89c4-6085ad3f9232", "name": "Too Many Requests - Returned in response to too many requests in 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": "60bec936-4b86-4d91-9277-48ed2180f2fa", + "id": "f42e77ab-20b3-450e-9b4f-0cd593d597d2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17457,7 +17457,7 @@ } }, { - "id": "0669e3c5-3c02-4521-9192-ff22e0d1ca73", + "id": "fe2f4199-70d9-4ede-b1c4-292206e21567", "name": "Remove Account", "request": { "name": "Remove Account", @@ -17499,7 +17499,7 @@ }, "response": [ { - "id": "87bc9cdb-65f6-45a2-a2b2-2488eb47e783", + "id": "0cd6ce97-1401-43bf-8cec-17492d7c6ec1", "name": "Accepted. Returns task result details of removal request.", "originalRequest": { "url": { @@ -17544,7 +17544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da8c0558-2010-4436-9df7-46f53fa7046f", + "id": "52118f8e-d695-4bf0-96e8-d3a720f9054f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17589,7 +17589,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a76d112f-2dc2-4d8e-94e9-124e5626ae25", + "id": "bbfa4e03-1e6b-4a86-9e31-5bd922dff042", "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": "ea9e65be-7dea-4c15-9416-de83bb44a4e7", + "id": "7cc11922-71c0-4ca7-8336-630a730112dc", "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": "0899e086-dd2d-4432-91b8-b73d25e1b472", + "id": "2f25f55d-d202-46bf-8191-b1ff49ad8e9e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17724,7 +17724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03055e23-25a0-4fa5-8f92-43b0b3c070bb", + "id": "c36d7992-cc3d-45db-8fb7-f45cf86cd440", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17775,7 +17775,7 @@ } }, { - "id": "5c8c311e-3dc0-471d-8be3-d7bb39fe2e56", + "id": "46c3fc5c-ac42-4fe4-8a1d-799a664a3541", "name": "Enable IDN Account for Identity", "request": { "name": "Enable IDN Account for Identity", @@ -17817,7 +17817,7 @@ }, "response": [ { - "id": "7960a003-651f-45a9-a6c5-f544de445c00", + "id": "2fc123a2-4759-4122-ae20-ecd528b1c5e9", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -17862,7 +17862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f35a2752-a4b8-4857-aac7-d31b9ad17e82", + "id": "995fa276-4373-433e-af5f-ab61dd2f02a8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17907,7 +17907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "620d53bc-4108-4f43-a5a7-48e64d5bbcb4", + "id": "5b88794b-4656-492c-a9e4-cfc4c168e7d4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17952,7 +17952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32ba75b5-10b6-4ef3-947b-777064fbfb15", + "id": "dc1b2821-a78c-4e08-9b51-68e562d5da41", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17997,7 +17997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d7852f9-cf84-4973-ae45-297de251ab75", + "id": "dbcf4b1d-ffc7-4024-819f-49629b05e90e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18042,7 +18042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20ac0cd9-4cf6-49b6-b6ef-dd4f26e6f534", + "id": "2c15a374-d2af-481e-a5b3-ee9bf341fcc8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18087,7 +18087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d38598b-eb25-4b6a-a461-a4dbec81c3d3", + "id": "cd421241-60fd-4649-9d1f-05d9ba1d02ae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18138,7 +18138,7 @@ } }, { - "id": "442d476a-7b33-4451-996c-a641530eb7f6", + "id": "948b5fd9-0d4d-4431-b794-3c9508ce50aa", "name": "Disable IDN Account for Identity", "request": { "name": "Disable IDN Account for Identity", @@ -18180,7 +18180,7 @@ }, "response": [ { - "id": "d2fe5ad2-5bfd-439c-b295-0524e90fdedf", + "id": "ba72b1f1-f58b-4d60-983a-7e91c8c2ad50", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -18225,7 +18225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf3c9900-89ce-41eb-9e36-a3d1a0ec7617", + "id": "3e186f58-d69e-444f-bacd-0c90c2268c02", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18270,7 +18270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "015ca3ca-f039-4859-baf4-92716530b798", + "id": "d0c75ac1-af1c-424a-8d9e-664a2cad112f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18315,7 +18315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f9b8dc2-8cbf-4722-a9f6-09022e545790", + "id": "35de79e6-f5fc-4662-9a1d-47c8c8ad5259", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18360,7 +18360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "013f6f33-de80-42b0-be64-244835f8e4ca", + "id": "4f204e1b-d825-4e1d-be8d-c49816b35433", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18405,7 +18405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a63f161d-7d6d-4fab-b2e8-4c6c46c5819e", + "id": "b7d8fe93-6331-4e48-b5c5-7e352c73f3ab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18450,7 +18450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e448fba3-806f-4e3f-bb5d-04bcf5678abb", + "id": "7610dadf-9e12-4ed1-9962-e04ea239c171", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18501,7 +18501,7 @@ } }, { - "id": "94b2e1cf-632b-4d45-acc3-dee275085832", + "id": "bad8ea5e-5815-4a66-acac-4435bd0548f3", "name": "Enable IDN Accounts for Identities", "request": { "name": "Enable IDN Accounts for Identities", @@ -18544,7 +18544,7 @@ }, "response": [ { - "id": "30465463-9b14-44a4-a402-31eeddcfd31b", + "id": "ab14bd5d-921f-42fa-a92d-9469a58c948e", "name": "Bulk response details.", "originalRequest": { "url": { @@ -18601,7 +18601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a490028-4422-47fd-a4e8-5ed33fa054b4", + "id": "a0d1ccb5-9db8-483d-889e-95c89e912d94", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18658,7 +18658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84bb048e-56f2-4ef7-9ab7-9ef7b35d9341", + "id": "0d3bf2da-ea38-4264-8f47-a751db6c5eea", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18715,7 +18715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "590f977d-7c56-450b-ba12-557a263ee1b4", + "id": "c1df4bb7-4528-48db-924e-fff50b6e6b38", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18772,7 +18772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eceaac93-08a7-4d04-9e9f-fd9c7b844c14", + "id": "0cf1ac9d-9d63-425f-af67-17ad87215e44", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18829,7 +18829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce644dc4-c17c-4714-87a8-798ce3e95d8d", + "id": "b482feef-c128-488f-9086-8fdfb1985855", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18892,7 +18892,7 @@ } }, { - "id": "373b9394-fcff-4998-89b5-d7f5028f9d98", + "id": "8f906fa8-4847-4c41-960b-265e12779c94", "name": "Disable IDN Accounts for Identities", "request": { "name": "Disable IDN Accounts for Identities", @@ -18935,7 +18935,7 @@ }, "response": [ { - "id": "3295e082-487e-4469-aa63-b3eb715cf9bd", + "id": "add89d14-82cb-4c0f-84ae-8aab87d90d77", "name": "Bulk response details.", "originalRequest": { "url": { @@ -18992,7 +18992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96dce1c0-24c7-4f80-a035-cd64ae79707e", + "id": "81267fda-874c-447c-afa3-8357553355db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19049,7 +19049,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4603fcae-5de9-4f62-ab33-c4ad457965a0", + "id": "2c1a5fd8-dcf5-4145-b76f-c248caf99a5e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19106,7 +19106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fefc3d27-d363-4b26-b58e-0599b1734888", + "id": "983ca559-28ac-46f1-a1dc-3fd91ecd2733", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19163,7 +19163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1987945-ec3b-4dae-b20e-ccd7eeb73b83", + "id": "1ef4e795-5380-4765-bad7-4b0d9f7ad172", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19220,7 +19220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fa07bac-9bf6-4236-a27f-353d5e10de15", + "id": "a20c50e6-7a0e-40f3-a292-3f164f7abb35", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19283,7 +19283,7 @@ } }, { - "id": "37b87429-7d3d-4e74-a3ed-7114c09e08d7", + "id": "feddad8b-4076-410d-a8ca-9c9b373568be", "name": "Remove All Accounts", "request": { "name": "Remove All Accounts", @@ -19325,7 +19325,7 @@ }, "response": [ { - "id": "e7080851-9cd2-4ccf-bf45-49051efb6b1e", + "id": "6b003367-e480-4fce-b634-079358838aa6", "name": "Accepted. Returns task result details of removal request.", "originalRequest": { "url": { @@ -19370,7 +19370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc253fb6-f33d-407e-8c39-935ba953f270", + "id": "67a8f954-0aa8-43bc-a8ca-de9705452d0b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19415,7 +19415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "673d912f-91a1-4c53-8c2f-5b20190faacc", + "id": "0a19d1ae-cddd-46c4-9bc7-e80239a5c7ce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19460,7 +19460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15541aa5-7e7e-49c8-9b0f-a27dfc790c70", + "id": "13cb0140-b3ed-4720-a44e-a225d120deb3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19505,7 +19505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04b5c0cb-48d1-45d1-9075-95dd0a46bccb", + "id": "276007e2-bc4c-48a5-a3cd-17d956e02ca9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19550,7 +19550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cba76f26-4049-4a5b-93d1-cf05eec9172c", + "id": "13f4956c-e93d-4ffd-b44c-4a2b8fbbb400", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19607,7 +19607,7 @@ "description": "Auth Profile - Represents authentication configuration for an Identity Profile. This object gets created when an Identity Profile is created.\n\nAPIs can be used to retrieve and update Auth Profiles.\n", "item": [ { - "id": "37e0e6f7-978d-479e-8e53-f92d8b202e65", + "id": "020ab8c0-041f-4559-8dc9-bab09ccadb5a", "name": "Get list of Auth Profiles.", "request": { "name": "Get list of Auth Profiles.", @@ -19636,7 +19636,7 @@ }, "response": [ { - "id": "d50f3fc5-4ab7-404c-863f-e3f0c969c296", + "id": "412b3d2c-eaf9-4bf2-ba10-a4ecc9a8076f", "name": "List of Auth Profiles", "originalRequest": { "url": { @@ -19679,7 +19679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a1f3c30-46ae-4972-8a12-d29df7ce9830", + "id": "0a2e571e-8ddf-4a18-80a4-971200852ab8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19722,7 +19722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4eaf048f-c2f3-405c-a0c3-89f9fad084a1", + "id": "f4024bd1-dfbf-465b-b74a-bc1535b2ecb0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19765,7 +19765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfc4a15b-0123-4ddd-a434-1b461013f232", + "id": "8fbfce59-2dbf-419e-b82e-b259a6040247", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19808,7 +19808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1ad0f87-fc19-4263-90c0-92d79599f074", + "id": "af70201d-9d92-4967-baa7-89a15ac7fb09", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19851,7 +19851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65d5e86e-1faa-4c2f-80ea-612837b2ac8d", + "id": "769ffd15-7423-4bb3-a65f-44450553c5fa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19900,7 +19900,7 @@ } }, { - "id": "fcd23994-aa70-4bfa-8f11-005ee1f4fd02", + "id": "874e1ce9-c374-4e04-93c7-f9d499300ed1", "name": "Get Auth Profile.", "request": { "name": "Get Auth Profile.", @@ -19935,7 +19935,7 @@ }, "response": [ { - "id": "a24a849b-7eac-49d2-87c9-98f44c6b502b", + "id": "7641b054-b935-40e9-84f1-818d0ad17ee3", "name": "Auth Profile", "originalRequest": { "url": { @@ -19979,7 +19979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09b5ba6a-39b5-4daf-b01b-df48a74f01af", + "id": "5fc8897b-3d40-45f2-994a-ce1b8ce250c8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20023,7 +20023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc06d886-740c-41e7-a6cd-5aec07bc9c6c", + "id": "b4410cc3-8bd8-4ec7-a814-efeb583f010e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20067,7 +20067,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a18bdfff-54ca-4baf-b0cf-085bd057d83a", + "id": "7585c9c9-9ac2-4d96-9733-5298045c56c6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20111,7 +20111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "674e07a1-7890-46b0-8498-0e43b61b2eb9", + "id": "402c9c0d-881b-43ad-9050-8796e694daf2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20155,7 +20155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f1cffad-eb80-4959-bc0c-bbd0ecc6f866", + "id": "3e7b5f4a-d6d7-4c38-86a5-2f1d02c01524", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20199,7 +20199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5faa7263-6823-4081-bb4b-87cda1f283e8", + "id": "4f46dd32-2368-47fd-a699-9993de4fadd9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20249,7 +20249,7 @@ } }, { - "id": "638cb610-0c49-4ed8-bc13-06f026f6dd07", + "id": "4c8fd865-577d-492f-8f68-cf22efe5a24c", "name": "Patch a specified Auth Profile", "request": { "name": "Patch a specified Auth Profile", @@ -20303,7 +20303,7 @@ }, "response": [ { - "id": "1aaa1509-4ca7-418a-b472-a65938e60b3c", + "id": "c441f1fc-6d2a-4b12-9087-f8f5207fd42e", "name": "Responds with the Auth Profile as updated.", "originalRequest": { "url": { @@ -20360,7 +20360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a74bb3d0-46ad-4be2-87bc-8c7d2aa81fdc", + "id": "499c6c9d-c6e6-4515-902f-0a92096050e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20417,7 +20417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2549d1b-4db3-4aaa-8e27-8c06fbce6552", + "id": "94e20ad1-5379-408b-8cb3-40d87754f0bb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20474,7 +20474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "622c5e90-3940-4c2c-b59a-214dded3e887", + "id": "0435d5e0-dbcc-4183-a795-942b63cf995d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20531,7 +20531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62749a47-f4be-4519-8003-8762e22cd70b", + "id": "7de8c346-cc6c-4d37-846b-de431adc97cb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20588,7 +20588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "134b9029-3d69-4de1-b52d-c989e0061c8b", + "id": "a608ccd6-bfb9-4aa5-b629-9a1cef1fa4d9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20657,7 +20657,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": "f524840b-1f5b-44be-9cf2-720233ae3a9e", + "id": "4dd64d91-dfd6-4c02-a6c1-2208bc8bdbdd", "name": "List Campaigns", "request": { "name": "List Campaigns", @@ -20741,7 +20741,7 @@ }, "response": [ { - "id": "a6dba845-528e-427c-8fb8-807c06477ace", + "id": "828f07f6-34f5-4fd0-9655-1dc6e69d9542", "name": "Slim Campaign", "originalRequest": { "url": { @@ -20839,7 +20839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4372c86-4359-46d0-ba05-b06209a5b490", + "id": "19e1a541-6247-4a8f-8e50-cc5a14eeac07", "name": "Full Campaign", "originalRequest": { "url": { @@ -20937,7 +20937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1502da1-8fd7-446b-bc6c-aa2bb65fca98", + "id": "9785b57e-c074-481f-bcc3-ea2ba152dcf5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21035,7 +21035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "828a67fa-0308-40da-9536-92412187dd14", + "id": "48edc428-0d7b-4e56-a066-311f7f0f5372", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21133,7 +21133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b0ddc70-fec1-435f-b597-567d74c26613", + "id": "1d480657-ff36-407b-98e2-ba1df96d8cbf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21231,7 +21231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be3b4026-0d20-4fa1-93f9-322ae48b2299", + "id": "d7bab2ca-7b68-4e5f-b123-10a56bdb521a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21329,7 +21329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0aed3dc-859d-4f05-a0ae-5239a7864697", + "id": "c9276296-e346-447e-99b9-de647ffd1098", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21433,7 +21433,7 @@ } }, { - "id": "696dd2eb-dcc8-4476-9585-06d3e1801926", + "id": "5c80c027-b6ab-40d0-9c19-9aa5df6dec14", "name": "Create a campaign", "request": { "name": "Create a campaign", @@ -21475,7 +21475,7 @@ }, "response": [ { - "id": "de2d3ffe-47e5-442a-8462-b2005fead331", + "id": "057a697f-02cd-45fb-9800-908beeeae6fc", "name": "Manager", "originalRequest": { "url": { @@ -21531,7 +21531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edca7493-2d7e-4874-857c-b5ee4d42e462", + "id": "c386efd6-cec6-47e6-ba7e-93b8fd88a36a", "name": "Search", "originalRequest": { "url": { @@ -21587,7 +21587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c6983bc-b227-440d-a0cc-099f4a2bab2f", + "id": "9d1807a5-2486-406b-ba00-af92c48649c3", "name": "Source Owner", "originalRequest": { "url": { @@ -21643,7 +21643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2eb6b81-24bc-44b9-b37e-7a65f76690f4", + "id": "a71d6b08-b040-47b5-a65b-b69c0147ab18", "name": "Role Composition", "originalRequest": { "url": { @@ -21699,7 +21699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68466c7f-ec57-498a-9e18-6a41597f85a7", + "id": "08bbbf82-610c-4453-86ad-06704248dbb9", "name": "Manager", "originalRequest": { "url": { @@ -21755,7 +21755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd867f67-aa91-405c-b5eb-ffacb83f2f29", + "id": "a8d40231-a358-49be-a316-26f47be0fe22", "name": "Manager", "originalRequest": { "url": { @@ -21811,7 +21811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ef686a2-6c13-4e0f-8228-a20cdd6c753e", + "id": "0b437e8a-2e72-4680-992e-2cf261c188ad", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -21867,7 +21867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1ab26e5-f9e9-45da-86fd-af0c7490795d", + "id": "47c80cc9-8203-46fb-ba70-389ce3d0fef6", "name": "Manager", "originalRequest": { "url": { @@ -21923,7 +21923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92f0f6ad-f767-45a0-9a37-f25eab2fc31e", + "id": "54860fd6-87c4-4e3c-8b2e-726ec08b56a2", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -21985,7 +21985,7 @@ } }, { - "id": "3679e7f1-614c-4cf1-9058-6ca51705ae32", + "id": "a904f2e8-084a-494f-b300-742ad3428e5f", "name": "Deletes Campaigns", "request": { "name": "Deletes Campaigns", @@ -22028,7 +22028,7 @@ }, "response": [ { - "id": "af54cebe-331f-4850-9b14-086599931609", + "id": "76856f57-8cf4-4d56-b6b4-4dde771c663b", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -22085,7 +22085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e43f9369-5eae-4fa2-809d-9882ec1f9b61", + "id": "88e3923b-ce1f-49cd-ab8b-5da7dc56082f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22142,7 +22142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0021b288-de19-430c-87bf-52c8af20aa22", + "id": "40f2cbd1-5e04-4b4e-96eb-308c7d84adda", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22199,7 +22199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03561feb-2fc2-4975-9eaa-28af5a63aa70", + "id": "28dd6063-8be0-47ac-a3d7-c509dd16ba4e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22256,7 +22256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26c705dd-b440-4086-a42b-ac09600ba7d8", + "id": "eabee90e-d0ee-4a70-9946-4659063c5bd5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -22313,7 +22313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcd03051-b87b-4b8d-a357-6a52dbc314aa", + "id": "b3ec7bd9-38e9-42c7-9e35-5dd3475bb22b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22370,7 +22370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cee0c2d4-e3a0-4eb2-adcd-3a9a90f39765", + "id": "bd329595-eded-43eb-b311-7be9ecb6a9aa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22433,7 +22433,7 @@ } }, { - "id": "f9e30a25-dc4b-4f66-bd60-82234e25359b", + "id": "5b0a6922-2609-4d30-9401-0613876180c3", "name": "Get a campaign", "request": { "name": "Get a campaign", @@ -22474,7 +22474,7 @@ }, "response": [ { - "id": "4b94a42d-b537-412d-83fa-44e262470e2f", + "id": "ea6a5d39-58b9-4396-aea5-be6257eca9b4", "name": "Manager", "originalRequest": { "url": { @@ -22518,7 +22518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06c939dd-6243-4ece-bd9b-297bc0dfb64a", + "id": "e11b30b1-6e79-4992-b925-09ae896ddb1c", "name": "Search", "originalRequest": { "url": { @@ -22562,7 +22562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42a49e2c-97c7-42ea-afe7-bb50288f72b7", + "id": "a9158ab2-da43-42f9-b0a7-3d89275d7a9e", "name": "Source Owner", "originalRequest": { "url": { @@ -22606,7 +22606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42e0754e-30d9-485a-b5e7-4316d968d21b", + "id": "a431a830-09ab-4ec5-9943-38a19a469c54", "name": "RoleComposition", "originalRequest": { "url": { @@ -22650,7 +22650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d0b7ced-cd46-4113-99e9-015bdd47f334", + "id": "8a825e12-d315-44b0-83c0-242cc616fc28", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22694,7 +22694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1d5d61f-7f35-4035-b875-7d47fa1cb051", + "id": "2189d7c7-3b42-435f-9eaa-35f029e3dae9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22738,7 +22738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e610b69f-3de9-4b21-94d2-3066605d06cd", + "id": "8252ae31-1ef4-417f-b7d1-49781e2e1bf7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22782,7 +22782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "088a7770-e196-46ab-85f1-464fea9dae25", + "id": "300482c4-5b6a-4d2e-ad29-0d261c15c3f7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -22826,7 +22826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12cc2823-9dd0-4f06-8687-146fa05d0028", + "id": "26a8ae98-a053-4ea0-a5fa-dc729b9a73a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22870,7 +22870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aabf5790-e0c1-4d47-93b7-af220e006061", + "id": "6813a2c1-2ae2-4c6e-91f1-a203eca60617", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22920,7 +22920,7 @@ } }, { - "id": "b09fd7b1-a8b3-4ae3-9cf8-f0884a521b79", + "id": "a7880ef8-c45c-4605-9c65-f80139ee47b1", "name": "Update a Campaign", "request": { "name": "Update a Campaign", @@ -22974,7 +22974,7 @@ }, "response": [ { - "id": "35404373-d0ef-41d3-88e0-4e631d13e3e4", + "id": "19fe3258-2d5e-4208-a8ff-e4fa3e7515ff", "name": "Manager", "originalRequest": { "url": { @@ -23031,7 +23031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7e5a095-ac35-4cb5-ac77-bd79f5d9d2a2", + "id": "282a2782-6caa-4c66-8ab8-89ccf200cc5f", "name": "Search", "originalRequest": { "url": { @@ -23088,7 +23088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca175d7c-bd12-4bdf-b073-5c4b1f797fb2", + "id": "bc411502-a992-4627-a049-cc4b7ea336cf", "name": "Source Owner", "originalRequest": { "url": { @@ -23145,7 +23145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9377f12f-3761-4f00-86a6-ab04ef40da10", + "id": "6cf0b646-2a7b-4edf-8797-a8aa5a734072", "name": "RoleComposition", "originalRequest": { "url": { @@ -23202,7 +23202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5634f49f-af5f-4314-83a7-e5c4d08c1756", + "id": "506b9de0-0c84-472d-9c57-4ae23d4185d0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23259,7 +23259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a356060-9785-40ab-a806-fa1d9397a3c9", + "id": "e35c1804-a51e-4561-ac2a-1ee0ba371b4c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23316,7 +23316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "650f9f1b-5b9d-4049-a1e6-7f119f40a5da", + "id": "f1a761ff-b9d6-4e2e-a642-60a8421a0399", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23373,7 +23373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d12bb92c-cd41-4811-8513-14c074bd064d", + "id": "591716ac-7abe-4da3-9f7c-7d92ec52d7c9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -23430,7 +23430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a1a1193-f188-474c-b532-468a5b329bc0", + "id": "72f9e43d-b6ad-47e3-81ee-49449aa8d960", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23487,7 +23487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8eb0bf7c-b67c-4a24-b3b5-2de9a74eb1b1", + "id": "f023ba02-7d89-4b3c-bdb9-d0dfa04e8efb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23550,7 +23550,7 @@ } }, { - "id": "0df62d7a-6213-497b-9bd8-5735779e0271", + "id": "9c3450b0-f439-4113-a181-2dd4dc2bfd05", "name": "Activate a Campaign", "request": { "name": "Activate a Campaign", @@ -23605,7 +23605,7 @@ }, "response": [ { - "id": "8d26a8f3-fc92-47ec-b029-3131ef5eb1bc", + "id": "3c48b77f-6cb0-4d80-a770-a3335efcd9ad", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -23663,7 +23663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05825b50-0a63-42bb-a590-5d5a04ed0b58", + "id": "1e48a532-156d-4cd9-8338-0ce93e243a56", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23721,7 +23721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2945e590-65fd-4386-8d11-a9e15bab2d78", + "id": "34a717a7-84fb-4aa5-8675-90cd4c8fad68", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23779,7 +23779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7d74e42-bdea-4926-886a-13d89de35139", + "id": "80da7901-3c45-4b83-809f-f00b36af5cc3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23837,7 +23837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7d77924-a6b9-4588-b1b1-4e83d938da50", + "id": "ac5ca188-6041-4951-9537-d403752c6db6", "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": "de2b4513-2617-4180-87cd-59e0d4825321", + "id": "70089d4a-2d98-4680-9a31-72a6e8ef58ba", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23953,7 +23953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "679712ae-7894-454a-9fba-3ad055308d18", + "id": "fbc3e42b-1fe3-4ee2-9866-91dbad84fdf4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24017,7 +24017,7 @@ } }, { - "id": "86a0a4ff-9845-45d0-9536-54c11bc8e0be", + "id": "cc203d28-7620-45dd-aa67-ca64f3cef37c", "name": "Complete a Campaign", "request": { "name": "Complete a Campaign", @@ -24072,7 +24072,7 @@ }, "response": [ { - "id": "a0df37a4-058f-482e-b168-eb86bbc6b9ef", + "id": "360bdd5d-0ded-42af-8817-7a9e409024c4", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -24130,7 +24130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5c60763-4dd7-4941-b032-c64433c79e5e", + "id": "6908816e-45ae-404b-99fb-9d4008abd9e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24188,7 +24188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb5597c8-5d89-40b1-a4fe-4e84ce5a20e4", + "id": "67b0b8f6-ced0-4be9-888e-4dd21e4c6ed4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24246,7 +24246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "850d97ab-99fb-4ecf-b62a-beefcb4c3e62", + "id": "172c4d85-913d-4eee-b2ea-3b3a00ec78b1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24304,7 +24304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52bfbe75-1858-4ddf-b1e6-39b303ea0f1d", + "id": "7b1e071b-1288-4ab1-8eec-ccf7f9c9ff4d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -24362,7 +24362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d861c124-e3ca-4bab-959a-24d23ea91763", + "id": "cfb35ef3-ea6f-4a89-9329-623a22965a35", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24420,7 +24420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "256df209-7bbe-4b09-9bb3-d6d11d1798f5", + "id": "bc40ac96-2440-43ce-bdfb-fc416d4ee2c2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24484,7 +24484,7 @@ } }, { - "id": "416be893-b32a-4176-bbab-928bc35d37f3", + "id": "6744350f-5f25-46e8-b2b7-a6758dfc21cf", "name": "Run Campaign Remediation Scan", "request": { "name": "Run Campaign Remediation Scan", @@ -24526,7 +24526,7 @@ }, "response": [ { - "id": "6e8b3b51-6c10-4f9c-b1d8-6637ae3744ba", + "id": "b2dda698-9c18-49c8-8b58-965f8d448697", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -24571,7 +24571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c769214d-3329-4234-9396-45284d92ed70", + "id": "52db2f92-fa0e-4162-86f6-711c45ef78fd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24616,7 +24616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88bcc9b3-75f9-4b36-9aa7-b0fa37fbcd37", + "id": "1dae48e2-6044-494a-970e-3020373d8fe7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24661,7 +24661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b752eb2-a3e4-411f-9e50-18a94f19f2dc", + "id": "1dd70832-fc57-4d5d-9f97-3dd0f5f8ce32", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24706,7 +24706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e191244-1fe6-4666-b4dd-8b9549c86c7f", + "id": "07b8dfcb-3ca0-4dbf-8172-9c363392ab0c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -24751,7 +24751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd77b868-1a50-464b-8a6b-47c49f52dcac", + "id": "b717c81a-f299-4b28-90ce-a860bc852a61", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24796,7 +24796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81bc2a5f-793f-48d5-9c41-dfc262e132b0", + "id": "71a40593-6709-4089-80e4-99aaac433b37", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24847,7 +24847,7 @@ } }, { - "id": "f4f7014c-d72b-4197-a2a1-1f177e6fbb7a", + "id": "0e53b7a4-9344-46f9-8f40-9bcfe664739f", "name": "Reassign Certifications", "request": { "name": "Reassign Certifications", @@ -24902,7 +24902,7 @@ }, "response": [ { - "id": "13c8fdc0-6986-4435-96f4-8b64b3e11139", + "id": "ec9e82ee-1ca7-441c-aa8d-347c6bdcfa7b", "name": "The reassign task that has been submitted.", "originalRequest": { "url": { @@ -24960,7 +24960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30eba826-9b31-4e1d-b917-00e7f7f5b887", + "id": "7f87a164-c82b-4320-83ac-dd246b0da8c9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25018,7 +25018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9838b6ca-979b-4b60-8cd3-eeaa78ffe92a", + "id": "04743f92-fc39-45e6-af6e-a7b2f4e0702e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25076,7 +25076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf7e13ca-e611-4f3a-9e21-803740d677f2", + "id": "b53b5ac6-da8c-45d7-aaa6-504e46bdec60", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25134,7 +25134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53963c6a-794d-41bc-91bd-cc88154756f4", + "id": "90b858d6-22fb-497e-a7fb-3dfc02760129", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -25192,7 +25192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52a41378-c2b7-4b46-8f81-f2d5b5bed623", + "id": "ce159360-479e-44e4-98d1-6037079ed9a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25250,7 +25250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbf94699-a9ea-4864-b0ce-872b3982c087", + "id": "b8a4b34a-d504-4a36-82a1-869815dc3675", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25314,7 +25314,7 @@ } }, { - "id": "3fe56d79-10eb-4a36-badb-95d8ad253067", + "id": "7f9d313b-53e5-49da-9d27-c4d0214abb19", "name": "Get Campaign Reports", "request": { "name": "Get Campaign Reports", @@ -25356,7 +25356,7 @@ }, "response": [ { - "id": "989e6b59-cc98-440a-b5f5-49194b47809d", + "id": "ea36da49-a394-47f5-9110-c746d8a0e232", "name": "Array of campaign report objects.", "originalRequest": { "url": { @@ -25401,7 +25401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63e52ee8-4e92-402e-8562-ec2e3923a9a8", + "id": "75aa9abd-c096-49f7-9751-7cd7943ca3d8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25446,7 +25446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa51cac5-313f-481d-896e-77a09f935efc", + "id": "800ad02f-460e-4ad1-9d3b-751db89a4ae3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25491,7 +25491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8539ff2-6140-4963-a5a0-4cde8867f043", + "id": "f22252e7-bea5-4845-80cc-9793cc37f1f6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25536,7 +25536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b5fad31-7c71-46b4-939a-526fd890d6f3", + "id": "f7d2a77d-77cd-4ca9-ab78-c8e8c9850e3b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -25581,7 +25581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "993f166c-8f8d-4c2a-ad7c-f84f1ccf5dfa", + "id": "d4383f88-f8d4-403b-b028-6a7d466783ae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25626,7 +25626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "deac1389-e0c8-42fd-9b13-e95df0f9ce1c", + "id": "3a73fdc5-2355-4cbd-a30b-674aa1a8ac57", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25677,7 +25677,7 @@ } }, { - "id": "453b211f-0b83-4e16-b0b3-8b2eb541d423", + "id": "39880fc8-bad2-458f-b812-dac5df4cceb8", "name": "Run Campaign Report", "request": { "name": "Run Campaign Report", @@ -25730,7 +25730,7 @@ }, "response": [ { - "id": "0f202bcb-9362-430e-8a89-6473f01378d6", + "id": "70b1bdcd-870a-4752-83df-9883334fed10", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -25776,7 +25776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd95b09c-f910-40e3-890f-cf1b900f2c43", + "id": "e50e5eea-1fd2-42e3-838d-d9b350609267", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25822,7 +25822,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f4f0fb5-ce44-4455-abd2-d0ce589e5050", + "id": "36112e93-3962-4fcd-83d5-7d64ad661172", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25868,7 +25868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "753f9097-48e9-4bd7-9e04-a237d8bc90ff", + "id": "46fd89a8-05c3-496a-aaef-b497ac163fd3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25914,7 +25914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca0cf601-b5cf-4f26-92d9-9909de96ae22", + "id": "8669cd77-c4c5-4102-a823-b1ff252ad52f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -25960,7 +25960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecb83ac5-ebe2-47ad-ad2e-8cb41d6d4e89", + "id": "66d47405-eb8f-4955-8390-6515f622fe12", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26006,7 +26006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bf2446b-dace-497d-915a-34be7f154586", + "id": "f72d8f6b-0816-4d02-b20d-40ecc1aa8694", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26058,7 +26058,7 @@ } }, { - "id": "f2fa07a9-4c61-4056-892a-4612d31da64c", + "id": "4c4aa546-13b5-4a27-a9c4-0c5ae570223d", "name": "Get Campaign Reports Configuration", "request": { "name": "Get Campaign Reports Configuration", @@ -26088,7 +26088,7 @@ }, "response": [ { - "id": "49b443e6-63e6-497a-9d3c-40611f26ae81", + "id": "151849b3-59b0-4b7f-b22f-918a2890f241", "name": "Campaign Report Configuration", "originalRequest": { "url": { @@ -26132,7 +26132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c4ab7f8-c798-461b-ab92-1c42d894997f", + "id": "542dd271-1950-472b-90bc-1984bd3dfb1b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26176,7 +26176,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f34b1397-baaf-4997-9106-2d967bf04499", + "id": "f3ff47fb-b0da-4d86-876c-7e1b9c02a5bd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -26220,7 +26220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd15c20f-0a11-4cbc-bcc8-32eaa69994a6", + "id": "43b5c373-81e4-4c0a-8132-0b21141d3bf9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -26264,7 +26264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4aaef088-8091-4163-8072-aa514bcf15f5", + "id": "333eea96-058a-49f3-b9d8-49878d6aa3ff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26308,7 +26308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "901d2f37-cf95-4b87-896c-4a7567697f57", + "id": "6349b2af-baae-49f9-b2f5-5ff23a97fdae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26358,7 +26358,7 @@ } }, { - "id": "18cbc892-419b-48d2-97c8-77c1390e29a2", + "id": "1784dd14-0782-407b-9881-a915a91331b5", "name": "Set Campaign Reports Configuration", "request": { "name": "Set Campaign Reports Configuration", @@ -26401,7 +26401,7 @@ }, "response": [ { - "id": "9499ea02-f736-4662-9b0a-ac7832bf1182", + "id": "914cb069-3fab-4bb5-8316-bc186653383b", "name": "The persisted Campaign Report Configuration", "originalRequest": { "url": { @@ -26458,7 +26458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09d97d84-5c42-4998-a1b0-b3971505f052", + "id": "9fdd1417-dec3-4274-a43d-d0222dbbe96c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26515,7 +26515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca3e5f4b-55e8-4ec4-867f-21d9da6831d5", + "id": "fc9d0e9a-c7e3-4f5a-a776-d5c71a807c8a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -26572,7 +26572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b22685ab-7499-46e6-a2c1-69956c291f1f", + "id": "29641020-0021-489b-aba0-43a855c772c8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -26629,7 +26629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f68f6653-5396-4172-af37-64353a01fa8b", + "id": "cf66cae4-4ecc-435a-b9dd-e8f4d828f326", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26686,7 +26686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fcf11ba-b94f-49d5-bf50-72337ae38ff7", + "id": "c6f4b1d3-c342-4503-8128-d8c1571e11ca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26749,7 +26749,7 @@ } }, { - "id": "b8a33de7-bbfa-4344-935a-961d9ea2cf47", + "id": "644698e2-eeb7-4b26-be5b-74ba984a5c92", "name": "List Campaign Templates", "request": { "name": "List Campaign Templates", @@ -26824,7 +26824,7 @@ }, "response": [ { - "id": "ce0bee1e-b3d4-4789-8c73-a15f4eb9cca2", + "id": "c68cec84-64b7-4cc1-b775-d78c5cde3619", "name": "List of campaign template objects", "originalRequest": { "url": { @@ -26913,7 +26913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c4f0aa5-0a97-4c1d-a3ba-32d69add1f20", + "id": "cff62852-1b07-41db-8446-03dd36a81a5a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27002,7 +27002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7afb6c62-692d-4861-a60a-8f8bbc2129b2", + "id": "0c6dfad2-2bbd-4965-a76c-438ce1ea9e76", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27091,7 +27091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4617b3ae-c45d-4f57-995f-db6def405ff6", + "id": "f6682bee-bb7f-449b-9b7d-bdd6af9e9fa1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -27180,7 +27180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46572f37-14a9-401e-87df-6a67ad33bb83", + "id": "1034b2c4-7e94-46b0-9fbc-d0c0a090bb18", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27269,7 +27269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c53c19aa-6797-4433-aad2-902a398465ee", + "id": "0c12220d-48bf-4365-b5dd-4a8bad2722d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27364,7 +27364,7 @@ } }, { - "id": "dcb67c12-27f0-4463-98e0-b0c99d68a0eb", + "id": "93d9a1ac-5020-470f-b2c4-e37b2e14555d", "name": "Create a Campaign Template", "request": { "name": "Create a Campaign Template", @@ -27406,7 +27406,7 @@ }, "response": [ { - "id": "162418e0-ce81-469e-b1db-4641def7b765", + "id": "01a96854-692b-4294-948a-76572203e2e8", "name": "Manager", "originalRequest": { "url": { @@ -27462,7 +27462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdd38304-0742-4fac-ba08-a55523cfb838", + "id": "588338f6-827d-4720-9d66-b407b93e73e5", "name": "Search", "originalRequest": { "url": { @@ -27518,7 +27518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "380f75ac-5c7a-47c9-b97b-3949b8da7268", + "id": "e42869d8-ecb2-4e76-8bf5-c4d4ac0763fc", "name": "Source Owner", "originalRequest": { "url": { @@ -27574,7 +27574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46cadf4a-8112-44cb-9668-d02c4cf7df1b", + "id": "9922410b-35e6-42a5-af75-1f2f50965eff", "name": "RoleComposition", "originalRequest": { "url": { @@ -27630,7 +27630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0d62965-82d2-4ffd-ba56-2ce728f37e3b", + "id": "76c57647-3ef5-44b3-98d3-ebc3387b6948", "name": "Manager", "originalRequest": { "url": { @@ -27686,7 +27686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a17eebc2-d0ee-47b7-a3be-fcfa8c7380c7", + "id": "2888cbec-e707-4195-a8c6-9454d62443a4", "name": "Manager", "originalRequest": { "url": { @@ -27742,7 +27742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4855aac8-a419-44a9-a559-87fe642c7993", + "id": "517e7987-c1f4-4c0e-b2f8-c08b466435b1", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -27798,7 +27798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4e3f5d7-eed7-4e4a-aec9-9f90b3e7f226", + "id": "85fcf5d6-b457-4178-8525-bf2438faa189", "name": "Manager", "originalRequest": { "url": { @@ -27854,7 +27854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66a91ea4-ecd2-41c5-bcf6-1917945f8e79", + "id": "21e591d2-9486-4492-9cbd-7749e7f46705", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -27916,7 +27916,7 @@ } }, { - "id": "d5dda9be-250f-488c-96f6-f484df65ff73", + "id": "72c1c9ab-2ca6-47a4-877d-5c27c540540e", "name": "Get a Campaign Template", "request": { "name": "Get a Campaign Template", @@ -27957,7 +27957,7 @@ }, "response": [ { - "id": "3c65aea0-0c2c-4d2f-a83c-8025f6e1a377", + "id": "179d7e95-848c-416c-bee7-1ea38a97c7fe", "name": "Manager", "originalRequest": { "url": { @@ -28001,7 +28001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6063cea5-f7dd-410e-a4ba-66355f27387e", + "id": "e222c844-1a53-4238-935d-9605db38ab4b", "name": "Search", "originalRequest": { "url": { @@ -28045,7 +28045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88f2ac42-b53b-403a-8721-e72a96613f49", + "id": "3a2fa259-5d29-4dc8-96c5-32f0b624473f", "name": "Source Owner", "originalRequest": { "url": { @@ -28089,7 +28089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "666cc0b6-8ced-48c3-a354-7ab9f994645f", + "id": "66a0b5ce-743b-44ca-887c-f6ee215e7659", "name": "RoleComposition", "originalRequest": { "url": { @@ -28133,7 +28133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a194371-5c42-4845-a9a2-b25c22865a1a", + "id": "88137b3c-0fbe-411e-8b63-f49bad2bd6b7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28177,7 +28177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b4f45bf-1311-41da-9636-63a276d8cdfc", + "id": "f4b56ea6-ac52-4f15-a993-2a2978644933", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28221,7 +28221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c7729b0-3740-4b2b-9541-51f9343d9cdf", + "id": "7fd25fd8-1690-4e25-a40d-d82cdc9504f7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28265,7 +28265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b13bde78-c5de-48f1-850d-3f0ee70b7f7e", + "id": "cd7b9016-039d-4548-a1dc-ff8c669b0125", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28309,7 +28309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61046389-b1be-4eea-a4b4-e9150004f61a", + "id": "0bb3fecd-4093-4383-b6dd-72f393874f1b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28353,7 +28353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90e5167a-0c80-4d8f-8a8f-4a7f42888773", + "id": "1eb4f953-1076-4ac0-8fe3-d33b4d132915", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28403,7 +28403,7 @@ } }, { - "id": "7c09154c-39b3-4d0d-b64b-9c77cd22a076", + "id": "aa681b4e-5d08-4c76-8890-a59eae0f45b8", "name": "Update a Campaign Template", "request": { "name": "Update a Campaign Template", @@ -28457,7 +28457,7 @@ }, "response": [ { - "id": "0f3b2995-0ce0-499c-851a-7e997d595e26", + "id": "0dde6f1f-a8a4-4b1c-b0f5-e6e54b0dc71f", "name": "Manager", "originalRequest": { "url": { @@ -28514,7 +28514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d9672d3-c414-4bb6-a545-219993f53d28", + "id": "2d536325-7bb2-41e5-b7a8-6bdf06cf314f", "name": "Search", "originalRequest": { "url": { @@ -28571,7 +28571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ffa11c4-3b57-4a83-81d0-5d7ada73c8a7", + "id": "63ca850f-74c2-44d7-b45f-2712c4f53e1a", "name": "Source Owner", "originalRequest": { "url": { @@ -28628,7 +28628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfc307ff-0c4a-4d22-9abb-d38362cb2f7f", + "id": "21de3a8f-3a87-414b-b9c2-a96813fdf700", "name": "RoleComposition", "originalRequest": { "url": { @@ -28685,7 +28685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bab2071-8661-4fb4-b434-3f797b6f2340", + "id": "714b488e-2a38-440f-b76f-514460337b10", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28742,7 +28742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c578c3e-bc71-429f-b837-4e9b7e4b5bab", + "id": "6f29a5aa-234d-470f-9ab9-be83308cdbb3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28799,7 +28799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d008d86-cef3-40ae-8192-92934a2c3d4e", + "id": "e594e11e-ac88-4488-9600-6f27caad37a2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28856,7 +28856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca9aa5e2-15d7-4c2d-8211-1f18a26713c2", + "id": "7903b7f0-d665-41d6-b60a-27bf703541cb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28913,7 +28913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61ef5caf-e71b-4c2b-b15a-13f6ff077447", + "id": "df37e2be-e333-4d3f-8c5b-c80133891c51", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28970,7 +28970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a98d81c3-954c-40dc-8c54-a39ba045b453", + "id": "91d1ba7e-6361-4a61-9304-cce49691acf9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29033,7 +29033,7 @@ } }, { - "id": "fd5352a0-666b-4ae3-9268-3d900bbf9c1b", + "id": "f655a15c-62b7-4720-8b70-7a2b4f335fdc", "name": "Delete a Campaign Template", "request": { "name": "Delete a Campaign Template", @@ -29074,7 +29074,7 @@ }, "response": [ { - "id": "f2527c10-0e06-4b04-b0fb-524ee1f401ec", + "id": "0b18ebe8-1ad1-407f-8e78-b4b433635813", "name": "The campaign template was successfully deleted.", "originalRequest": { "url": { @@ -29108,7 +29108,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1aa133c6-7267-4e51-9d19-664612020146", + "id": "fe504e0b-c543-4da5-b53d-179766d2b5dd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29152,7 +29152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d7b9dc3-b155-491d-a5af-02c7acaee63b", + "id": "515b5820-a2dd-49cb-9c99-54d6593279a0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29196,7 +29196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4350ca0-7988-4fee-9b11-02352e2f83aa", + "id": "b531962f-0887-418b-9cbd-10ad71faa5ab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29240,7 +29240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58b482ab-6f00-4d11-af1b-affd4ae6620a", + "id": "db0bcceb-9d22-434b-ae4c-03c8b49eeca0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -29284,7 +29284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bab47782-dbf5-4b21-86df-3e1b9befaee5", + "id": "15abe112-3f39-4f2e-997d-0428a19dfa3d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29328,7 +29328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c02aafd7-a8cc-461d-96b1-6dbbf50fc38a", + "id": "5b5a7ecc-1175-41d6-b710-687615d9dcbd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29378,7 +29378,7 @@ } }, { - "id": "1305dcee-a589-4ea0-b100-3a270705c65e", + "id": "9ad9adbf-e5ba-4f0c-931b-264d6973989e", "name": "Generate a Campaign from Template", "request": { "name": "Generate a Campaign from Template", @@ -29420,7 +29420,7 @@ }, "response": [ { - "id": "03524ddf-8edb-44ec-93f7-f625fcf01176", + "id": "0936b8b4-cdad-4795-b6fd-8c0ac629e139", "name": "Indicates a campaign was successfully generated from this template, and returns a reference to the new campaign.", "originalRequest": { "url": { @@ -29465,7 +29465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74093de2-bf98-43d1-a9ba-5524a94cbe79", + "id": "7195de57-164b-4c57-ba5b-c43173947e3a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29510,7 +29510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ba2014f-1626-4a5d-bf84-aebf336845af", + "id": "c188a394-1e2e-49fd-92db-c5a02d832710", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29555,7 +29555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ae1b072-92b3-486f-a273-ad5509331c83", + "id": "d4a87355-0a9a-43a4-b570-c342eb9f630d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29600,7 +29600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05bd5b86-5fce-44e0-bb30-975dccec8b31", + "id": "709c9884-b1b5-47f6-aa75-c5e074aa0de5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29645,7 +29645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd6e69f3-a021-4d2f-a828-5e6d92ba3e63", + "id": "4b8f68f0-e32e-4686-90aa-382ad239d738", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29696,7 +29696,7 @@ } }, { - "id": "2dd68ced-e2fd-4798-804c-eb0c0a341444", + "id": "d7b022f0-a525-4ea0-afe8-00be54916f7b", "name": "Gets a Campaign Template's Schedule", "request": { "name": "Gets a Campaign Template's Schedule", @@ -29738,7 +29738,7 @@ }, "response": [ { - "id": "4cf15ad3-bd42-4824-8ed8-6d59525a1ccb", + "id": "21949584-52b8-4504-bc8a-4115a7ba2225", "name": "The current schedule for the campaign template. See the PUT endpoint documentation for more examples.", "originalRequest": { "url": { @@ -29783,7 +29783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74523676-b1e8-4755-a524-4293be3c36ee", + "id": "3eba2703-087b-4a58-84df-309c9236ad50", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29828,7 +29828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c76e71a1-625b-4bcc-ac68-0474a81e8df8", + "id": "ceaa0230-23f2-4a1d-8916-f56e3cbb5cf7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29873,7 +29873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aeb98069-a7e6-48bb-a679-159a75a80308", + "id": "c80df50e-708b-4de7-a199-829825d0716d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29918,7 +29918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8537de95-127e-4744-9ab5-2c9f71d370d5", + "id": "0303d783-03e5-4b8e-97a2-266a96dba2aa", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -29963,7 +29963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b880947-be77-423c-8944-b48be6d324ae", + "id": "20ca98ca-f411-4e60-a99b-5376bd43fbe6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30008,7 +30008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "449a3637-a99e-413a-94b2-3a88973f6bf1", + "id": "f35365c0-ddc9-4729-9ddf-4464586c7b75", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30059,7 +30059,7 @@ } }, { - "id": "13e06cc5-6c5e-4c45-9ed6-44cdfa66c653", + "id": "5d53f29f-412d-4fa1-b695-b26c34753dfa", "name": "Sets a Campaign Template's Schedule", "request": { "name": "Sets a Campaign Template's Schedule", @@ -30114,7 +30114,7 @@ }, "response": [ { - "id": "4480c1f8-a985-46c7-9951-278645205510", + "id": "e249f176-d72e-4c1e-89ec-d511d9342952", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -30162,7 +30162,7 @@ "_postman_previewlanguage": "text" }, { - "id": "30557647-e887-4c7a-b41a-3d988b6170c0", + "id": "2d77721f-53a4-4079-b294-2a2a28a4a306", "name": "Monthly", "originalRequest": { "url": { @@ -30220,7 +30220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f065e2e-3f5a-4056-84c4-2d543595c144", + "id": "0c06fd3b-af69-4a9a-895c-1044c811a62b", "name": "Once a year", "originalRequest": { "url": { @@ -30278,7 +30278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d85632a0-abf3-402c-8bb8-7fe2e6657133", + "id": "708a2098-95f4-437a-92d0-69d9303edf51", "name": "Quarterly", "originalRequest": { "url": { @@ -30336,7 +30336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cf7f079-681a-4a5f-86c9-5fa086c356ba", + "id": "912eac69-81f9-4bad-b401-5e37bc22d9be", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -30394,7 +30394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80887958-8364-4f55-9fef-e28a6c03ee76", + "id": "143f0cd5-fe8e-47b9-bdd7-d4ec3ad0722e", "name": "On a Specific Date", "originalRequest": { "url": { @@ -30452,7 +30452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b3b2e24-311c-4671-899f-4b0d05650ec3", + "id": "fdca06a1-4d21-48c5-9c29-f52f8225d650", "name": "Once a year", "originalRequest": { "url": { @@ -30510,7 +30510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b54e6b1b-d603-4384-91a8-4f6fdc081561", + "id": "85d00663-3e1c-4586-83ef-32cf2183c66e", "name": "Quarterly", "originalRequest": { "url": { @@ -30568,7 +30568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ea53987-c740-456a-9bf7-96b35df87940", + "id": "d062c145-86b6-4a7a-8666-c5e186ec506a", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -30626,7 +30626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00c0b5ed-81b6-4cc5-954f-bbf9f4d07982", + "id": "0f198554-51ea-4979-9e0f-3aeaa7a5413c", "name": "On a Specific Date", "originalRequest": { "url": { @@ -30684,7 +30684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28c38b6f-ae2c-4c49-87f4-124067073f76", + "id": "21baa46b-6cd9-4b31-bcbe-73208c45c4a8", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -30742,7 +30742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e01a1cc9-a2e7-4824-95d1-848a8dee3843", + "id": "0cb11fd3-04e2-4d11-9b8a-271cc9dd568d", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -30800,7 +30800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42f90f71-2bfc-4561-80d2-30bb4168b4ad", + "id": "e9a7c01b-1738-440b-a437-09d1028c13c3", "name": "On a Specific Date", "originalRequest": { "url": { @@ -30858,7 +30858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35e21935-6cc4-4829-a1a8-06d66f415637", + "id": "3692e0e1-c818-4ad0-8b21-b98d7354ca74", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -30916,7 +30916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e57664f-4493-47cf-a307-168972119cee", + "id": "b06cf906-211c-4b15-8c85-48ae96a40a98", "name": "On a Specific Date", "originalRequest": { "url": { @@ -30974,7 +30974,7 @@ "_postman_previewlanguage": "json" }, { - "id": "046542d0-4d51-4fbd-8a79-7fb774281c59", + "id": "35d460ca-a174-440f-b1ce-7758d7ead28c", "name": "On a Specific Date", "originalRequest": { "url": { @@ -31032,7 +31032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3670107c-15f8-49cf-b3c9-9514e7dcf47c", + "id": "c0594c12-638a-4ef4-b2aa-48765b118f2c", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -31096,7 +31096,7 @@ } }, { - "id": "de7c715b-f6fd-49f5-84d5-8e4e4758aace", + "id": "a9eaa2df-4ac8-465f-892d-ef53112ee895", "name": "Deletes a Campaign Template's Schedule", "request": { "name": "Deletes a Campaign Template's Schedule", @@ -31138,7 +31138,7 @@ }, "response": [ { - "id": "1ab2a61a-e4fa-444f-87e5-c9f0ef312008", + "id": "d07ac752-1175-4da8-8830-084f19f14ba8", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -31173,7 +31173,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1a3651f7-656c-43f7-b572-a5dcc3df386a", + "id": "eba683b2-6b8c-4cbf-8ff0-c1d970ec8e90", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31218,7 +31218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cabfab4-591f-464c-ade1-8d3e72c6c8a5", + "id": "632d48a2-8599-4d45-88a7-96ca68169806", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31263,7 +31263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b2c3e8a-f8e5-4eff-a38b-47869dae669e", + "id": "f5e26261-82b1-4d4d-85ab-dd2ad72594a3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31308,7 +31308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee214e2d-d4b3-4cbc-bf35-2f25f0c37104", + "id": "3ee41efe-abba-49c9-bb1e-0e4c45cd42a4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -31353,7 +31353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f89e133-6b39-451c-98ed-d76d8be54cdf", + "id": "502290c0-7a94-4aca-8704-3b87d498e2ed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31398,7 +31398,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a38e5907-8b13-42d0-8ed5-91ceac5515b5", + "id": "a82e489e-1910-4a49-ae8a-d264f7aafdf9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31455,7 +31455,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": "574bedac-8241-482f-a673-f5e79067cb00", + "id": "ae09854a-a4d7-4b24-982e-d74126f85886", "name": "Reassign Certifications Asynchronously", "request": { "name": "Reassign Certifications Asynchronously", @@ -31510,7 +31510,7 @@ }, "response": [ { - "id": "59ace7b3-ea15-4fe8-9277-95574332b3d9", + "id": "a6ee24d8-ec01-451b-aa90-3b0c1c38639e", "name": "A certification task object for the reassignment which can be queried for status.", "originalRequest": { "url": { @@ -31563,12 +31563,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"ERROR\"\n}", + "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "77c32aa5-1636-4ab6-a810-9e705f2a6b3d", + "id": "4cfe1839-951b-4ade-9375-f36e9f56175e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31626,7 +31626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e284e578-60de-4faa-9950-7fef4ea0c094", + "id": "ee2bec7f-4059-47ab-92c3-4d80e7109e8d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31684,7 +31684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13712e1d-e608-43c1-b1b5-0f5d07890f16", + "id": "3fe93834-46bc-4fca-a5a2-55449a043fe6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31742,7 +31742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "781bba89-d3cc-4d5c-b333-fb4fd79c9725", + "id": "aa9bcc75-9b01-4186-a094-b4980cefa70b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -31800,7 +31800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dec8101e-12a5-4a49-91a8-876e1d0e31fb", + "id": "644ae292-f6ec-49b3-aeae-3becb61de237", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31858,7 +31858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a02f364-6496-4568-97f8-dcc9c2ab2f3d", + "id": "4bbf70fe-82ad-40bc-9d82-f083df34ecdb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31922,7 +31922,7 @@ } }, { - "id": "342c75b1-22aa-4376-a9a2-18f10c5ea499", + "id": "531b433b-27a6-4f94-b5fb-98580ac69a79", "name": "Certification Task Status", "request": { "name": "Certification Task Status", @@ -31944,7 +31944,7 @@ "variable": [ { "type": "any", - "value": "sed nisi sunt qui", + "value": "Lorem", "key": "id", "disabled": true, "description": { @@ -31954,7 +31954,7 @@ }, { "type": "any", - "value": "sed nisi sunt qui", + "value": "Lorem", "key": "taskId", "disabled": true, "description": { @@ -31975,7 +31975,7 @@ }, "response": [ { - "id": "96fc993e-dbcc-4573-8c41-14fa82660128", + "id": "44161c74-efa4-4b16-8086-e57171236bfe", "name": "A certification task object.", "originalRequest": { "url": { @@ -32016,12 +32016,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"ERROR\"\n}", + "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9d59e207-613e-4315-b646-71323a600068", + "id": "079d5d95-e375-4dca-be63-523e93f553fd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32067,7 +32067,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f26ea3ab-bc10-488b-8f01-ca32b78bdfb3", + "id": "60b97db3-31ab-4ea8-96a7-00d123a3c957", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32113,7 +32113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b0ce1f1-370d-4e70-aea3-ffaad34f9218", + "id": "65521f2c-1ebf-460c-ba6b-24241e5af2d9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32159,7 +32159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e9133fd-455f-4d4f-94a6-f38fec12b23f", + "id": "a614e640-7f92-4f22-96a3-fbf95b7b55d6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -32205,7 +32205,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78b21898-527e-4c44-936b-128511cfc29d", + "id": "852e3997-8abe-48df-b6e6-5599726e034d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32251,7 +32251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d588e7f-054a-4b31-8e47-c29579c20927", + "id": "820effe6-1d5d-4cb0-ac0e-01ed7ec9cf91", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32303,7 +32303,7 @@ } }, { - "id": "4727444f-70f9-4a5c-86a6-83935bb9a3b7", + "id": "e66f3f8a-f894-4123-8b46-96050ad9291c", "name": "Pending Certification Tasks", "request": { "name": "Pending Certification Tasks", @@ -32324,7 +32324,7 @@ "variable": [ { "type": "any", - "value": "sed nisi sunt qui", + "value": "Lorem", "key": "id", "disabled": true, "description": { @@ -32345,7 +32345,7 @@ }, "response": [ { - "id": "6944f869-07d7-4477-87f0-a6d93e7f054d", + "id": "ec7be7f7-8cdf-4cda-a014-6c34d35c6d39", "name": "A list of pending (`QUEUED` or `IN_PROGRESS`) certification task objects.", "originalRequest": { "url": { @@ -32385,12 +32385,12 @@ "value": "application/json" } ], - "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\": \"IN_PROGRESS\"\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\": \"QUEUED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cdfc2f73-0c4a-4cec-8ac6-dfee39268572", + "id": "e080ee0f-ed90-455c-9d1a-c0ad7a0f4b2a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32435,7 +32435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ceba44d4-00a4-4cd7-898a-6ac655a64385", + "id": "447f87b8-eee0-433b-b7d8-219c3128df51", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32480,7 +32480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15f3f532-d381-4399-8033-82075528e93a", + "id": "b40832cf-8db0-46e4-83d9-f35b05a65dce", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32525,7 +32525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84ccb44d-4128-4a1c-9345-6d451d3be7b9", + "id": "37d04c5f-6d9f-414b-a225-c67b272edf8d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -32570,7 +32570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "186f8e77-193a-4668-8fdb-6e94f16c3572", + "id": "06fc0ed3-f1c3-47fd-ad02-e5009bef19fc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32615,7 +32615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23d8cc5e-c31d-4756-bda8-fab2497b0d13", + "id": "a750f95c-9f09-4965-9283-229f9e3d9567", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32666,7 +32666,7 @@ } }, { - "id": "e318d6b9-2215-49fd-bdfe-1955da07d630", + "id": "047e175d-47e1-4881-a93e-4fc29e977105", "name": "Permissions for Entitlement Certification Item", "request": { "name": "Permissions for Entitlement Certification Item", @@ -32757,7 +32757,7 @@ }, "response": [ { - "id": "08654902-c3c7-4cf0-9235-dd14869c4db1", + "id": "bdc4dc77-b212-40e5-8733-709b515f6a83", "name": "A list of permissions associated with the given itemId", "originalRequest": { "url": { @@ -32841,7 +32841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c628289c-09d9-4d37-8a14-d6a846e2fb6b", + "id": "0c1fb0fb-88ac-464a-a163-8d5548eea828", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32925,7 +32925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1fce36f-6ade-4fe7-889e-5ffe2dcca5e8", + "id": "41d4ea7a-0848-4340-a1c7-bb3f2202c7bb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -33009,7 +33009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9889c3de-1f67-4768-ba1a-14ce4c0c9271", + "id": "ab9ab06a-47e3-4033-8037-f68dc10ef913", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -33093,7 +33093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b64b3fe4-b4b2-41cd-8c35-0c04b0288050", + "id": "272e5806-a9de-484d-b48c-c9578174954a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -33177,7 +33177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18b04720-9a71-4ec6-bdc1-e3de7084e263", + "id": "d07490a0-0466-49bb-afdb-bb283d40f42b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33261,7 +33261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfa58d40-062a-49d8-9910-1a808dec935a", + "id": "d8b851ef-89bc-4753-9909-9ee20f325614", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33351,7 +33351,7 @@ } }, { - "id": "021aff46-e08d-40dc-9925-2b885e4fc3c2", + "id": "08fdfdc9-b680-417b-9d69-6a82ed289781", "name": "List of Reviewers for certification", "request": { "name": "List of Reviewers for certification", @@ -33439,7 +33439,7 @@ }, "response": [ { - "id": "c02307c1-816b-4e33-8136-7905c48f6d53", + "id": "266692cc-3649-497a-837c-1e7d2554af23", "name": "A list of reviewers", "originalRequest": { "url": { @@ -33530,7 +33530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19bbb74f-fae2-4726-b85d-ff6f3f268250", + "id": "819e01f4-a6d4-4254-bd06-f8a19d3e74fe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -33621,7 +33621,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3883460-764b-4e7c-b6b7-ee5ad0a30d99", + "id": "b2c40e47-bbf6-462a-9a5c-c474bc008581", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -33712,7 +33712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5dd5c68-6568-4ada-80fe-2d2355c75726", + "id": "911235fa-d857-4c48-b9ac-ea9ebfc47dca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -33803,7 +33803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c06761e-aadd-4d9e-b36a-abb218b827e3", + "id": "7c1d9a4a-707d-45c7-a285-f8d0a268a363", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -33894,7 +33894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d9fecf1-4335-4e31-89c7-20437b923516", + "id": "a59d044b-8019-46fd-923b-4c1b3a339afc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33985,7 +33985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "852f6ceb-b85f-4fbd-a8a5-1a6518cdc133", + "id": "6361c1a3-d25d-4217-8371-e8ba20c4bee9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34088,7 +34088,7 @@ "description": "", "item": [ { - "id": "22483ad6-fe52-406b-bdde-855ebde30005", + "id": "edc3c91e-c856-4af2-9a0e-eeb56663543c", "name": "List Connector Rules", "request": { "name": "List Connector Rules", @@ -34117,7 +34117,7 @@ }, "response": [ { - "id": "aa4f1bff-dae3-44f1-bd6b-d0186bcdfe45", + "id": "77cd3fec-89be-4463-a0d9-2724be23edd4", "name": "A list of connector rules", "originalRequest": { "url": { @@ -34160,7 +34160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f53eacf3-273e-43ed-b709-8d30e65d54a5", + "id": "6a2ebc5b-fcb8-48d0-8785-86d23530ea32", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34203,7 +34203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "701572a7-bcd8-4852-99ee-6ed01183515e", + "id": "93541f8b-652c-4fbc-ad71-5e16eb0f38c7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34246,7 +34246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64afeeae-62ac-4dc8-a1a2-b35fa7d932ee", + "id": "b9c500a3-4b2b-4629-ae4e-e04dff6d1946", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34289,7 +34289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e8b4c03-9e6f-40a1-b9ea-c3d7c3619c73", + "id": "ec297fd1-2e75-409f-9c00-e0b7d674ec17", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -34332,7 +34332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37eed309-97ec-43d7-bacd-358aeea23f35", + "id": "b60e2fe9-f05d-437f-b206-4cdce3469f6a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34381,7 +34381,7 @@ } }, { - "id": "7d44ad44-6224-4772-a7f2-d3d130af0af0", + "id": "1f0f9adf-0b20-412b-91ac-23bfe7477c88", "name": "Create Connector Rule", "request": { "name": "Create Connector Rule", @@ -34423,7 +34423,7 @@ }, "response": [ { - "id": "a0a35f80-03a9-481f-a0e5-0e5a3b0acff9", + "id": "0f74a645-6602-4a38-8286-0908bc011bf1", "name": "The created connector rule", "originalRequest": { "url": { @@ -34479,7 +34479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6162506-945e-43a8-8569-c065ba06bb1f", + "id": "c1e33d8f-cd6d-48a3-824c-22b903cc4d16", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34535,7 +34535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4afd7d5c-626d-4fe1-a6a9-89ce053a5cca", + "id": "656ea97b-9b04-473f-9341-dbf2c870e095", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34591,7 +34591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42104740-4ee9-42f2-8276-3120a220aed4", + "id": "41adb4dc-c859-42e8-b47c-326798cad475", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34647,7 +34647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1adc0519-98e0-4ca6-9bcb-05b479e9fde4", + "id": "5a35dc28-6b41-433f-b6b6-64b29c547515", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -34703,7 +34703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a5c7ea3-a2c3-4327-a123-033bdc961b41", + "id": "c68d5194-76da-4eb4-a8b1-2a976bdf08cb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34765,7 +34765,7 @@ } }, { - "id": "67ce419f-3fea-4147-908d-33f4a66c418e", + "id": "f18a2aeb-35d8-4b12-bb98-486ea497f0b3", "name": "Connector-Rule by ID", "request": { "name": "Connector-Rule by ID", @@ -34806,7 +34806,7 @@ }, "response": [ { - "id": "4da9ce21-3f97-40d7-875c-7332e1c3f18d", + "id": "2168908b-3905-4618-b620-af5230f9fc37", "name": "Connector rule with the given ID", "originalRequest": { "url": { @@ -34850,7 +34850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd1c19e0-aeb3-4460-90c9-d5dcaefcea7d", + "id": "2058f401-86e0-4f0f-bf90-ed1f5b0dc869", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34894,7 +34894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ac9c136-236d-4b0b-965f-390276c7823b", + "id": "7e57de8a-2e68-4c5b-b687-4e42e04cfe7e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34938,7 +34938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d34663c-82dc-4a22-98f6-d0f540791dc4", + "id": "5d0b226d-1d04-46bf-8453-fee6fb5f5e33", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34982,7 +34982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68f12a08-947a-40f8-b1d0-8edfd72653f4", + "id": "f771b4bf-98e7-4758-ad0a-167a39a36b9d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -35026,7 +35026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f1a9ba0-1fb5-4b9d-a3ab-717414c9755d", + "id": "ac8791f9-3f03-454f-bb8e-01750c661585", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -35070,7 +35070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ee96696-1cec-44dd-bbbd-7f025d96212d", + "id": "ac64715d-2788-438b-8fc7-2dae2902d479", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35120,7 +35120,7 @@ } }, { - "id": "c5024edb-374f-4247-b34e-96c9933ca2ff", + "id": "aa30db19-1336-4aa1-9507-a89e2496423d", "name": "Update a Connector Rule", "request": { "name": "Update a Connector Rule", @@ -35174,7 +35174,7 @@ }, "response": [ { - "id": "2c8280f0-f501-40ea-9248-b4d9c975c939", + "id": "d232bdfa-0c92-44f8-a18b-0fad4df1fad0", "name": "The updated connector rule", "originalRequest": { "url": { @@ -35231,7 +35231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58b5114a-d16e-4d1c-bd71-e5cd9fcc7721", + "id": "864e79cf-a5ec-4b89-8a17-b485e04ad76e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -35288,7 +35288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "276279ef-1de1-48f7-b045-f30f1432352d", + "id": "b7a8c4e7-94d4-40fd-a48e-aec7ae306f9c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -35345,7 +35345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "719a3f8a-8cd4-418b-80e5-53cddee07dc6", + "id": "75044cea-4546-4548-9f8e-e67f475608c5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -35402,7 +35402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb9501e8-a56f-4732-8c54-d8d2890543c7", + "id": "9849c60a-ae62-451e-acda-2b381b1496d1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -35459,7 +35459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2613cb59-8587-412e-97b2-5b0a0e1c708c", + "id": "4f7c10d4-d04b-4e54-80ef-a800f922af89", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -35516,7 +35516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d92ef8f-a0b0-435a-8d57-74826666ba6b", + "id": "150f38a2-d1d2-41b5-a340-59863f887591", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35579,7 +35579,7 @@ } }, { - "id": "cb24ec53-bf0f-4daa-ba64-f9e74100e6cc", + "id": "d8fb3a21-97b6-4562-98d8-6bb650452afa", "name": "Delete a Connector-Rule", "request": { "name": "Delete a Connector-Rule", @@ -35620,7 +35620,7 @@ }, "response": [ { - "id": "51da6c68-623c-405e-bd42-31e89ca245e3", + "id": "61615c10-afdd-43fb-b387-84f4bba89d06", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -35654,7 +35654,7 @@ "_postman_previewlanguage": "text" }, { - "id": "985e8e4e-1d14-48de-b812-2bb6d406046f", + "id": "6b002d4f-338f-4b63-92f6-b0851853c897", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -35698,7 +35698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0ee95eb-5a18-408f-835b-9dd766344a73", + "id": "471ca0ff-d935-4932-8424-39c0f8e0c4e4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -35742,7 +35742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d33a127-ed2d-4121-b829-000e55d2148e", + "id": "faa01fe4-52b6-47bb-8176-9943d8c39a6f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -35786,7 +35786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d600170-4414-404e-8cab-658cf1555b23", + "id": "1ee63e21-d17d-4c76-ad96-1bc71fd9ff9b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -35830,7 +35830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2142567a-b526-410b-b4d8-aefdffba47f6", + "id": "732e3e2c-89bb-42eb-bf8e-550ee806fc91", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -35874,7 +35874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c3f6c66-9018-4fba-b3ac-51496e7a1d0f", + "id": "59015454-2b54-451f-a118-8b859b911bc9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35924,7 +35924,7 @@ } }, { - "id": "275cf647-c879-48fe-a502-7b5b22ea55f4", + "id": "680cd56f-9946-4bd7-acd4-43412b585d8d", "name": "Validate Connector Rule", "request": { "name": "Validate Connector Rule", @@ -35967,7 +35967,7 @@ }, "response": [ { - "id": "43f18ff0-aeb1-4afa-a40a-ebbe0acd8e3a", + "id": "56995e81-4441-47d4-8f3f-c5ea8357590a", "name": "The status of the code's eligibility as a connector rule", "originalRequest": { "url": { @@ -36024,7 +36024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0eb76cc8-fc7e-4cc0-a24d-66973a1e1cd2", + "id": "07bd8cb1-04c0-4026-b1a7-a92fcdb871ec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -36081,7 +36081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "352c3493-898f-4443-a247-353b49538391", + "id": "75f93965-6cf9-4873-a626-144e07716fa2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -36138,7 +36138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33717753-d115-4fd9-8c31-4ed51dbbc7a7", + "id": "2f950cd0-269f-40d3-8c27-925dc93f76c4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -36195,7 +36195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3c30016-5ed7-4762-8131-46b648e4db74", + "id": "ed95a161-d424-40b8-9700-028840de5290", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -36252,7 +36252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69423fe5-94b0-480a-8c9d-787ed1a44531", + "id": "c5cc3546-f394-4f4b-9573-571f2ed0dcca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -36321,7 +36321,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": "ed529ba4-862c-4089-ac10-f8778fbc3edf", + "id": "5093b115-56c2-4ba3-8a8d-a7b2c06ecfe9", "name": "Gets connector list", "request": { "name": "Gets connector list", @@ -36396,7 +36396,7 @@ }, "response": [ { - "id": "f308e4ca-c832-4d2c-94cd-ab4af5088b1b", + "id": "f45f2a61-6f50-4a59-8c28-ac4bbb1072a1", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -36485,7 +36485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8253a3df-83eb-4eae-acd1-97c4b3046328", + "id": "8ef9605f-c671-438b-b14c-492d60059e19", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -36574,7 +36574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f7c97e8-e076-4dfd-8227-d25902f5aa5d", + "id": "7a7d9af7-73d5-4381-9265-86c5530166f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -36663,7 +36663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e134abac-e407-409c-8498-9e91dda1f6b1", + "id": "60fd1ae5-9c12-4b6f-8d08-923234b6eac3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -36752,7 +36752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5aa3e35-7aa4-40e2-9ea8-1fe1fa100e3b", + "id": "d1595fb4-5c4a-4914-b05a-124b44ba2bd6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -36841,7 +36841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34c6d91c-08cd-4d6b-8332-ae7089f8abab", + "id": "1d82f4b0-8e3b-466a-a98c-ebd0bcfaed84", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -36930,7 +36930,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bc64c2a-7f3f-48e3-a251-84679f49d81b", + "id": "14c4cf3b-cad4-4977-b2e2-9717d66f02f9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -37031,7 +37031,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": "c6e3c4e4-2eee-46e9-b51e-718ac3740374", + "id": "dcbbda06-442c-4ca9-8936-f7f1b91adbd9", "name": "Export form definitions by tenant.", "request": { "name": "Export form definitions by tenant.", @@ -37097,7 +37097,7 @@ }, "response": [ { - "id": "816e969f-d7ae-46e7-be32-a22fd21b45be", + "id": "8dbec9b1-b749-4462-8c0b-de8a7f55ff89", "name": "Returns a list of form definitions by tenant", "originalRequest": { "url": { @@ -37172,12 +37172,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\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Ut fugiat\"\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\": \"exercitation aute laboris pariatur\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sed nostrud et Lorem\"\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\": \"quis do sunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"incididunt pariatur eu tempor\"\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\": \"incididunt fugiat pariatur Excepteur quis\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ea dolore\"\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\": \"laboris\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in laboris et 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\": \"do non et pariatur\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ad nulla\"\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\": \"elit cillum cupidatat occae\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"cupidatat consequat laborum\"\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\": \"tempor sit sunt officia\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nisi\"\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": "1b25c888-aeba-4273-b638-a2ed2a0f18b5", + "id": "c583f2ca-da3d-4123-b8b9-5a03888d520a", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -37252,12 +37252,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "822ec125-a9d0-4cde-ae7b-b88419eca9ce", + "id": "a84770a8-1e9f-45a8-b3db-84298f10259e", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -37332,12 +37332,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "db05ac55-ed7a-414f-8f96-6b72991c1577", + "id": "d5f368b5-b988-44a4-b945-c40d4abb97bc", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -37412,12 +37412,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bdc09d11-21a7-4356-aba5-4f3ddcf582f6", + "id": "d8f93010-76ad-44b7-90fe-4983b4ebfb96", "name": "Too many requests", "originalRequest": { "url": { @@ -37497,7 +37497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b02f0c8-6867-40ab-b08a-7000aefcf171", + "id": "3b16b42b-e041-4c22-af26-9cba3db4ec26", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -37572,7 +37572,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -37583,7 +37583,7 @@ } }, { - "id": "e98fa13b-c42b-4b17-ac9d-bbe4dd7483fb", + "id": "3cede52f-bdd0-4314-bfe7-faea2ef42441", "name": "Creates a form definition.", "request": { "name": "Creates a form definition.", @@ -37622,7 +37622,7 @@ }, "response": [ { - "id": "fe5016a4-8ac6-4f74-b1d7-771e8392ff74", + "id": "cf278a76-0574-4f51-8a25-7e4728cfc295", "name": "Returns a new form definition", "originalRequest": { "url": { @@ -37673,12 +37673,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\": \"moll\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Excepteur eiusmod\"\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\": \"consequat mollit velit cillum \"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Lorem dolor esse\"\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\": \"in non incididunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"occaecat non eiusmo\"\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\": \"ipsum sit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"do aliqua\"\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": "5fad72a4-dc6b-4fd5-9cef-a04d4ca83c43", + "id": "07300aae-bf7b-4de2-999f-92aa75f04419", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -37729,12 +37729,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "41b548a7-649a-4f6c-9a52-be7a8d58c6cf", + "id": "1f0b31d0-31d8-4d35-94de-af9a29796a66", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -37785,12 +37785,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "01340e7d-60ab-4f2d-b3cf-c47ed89d5576", + "id": "b27d2d9d-e1e8-4fae-8691-cc9c6b8b6576", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -37841,12 +37841,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "53e85646-62aa-4c13-a60f-3ecc1cf281f7", + "id": "12637ddd-3859-4b3c-9960-cfd1d4d5df50", "name": "Too many requests", "originalRequest": { "url": { @@ -37902,7 +37902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b030afbf-de32-41ee-947b-232fd99b3776", + "id": "dae55c51-35f4-451e-9e16-f836eba3782c", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -37953,7 +37953,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -37964,7 +37964,7 @@ } }, { - "id": "567e50ac-bb4a-4193-9383-59b92fcc52a1", + "id": "68fec7a9-37fe-491f-95f1-ff14624ad72a", "name": "Return a form definition.", "request": { "name": "Return a form definition.", @@ -38005,7 +38005,7 @@ }, "response": [ { - "id": "e891e5bb-841d-4894-bca0-6c97ede6945a", + "id": "e52a6705-b361-4905-91f1-90870428031d", "name": "Returns a form definition", "originalRequest": { "url": { @@ -38044,12 +38044,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\": \"moll\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Excepteur eiusmod\"\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\": \"consequat mollit velit cillum \"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Lorem dolor esse\"\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\": \"in non incididunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"occaecat non eiusmo\"\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\": \"ipsum sit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"do aliqua\"\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": "eccb5a5a-4cd2-4c25-998b-c39ed25ca78b", + "id": "bf224ccc-9043-4e4c-bcda-037dbc9135d7", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -38088,12 +38088,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9b7b07dd-b2bf-403e-b839-c17183a80531", + "id": "2562f3e4-6547-4daf-852b-c8d557a10871", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -38132,12 +38132,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3d51a651-4117-4a66-98b3-5d1b51d4d9e6", + "id": "cc318a9f-fc68-4e18-87ed-dce04c601688", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -38176,12 +38176,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e87620bd-5fa6-48a9-8b8c-f1ff1d327461", + "id": "ac151110-5267-4b17-8ad5-dd8736ceac8e", "name": "An error with the item not found", "originalRequest": { "url": { @@ -38220,12 +38220,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b22ffd10-85a2-4062-8e41-0b146733ff9a", + "id": "0390704b-af28-40f8-8ebb-92dd7c375921", "name": "Too many requests", "originalRequest": { "url": { @@ -38269,7 +38269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e9733f5-dade-497d-9e22-3306c404ed4e", + "id": "99d5ed1b-af95-4611-b69c-fcc3b45c8e72", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -38308,7 +38308,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -38319,7 +38319,7 @@ } }, { - "id": "e756bf9c-1e9c-4b2a-a77a-0e56bd1ae78c", + "id": "553668c9-ad52-4351-b338-b8890400dbdc", "name": "Deletes a form definition.", "request": { "name": "Deletes a form definition.", @@ -38360,7 +38360,7 @@ }, "response": [ { - "id": "0a9cdd50-1b3a-417d-8a3b-399bbcfb8973", + "id": "741f9437-cb02-40d5-87a4-5f265e448769", "name": "Returns an empty body", "originalRequest": { "url": { @@ -38404,7 +38404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1203fd70-6fff-4529-8033-c2a181aaef8a", + "id": "17aaa002-02e0-4c16-a69e-e06d8170acaf", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -38443,12 +38443,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b66136a6-d411-4780-a188-6060d901745d", + "id": "38602514-10d6-4163-a4d6-bcfaf96c257d", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -38487,12 +38487,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fe1a37ec-72df-4f17-888f-361f0284d478", + "id": "15e408e0-23fd-427e-8c8c-a9a0d373a7e1", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -38531,12 +38531,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "af25652f-2816-4b0a-8b1f-fede110ccdd5", + "id": "416ff0c8-e69b-4974-ae52-1a269d1d6cb3", "name": "An error with the item not found", "originalRequest": { "url": { @@ -38575,12 +38575,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f4759cb7-f704-4992-b0c8-3bde4f1c820d", + "id": "80927480-7412-4f6d-b912-daa818490baf", "name": "Too many requests", "originalRequest": { "url": { @@ -38624,7 +38624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09ef91d0-4d87-4723-9cd2-cab25580d3ea", + "id": "355a96d4-3efa-469e-8d80-188debfefd7e", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -38663,7 +38663,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -38674,7 +38674,7 @@ } }, { - "id": "032aeeeb-e7d9-425a-a44b-18fdbf69a12f", + "id": "e042a6ca-627f-4b21-a93c-f6553cca0b93", "name": "Patch a form definition.", "request": { "name": "Patch a form definition.", @@ -38728,7 +38728,7 @@ }, "response": [ { - "id": "0e8f8061-d9d6-4353-a98c-7491d1b987cf", + "id": "1f5b035f-e58a-4956-9b0a-2580540b5628", "name": "Returns the form definition updated", "originalRequest": { "url": { @@ -38780,12 +38780,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\": \"moll\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Excepteur eiusmod\"\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\": \"consequat mollit velit cillum \"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Lorem dolor esse\"\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\": \"in non incididunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"occaecat non eiusmo\"\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\": \"ipsum sit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"do aliqua\"\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": "4c7c7fbe-6615-44a1-b134-8fbfad90d002", + "id": "2435541d-5191-4c47-8db3-2b9cc2c2ddba", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -38837,12 +38837,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "123487f3-2ea7-403f-83b9-6403d5af20d5", + "id": "f5f6f9f7-c0a9-40f5-94e7-e3339da74a25", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -38894,12 +38894,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c7391008-2494-4d13-9568-f2adf56f4150", + "id": "e80b99bb-49c7-44da-a708-e08f92c9f38e", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -38951,12 +38951,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f6b745e8-65b7-4783-b404-7c71de06ba02", + "id": "9dcedf61-88b8-4042-a532-8618f4fb41c1", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -39008,12 +39008,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0a5d3131-ad91-4c2e-bfe0-a02b05a15ce1", + "id": "7cd96ae7-5ce2-428a-9750-527ab4d43482", "name": "Too many requests", "originalRequest": { "url": { @@ -39070,7 +39070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cda4bc49-2cdb-48c2-933a-9f2f08bbd894", + "id": "ae96b39f-422c-4b35-8948-cb7d095c52d5", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -39122,7 +39122,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -39133,7 +39133,7 @@ } }, { - "id": "8bb5f7b6-3997-4d39-8a55-d70c55f3574e", + "id": "dd3c2c6d-201f-4e21-98c4-84f79fa6889c", "name": "Preview form definition data source.", "request": { "name": "Preview form definition data source.", @@ -39213,7 +39213,7 @@ }, "response": [ { - "id": "730dc0ec-66d5-461a-ab2b-85e5599ab99b", + "id": "a62e4610-4f92-46a8-951e-4c36472d6c95", "name": "Returns a preview of a form definition data source", "originalRequest": { "url": { @@ -39299,7 +39299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5960b1f2-001c-4c50-ae0b-ea4f8ce28221", + "id": "e2e4027a-31b2-4244-9434-a70bad5199e1", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -39380,12 +39380,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "12ad17a6-7b2d-4044-82a5-48195b16af1d", + "id": "f4b5fe97-9194-4c82-ae3e-2fdac64a1f88", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -39466,12 +39466,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1f281c12-d178-41f7-80f9-26c40e732666", + "id": "073c69f7-0dee-44e1-b37b-1cc6036e533d", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -39552,12 +39552,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8d316bf8-7f85-4c00-9106-48048e6b33d0", + "id": "4a67b8eb-338f-4201-ae58-15e43bad5e81", "name": "An error with the item not found", "originalRequest": { "url": { @@ -39638,12 +39638,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "31f4249a-62d4-424f-a9c8-7c7d79676715", + "id": "07d9f105-856f-4bb1-a08b-fea2c06e0e30", "name": "Too many requests", "originalRequest": { "url": { @@ -39729,7 +39729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e7242b9-a243-4fc9-bf9b-d9b2e2ad5720", + "id": "f6d7cd0c-ba19-47de-8384-6f6fc26b32b6", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -39810,7 +39810,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -39821,7 +39821,7 @@ } }, { - "id": "7672996a-af57-4497-b72b-7919fc13b05d", + "id": "0c4aa6b1-923c-4f85-b18e-109d17e5c562", "name": "List form definitions by tenant.", "request": { "name": "List form definitions by tenant.", @@ -39888,7 +39888,7 @@ }, "response": [ { - "id": "f2a79216-d684-4ddb-afe9-5f14d6a33909", + "id": "b672aece-1642-457e-b0cb-2f21f27cecd7", "name": "Returns a list of form definition objects by tenant used by SP-Config", "originalRequest": { "url": { @@ -39964,12 +39964,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\": \"ipsum\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ad esse proident velit\"\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\": \"ullamco qui\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Excepte\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"pariatur do dolore ut\",\n \"version\": 45029534\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\": \"cupidatat ut\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"cillum ipsum et fugiat\"\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\": \"voluptate\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nulla est aliquip dolore\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"est minim eu\",\n \"version\": -14314066\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\": \"ea tempor et\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ex \"\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\": \"culpa\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"adipisicing ut en\"\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 in quis\",\n \"version\": 46651016\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\": \"exercitation nostrud\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consequat amet ea aliquip\"\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\": \"proident dolore laborum\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"nostrud\",\n \"version\": 58461673\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "03b51a5d-a8b8-4805-9867-106df96850ec", + "id": "dafa728f-6aec-4049-b5ed-d84024cc07d4", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -40045,12 +40045,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6b4402e8-ff58-4cb9-9e38-4a08f704ad92", + "id": "f16c477d-44e0-4d30-9a46-1d691098f8d1", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -40126,12 +40126,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8eb8b5b2-f42e-471c-9471-ef35296f7046", + "id": "7d7502a1-4531-46c8-8f21-43e540a583bd", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -40207,12 +40207,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8d0d7b1d-ad37-446c-9629-c9cc3eb9e524", + "id": "3766dc7e-ba7e-436f-bfd7-57e6512bf12a", "name": "Too many requests", "originalRequest": { "url": { @@ -40293,7 +40293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b007f4c-8ba8-4258-beb4-18f0bf9f3857", + "id": "cfe1d1b5-ee9c-42b1-8f25-0dd080b25913", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -40369,7 +40369,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -40380,7 +40380,7 @@ } }, { - "id": "a70f2a86-31d5-4971-925f-5853f126e612", + "id": "1789952b-2005-4bc7-bfdd-8efa86c28d7c", "name": "Generate JSON Schema dynamically.", "request": { "name": "Generate JSON Schema dynamically.", @@ -40420,7 +40420,7 @@ }, "response": [ { - "id": "a5136ece-40fb-4850-bfe7-41603438e13c", + "id": "68133dbe-fb37-4e19-afd6-5d7955da7bfd", "name": "Returns a form elements dynamic schema", "originalRequest": { "url": { @@ -40477,7 +40477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "897bdccc-db9d-4b7f-9c00-057567d130a2", + "id": "bd932de1-68d2-47e3-b28e-42f20485fed9", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -40529,12 +40529,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5135e777-4497-4d3a-81d1-55f06396159b", + "id": "6d4a0c45-db6b-4a01-9fcd-7738ced49e80", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -40586,12 +40586,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c361209b-e67b-4e51-b5b9-0b655eb6684f", + "id": "247693cf-2009-4f54-9b6d-21522ca87c6e", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -40643,12 +40643,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f8dccd2b-13b4-4771-9a8e-73cdba310cb4", + "id": "fec7a9ef-04ca-4655-8b1a-be9846d7ca3a", "name": "An error with the item not found", "originalRequest": { "url": { @@ -40700,12 +40700,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d7b30057-4e43-49e4-a4bf-6fd9444ad3b2", + "id": "88f554cd-472d-4044-b033-651aa156f281", "name": "Too many requests", "originalRequest": { "url": { @@ -40762,7 +40762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "115bd253-0cd0-4a54-94a3-1954e93b314c", + "id": "a4ad21eb-cb3f-4e16-8754-8e3f8e5992d4", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -40814,7 +40814,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -40825,7 +40825,7 @@ } }, { - "id": "b2e294b6-5f23-43c7-a15b-5d3a95c328ee", + "id": "da53b881-d75f-497e-89c1-406a3f2959df", "name": "Import form definitions from export.", "request": { "name": "Import form definitions from export.", @@ -40865,7 +40865,7 @@ }, "response": [ { - "id": "01c7ab38-f0ab-4cff-9111-4fb81b345ce4", + "id": "261b7eb7-4780-46be-b003-388085ec06b0", "name": "Returns statuses of those form definition objects imported", "originalRequest": { "url": { @@ -40917,12 +40917,12 @@ "value": "application/json" } ], - "body": "{\n \"errors\": [\n {\n \"detail\": {\n \"in166\": {},\n \"ullamco_146\": {}\n },\n \"key\": \"dolor aliquip enim Excepteur\",\n \"text\": \"labore reprehenderit tempor\"\n },\n {\n \"detail\": {\n \"aliqua2d3\": {},\n \"velit__50\": {},\n \"magna9_c\": {},\n \"Duis_78\": {}\n },\n \"key\": \"ex sint id Ut\",\n \"text\": \"ea consequat sunt elit anim\"\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\": \"esse adipisicin\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"tempor\"\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\": \"laboris sed pariatur volu\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sunt Ut\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"Ut occaecat velit\",\n \"version\": -4742973\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\": \"labore\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore 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 dolore deserunt Excepteur\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ad enim esse\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"commodo\",\n \"version\": 7206313\n }\n ],\n \"infos\": [\n {\n \"detail\": {\n \"quis50\": {},\n \"exe6f\": {}\n },\n \"key\": \"minim ad dolore ex\",\n \"text\": \"magna veniam\"\n },\n {\n \"detail\": {\n \"enim5a0\": {}\n },\n \"key\": \"quis sed velit enim\",\n \"text\": \"mollit\"\n }\n ],\n \"warnings\": [\n {\n \"detail\": {\n \"in4\": {},\n \"laborec\": {}\n },\n \"key\": \"est\",\n \"text\": \"pariatur ut dolore do esse\"\n },\n {\n \"detail\": {\n \"minimf\": {}\n },\n \"key\": \"id deserunt consequat\",\n \"text\": \"consequat incididunt\"\n }\n ]\n}", + "body": "{\n \"errors\": [\n {\n \"detail\": {\n \"euf\": {}\n },\n \"key\": \"Lorem dolore in enim\",\n \"text\": \"aliquip sit mollit\"\n },\n {\n \"detail\": {\n \"sed_4\": {},\n \"Duis5\": {},\n \"laborum_1\": {},\n \"magna_a\": {}\n },\n \"key\": \"qui\",\n \"text\": \"ipsum\"\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\": \"Duis\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"commodo mollit id\"\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\": \"Duis\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliquip Duis 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\": \"dolore Duis mollit velit\",\n \"version\": -57135602\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\": \"reprehenderit dolore magna dolore\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aute ullamco exercitation in laboris\"\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\": \"non sint id in\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in elit cillum sint eu\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"dolore consect\",\n \"version\": -94688209\n }\n ],\n \"infos\": [\n {\n \"detail\": {\n \"reprehenderitd\": {}\n },\n \"key\": \"minim\",\n \"text\": \"in consectetur est\"\n },\n {\n \"detail\": {\n \"inb\": {},\n \"cupidatat_97\": {},\n \"esse_e7\": {}\n },\n \"key\": \"non elit esse\",\n \"text\": \"culpa mollit deserunt\"\n }\n ],\n \"warnings\": [\n {\n \"detail\": {\n \"ex_934\": {}\n },\n \"key\": \"Excepteur\",\n \"text\": \"al\"\n },\n {\n \"detail\": {\n \"do__8\": {},\n \"velit_b\": {},\n \"cillum_e9\": {},\n \"ute\": {}\n },\n \"key\": \"quis proident\",\n \"text\": \"anim qui\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c650a7e2-6456-47f8-9fe5-bf6e20d0d161", + "id": "d81bb413-0939-421d-b850-dfa6be61cc58", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -40974,12 +40974,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4b7caad5-d67b-438f-968a-4693ae3e0f7c", + "id": "48cb1262-9cb4-45de-908a-9377d0532d24", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -41031,12 +41031,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e8f3d569-cef3-4c2d-8f88-f34ba7aebd7d", + "id": "0e044f61-8d1d-4efd-8da1-cb2b8a6fc71d", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -41088,12 +41088,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dba20922-eae0-4aca-8354-4ad844d31c04", + "id": "1ba0c021-a9c8-4e47-8c29-43a1bb25d155", "name": "Too many requests", "originalRequest": { "url": { @@ -41150,7 +41150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "671a5155-2f00-41fe-b1af-af5a42c62a3f", + "id": "19cef384-e475-4264-9dff-a6009ff56389", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -41202,7 +41202,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -41213,7 +41213,7 @@ } }, { - "id": "f3eaa9e2-64f6-4333-8afb-02e495ca2b61", + "id": "188f306f-c0b7-4e5e-a01a-dc32409fbbc0", "name": "Upload new form definition file.", "request": { "name": "Upload new form definition file.", @@ -41264,7 +41264,7 @@ "type": "text/plain" }, "key": "file", - "value": "irure veniam", + "value": "officia", "type": "text", "contentType": "image/png, image/jpeg" } @@ -41273,7 +41273,7 @@ }, "response": [ { - "id": "9d2a2fa1-50b0-45ef-8ba4-7eb010c1d2c1", + "id": "9328fd52-3a7a-4be5-8e24-2d84b0873091", "name": "Returns a new form definition file", "originalRequest": { "url": { @@ -41316,7 +41316,7 @@ "type": "text/plain" }, "key": "file", - "value": "irure veniam", + "value": "officia", "type": "text", "contentType": "image/png, image/jpeg" } @@ -41336,7 +41336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ac7bdc4-3a24-4ca3-920c-ac3cb6f6a5af", + "id": "cfd9e0b8-7459-4f24-93d9-e9e567f7545f", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -41379,7 +41379,7 @@ "type": "text/plain" }, "key": "file", - "value": "irure veniam", + "value": "officia", "type": "text", "contentType": "image/png, image/jpeg" } @@ -41394,12 +41394,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9ace8643-0ec8-4593-b1dc-073916c3fc3c", + "id": "8f6f3d06-ad65-45f5-9707-130c168ed883", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -41442,7 +41442,7 @@ "type": "text/plain" }, "key": "file", - "value": "irure veniam", + "value": "officia", "type": "text", "contentType": "image/png, image/jpeg" } @@ -41457,12 +41457,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "db60000a-107e-4b90-b518-99b8f8f28320", + "id": "faa5d0a5-031a-4c32-ae72-4f414b5838f7", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -41505,7 +41505,7 @@ "type": "text/plain" }, "key": "file", - "value": "irure veniam", + "value": "officia", "type": "text", "contentType": "image/png, image/jpeg" } @@ -41520,12 +41520,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3c9ca817-3b76-4c1e-9797-7f8c25b00322", + "id": "0fffac87-1166-4100-9e67-b5b951b101d9", "name": "An error with the item not found", "originalRequest": { "url": { @@ -41568,7 +41568,7 @@ "type": "text/plain" }, "key": "file", - "value": "irure veniam", + "value": "officia", "type": "text", "contentType": "image/png, image/jpeg" } @@ -41583,12 +41583,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "93280230-d0a4-4ed1-b87c-c78b7e83dca1", + "id": "2e25b4d3-2c02-4a61-bde7-5136ec60ed08", "name": "An error with payload size too large", "originalRequest": { "url": { @@ -41631,7 +41631,7 @@ "type": "text/plain" }, "key": "file", - "value": "irure veniam", + "value": "officia", "type": "text", "contentType": "image/png, image/jpeg" } @@ -41646,12 +41646,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c675dac9-f897-416f-99b2-16dc097d7599", + "id": "ca618840-e7c4-463a-ab33-623a1d0a4ee9", "name": "An error with unsupported media type", "originalRequest": { "url": { @@ -41694,7 +41694,7 @@ "type": "text/plain" }, "key": "file", - "value": "irure veniam", + "value": "officia", "type": "text", "contentType": "image/png, image/jpeg" } @@ -41709,12 +41709,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "91f15265-08fe-4cd2-85b7-baafd5acacd3", + "id": "3f8428b8-e296-4e99-949c-9a9089d60253", "name": "Too many requests", "originalRequest": { "url": { @@ -41757,7 +41757,7 @@ "type": "text/plain" }, "key": "file", - "value": "irure veniam", + "value": "officia", "type": "text", "contentType": "image/png, image/jpeg" } @@ -41777,7 +41777,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bef6ab10-2ed4-4e04-89f9-1d5333937a53", + "id": "ddf9dfaf-b6ba-4b3d-8034-373bfbef728c", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -41820,7 +41820,7 @@ "type": "text/plain" }, "key": "file", - "value": "irure veniam", + "value": "officia", "type": "text", "contentType": "image/png, image/jpeg" } @@ -41835,12 +41835,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "01d72589-8c1a-4d84-9c1d-bc91d611d3fa", + "id": "5947df35-dd06-4ecd-86bf-b8aeb01abda3", "name": "An external service is not available", "originalRequest": { "url": { @@ -41883,7 +41883,7 @@ "type": "text/plain" }, "key": "file", - "value": "irure veniam", + "value": "officia", "type": "text", "contentType": "image/png, image/jpeg" } @@ -41898,7 +41898,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -41909,7 +41909,7 @@ } }, { - "id": "546811bb-d462-4f9f-88b5-024422333169", + "id": "c7fac5a4-943c-4ef8-bc59-93fdb56ea8ce", "name": "Download definition file by fileId.", "request": { "name": "Download definition file by fileId.", @@ -41959,7 +41959,7 @@ }, "response": [ { - "id": "a53c6d3b-7f66-4f2e-8cef-d5440888438c", + "id": "883925bf-fb45-4cba-a942-cb6864b42be4", "name": "Returns a file that is referred to by fileID and associated with the formDefinitionID", "originalRequest": { "url": { @@ -42000,12 +42000,12 @@ "value": "application/json" } ], - "body": "sed nisi sunt qui", + "body": "Lorem", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "256cd91f-0f5a-43b4-b34a-6419646d98ec", + "id": "ab6704ef-bfb0-41f0-b6e3-5c2c2ef838a3", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -42046,12 +42046,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a8766b8b-2813-4c59-96f2-0d329c04d82e", + "id": "0a37e3db-f246-454f-bba2-9909173f5360", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -42092,12 +42092,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cfc8aaae-7b2e-4bdf-8791-0e91b7c9eecf", + "id": "7eb68aeb-6b4b-40e7-b0aa-0e4e0c43f1d2", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -42138,12 +42138,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2789757e-d4a3-4d2f-8988-fadd3e42e453", + "id": "bd4eeb4a-2cb1-47a6-8bf6-778775c729eb", "name": "An error with the item not found", "originalRequest": { "url": { @@ -42184,12 +42184,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f9f22577-f78f-4d8e-8dbc-997b01805131", + "id": "8d9edafd-60aa-426f-8195-c74b8ae8ac00", "name": "Too many requests", "originalRequest": { "url": { @@ -42235,7 +42235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d78ed89a-49a1-43ca-8ed7-8394be547a17", + "id": "70c8df32-c8d1-4986-a456-5f92a3c0acd1", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -42276,12 +42276,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c396f4e-6fc6-4f3c-a981-5ad5325494ce", + "id": "53436a7c-cd01-4b7d-8633-d868e62bc7f2", "name": "An external service is not available", "originalRequest": { "url": { @@ -42322,7 +42322,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -42333,7 +42333,7 @@ } }, { - "id": "717d3853-b74b-46d9-9bb1-31c23977d0aa", + "id": "e8b882b9-88e5-4a03-aaa3-fab83c822ea5", "name": "List form instances by tenant.", "request": { "name": "List form instances by tenant.", @@ -42362,7 +42362,7 @@ }, "response": [ { - "id": "b614db7c-e438-4bca-b2de-de66a27d9ec4", + "id": "797ea29f-6cb8-4d2b-a375-4bd55a365b63", "name": "Returns a list of form instances by tenant", "originalRequest": { "url": { @@ -42400,12 +42400,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\": \"nostrud\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"magna nisi adipisicing 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\": \"culpa fugiat aliqua pariatur est\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Lorem voluptate\"\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\": \"non\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"irure veniam occaecat ad\"\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\": \"cupidatat id\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"des\"\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\": \"elit occaecat Duis in aute\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"cupidatat consequat 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\": \"in\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"officia exercitation id\"\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\": \"voluptate occa\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"tempor proident\"\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 ex consequat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ipsum sunt commodo sed veniam\"\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": "01c7ece6-1176-4bc9-b742-2a57c03a00a3", + "id": "8f277402-b28d-4c70-9471-13c4eb80778c", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -42443,12 +42443,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4fea6e75-ab4e-4817-89f0-22b292ca4ebb", + "id": "a4b41e43-daef-49d4-875a-7db1b4ebdbc9", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -42486,12 +42486,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1db6ecfb-89bd-4c28-bde3-df10938319cf", + "id": "cb3c4594-8d4b-400c-a25b-57f693d856e2", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -42529,12 +42529,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "05b88aa4-2909-48ab-a8af-54d593f9ac36", + "id": "db77429b-f441-4dfe-843a-7e32eaf4df1a", "name": "Too many requests", "originalRequest": { "url": { @@ -42577,7 +42577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ca6c1ad-b351-43a8-a904-a16992bfae6b", + "id": "398af90b-9e84-471d-b7d2-8da24aa1b735", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -42615,7 +42615,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -42626,7 +42626,7 @@ } }, { - "id": "efb962fe-2c28-454a-885d-5c9bd96aa329", + "id": "c86e8535-381a-409e-9ae4-a478a34c3e5d", "name": "Creates a form instance.", "request": { "name": "Creates a form instance.", @@ -42665,7 +42665,7 @@ }, "response": [ { - "id": "004dba3d-64cf-4dde-a64d-b28419e8cd68", + "id": "b29a28b8-45bd-41e4-a8e1-02d67676f2cb", "name": "Returns a new form instance", "originalRequest": { "url": { @@ -42716,12 +42716,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\": \"velit mollit veniam nulla\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"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\": \"non\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"et cupidatat ullamco\"\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\": \"occaecat do dolore exercitation\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in non\"\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\": \"eu a\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Ut minim aliquip\"\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": "e1ded342-0e40-466f-a35a-3591991f40a4", + "id": "9d0aa29b-b259-4343-b732-402c2b0cf986", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -42772,12 +42772,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "67e82999-9386-49d6-967b-dd53e873b44b", + "id": "8b73b083-b63f-4bdc-a6c8-4baa59d78b1d", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -42828,12 +42828,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f690d21c-5710-44b8-8485-588d104a3f10", + "id": "a05adc6f-66a0-4e95-87cf-33c0027b9fbd", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -42884,12 +42884,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3578f45d-4a1a-4286-8af9-78b223bfcb09", + "id": "c0dd47c3-d87a-43ac-ad01-d6a9273c66c4", "name": "Too many requests", "originalRequest": { "url": { @@ -42945,7 +42945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c51359d-a95c-47f2-9345-ebbebe5aef78", + "id": "dccdc5b6-d7ce-4fcb-8c7c-67416838d6ea", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -42996,7 +42996,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -43007,7 +43007,7 @@ } }, { - "id": "adbebb54-41a2-40e7-a122-4323ca37e810", + "id": "079fa05c-222d-4a0b-9f38-172e243810d6", "name": "Returns a form instance.", "request": { "name": "Returns a form instance.", @@ -43048,7 +43048,7 @@ }, "response": [ { - "id": "6a70474c-9f02-4854-8836-f6abd2878e8a", + "id": "ea71e1f5-dbe5-4b63-9774-3ab34b4a08ac", "name": "Returns a form instance by its key", "originalRequest": { "url": { @@ -43087,12 +43087,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\": \"velit mollit veniam nulla\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"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\": \"non\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"et cupidatat ullamco\"\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\": \"occaecat do dolore exercitation\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in non\"\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\": \"eu a\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Ut minim aliquip\"\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": "faa1e1f4-b4aa-4a60-8356-791a274c4b0b", + "id": "36899d77-92db-4dc4-a6ef-80720dbf28bf", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -43131,12 +43131,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dfac3def-f1df-4f96-ae09-f8bc2425784a", + "id": "ffd61de4-d1b7-4e82-bb0b-0486f3b58277", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -43175,12 +43175,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6a31eea5-aad8-44af-9da2-2a688b1124d5", + "id": "c4e61326-d231-4f5f-a152-c67f2d858875", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -43219,12 +43219,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "edc96c97-cd07-4146-a8df-db1052ab8c2e", + "id": "bda29d16-afe7-4e1d-a1c5-ccf9cba33e31", "name": "An error with the item not found", "originalRequest": { "url": { @@ -43263,12 +43263,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "765fdc4c-b130-4f8c-8e9c-f303d75bc6b7", + "id": "9252b632-2b4e-4400-8261-3f237c128ba6", "name": "Too many requests", "originalRequest": { "url": { @@ -43312,7 +43312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d55d11b-f604-4b57-94ec-fac7a4d979e2", + "id": "876f1180-5e1e-4369-9106-7d4ee47e788f", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -43351,7 +43351,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -43362,7 +43362,7 @@ } }, { - "id": "77ea6db1-0e2e-40a4-afdb-8955782230ae", + "id": "290ad6b6-3cb2-43b1-8995-4222d2436144", "name": "Patch a form instance.", "request": { "name": "Patch a form instance.", @@ -43416,7 +43416,7 @@ }, "response": [ { - "id": "d8a62d2f-cd08-4232-8b5e-0dc88282a0a5", + "id": "f703a587-2fa0-4202-8178-0e8814a951ae", "name": "Returns the form instance updated", "originalRequest": { "url": { @@ -43468,12 +43468,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\": \"velit mollit veniam nulla\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"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\": \"non\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"et cupidatat ullamco\"\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\": \"occaecat do dolore exercitation\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in non\"\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\": \"eu a\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Ut minim aliquip\"\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": "1b9438a5-037b-4dde-a90f-4d7ed32f2e9b", + "id": "864981c5-739b-46b8-9e81-99e74fa3cb45", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -43525,12 +43525,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3237c9a4-0ae0-438e-b1c7-e707b1ac0432", + "id": "5a707b6d-5b64-46d6-ab68-7c87538ed3dd", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -43582,12 +43582,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cd399079-fee8-4c0f-83f6-0bc766153a15", + "id": "695c6ac7-c828-4ae4-9dd5-7e48112b8faf", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -43639,12 +43639,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b86fcf62-99c4-456b-8ba8-17cb47f80877", + "id": "e6e0a00c-0ddc-4d29-9d55-70be4e4bd3a8", "name": "An error with the item not found", "originalRequest": { "url": { @@ -43696,12 +43696,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "79da63a5-2c3a-4010-b9b0-efd1b9db5068", + "id": "3a30a919-253a-4bd5-b5dc-4886546ac1da", "name": "An error with the request property conflicts with stored", "originalRequest": { "url": { @@ -43753,12 +43753,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "316110d1-0a2e-4164-ab96-89fa7db39d88", + "id": "d2b5ae45-d345-4708-9778-05ee87d2e7ce", "name": "Too many requests", "originalRequest": { "url": { @@ -43815,7 +43815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "815bffda-7bf8-4d8e-a174-01967b2432a3", + "id": "71941d24-e424-427f-ba20-dbfad681156c", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -43867,7 +43867,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -43878,7 +43878,7 @@ } }, { - "id": "18aec9f6-e1f1-4182-87e1-6d690a457a53", + "id": "4226e2c6-90d3-4777-a0b3-a606f4053b3b", "name": "Retrieves dynamic data by element.", "request": { "name": "Retrieves dynamic data by element.", @@ -43950,7 +43950,7 @@ }, "response": [ { - "id": "144e35f3-805a-4534-b497-4c82ba97fe39", + "id": "e21ee645-7790-4e92-9614-1ddce12e9a3b", "name": "Retrieves dynamic data to aid in correctly completing a valid form by form element ID from data source configuration", "originalRequest": { "url": { @@ -44015,7 +44015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d991c060-23ba-44b8-94d0-6b8a409c47fd", + "id": "4622822f-ae0e-4151-8a39-74e8033bf083", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -44075,12 +44075,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ed690b6f-8daf-4986-b73b-aa5a5ddcfed0", + "id": "88633408-dbb5-4f97-9b3f-bd1bd8d7008c", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -44140,12 +44140,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bba4190a-9638-4ef2-82b9-d8f6b9e442a1", + "id": "fce6a7e9-2428-4743-981e-97764bfb9d3e", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -44205,12 +44205,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d280df95-388a-4854-ba86-20d9206319e9", + "id": "d9d44e6c-6b75-40c0-9aea-cad8a332c2f0", "name": "An error with the item not found", "originalRequest": { "url": { @@ -44270,12 +44270,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "171b55b8-60ac-48b9-a433-20e2fd733186", + "id": "63bc2246-d065-4d0b-90c0-6c0be4fab94d", "name": "Too many requests", "originalRequest": { "url": { @@ -44340,7 +44340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cabb1b61-59f9-4cfb-a371-787b19d95dd2", + "id": "f1b0f575-57e2-4109-ab23-2291f337f636", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -44400,7 +44400,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -44411,7 +44411,7 @@ } }, { - "id": "450a00a1-2b8e-450d-8e6d-eccf28d8af23", + "id": "10568986-3ed7-46c7-a0da-e6520cb80170", "name": "Download instance file by fileId.", "request": { "name": "Download instance file by fileId.", @@ -44461,7 +44461,7 @@ }, "response": [ { - "id": "1b53f1ef-3931-4801-8426-3c23be652b04", + "id": "843fed81-7faa-4732-a1b9-6b857c7e638e", "name": "Returns a file that is referred to by fileID and associated with the formInstanceID", "originalRequest": { "url": { @@ -44502,12 +44502,12 @@ "value": "application/json" } ], - "body": "sed nisi sunt qui", + "body": "Lorem", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3da25f00-d84f-4334-aa7c-562dd0ba975b", + "id": "53d1ec23-f316-427c-94b8-54405de7d23e", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -44548,12 +44548,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "893d332a-01e4-49f8-88ca-10182aa06d23", + "id": "7311d30f-9c21-4fc5-9f82-d2cb5bf1bce6", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -44594,12 +44594,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "15c605d4-35d8-46bd-b049-d153be9e6046", + "id": "f53d3cfb-e461-4a3b-bec1-813fe2cd1196", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -44640,12 +44640,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ef6feab4-cb04-4ee1-be41-92872b39102e", + "id": "92e3f5c2-7609-4095-945c-f1653a8742a0", "name": "An error with the item not found", "originalRequest": { "url": { @@ -44686,12 +44686,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "52d2475b-d207-4891-85aa-c726a1c21ead", + "id": "3104e815-32de-4f7e-ac4a-47aaf439838d", "name": "Too many requests", "originalRequest": { "url": { @@ -44737,7 +44737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fd59524-b737-4e7b-a72c-29039d84bd6e", + "id": "9ca5e876-8481-472f-be0c-90ffe7b8260c", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -44778,12 +44778,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f9d12c9d-016a-4689-9c1e-01d761e44f13", + "id": "566885d1-f452-4fa5-82f8-2b5cdc9023c5", "name": "An external service is not available", "originalRequest": { "url": { @@ -44824,7 +44824,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -44835,7 +44835,7 @@ } }, { - "id": "44944e3d-41b8-4c39-b8a6-f225da03b2a8", + "id": "66ea0b7e-d7dd-463e-a055-ac8acb81cdfd", "name": "List predefined select options.", "request": { "name": "List predefined select options.", @@ -44865,7 +44865,7 @@ }, "response": [ { - "id": "b57e936d-e94b-4512-957a-22dfc2e29e5b", + "id": "f3be55d3-974b-4e87-a642-e176199a1741", "name": "Returns a list of available predefined select options", "originalRequest": { "url": { @@ -44909,7 +44909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62d1ab08-64a4-4370-bce9-bcb46604af5b", + "id": "d4ca234d-d4ec-4adc-b541-0d2aad37062b", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -44948,12 +44948,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "deebfa26-c754-4cb8-bc9d-a2b7acfa361d", + "id": "59951feb-1a3f-4608-b104-d5219409ed80", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -44992,12 +44992,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7278aec0-99f0-42c1-bbbd-0095c3cad0b2", + "id": "e87a0042-fcdf-40d4-a9cb-69af6b7e1fff", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -45036,12 +45036,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0ec07f39-6c4b-4f50-b4e5-43ddc4d27ae7", + "id": "96840829-d735-409e-9184-38fa02a05110", "name": "Too many requests", "originalRequest": { "url": { @@ -45085,7 +45085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "143e7a06-a569-4e70-95a1-c17e34347d82", + "id": "1b5af0bf-d16c-45ca-9275-e175145b21e9", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -45124,7 +45124,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nisi aute\",\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\": -18289955,\n \"trackingId\": \"cillum labore\"\n}", + "body": "{\n \"detailCode\": \"sint consequat\",\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\": -65659928,\n \"trackingId\": \"amet qui consequat\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -45141,7 +45141,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": "5480980a-74e5-4443-af6e-27356cfbec14", + "id": "466db2e8-c47c-45f9-bda9-9f1d79d793f0", "name": "Create Custom Password Instructions", "request": { "name": "Create Custom Password Instructions", @@ -45183,7 +45183,7 @@ }, "response": [ { - "id": "3cde9b72-9318-4a3e-a0f0-c68b3e3307e1", + "id": "dbf51c71-187c-446b-84f3-cd5f3b7f8c77", "name": "Reference to the custom password instructions.", "originalRequest": { "url": { @@ -45239,7 +45239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9b48db9-840a-4d67-a415-a5dc7c1cdf41", + "id": "1208b973-9e0d-40da-9173-30986049fdc0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45295,7 +45295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3b65863-7643-4fb0-a907-67bc874b4fff", + "id": "61db5dfc-dd10-439b-98f3-42f72e8ea6e9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45351,7 +45351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dced8a0e-b90f-4d81-b596-7c2048cd2529", + "id": "f203c1ed-9bdb-4edd-a3c5-a12fbc99054e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45413,7 +45413,7 @@ } }, { - "id": "2b7becf5-3d4a-4ac9-9df4-701851fc61ec", + "id": "8ce8bce4-37d8-4c20-a8ca-4505723cf603", "name": "Get Custom Password Instructions by Page ID", "request": { "name": "Get Custom Password Instructions by Page ID", @@ -45437,7 +45437,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [ @@ -45464,7 +45464,7 @@ }, "response": [ { - "id": "b03bcc95-ae9a-4072-a8e5-36e7b99d13a8", + "id": "c6e0c27d-aff0-45ac-a762-fcd018a41bcb", "name": "Reference to the custom password instructions.", "originalRequest": { "url": { @@ -45483,7 +45483,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -45518,7 +45518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2149c09a-27f8-45ed-859d-798870de78f3", + "id": "d73e42a9-ef50-498e-8aad-6ad38c1b0298", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45537,7 +45537,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -45572,7 +45572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f644e2e5-8bb1-4b1b-a5b8-c263fb3501f1", + "id": "bc6991fd-03e7-4db6-99fe-9ca800fc213b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45591,7 +45591,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -45626,7 +45626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed9feb32-00f1-4ccb-8925-3cbe4ca0468c", + "id": "acc735ee-56bd-475c-acfc-471206e60f24", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -45645,7 +45645,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -45680,7 +45680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40d50d14-2774-4eef-95f0-63c6362e03cd", + "id": "77eae31a-172f-41b5-87af-b473c5bfda6e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45699,7 +45699,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -45740,7 +45740,7 @@ } }, { - "id": "da5187c4-7143-4e12-b12a-c49be058efdf", + "id": "23b6431f-31fd-4874-8694-18a8fa545236", "name": "Delete Custom Password Instructions by page ID", "request": { "name": "Delete Custom Password Instructions by page ID", @@ -45764,7 +45764,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [ @@ -45791,7 +45791,7 @@ }, "response": [ { - "id": "65f90eda-32bd-496e-b06c-89e1c3d78405", + "id": "d7b83023-4473-41a5-9dab-59edbb32cf10", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -45810,7 +45810,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -45835,7 +45835,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4388ea55-744f-49d6-ab41-9d34a5c80ae2", + "id": "d8611d91-4913-4cd1-b319-e75010f775d1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45854,7 +45854,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -45889,7 +45889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d53ace5a-6f91-42a6-8083-cceff8fe5910", + "id": "d45d2c4b-376f-44c2-ac0b-2f7bbdc3d1fd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45908,7 +45908,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -45943,7 +45943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0e30919-cd9f-4873-9e94-e4ec82492f80", + "id": "f35a4c89-300a-40da-aa48-af6742414744", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -45962,7 +45962,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -45997,7 +45997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86608f55-15f0-41d4-aca3-345e88074fde", + "id": "9e301845-087b-44d6-a9cd-ce36c2b6e884", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46016,7 +46016,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -46063,7 +46063,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": "78d97edb-9809-4bb5-bf48-67789c0e46a5", + "id": "7cbc16ba-8e71-4d79-92e7-1922e2303370", "name": "Gets a list of entitlements.", "request": { "name": "Gets a list of entitlements.", @@ -46174,7 +46174,7 @@ }, "response": [ { - "id": "19a88c0d-ff23-4754-8a53-2d42ae4198a2", + "id": "25246aff-6c4b-4168-ab26-3135e43e61d1", "name": "List of entitlements", "originalRequest": { "url": { @@ -46299,7 +46299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "132ada67-beeb-48d8-bced-6734ecd5e965", + "id": "20fc8e26-0315-42e7-a49e-317a2d685e8a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46424,7 +46424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30afaf88-a784-49d6-94b8-0beb7b58d242", + "id": "b4c4f933-2cd9-4933-a110-926111c85ab5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46549,7 +46549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed2568cd-e061-4bc8-b805-fd11a3d1fa61", + "id": "c5cea3d7-7579-42c2-af5a-f61ceb3ac77a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46674,7 +46674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00c10801-5f4b-472d-918d-f3b33351a383", + "id": "4f9df706-7891-4cd7-a051-2706ca410e3e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46799,7 +46799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79994515-12b8-40eb-9b2f-99f35a3f00a4", + "id": "065ab5f4-0a66-4bae-9856-9ceacb4f7963", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46930,7 +46930,7 @@ } }, { - "id": "44e5ca7a-77a7-4f85-9de8-3a8586c6a0f5", + "id": "d0ec6ddc-1165-4603-9945-16d0ae717d1e", "name": "Get an entitlement", "request": { "name": "Get an entitlement", @@ -46971,7 +46971,7 @@ }, "response": [ { - "id": "c0a2f908-f4f1-4693-8f0f-039308265c51", + "id": "e44adf02-160c-42d1-a8b3-724ffe3eedd0", "name": "An entitlement", "originalRequest": { "url": { @@ -47015,7 +47015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "176582d8-22e3-44ba-957b-e29007d2f375", + "id": "667c73a1-c3ae-47a1-9299-043a7f64a8cb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47059,7 +47059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a49ec6ce-bfa2-430e-8fe2-b71e58c88897", + "id": "1e6e3e4f-bb47-4f65-a4cd-a933f285f789", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47103,7 +47103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "452a4ed3-0d70-4209-8488-1987d0d6d8c0", + "id": "aa335e08-fd69-42ea-9265-b55787ff16fc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47147,7 +47147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc4c3932-c799-4d5f-bde3-4cd4e61605fc", + "id": "2c91be26-0507-44ef-bed1-09e0355bc855", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -47191,7 +47191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fac484a0-16dc-4378-af87-1f43940ced1c", + "id": "3a30a2a2-e73c-466e-ac4c-63148421a66c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47235,7 +47235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cdcbfbd-2601-4a48-8588-048079c8619c", + "id": "736188b3-c88e-4723-b2d6-6db9bff1c423", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47285,7 +47285,7 @@ } }, { - "id": "3038ee87-472f-444e-b0b7-7f1fbcd315f9", + "id": "7f732757-7fd4-47d0-b340-40ca8d4ab3a0", "name": "Patch an entitlement", "request": { "name": "Patch an entitlement", @@ -47339,7 +47339,7 @@ }, "response": [ { - "id": "d30beb3d-3ddd-4dce-a3c1-480e6d8fe630", + "id": "4bca7fc4-405f-4eb7-967f-e8a02ef6f29e", "name": "Make an entitlement requestable and privileged in one call", "originalRequest": { "url": { @@ -47396,7 +47396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a15db22f-8093-4a20-a39f-1abf356fa541", + "id": "f2919cf6-0d08-4eac-b20f-ded3eef42f7f", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -47453,7 +47453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86858615-6970-4f53-8dab-90508c1448ec", + "id": "80ef67fe-0364-40ae-b366-54cefa27d41a", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -47510,7 +47510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2001fec2-d617-47a6-8ce9-7feaae778820", + "id": "838fcd61-6b93-48d6-b7a4-d288c309d953", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -47567,7 +47567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4b91e1f-7d40-48f1-aeab-004dda8517f4", + "id": "f2e863a9-9830-41cb-9bea-c47320b955b0", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -47624,7 +47624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b9985ae-8f3d-4c87-b6d1-e923dbede5d0", + "id": "86cb160a-d484-4c26-804a-f952726544b8", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -47681,7 +47681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05a9044e-fdf3-4955-b05f-d647d4a8eebe", + "id": "0982e5d7-dfd8-4040-9270-fd3afc4cb1b7", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -47738,7 +47738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60aa30f1-f31c-4828-96e7-f56abdca21ad", + "id": "b3659f01-9fe5-4f0f-be6c-8699890bea11", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -47795,7 +47795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c94e8783-f416-46c5-b21e-757bc1e26fbd", + "id": "bff7d38a-fedb-4031-9724-1ebaccf5df76", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -47852,7 +47852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e046f61a-d17d-46c6-acf2-08f32f35ba72", + "id": "32f3a7d1-4963-42c2-a2d0-73cac31cd5bf", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -47909,7 +47909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0e93c11-c40d-4f53-bc2c-8770b6bc3758", + "id": "c3c4f3b4-aece-41fe-80de-c0c5446d7c07", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -47966,7 +47966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6063e38d-0f83-49a5-8238-5d96730e548b", + "id": "ec81c9c8-9cb4-45c5-945c-ba240e628966", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -48023,7 +48023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2813f564-3f26-4067-976d-a97b66f32ace", + "id": "471c3567-5808-4497-b8f5-d5746f79413a", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -48080,7 +48080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d3e3435-1d9b-43f9-9726-c704243068ae", + "id": "5aa0ee69-e080-4a90-8ee1-569f0f66bd85", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -48137,7 +48137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2eec853-f05f-4edf-9f9b-47839dd73e9b", + "id": "ab6cd4fc-16a2-4464-8381-b3efa5857d86", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -48194,7 +48194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5deda74d-89ea-4435-8cb7-2517bdcc71e4", + "id": "2be0cd2c-dbda-498c-a179-1d753f9ce0b4", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -48251,7 +48251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "760cc7cf-5adf-498f-91aa-e30e9a78d7f4", + "id": "15e0031d-061b-4b90-be78-d54f848a4b27", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -48308,7 +48308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59b1b72b-d186-4cda-bcd3-8ca209ee4509", + "id": "a20affe8-08bf-496a-b3f8-d22fd7975f03", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -48365,7 +48365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83ab35a7-9bfd-4544-8d88-620e8399dc86", + "id": "ddfc932e-1f23-49f2-abcd-559ad1390cbf", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -48422,7 +48422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62a62985-6039-465a-812a-448da13ed284", + "id": "5dd57ea8-829a-4c2c-b812-f88ab1f00cff", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -48479,7 +48479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5bc7b39-cf96-45d5-bbb0-437ef993851e", + "id": "3da89e1c-c10d-4f29-a46c-5e03fb3f96e9", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -48536,7 +48536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73d6453c-1734-43df-951e-d6523701e7cc", + "id": "99c599e3-c4f5-40fc-9c35-e1c4ff4bee34", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -48593,7 +48593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e942b43-308d-46ee-9aa9-e37d79048d38", + "id": "75370b23-053b-410a-b364-2f98abd87b90", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -48650,7 +48650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81154852-4bc7-48ae-90e1-be3643370c4b", + "id": "67e6a1cd-cf90-447b-bd53-5be0926b5b9c", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -48707,7 +48707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fae20da-b9b5-4815-8c5e-592d47f73d96", + "id": "4e38679a-5a60-40de-bffb-886a4b38705d", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -48764,7 +48764,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a56ce67-5064-4b54-b2d3-e5505f413cb4", + "id": "de8db826-623a-4d52-906d-5ac8c47d5684", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -48821,7 +48821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acfdef40-0576-416c-b441-a09c365b13ef", + "id": "17639f5a-7965-4085-853a-5e46d3c89c18", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -48878,7 +48878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8719bfbf-ae0e-4cd3-99b7-a38a9e4dacfd", + "id": "ea7a8f3e-8f13-414f-800a-f58264c919ad", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -48941,7 +48941,7 @@ } }, { - "id": "d2ccddc6-e50f-4ea6-997a-a69d9d66c256", + "id": "6b3114f4-aa14-4214-ab74-70adc75247a9", "name": "List of entitlements parents", "request": { "name": "List of entitlements parents", @@ -49029,7 +49029,7 @@ }, "response": [ { - "id": "a5029f18-f846-4e40-ab04-682ca91b4ec8", + "id": "c9ea2dce-e176-412b-9678-42f8bc244286", "name": "List of entitlements parents from an entitlement", "originalRequest": { "url": { @@ -49120,7 +49120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50609543-1b1d-4d3a-8feb-02c4f40b22d4", + "id": "fc08c287-c470-4d7d-9cd3-b1d84c0d5cae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49211,7 +49211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a821152b-a2c1-4979-b09e-d1a71a006255", + "id": "9072eb82-3c99-43e4-a16f-d66659efa06a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49302,7 +49302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34717aa7-2d7a-4e3d-bde2-a24e19e5e2fa", + "id": "d5907833-fb0c-4a12-bd34-e5941463e2cd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49393,7 +49393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "514a2934-2e73-4fa0-9aa4-2a64ccd01925", + "id": "22e16458-93a2-4f0b-85d6-bcc24ebdf8b0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -49484,7 +49484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f94eace-7999-4e8f-99bd-8012d270d37d", + "id": "465b72bd-58f9-48ed-85e2-273783faecba", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49575,7 +49575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c2419c7-e1b6-46e8-9db9-639ce65ac228", + "id": "5a33f3b7-6429-46c6-b0bd-d7f6a31f8304", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49672,7 +49672,7 @@ } }, { - "id": "511ff60d-d2e9-47ff-adc0-6fdec297f102", + "id": "ffb7f80d-fd56-4182-817f-36d90d4e90f3", "name": "List of entitlements children", "request": { "name": "List of entitlements children", @@ -49760,7 +49760,7 @@ }, "response": [ { - "id": "c6a1891b-df2b-4b56-bb9e-edb9d246753c", + "id": "fb63f459-9168-4f10-a2ea-dc761c6f2f93", "name": "List of entitlements children from an entitlement", "originalRequest": { "url": { @@ -49851,7 +49851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0536a7f1-cd58-4201-a2d8-ba2d66847a9e", + "id": "8b910ef5-804d-4c2a-9d42-16230ab725f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49942,7 +49942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "526aafd0-6160-438f-952b-03aeaa17737e", + "id": "5828e54c-ac44-4c9c-a348-3d1713316e52", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50033,7 +50033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f21de670-3a6a-48c6-a215-1467d09d321b", + "id": "65104e7c-68c7-46a5-a5d1-5ea0862374a1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50124,7 +50124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de370d62-41bd-4237-ad18-c03bf427567a", + "id": "b7d995c8-1f1d-4333-a0f0-07da0ff2e759", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -50215,7 +50215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e636a6af-54f2-4735-b3e2-cae29a638069", + "id": "9a42672e-79d8-46c8-9a30-1c874de9f684", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50306,7 +50306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "333e3443-38ba-4cfe-be4c-88e0eb927498", + "id": "2b650311-449a-4b22-9130-6370c1a9b5b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50403,7 +50403,7 @@ } }, { - "id": "10aea326-9a02-448d-8778-06cae32428f7", + "id": "afd37790-58d8-4418-8859-a144c16b64e8", "name": "Bulk update an entitlement list", "request": { "name": "Bulk update an entitlement list", @@ -50446,7 +50446,7 @@ }, "response": [ { - "id": "052360c5-379f-48ea-8c24-0ee6040937f7", + "id": "d2ddd425-ec32-4b8e-97ad-b9a863a4be09", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -50493,7 +50493,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6f516794-e53c-4fdd-9e15-c01d13a5196a", + "id": "af19a74a-cc26-40f5-8cf7-4e107a2fbd06", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50550,7 +50550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f6e569c-d636-4cfc-a9c7-a9a35d8a0c69", + "id": "1bb83394-fefb-4ae9-bb82-315bb1d3f0ec", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50607,7 +50607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "083de173-a0c4-448c-a1dd-fd248dc3eadb", + "id": "8cf2764a-14f9-4358-8626-76a4ebee86d6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50664,7 +50664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f03c6930-6b5a-46a9-951c-06b70672be54", + "id": "dd9a44d5-041e-45a3-a15e-64cba13bcce3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50721,7 +50721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64512b34-73c5-4239-bde7-81395b2cadac", + "id": "8e5ef252-ff13-4ac3-94c9-1f186b86d06c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50784,7 +50784,7 @@ } }, { - "id": "a8b6fc1a-c263-410d-8e01-5feae722b81f", + "id": "30b382be-dd52-4f84-912d-969c1e3d3df7", "name": "Get Entitlement Request Config", "request": { "name": "Get Entitlement Request Config", @@ -50826,7 +50826,7 @@ }, "response": [ { - "id": "12ade715-6788-46e1-993b-3173b9944398", + "id": "4da64b43-f34f-454e-bee5-15d1d2f72a36", "name": "An Entitlement Request Config", "originalRequest": { "url": { @@ -50871,7 +50871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cffed1c-8ea5-4cca-898a-382ca272359f", + "id": "e24f7dfb-aa7a-40d2-b73b-26c8fff2719a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50916,7 +50916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8002aa54-7377-4e30-a80e-471751d8efd4", + "id": "a3de97f2-2cea-4b36-9ed4-fe2f15f970aa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50961,7 +50961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9bc357b-e73e-4ad8-8cda-929688fa7213", + "id": "1f539704-b07e-4689-bf86-5cc16f6cf4e2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51006,7 +51006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb650e57-9c68-4baf-91c1-2a7dfc2fdd8b", + "id": "2bc0a91d-a642-4626-bdf2-65e86a0517e2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -51051,7 +51051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de1b9303-fe15-463b-8080-f6777115a6b9", + "id": "615c7b9d-0d23-48bf-af0b-3e73e5b902ef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51096,7 +51096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "080cb510-cab5-4532-93c3-b5853a432072", + "id": "e300ccef-2e38-4d3c-87ae-03b8cb82948b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51147,7 +51147,7 @@ } }, { - "id": "8c4b36fd-363a-46d5-94f9-ab79cc6f18ef", + "id": "fcccfe34-b28f-49f9-a4b3-e1453a958031", "name": "Replace Entitlement Request Config", "request": { "name": "Replace Entitlement Request Config", @@ -51202,7 +51202,7 @@ }, "response": [ { - "id": "0fb23c86-27da-4696-a248-6e0382a01045", + "id": "62ef2e9e-81b7-4f47-a3ba-53327cc06659", "name": "Responds with the entitlement request config as updated.", "originalRequest": { "url": { @@ -51260,7 +51260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cf04388-6b62-4683-93ea-6418468b9fdb", + "id": "adedcfd8-f435-4425-9baa-31d685365a59", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51318,7 +51318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76bb5ce5-12f1-4d59-95c7-5c364af70408", + "id": "ae9ddb3d-14e3-4695-b211-bb4690887f1c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51376,7 +51376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f90ea0f-40f5-46d1-ab1b-a7dd4820e96c", + "id": "495791c8-9c15-4cb6-b548-fa45bb4fa37a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51434,7 +51434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67046050-43dc-4117-9842-20de2709fc52", + "id": "9eb38ab0-9c4b-4f8d-aee8-64b25e06060e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -51492,7 +51492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4ec810c-a4f4-4c2d-8c70-20ccc54357ab", + "id": "88d09123-e595-422c-925a-65462473815c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51550,7 +51550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e31343e-d339-423f-b50c-f059249b66be", + "id": "4d075f4b-139f-45b1-afb2-06ba0a767cd4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51614,7 +51614,7 @@ } }, { - "id": "e555575d-7e56-428f-bc90-8ea00345821d", + "id": "d34c6070-34fd-44fb-b970-96be4bed536f", "name": "Reset Source Entitlements", "request": { "name": "Reset Source Entitlements", @@ -51657,7 +51657,7 @@ }, "response": [ { - "id": "4532cf5e-d64c-44cb-9fd3-0dae3a66d453", + "id": "c2c09562-0515-41e7-8af5-44e4d004c7c2", "name": "Entitlement source reset task result", "originalRequest": { "url": { @@ -51703,7 +51703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "621a0581-8aa4-4b18-aa29-2e6b43f54174", + "id": "54cd4301-8f08-4bc1-8648-859b1a207f7c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51749,7 +51749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "021f9379-a16f-4f42-b649-210328686a2b", + "id": "b25a599d-cf74-49aa-aa5d-43765fd1b36e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51795,7 +51795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "441bc53d-e895-4737-bea3-5e6aba12b010", + "id": "0cf18477-2c75-494a-b52e-0dbaa1fb8f49", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51841,7 +51841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17659f4f-8786-499f-aba3-89f3aa904ecf", + "id": "5afa538f-187b-49ca-af53-85ff4503e9f1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51887,7 +51887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f88bfc0-ab89-4def-a0ff-05093162145f", + "id": "c9ca35f2-eed2-4cff-a76e-eda1efb39bd8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51939,7 +51939,7 @@ } }, { - "id": "085660e1-b6f2-41e0-a867-0f9380cfd92f", + "id": "fd588544-5783-40cb-8ace-bd8b8f28f01f", "name": "Aggregate Entitlements", "request": { "name": "Aggregate Entitlements", @@ -51991,7 +51991,7 @@ "type": "text/plain" }, "key": "csvFile", - "value": "incididunt ut", + "value": "incididunt adipisicing consequat", "type": "text" } ] @@ -51999,7 +51999,7 @@ }, "response": [ { - "id": "5f0fc6ce-f59f-4e5f-bf45-6a523fbd1421", + "id": "b044a87d-1eda-4430-8fe3-79e5621c7b34", "name": "Aggregate Entitlements Task", "originalRequest": { "url": { @@ -52043,7 +52043,7 @@ "type": "text/plain" }, "key": "csvFile", - "value": "incididunt ut", + "value": "incididunt adipisicing consequat", "type": "text" } ] @@ -52062,7 +52062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2a431a3-e0f5-47fb-8f6b-9e4692753679", + "id": "cfbe79f4-1a29-4d47-ae00-c943acd99127", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52106,7 +52106,7 @@ "type": "text/plain" }, "key": "csvFile", - "value": "incididunt ut", + "value": "incididunt adipisicing consequat", "type": "text" } ] @@ -52125,7 +52125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c791422d-e180-4188-b924-8d34e882c305", + "id": "1450857f-448c-43c9-830e-a132fe521830", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52169,7 +52169,7 @@ "type": "text/plain" }, "key": "csvFile", - "value": "incididunt ut", + "value": "incididunt adipisicing consequat", "type": "text" } ] @@ -52188,7 +52188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6db61d89-1c9b-4e3a-b382-90df20d6dfa7", + "id": "72ed3911-1944-4edb-910d-984eac2ef184", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52232,7 +52232,7 @@ "type": "text/plain" }, "key": "csvFile", - "value": "incididunt ut", + "value": "incididunt adipisicing consequat", "type": "text" } ] @@ -52251,7 +52251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a94252a-f3f5-4bd1-8cd4-42350fe0e2b3", + "id": "9d445c04-1eda-42c2-9ab6-b7b1df66b64b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52295,7 +52295,7 @@ "type": "text/plain" }, "key": "csvFile", - "value": "incididunt ut", + "value": "incididunt adipisicing consequat", "type": "text" } ] @@ -52314,7 +52314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "806296d5-7476-42cd-aaa8-8ba786eb726f", + "id": "3b1c25af-4031-4b09-b236-f593b78f30f4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52358,7 +52358,7 @@ "type": "text/plain" }, "key": "csvFile", - "value": "incididunt ut", + "value": "incididunt adipisicing consequat", "type": "text" } ] @@ -52389,7 +52389,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": "46ca8bfc-2bed-48d9-ab7a-33fa1d2ac49f", + "id": "84f2d439-b727-4ba2-a773-f782763670ae", "name": "List Governance Groups", "request": { "name": "List Governance Groups", @@ -52464,7 +52464,7 @@ }, "response": [ { - "id": "af378293-70e8-4f41-98b7-4fa2f93b3ae6", + "id": "6a13f612-9073-4e6f-9b4c-c887f22dac28", "name": "List of Governance Groups", "originalRequest": { "url": { @@ -52553,7 +52553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be7401fa-b3ab-481b-93ce-49f151000dc1", + "id": "8406bf02-ec75-4ca1-bb82-b89bc7494bd0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52642,7 +52642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51064eeb-fac7-4ae6-845f-0d3d37308fed", + "id": "cd516ccd-a06f-48f9-8bc0-eb54e879a532", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52731,7 +52731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0653e5f-6ed9-49a3-8522-c7018ed021d0", + "id": "968515af-2bd9-48a6-8912-3ef871ca6122", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52820,7 +52820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a43fa407-c562-43b0-9670-1b91c510cf50", + "id": "1b3dd9b5-29b9-42d4-94d6-ec8043d049bb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52909,7 +52909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d38a58a-6480-4fec-aef8-8dd2dd6aae7e", + "id": "69bae796-39b6-45bb-8180-0df65d749047", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53004,7 +53004,7 @@ } }, { - "id": "8af2e624-8e44-4097-9c4f-0a87a0d83119", + "id": "2d7a52ca-4768-4b38-ab43-18cd45783b1e", "name": "Create a new Governance Group.", "request": { "name": "Create a new Governance Group.", @@ -53046,7 +53046,7 @@ }, "response": [ { - "id": "4dfe08b6-16fb-485d-bccd-c713ed7e18b0", + "id": "c8f25220-6054-48e1-bd78-90b51f6ed161", "name": "Governance Group object created.", "originalRequest": { "url": { @@ -53102,7 +53102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fea4f7b4-2062-414f-837c-051fa1b7a8e2", + "id": "c513bb09-9dcd-4ebb-962b-ddb799a46683", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53158,7 +53158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbbac15f-8ab5-4441-be4d-576c1bf7e26f", + "id": "edf51578-8973-49f4-9608-90542488a0e0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53214,7 +53214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d53c8589-b326-428b-a827-5db7aca12e96", + "id": "c6aca99e-6bb1-41c0-b15b-ac6041f5bb3a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53270,7 +53270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb11d2b6-01a9-47ce-bcca-dee97972d3e6", + "id": "e759f1b3-af5f-4b6f-b6ac-7a8c289363e5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53326,7 +53326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd76d949-4281-4908-b82e-778033df08d8", + "id": "a25559ac-cda1-4b5d-a7d9-82010b3c73bd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53388,7 +53388,7 @@ } }, { - "id": "fdd7878a-ff6e-4907-abd6-9e9caa4bf547", + "id": "84eb4a82-f113-4d79-82b8-49d2951b9682", "name": "Get Governance Group by Id", "request": { "name": "Get Governance Group by Id", @@ -53429,7 +53429,7 @@ }, "response": [ { - "id": "cc9eb580-db66-44f0-8963-3a00bb3ce4eb", + "id": "a473a465-44e4-44a7-b1ba-05265fff1b41", "name": "A Governance Group", "originalRequest": { "url": { @@ -53473,7 +53473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0984d27c-aa17-4633-8537-da12c38d289e", + "id": "105005ba-0242-4d18-8a82-7ba3a5c6226c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53517,7 +53517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28671fea-5ef0-4e11-8938-abc2da324d16", + "id": "13525433-d1a9-4501-a581-29f7cbe3975f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53561,7 +53561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ccac084-6e0a-40f1-adb1-ecbb17b33dcf", + "id": "33e1599c-fd32-4a95-a0f1-7296247516fb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53605,7 +53605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3306b241-d3c0-43ef-b842-2e266f785bd0", + "id": "aa6511d3-d656-4f74-afab-4d64851ce4be", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53649,7 +53649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62470a61-662a-46f6-943d-943a9101e961", + "id": "0fdda48c-379e-4ebb-b1c8-89177f80bb75", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53699,7 +53699,7 @@ } }, { - "id": "c85c1063-b1a7-42ed-b8be-8d430ebd43f1", + "id": "1d2239c9-d83c-4087-902d-3a574a88a7c0", "name": "Delete a Governance Group", "request": { "name": "Delete a Governance Group", @@ -53740,7 +53740,7 @@ }, "response": [ { - "id": "8c6d2d3a-daad-4d3d-8d00-56f39481dcd9", + "id": "bcf6f61d-f476-4bae-8582-b4e787bf4347", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -53774,7 +53774,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2bbf900b-776d-4bfb-82f8-62cee21e2357", + "id": "f067225a-ee94-4556-b2bd-5a5152b25149", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53818,7 +53818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54fdc4a3-0b3a-476e-9f87-49ef2dccadc1", + "id": "3ff2f48a-b5c6-470d-9265-99692d4cba5c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53862,7 +53862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98b828f5-c9ef-4f07-80cf-d18993b0d210", + "id": "fc4aebc7-0de7-4ab6-a870-d3a7360cb70e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53906,7 +53906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baba4dae-05d3-49ed-8252-e56ab6ef86f9", + "id": "8bddf941-55c8-4f02-aa73-a962bb97225b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53950,7 +53950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05ed93ee-99a8-406f-b4a7-b5d8a6bf4d67", + "id": "11d61422-16e1-4c09-89af-fc2843d66518", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54000,7 +54000,7 @@ } }, { - "id": "89df4308-1530-468e-8417-fdc9085d32bc", + "id": "90268490-51bb-4716-8918-6247fc203c73", "name": "Patch a Governance Group", "request": { "name": "Patch a Governance Group", @@ -54054,7 +54054,7 @@ }, "response": [ { - "id": "69646d9d-c641-4967-9e2b-8be7648db360", + "id": "32acf5ad-d399-48bb-9f39-5d76b8333a27", "name": "A Governance Group.", "originalRequest": { "url": { @@ -54111,7 +54111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89f6e049-cf22-4b3d-9fbe-486e123e67e6", + "id": "669cceec-97eb-4b20-b3a0-86413d3d8808", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54168,7 +54168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54a7a0e9-4490-49af-8132-4eee3e77eb7a", + "id": "6cf4ab25-ddbd-4692-907d-9877641a6153", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54225,7 +54225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81f11bd6-a034-4f4f-8f70-91bccb84579b", + "id": "c8c68b4a-21c6-4bc2-8f9d-8397400e9b93", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54282,7 +54282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bd7395a-9969-4bfe-8d90-86393065a973", + "id": "06f172c6-cbf2-4f4d-9bd6-236695cbc993", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54339,7 +54339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7abf28e6-d452-40d2-b6dc-872518290762", + "id": "2fb39edf-9597-40a7-8403-685eadc7fab5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54402,7 +54402,7 @@ } }, { - "id": "64119027-cee7-4e97-9faf-0b5da0185ef2", + "id": "55fa853b-4ce8-460d-bc30-3eb2ae0fd62d", "name": "Delete Governance Group(s)", "request": { "name": "Delete Governance Group(s)", @@ -54445,7 +54445,7 @@ }, "response": [ { - "id": "bc09ee9e-0569-41d1-94c8-ff3d2db36292", + "id": "4c481bad-f7aa-4520-b3f2-f1b7139301c6", "name": "Governance Group bulk delete response.", "originalRequest": { "url": { @@ -54502,7 +54502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a8d8690-46a8-4e56-9e41-a7ed20a162ce", + "id": "5ec60802-2168-4cd0-b6c2-78002159a20a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54559,7 +54559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bad710d-58a8-48e8-9915-ab2b257c3c20", + "id": "d927441c-a899-43fb-9b0a-e7163da710e3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54616,7 +54616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c6a10af-4c86-431d-a5ee-ddd8b08ac5c6", + "id": "935fa434-913a-46dc-a226-bfc050c15e76", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54673,7 +54673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e873328-2f2c-4294-9e5e-ebc0f2ad7c67", + "id": "5a458c34-6bd9-4eaf-914d-21a413186735", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54730,7 +54730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a642fba5-90d6-464b-990d-d926b543e602", + "id": "c6a1cbf1-da74-4874-9a4e-1874ba2ee3b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54793,7 +54793,7 @@ } }, { - "id": "f8c9438b-5b4e-49a4-b89b-e1064fb79fc5", + "id": "d43bb6ff-a65f-4b8d-a1d8-e8ba1bcd1e58", "name": "List connections for Governance Group", "request": { "name": "List connections for Governance Group", @@ -54872,7 +54872,7 @@ }, "response": [ { - "id": "e8b422e7-2c44-418e-9045-c32e54b1ad03", + "id": "3835c86d-6478-4eec-85a4-b0e1773f2dd5", "name": "List all connections associated with a Governance Group.", "originalRequest": { "url": { @@ -54954,7 +54954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01f9e777-75e1-41f7-9a49-3d916f0d34c9", + "id": "2b2cae8d-377a-4f61-a2d3-a02441f60dda", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55036,7 +55036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3c60bae-73cd-4297-8d6b-d215bd516045", + "id": "fd6143fe-457e-4fca-916b-b901113d26bd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55118,7 +55118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c43fd07-9192-408f-9519-0f3937ffde09", + "id": "8ef22428-071e-4374-9670-4f3931c56947", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55200,7 +55200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2af8b10c-47b3-4409-9b08-85d484b61563", + "id": "e58d156e-cdda-4082-9864-adbd1a2ae519", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55282,7 +55282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e60ada94-391a-4cf1-a5f3-4c4f2d181406", + "id": "6c8288ae-f4fe-49e4-a6fc-4f5a0aa40d26", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55370,7 +55370,7 @@ } }, { - "id": "60ceebbe-fd21-4def-96eb-266b59e4a1ae", + "id": "85f277a6-0051-4608-a356-bc02d2a47943", "name": "List Governance Group Members", "request": { "name": "List Governance Group Members", @@ -55449,7 +55449,7 @@ }, "response": [ { - "id": "49c7cf8e-0cfd-424e-b600-176a14035835", + "id": "7cc013fd-ba58-4298-9d25-715d9ef8bc79", "name": "List all members associated with a Governance Group.", "originalRequest": { "url": { @@ -55531,7 +55531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aafc71b1-bbdb-4430-a89f-b6f405c05648", + "id": "368d0462-ba7d-4e8f-a49d-1500f66770ed", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55613,7 +55613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d101fa17-2d53-4f9c-862c-d8c51e9f8a81", + "id": "c859b184-3039-4a18-a81f-690a353a9705", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55695,7 +55695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d273e4fc-a860-4e92-a668-566c9986860a", + "id": "86309f9e-08fb-4f92-972f-8e8b84fa1cc8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55777,7 +55777,7 @@ "_postman_previewlanguage": "json" }, { - "id": "675817b0-0968-43f6-a5b7-f0716bda5ecc", + "id": "9c99ad1d-e6bd-46c0-9038-603b2c558779", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55859,7 +55859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b4f065d-b8b6-40e8-a1af-078fb81f632b", + "id": "bbfec8f0-2c72-4b3b-a2c4-19d3b43772e7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55947,7 +55947,7 @@ } }, { - "id": "c1761961-2edc-4e0e-94b4-f00bc216be25", + "id": "48658fe7-b94c-4a79-9828-eedb819222a3", "name": "Add members to Governance Group", "request": { "name": "Add members to Governance Group", @@ -56003,7 +56003,7 @@ }, "response": [ { - "id": "54d505d8-0db5-41b4-b15b-b1531f1e7dc1", + "id": "3cad7c13-9fd0-4936-b6f8-3ab1fc553dcc", "name": "List of added and not added identities into Governance Group members list.", "originalRequest": { "url": { @@ -56062,7 +56062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b70094e-5dfa-4bae-a5cf-080592253eb6", + "id": "731eaebf-761e-474f-acd3-fef5d6c4a3eb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56121,7 +56121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba273432-0689-44b6-8b26-37167c6a7d1e", + "id": "55821242-4a4e-4c0d-ae43-2e3eba8d5cc8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56180,7 +56180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cc4808e-6431-4499-b7b1-250b25aa99ad", + "id": "3423aa12-820a-45e8-9889-75d4a46fa2fc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56239,7 +56239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8578e135-8e06-4abc-8d1e-532159503501", + "id": "820a9d3d-c7e4-4b7b-ba0f-3d0933e3eed0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56298,7 +56298,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5aea17a-80ef-4238-be22-b3f082cf21b1", + "id": "9bf7b112-3c1f-477c-8b84-869530f2910e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56363,7 +56363,7 @@ } }, { - "id": "ebd18577-d62e-4a41-95e6-b697c9e217de", + "id": "b7041380-444f-4435-941c-dc8bbf48a9c4", "name": "Remove members from Governance Group", "request": { "name": "Remove members from Governance Group", @@ -56419,7 +56419,7 @@ }, "response": [ { - "id": "122c0cc6-97b2-43d7-bdb4-2ad76efd5637", + "id": "5a39dcdd-b7d6-496a-b782-e0d13b58e62b", "name": "List of deleted and not deleted identities from Governance Group members list.", "originalRequest": { "url": { @@ -56478,7 +56478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae67517c-79d9-451c-8bcb-f216254517ea", + "id": "0f5f73a1-9cbf-4eea-b42e-68e698e42c41", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56537,7 +56537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66aacecd-6ab2-4aec-b98b-e6b5a32504a1", + "id": "e22c6067-eba3-4440-855d-a05bc52d916c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56596,7 +56596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51ee1913-1c3e-42f0-9765-c5df6227c17c", + "id": "98f407ca-ccf9-4320-a586-71d62ff8e71d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56655,7 +56655,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f9f30f7-3735-4362-8106-794233819c48", + "id": "e27a7654-a2ee-44ca-b131-a56f573cfd7e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56714,7 +56714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2502f8f-abc6-4266-9d14-f256ecf421a6", + "id": "519e1baf-4a58-4aa7-a339-4622bcab47a7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56785,7 +56785,7 @@ "description": "", "item": [ { - "id": "ce7ca9f4-e81c-44af-a41e-8f2ab84cd579", + "id": "f56a536a-ddc4-4752-b7d2-434cadbf6537", "name": "Get Message catalogs", "request": { "name": "Get Message catalogs", @@ -56826,7 +56826,7 @@ }, "response": [ { - "id": "3926e772-3e5b-42d8-8981-94a921b197cc", + "id": "4ca778ff-79bb-4ae6-9919-921854395dc8", "name": "The message catalogs based on the request headers", "originalRequest": { "url": { @@ -56870,7 +56870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60ca09c3-4705-4981-b9ea-a8646d937b5b", + "id": "8a210196-831b-4ceb-b268-716cc05aa65e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56914,7 +56914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af5b6d2e-a095-41fa-8a06-ee07c443c5ee", + "id": "3c6f16a7-e8bd-4727-99b8-c3502013aa62", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56958,7 +56958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf5f44e0-8188-4133-802a-572362df41a9", + "id": "c5bbafe0-51f6-4eec-a6d9-64b931b62dff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57002,7 +57002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b00d65dc-9c77-4edd-bc44-c7f2806ea799", + "id": "9e6c2a4b-7160-4802-8988-038bed2f3320", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57046,7 +57046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "255e8d0d-7f73-4e4b-bcbe-91749e576ce1", + "id": "7664ace6-a5f6-4658-a7a8-992babcd9230", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57102,7 +57102,7 @@ "description": "", "item": [ { - "id": "63cfe819-d919-499d-a0f7-43248477c9a7", + "id": "b69632e8-9668-43c1-ae35-46b8fceb1547", "name": "Identity Access Request Recommendations", "request": { "name": "Identity Access Request Recommendations", @@ -57179,7 +57179,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -57195,7 +57195,7 @@ }, "response": [ { - "id": "afbd2370-df35-4db7-ac9d-289655a10cb2", + "id": "547f706a-d33d-4c10-bfcc-edde0830b1bf", "name": "List of access request recommendations for the identityId", "originalRequest": { "url": { @@ -57267,7 +57267,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -57302,7 +57302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d76bed66-c32c-4b1e-9db2-a1a91d6b5381", + "id": "33944d0d-e215-49ac-81b1-f6af05d0ff52", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57374,7 +57374,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -57409,7 +57409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fecab94a-a53c-4b60-a3bd-907aed57db99", + "id": "4ffebb87-6431-4325-8dde-1f787ce0a05a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57481,7 +57481,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -57516,7 +57516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72ca9c9b-5ccd-4adc-a7ec-b38652f020fe", + "id": "dd1c518f-dd2c-4078-81ea-a5ea17271f4b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57588,7 +57588,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -57623,7 +57623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51fff203-2654-4458-a284-9e089e2e3709", + "id": "e28a2334-3149-48fc-a87c-f654de51fadc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57695,7 +57695,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -57730,7 +57730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5595eb8-5074-499d-aefb-297fdf080af0", + "id": "dbd7ef89-0ffc-4fa0-90a9-486c7059e9d0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57802,7 +57802,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -57843,7 +57843,7 @@ } }, { - "id": "4d3229f1-1d52-440f-8512-3ac4d5f5ea4b", + "id": "22a409a7-455a-433a-8b5a-46176df08e82", "name": "Notification of Ignored Access Request Recommendations", "request": { "name": "Notification of Ignored Access Request Recommendations", @@ -57886,7 +57886,7 @@ }, "response": [ { - "id": "88943e25-3241-4ac5-b583-78b96ad9431a", + "id": "41c3e55d-1f8c-4400-844d-69652fb11757", "name": "Recommendation successfully stored as ignored.", "originalRequest": { "url": { @@ -57943,7 +57943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "957e98db-7a51-4fd4-be18-1824c841138a", + "id": "9e4a5970-98c3-4a0a-aa8a-d424e10c2047", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58000,7 +58000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6b90ae8-a189-4ce5-a289-6dc86f28e57c", + "id": "93f0411b-0056-4a58-997c-990a2b8678a4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58057,7 +58057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8deea891-7a10-47ba-9919-77a67ec8c34c", + "id": "3c9ba7ef-a573-4f40-a9e2-c769b8c03717", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58114,7 +58114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96202908-c4aa-4abf-9e3f-8b661f9f2fdd", + "id": "277dac79-7427-46c5-bf4b-72eded452f0e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58171,7 +58171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22c024b4-e048-4d29-8085-c30dae878c77", + "id": "816d79b1-ab8d-4fa6-98d4-22366c6f998f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58234,7 +58234,7 @@ } }, { - "id": "85281eea-e9ff-4bfb-827d-89145f622a70", + "id": "ae0e89ae-b6f9-4cb0-b9f8-5ac986a7eec8", "name": "List of Ignored Access Request Recommendations", "request": { "name": "List of Ignored Access Request Recommendations", @@ -58310,7 +58310,7 @@ }, "response": [ { - "id": "828c151f-4e79-4b9a-9d6e-302f4ace10fd", + "id": "54e735c8-ce1c-4a90-a40d-889c24507762", "name": "Returns list of ignored access request recommendations.", "originalRequest": { "url": { @@ -58400,7 +58400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e47c932-5a3a-4618-9388-7369f57b4e98", + "id": "fc89f2c9-cc95-43bc-abe9-080b99ffa3c2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58490,7 +58490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "783077b5-f3e7-4027-83ab-eb44e72eb0e8", + "id": "e956dc27-1674-4413-8d01-00fc06ed1e11", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58580,7 +58580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b96b2768-7750-44f7-9e62-b2e8afe13fca", + "id": "30b0e888-880c-4887-82dd-2e70b5819489", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58670,7 +58670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19aeb67b-0f59-4b14-8f18-dcd0584dc6b5", + "id": "949994f6-f749-4857-b662-e189b9c50096", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58760,7 +58760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64c1feca-6e96-4461-b620-6935cc8331d9", + "id": "70976b20-4323-49fb-b93c-af6f0a2c042f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58856,7 +58856,7 @@ } }, { - "id": "c9d18ab7-00d7-4480-b86e-5b15f4ead387", + "id": "cef98c39-8c93-4c81-b108-185da1218689", "name": "Notification of Requested Access Request Recommendations", "request": { "name": "Notification of Requested Access Request Recommendations", @@ -58899,7 +58899,7 @@ }, "response": [ { - "id": "62b89be8-45eb-4ace-a4b2-b27f0662c74c", + "id": "2bb30e3f-8ea5-4b28-930b-c3adbbc2d2f4", "name": "Notification successfully acknowledged.", "originalRequest": { "url": { @@ -58956,7 +58956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d17a763-9751-4535-be29-33b93c89ca2c", + "id": "a699c81e-941a-499e-9d89-6dce2bfee265", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59013,7 +59013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea06bf06-0a0e-499a-8318-af670212bfd5", + "id": "63a479a4-e6ee-4dd7-9e6e-46708e3578e6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59070,7 +59070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77cd0a4d-bff2-49de-9e24-9f330c040b14", + "id": "934daadd-0061-45d5-ab20-22d05b640cdf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59127,7 +59127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd168f49-82de-427c-a3a9-fe7cfacf305b", + "id": "0d18c5cc-2b48-4d1c-ab12-f455a0977527", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59184,7 +59184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11347660-8811-4d5a-b3e8-268ce482334e", + "id": "b32e25d5-0304-426c-ad17-7fe2956bfbc1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59247,7 +59247,7 @@ } }, { - "id": "b4720b54-9901-440d-a02f-75f481882840", + "id": "2438dd6f-b559-4dd2-83cc-fc415970ec6c", "name": "List of Requested Access Request Recommendations", "request": { "name": "List of Requested Access Request Recommendations", @@ -59307,7 +59307,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -59323,7 +59323,7 @@ }, "response": [ { - "id": "76ccba3a-05a1-4c85-8a4d-4db2cfc7a39c", + "id": "8b8a4070-e748-46e9-b8c7-8eb70b2de5e6", "name": "Returns the list of requested access request recommendations.", "originalRequest": { "url": { @@ -59378,7 +59378,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -59413,7 +59413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9f531ac-25c7-4d44-bd6c-d8a5142829f2", + "id": "05bba376-40d8-4558-9981-dca9b1c45cbc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59468,7 +59468,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -59503,7 +59503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05a880ff-ee52-4fa7-8cd3-9343f021dd92", + "id": "4a68e710-b205-46bf-a1c3-df2b7a4a49fc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59558,7 +59558,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -59593,7 +59593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a314b9a3-63fb-4b8a-82f7-dd2bb2740a20", + "id": "b859a58e-1d22-42da-9a00-553b883f07d6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59648,7 +59648,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -59683,7 +59683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0dab9522-86b3-4c47-846c-df6e68e47928", + "id": "195975ec-3c96-4054-9331-bf147a790de0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59738,7 +59738,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -59773,7 +59773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "688146a5-3423-4cf9-9806-33b15329e8bc", + "id": "3fc62cba-2e72-4a5f-9429-75e399fe98a5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59828,7 +59828,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -59869,7 +59869,7 @@ } }, { - "id": "bbfed3a1-1233-43ef-85d8-b77eaaabffb8", + "id": "e3d0d48b-4964-4a93-9067-b8c627ae11fd", "name": "Notification of Viewed Access Request Recommendations", "request": { "name": "Notification of Viewed Access Request Recommendations", @@ -59912,7 +59912,7 @@ }, "response": [ { - "id": "9d1ad1ee-d95e-4f72-b919-e46a7010cd54", + "id": "d57ebb16-4a83-457e-9bb9-760692ee7efa", "name": "Recommendation successfully stored as viewed.", "originalRequest": { "url": { @@ -59969,7 +59969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d8a622d-c827-4e71-b8fb-f05567d34fc8", + "id": "08d379c8-9182-49af-8d27-5b24d2c00544", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60026,7 +60026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f531613b-e93f-4ffa-9577-490569f51ecf", + "id": "9fccc1e1-6f27-4cd1-ab79-3710dca9daac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60083,7 +60083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f1f96d4-53d9-4dc9-a919-5ce3396f8235", + "id": "f6a6a288-544a-4fbe-b99d-c129dd319406", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60140,7 +60140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d967355b-f387-4b65-ac18-33d548998ea0", + "id": "377ac1ed-e010-48d3-a1e2-d05fba5d98a3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60197,7 +60197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea0d0d29-5e35-47b3-b62c-eb3103f73e8a", + "id": "03f2a309-77d7-4133-91c0-829558795129", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60260,7 +60260,7 @@ } }, { - "id": "67961f43-ff6e-4c2e-bb1a-0b090ac59a1c", + "id": "6db2ebde-c033-440b-8d12-055578685d26", "name": "List of Viewed Access Request Recommendations", "request": { "name": "List of Viewed Access Request Recommendations", @@ -60320,7 +60320,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -60336,7 +60336,7 @@ }, "response": [ { - "id": "32ea8711-86c1-4472-8f6d-321a8d89af68", + "id": "394a3072-9b9d-4ff5-b48a-7fe11389a868", "name": "Returns list of viewed access request recommendations.", "originalRequest": { "url": { @@ -60391,7 +60391,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -60426,7 +60426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "668de03d-ba68-478e-8b54-d5c82444962c", + "id": "7db00f7e-b568-40b1-a869-44261752e09d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60481,7 +60481,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -60516,7 +60516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c899efd-a91e-49dc-bc49-a64620ef4e0a", + "id": "f0403c18-5a2b-410e-8043-5933e6145c54", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60571,7 +60571,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -60606,7 +60606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f113484-b1bf-4351-a178-888609ab56ad", + "id": "b16db6e7-460f-4316-af01-fb958779da52", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60661,7 +60661,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -60696,7 +60696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "429b6c66-9d03-45fe-9ee9-32117ae9c008", + "id": "d480a4f5-e36a-458d-a6a5-cd8e47ed3a10", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60751,7 +60751,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -60786,7 +60786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96c4d6a1-5094-4626-bac2-e04523319c81", + "id": "cdd72b72-645e-4aef-8f42-14957c24f9d6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60841,7 +60841,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -60882,7 +60882,7 @@ } }, { - "id": "b281d868-51e0-49b2-9dc9-6ed68f9e4c27", + "id": "3bdba77c-9f99-427b-bc33-8366d3f4e1f8", "name": "Notification of Viewed Access Request Recommendations in Bulk", "request": { "name": "Notification of Viewed Access Request Recommendations in Bulk", @@ -60926,7 +60926,7 @@ }, "response": [ { - "id": "5c9b18af-c0f4-40c8-b817-277b4ceb4ab4", + "id": "50aeb7f5-455c-4fd5-bfbb-0af166dc9561", "name": "Recommendations successfully stored as viewed.", "originalRequest": { "url": { @@ -60984,7 +60984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb47c7c4-1254-4e09-88fd-124e76e5a9ff", + "id": "8d2eb3f2-9f54-49b3-a05e-d29577f45c4c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61042,7 +61042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23b72862-5e71-4a59-afd6-84406116205b", + "id": "0f942325-2e5c-42d4-b587-f789d7ed05b8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61100,7 +61100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2358d43a-f2be-42cf-ba7d-c1b0aaed932f", + "id": "dd2cf34e-9d16-476d-b900-8a47b10ab1e9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61158,7 +61158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bb67aae-73c6-4662-a5ea-238b5ba5fae5", + "id": "1d2d6e14-a4db-4255-8d19-12ba92fcd69e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61216,7 +61216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1df4c0e6-7579-408a-8033-43e17cf3e911", + "id": "2a23ae5f-2058-4402-a187-1fb1ee03a66a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61286,7 +61286,7 @@ "description": "", "item": [ { - "id": "d40c4e79-c70e-445f-b9bb-dba0bdc60658", + "id": "40131613-7af2-491b-9f77-cc895bd040d2", "name": "Get a paginated list of common access", "request": { "name": "Get a paginated list of common access", @@ -61361,7 +61361,7 @@ }, "response": [ { - "id": "e99e3f85-f7ac-42c8-b7ea-672dae1ba654", + "id": "1ac65f95-e541-463a-8040-7c05eeb2e5fc", "name": "Succeeded. Returns a list of common access for a customer.", "originalRequest": { "url": { @@ -61445,12 +61445,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"dolor tempor in nostrud\",\n \"type\": \"ROLE\",\n \"name\": \"voluptate in\",\n \"description\": \"labore id Excepteur\",\n \"ownerName\": \"nostrud eiusmod\",\n \"ownerId\": \"nulla quis\"\n },\n \"status\": \"irure\",\n \"lastUpdated\": \"1970-08-12T21:30:45.172Z\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"2016-10-19T14:26:07.702Z\",\n \"createdByUser\": false\n },\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"Duis in dolor officia laboris\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"dolore esse aliquip\",\n \"description\": \"proident minim deserunt nisi\",\n \"ownerName\": \"Excepteur enim eu\",\n \"ownerId\": \"voluptate nulla consectetur\"\n },\n \"status\": \"do eiusmod ipsum\",\n \"lastUpdated\": \"2011-05-25T16:19:48.078Z\",\n \"reviewedByUser\": true,\n \"lastReviewed\": \"1999-05-07T10:42:27.976Z\",\n \"createdByUser\": false\n }\n]", + "body": "[\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"esse vo\",\n \"type\": \"ROLE\",\n \"name\": \"non nostrud ullamco\",\n \"description\": \"est in exer\",\n \"ownerName\": \"dolor dolor\",\n \"ownerId\": \"ali\"\n },\n \"status\": \"eu enim reprehenderit magna in\",\n \"lastUpdated\": \"1954-09-05T02:51:43.284Z\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"1972-01-16T18:39:25.964Z\",\n \"createdByUser\": false\n },\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"in in pariatur\",\n \"type\": \"ROLE\",\n \"name\": \"proident s\",\n \"description\": \"aliquip reprehenderit pariatur elit\",\n \"ownerName\": \"in tempor adipisicing\",\n \"ownerId\": \"mollit aute anim nostrud\"\n },\n \"status\": \"nostrud in ex consequat\",\n \"lastUpdated\": \"2008-06-13T14:03:17.846Z\",\n \"reviewedByUser\": true,\n \"lastReviewed\": \"1985-04-13T05:40:28.552Z\",\n \"createdByUser\": false\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b7295808-3469-4cc4-b4bc-5abe45e18250", + "id": "9e0d7544-754f-4a05-a94a-5dd505a0f330", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61539,7 +61539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d740734-5364-4aa5-8521-225f0febd948", + "id": "d9b1e804-d02e-4c62-86f8-d45b4d2e2773", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61628,7 +61628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8579124-870f-4eee-a85a-931770561405", + "id": "043b69c2-e198-4fcb-bbc6-be4decd1eab5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61717,7 +61717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96feb105-5e67-47f3-967a-b99d0b82044f", + "id": "b7bc7978-139f-4980-8906-9f47ea06a813", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61812,7 +61812,7 @@ } }, { - "id": "201cd0f7-15da-4284-b942-312a16a65537", + "id": "51daf1be-95c0-439d-8a36-07831bb8dda7", "name": "Create common access items", "request": { "name": "Create common access items", @@ -61843,7 +61843,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"incididunt elit magna\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"sint incididunt eiusmod tempor\",\n \"description\": \"Lorem nisi labore\",\n \"ownerName\": \"consequat proident dolor amet\",\n \"ownerId\": \"Duis magna in est\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"non\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"sit magna\",\n \"description\": \"in est commodo\",\n \"ownerName\": \"nulla an\",\n \"ownerId\": \"tempor ipsum ut\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -61854,7 +61854,7 @@ }, "response": [ { - "id": "122df313-acaa-4425-8a60-fa3882cd3e8a", + "id": "07f9de6c-81a7-4f96-8365-89ea3d2e444f", "name": "Returns details of the common access classification request.", "originalRequest": { "url": { @@ -61888,7 +61888,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"incididunt elit magna\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"sint incididunt eiusmod tempor\",\n \"description\": \"Lorem nisi labore\",\n \"ownerName\": \"consequat proident dolor amet\",\n \"ownerId\": \"Duis magna in est\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"non\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"sit magna\",\n \"description\": \"in est commodo\",\n \"ownerName\": \"nulla an\",\n \"ownerId\": \"tempor ipsum ut\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -61905,12 +61905,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"dolor consequat minim id\",\n \"access\": {\n \"id\": \"cupidatat magna\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"deserunt quis dolor\",\n \"description\": \"ipsum non anim Excepteur exercitation\",\n \"ownerName\": \"velit in minim nulla\",\n \"ownerId\": \"est in amet d\"\n },\n \"status\": \"DENIED\",\n \"lastUpdated\": \"eli\",\n \"reviewedByUser\": true,\n \"lastReviewed\": \"deserunt sed sit nulla mollit\",\n \"createdByUser\": \"voluptate\"\n}", + "body": "{\n \"id\": \"nisi exercitation nostrud\",\n \"access\": {\n \"id\": \"est labore anim occaecat\",\n \"type\": \"ROLE\",\n \"name\": \"deserunt es\",\n \"description\": \"in qui irure dolore\",\n \"ownerName\": \"anim enim\",\n \"ownerId\": \"cupidatat dolor\"\n },\n \"status\": \"CONFIRMED\",\n \"lastUpdated\": \"in aute voluptate eu\",\n \"reviewedByUser\": true,\n \"lastReviewed\": \"in et\",\n \"createdByUser\": \"id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "45b36f78-4790-45d0-afb5-fa45ca8021d7", + "id": "3a124dbb-9f3c-45d1-aaae-0c77f0a407bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61944,7 +61944,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"incididunt elit magna\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"sint incididunt eiusmod tempor\",\n \"description\": \"Lorem nisi labore\",\n \"ownerName\": \"consequat proident dolor amet\",\n \"ownerId\": \"Duis magna in est\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"non\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"sit magna\",\n \"description\": \"in est commodo\",\n \"ownerName\": \"nulla an\",\n \"ownerId\": \"tempor ipsum ut\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -61966,7 +61966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffaa6112-8260-4a4f-80fe-f879a4ccf6b3", + "id": "4834628b-73f3-41f6-a1c2-983a1447a99e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62000,7 +62000,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"incididunt elit magna\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"sint incididunt eiusmod tempor\",\n \"description\": \"Lorem nisi labore\",\n \"ownerName\": \"consequat proident dolor amet\",\n \"ownerId\": \"Duis magna in est\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"non\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"sit magna\",\n \"description\": \"in est commodo\",\n \"ownerName\": \"nulla an\",\n \"ownerId\": \"tempor ipsum ut\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -62022,7 +62022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a47187b0-def8-476d-941e-562f1b27d0f0", + "id": "db88d344-a8d6-42df-9613-0f883a8f54c6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62056,7 +62056,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"incididunt elit magna\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"sint incididunt eiusmod tempor\",\n \"description\": \"Lorem nisi labore\",\n \"ownerName\": \"consequat proident dolor amet\",\n \"ownerId\": \"Duis magna in est\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"non\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"sit magna\",\n \"description\": \"in est commodo\",\n \"ownerName\": \"nulla an\",\n \"ownerId\": \"tempor ipsum ut\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -62078,7 +62078,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5a7800d-a410-4a6a-b19b-aaa3c9a2e2bd", + "id": "728996c6-6229-4b6f-bb22-6d1c99977c9f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -62112,7 +62112,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"incididunt elit magna\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"sint incididunt eiusmod tempor\",\n \"description\": \"Lorem nisi labore\",\n \"ownerName\": \"consequat proident dolor amet\",\n \"ownerId\": \"Duis magna in est\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"non\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"sit magna\",\n \"description\": \"in est commodo\",\n \"ownerName\": \"nulla an\",\n \"ownerId\": \"tempor ipsum ut\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -62134,7 +62134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bd322ee-3d8a-43ea-aa26-f51a63377ec1", + "id": "d1735117-d397-4c74-99f8-aa521079b11a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62168,7 +62168,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"incididunt elit magna\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"sint incididunt eiusmod tempor\",\n \"description\": \"Lorem nisi labore\",\n \"ownerName\": \"consequat proident dolor amet\",\n \"ownerId\": \"Duis magna in est\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"non\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"sit magna\",\n \"description\": \"in est commodo\",\n \"ownerName\": \"nulla an\",\n \"ownerId\": \"tempor ipsum ut\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -62196,7 +62196,7 @@ } }, { - "id": "096f483b-72e7-48ae-8b31-f93342c52234", + "id": "a041578e-4a1c-40a8-a229-26321148c4e3", "name": "Bulk update common access status", "request": { "name": "Bulk update common access status", @@ -62228,7 +62228,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:65f0c27e-08ad-7145-f4fa-699485ca2b1b\",\n \"urn:uuid:2d334395-2582-84b0-2cc4-99ba0f19b3fd\"\n ],\n \"deniedIds\": [\n \"68854dc3-6629-a11d-9564-29faf6cf40d7\",\n \"urn:uuid:00ae6b22-ad1c-da15-a9ec-8c5bae37c68b\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:5306d790-a742-dd95-d527-24c528f0f7a3\",\n \"urn:uuid:04a28395-b407-f489-2cfb-946d3f348d98\"\n ],\n \"deniedIds\": [\n \"urn:uuid:9bfa5797-fdb6-74c7-b57a-db7b58a373f6\",\n \"urn:uuid:d819e62e-31b0-5c5f-82d9-19b2cd6ebf86\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:cf877fd2-a59c-7940-860a-80392b794e03\",\n \"urn:uuid:3e3c0396-85b1-3cc4-a621-d25cdd19ca74\"\n ],\n \"deniedIds\": [\n \"4aede67a-801d-eba9-8065-aee52927d486\",\n \"783290e6-639f-c570-5a94-cabe0e222c9f\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:1654bef6-a2c0-f325-3050-e3c083c99314\",\n \"urn:uuid:fc17ee6e-c151-2c6d-f6f6-ed0ceaf3433e\"\n ],\n \"deniedIds\": [\n \"c9f5f621-a281-038a-389c-bdf19adfae95\",\n \"7c731176-12e6-7725-8d18-9304544c0241\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -62239,7 +62239,7 @@ }, "response": [ { - "id": "22108bfd-512b-47e9-b2d9-42f67027c92e", + "id": "1bdcedae-873d-4bc8-a2d0-da131d4178ac", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -62274,7 +62274,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:65f0c27e-08ad-7145-f4fa-699485ca2b1b\",\n \"urn:uuid:2d334395-2582-84b0-2cc4-99ba0f19b3fd\"\n ],\n \"deniedIds\": [\n \"68854dc3-6629-a11d-9564-29faf6cf40d7\",\n \"urn:uuid:00ae6b22-ad1c-da15-a9ec-8c5bae37c68b\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:5306d790-a742-dd95-d527-24c528f0f7a3\",\n \"urn:uuid:04a28395-b407-f489-2cfb-946d3f348d98\"\n ],\n \"deniedIds\": [\n \"urn:uuid:9bfa5797-fdb6-74c7-b57a-db7b58a373f6\",\n \"urn:uuid:d819e62e-31b0-5c5f-82d9-19b2cd6ebf86\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:cf877fd2-a59c-7940-860a-80392b794e03\",\n \"urn:uuid:3e3c0396-85b1-3cc4-a621-d25cdd19ca74\"\n ],\n \"deniedIds\": [\n \"4aede67a-801d-eba9-8065-aee52927d486\",\n \"783290e6-639f-c570-5a94-cabe0e222c9f\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:1654bef6-a2c0-f325-3050-e3c083c99314\",\n \"urn:uuid:fc17ee6e-c151-2c6d-f6f6-ed0ceaf3433e\"\n ],\n \"deniedIds\": [\n \"c9f5f621-a281-038a-389c-bdf19adfae95\",\n \"7c731176-12e6-7725-8d18-9304544c0241\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -62296,7 +62296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69efa286-15e0-4c75-8441-d1730e0234fd", + "id": "0fdfeb01-d833-4f91-aa49-dacbf1d9b844", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62331,7 +62331,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:65f0c27e-08ad-7145-f4fa-699485ca2b1b\",\n \"urn:uuid:2d334395-2582-84b0-2cc4-99ba0f19b3fd\"\n ],\n \"deniedIds\": [\n \"68854dc3-6629-a11d-9564-29faf6cf40d7\",\n \"urn:uuid:00ae6b22-ad1c-da15-a9ec-8c5bae37c68b\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:5306d790-a742-dd95-d527-24c528f0f7a3\",\n \"urn:uuid:04a28395-b407-f489-2cfb-946d3f348d98\"\n ],\n \"deniedIds\": [\n \"urn:uuid:9bfa5797-fdb6-74c7-b57a-db7b58a373f6\",\n \"urn:uuid:d819e62e-31b0-5c5f-82d9-19b2cd6ebf86\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:cf877fd2-a59c-7940-860a-80392b794e03\",\n \"urn:uuid:3e3c0396-85b1-3cc4-a621-d25cdd19ca74\"\n ],\n \"deniedIds\": [\n \"4aede67a-801d-eba9-8065-aee52927d486\",\n \"783290e6-639f-c570-5a94-cabe0e222c9f\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:1654bef6-a2c0-f325-3050-e3c083c99314\",\n \"urn:uuid:fc17ee6e-c151-2c6d-f6f6-ed0ceaf3433e\"\n ],\n \"deniedIds\": [\n \"c9f5f621-a281-038a-389c-bdf19adfae95\",\n \"7c731176-12e6-7725-8d18-9304544c0241\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -62353,7 +62353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01dd3645-8f09-495a-8958-e142a9194f43", + "id": "14179d64-cc58-4bc9-a5a5-6090655d8b43", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62388,7 +62388,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:65f0c27e-08ad-7145-f4fa-699485ca2b1b\",\n \"urn:uuid:2d334395-2582-84b0-2cc4-99ba0f19b3fd\"\n ],\n \"deniedIds\": [\n \"68854dc3-6629-a11d-9564-29faf6cf40d7\",\n \"urn:uuid:00ae6b22-ad1c-da15-a9ec-8c5bae37c68b\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:5306d790-a742-dd95-d527-24c528f0f7a3\",\n \"urn:uuid:04a28395-b407-f489-2cfb-946d3f348d98\"\n ],\n \"deniedIds\": [\n \"urn:uuid:9bfa5797-fdb6-74c7-b57a-db7b58a373f6\",\n \"urn:uuid:d819e62e-31b0-5c5f-82d9-19b2cd6ebf86\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:cf877fd2-a59c-7940-860a-80392b794e03\",\n \"urn:uuid:3e3c0396-85b1-3cc4-a621-d25cdd19ca74\"\n ],\n \"deniedIds\": [\n \"4aede67a-801d-eba9-8065-aee52927d486\",\n \"783290e6-639f-c570-5a94-cabe0e222c9f\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:1654bef6-a2c0-f325-3050-e3c083c99314\",\n \"urn:uuid:fc17ee6e-c151-2c6d-f6f6-ed0ceaf3433e\"\n ],\n \"deniedIds\": [\n \"c9f5f621-a281-038a-389c-bdf19adfae95\",\n \"7c731176-12e6-7725-8d18-9304544c0241\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -62410,7 +62410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc5de8f3-442f-4cea-bf2a-92622693a924", + "id": "0fbb2ca9-88da-4f07-ab6b-d026d2679d29", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62445,7 +62445,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:65f0c27e-08ad-7145-f4fa-699485ca2b1b\",\n \"urn:uuid:2d334395-2582-84b0-2cc4-99ba0f19b3fd\"\n ],\n \"deniedIds\": [\n \"68854dc3-6629-a11d-9564-29faf6cf40d7\",\n \"urn:uuid:00ae6b22-ad1c-da15-a9ec-8c5bae37c68b\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:5306d790-a742-dd95-d527-24c528f0f7a3\",\n \"urn:uuid:04a28395-b407-f489-2cfb-946d3f348d98\"\n ],\n \"deniedIds\": [\n \"urn:uuid:9bfa5797-fdb6-74c7-b57a-db7b58a373f6\",\n \"urn:uuid:d819e62e-31b0-5c5f-82d9-19b2cd6ebf86\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:cf877fd2-a59c-7940-860a-80392b794e03\",\n \"urn:uuid:3e3c0396-85b1-3cc4-a621-d25cdd19ca74\"\n ],\n \"deniedIds\": [\n \"4aede67a-801d-eba9-8065-aee52927d486\",\n \"783290e6-639f-c570-5a94-cabe0e222c9f\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:1654bef6-a2c0-f325-3050-e3c083c99314\",\n \"urn:uuid:fc17ee6e-c151-2c6d-f6f6-ed0ceaf3433e\"\n ],\n \"deniedIds\": [\n \"c9f5f621-a281-038a-389c-bdf19adfae95\",\n \"7c731176-12e6-7725-8d18-9304544c0241\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -62467,7 +62467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eed5cd9a-d66e-4446-992e-a19a20cda8de", + "id": "a7b9b88d-d495-4ad6-8496-23313df725c7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -62502,7 +62502,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:65f0c27e-08ad-7145-f4fa-699485ca2b1b\",\n \"urn:uuid:2d334395-2582-84b0-2cc4-99ba0f19b3fd\"\n ],\n \"deniedIds\": [\n \"68854dc3-6629-a11d-9564-29faf6cf40d7\",\n \"urn:uuid:00ae6b22-ad1c-da15-a9ec-8c5bae37c68b\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:5306d790-a742-dd95-d527-24c528f0f7a3\",\n \"urn:uuid:04a28395-b407-f489-2cfb-946d3f348d98\"\n ],\n \"deniedIds\": [\n \"urn:uuid:9bfa5797-fdb6-74c7-b57a-db7b58a373f6\",\n \"urn:uuid:d819e62e-31b0-5c5f-82d9-19b2cd6ebf86\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:cf877fd2-a59c-7940-860a-80392b794e03\",\n \"urn:uuid:3e3c0396-85b1-3cc4-a621-d25cdd19ca74\"\n ],\n \"deniedIds\": [\n \"4aede67a-801d-eba9-8065-aee52927d486\",\n \"783290e6-639f-c570-5a94-cabe0e222c9f\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:1654bef6-a2c0-f325-3050-e3c083c99314\",\n \"urn:uuid:fc17ee6e-c151-2c6d-f6f6-ed0ceaf3433e\"\n ],\n \"deniedIds\": [\n \"c9f5f621-a281-038a-389c-bdf19adfae95\",\n \"7c731176-12e6-7725-8d18-9304544c0241\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -62524,7 +62524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "567181bc-a909-4984-a0a6-86638cd8f416", + "id": "570ab132-cb45-43cc-899d-d199dc683ac1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62559,7 +62559,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:65f0c27e-08ad-7145-f4fa-699485ca2b1b\",\n \"urn:uuid:2d334395-2582-84b0-2cc4-99ba0f19b3fd\"\n ],\n \"deniedIds\": [\n \"68854dc3-6629-a11d-9564-29faf6cf40d7\",\n \"urn:uuid:00ae6b22-ad1c-da15-a9ec-8c5bae37c68b\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:5306d790-a742-dd95-d527-24c528f0f7a3\",\n \"urn:uuid:04a28395-b407-f489-2cfb-946d3f348d98\"\n ],\n \"deniedIds\": [\n \"urn:uuid:9bfa5797-fdb6-74c7-b57a-db7b58a373f6\",\n \"urn:uuid:d819e62e-31b0-5c5f-82d9-19b2cd6ebf86\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:cf877fd2-a59c-7940-860a-80392b794e03\",\n \"urn:uuid:3e3c0396-85b1-3cc4-a621-d25cdd19ca74\"\n ],\n \"deniedIds\": [\n \"4aede67a-801d-eba9-8065-aee52927d486\",\n \"783290e6-639f-c570-5a94-cabe0e222c9f\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:1654bef6-a2c0-f325-3050-e3c083c99314\",\n \"urn:uuid:fc17ee6e-c151-2c6d-f6f6-ed0ceaf3433e\"\n ],\n \"deniedIds\": [\n \"c9f5f621-a281-038a-389c-bdf19adfae95\",\n \"7c731176-12e6-7725-8d18-9304544c0241\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -62593,7 +62593,7 @@ "description": "", "item": [ { - "id": "4a9b142a-ee7d-43ee-966d-53c47f0004b1", + "id": "1a7185c0-2817-4383-8388-8f9441c9cfff", "name": "IAI Identity Outliers Summary", "request": { "name": "IAI Identity Outliers Summary", @@ -62668,7 +62668,7 @@ }, "response": [ { - "id": "960edd03-8a0f-44cf-a3de-48c61654616c", + "id": "0febe667-fe49-4d6b-90ef-fce5a3c0e9ae", "name": "Succeeded. Returns list of objects. Each object is a summary to give high level statistics/counts of outliers", "originalRequest": { "url": { @@ -62758,7 +62758,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "-5391989" + "value": "3028888" } ], "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]", @@ -62766,7 +62766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92095719-04b7-4c17-b7fa-c147ce969d29", + "id": "655edf09-0af7-4a51-b508-197a65e447ba", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -62855,7 +62855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d8fa619-5617-4a7c-b0a3-3b0c985ea655", + "id": "9f274cb3-ead8-4ece-9e42-e8f9b458854c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62944,7 +62944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76d4d7f6-0d54-43a0-89c8-3aa47067e32b", + "id": "0680f74d-f044-4332-93fd-2dad4804c509", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63033,7 +63033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64e9b789-551f-498c-8bea-c4bcf89fb32e", + "id": "4a3e3690-5a7b-4829-a4eb-eff18a56a423", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63122,7 +63122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94ba23b7-5df8-43e9-b62c-205b5f556644", + "id": "df85a4e0-15ae-4d16-9cf6-2c367c224827", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63211,7 +63211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2cfd9b0-1fb1-48b2-a7c8-1878622193c7", + "id": "932ec63a-31d3-4344-b88a-089782b8657f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63306,7 +63306,7 @@ } }, { - "id": "5092ff49-7a1e-4f1d-86a6-7c7ad84b7e91", + "id": "3b9e35bf-563f-4024-890d-5387cfa16e62", "name": "IAI Identity Outliers Latest Summary", "request": { "name": "IAI Identity Outliers Latest Summary", @@ -63346,7 +63346,7 @@ }, "response": [ { - "id": "e7fb9cc8-4cbf-462a-b3d7-c947e3bc0db2", + "id": "f2ab5ed5-777b-4da2-9795-15377d8b7476", "name": "Succeeded. Returns list of objects. Each object is a summary to give high level statistics/counts of outliers", "originalRequest": { "url": { @@ -63400,7 +63400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c9cfe8b-bad6-4551-9c46-5facc87cb4fd", + "id": "be051a29-c447-45de-8ea6-1d9c5305a920", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -63454,7 +63454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "330ecd51-450c-46c9-bcc9-0f560e9a940f", + "id": "eae9a6b6-6f47-4bcd-8743-9c469bdc2a8c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63508,7 +63508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d4d6a80-0ff8-4b12-b15e-ba921ab42d06", + "id": "7547241a-828e-42fb-b5b1-4f3f848f2678", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63562,7 +63562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb197442-9956-4f9a-bc44-d61bbd14f54b", + "id": "805b9f57-48bc-460f-813d-0dad92974ea8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63616,7 +63616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02d1958c-20a0-4825-8fdc-713e1232ea2a", + "id": "5f9d5af9-fe5a-4b0f-a9e1-8882efd90876", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63670,7 +63670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d864644-ffeb-42b5-9c71-7a2d81200a78", + "id": "0bcb8d3a-a7ff-4e8f-ae28-bbaf8a47f5d6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63730,7 +63730,7 @@ } }, { - "id": "c1d9fc4f-f6e9-4588-ab84-be88cedc619f", + "id": "5b997a3e-6c66-44c5-800b-74a82a7c79de", "name": "IAI Get Identity Outliers", "request": { "name": "IAI Get Identity Outliers", @@ -63814,7 +63814,7 @@ }, "response": [ { - "id": "8ce8c3d1-de97-4f4b-a3bb-f4fa4a358bf7", + "id": "c78eb12c-720d-4729-a413-fc2e2a0e1937", "name": "Succeeded. Returns list of objects. Each object contains information about outliers", "originalRequest": { "url": { @@ -63913,7 +63913,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "-5391989" + "value": "3028888" } ], "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]", @@ -63921,7 +63921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44dac8b8-0978-4e58-8313-c311a4589c4a", + "id": "d194bbe5-02d4-4c34-931c-ebe2575e88fa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64019,7 +64019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cf57138-8afd-4ebf-bc65-455ea3c93f49", + "id": "f4ca8e4c-dc27-41a7-99a8-a5f9c0094489", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64117,7 +64117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d03799a1-3c79-4dec-839e-c633a0078521", + "id": "e24d8036-3766-4543-9e13-30d63b02958e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64215,7 +64215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4352a17-39cb-4994-9227-732743bd10bb", + "id": "969feecf-76b9-4658-9d36-5346e37d87e0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64313,7 +64313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bd09ee9-897f-4e99-bcb7-5231841a89a1", + "id": "ed786d29-02a6-4c13-a622-c25bc9fbf5be", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64417,7 +64417,7 @@ } }, { - "id": "0fb9cfd4-359a-4923-a830-29011413b369", + "id": "ffeca170-bac0-4484-8544-b670fb8976ce", "name": "Get identity outlier's contibuting features", "request": { "name": "Get identity outlier's contibuting features", @@ -64505,7 +64505,7 @@ }, "response": [ { - "id": "368a9196-05ca-4f7c-af2e-b2272543733e", + "id": "80895b27-a25b-47fc-850c-9cbd923b9223", "name": "Succeeded. Returns list of objects. Each object contains a feature and metadata about that feature", "originalRequest": { "url": { @@ -64597,7 +64597,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "-5391989" + "value": "3028888" }, { "disabled": true, @@ -64606,15 +64606,15 @@ "type": "text/plain" }, "key": "accept-language", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], - "body": "[\n {\n \"id\": \"66e38828-5017-47af-92ff-9844871352c5\",\n \"name\": \"entitlement_count\",\n \"valueType\": \"INTEGER\",\n \"value\": 0.1269740218258939,\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.7947816644310537,\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.30811868979011847,\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.8663945873657863,\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": "5e715631-571c-4d60-a250-9970a755ca91", + "id": "c205d0a1-26ba-47e1-9cd3-c12ac535b255", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64705,7 +64705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf258366-00fe-47dd-ac24-99f42373da28", + "id": "56d00793-8d2d-48e1-b4ed-335c69e5cbd9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64796,7 +64796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dac51d5-cfbc-4d63-a0ae-76576fdcf4e4", + "id": "71f7d0a0-22fb-4e14-8071-a2c071269a98", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64887,7 +64887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "223ed263-f8a0-42cb-9818-911d44fe00d3", + "id": "42eefe07-e1ed-4f33-8895-33099952fa0b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -64978,7 +64978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "234a7561-8582-4bfc-9adc-8664ea132c0d", + "id": "6726b81d-3809-4625-8e8c-2346db48f466", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65069,7 +65069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b032477-8cc7-43da-9d38-33c2ccd2c603", + "id": "a10bdfbf-33dc-4822-bd23-1bcd34fad10a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65166,7 +65166,7 @@ } }, { - "id": "03a1d126-2cc6-481b-bbef-3c62d3f1b5b2", + "id": "abebd22b-77c3-48fb-8d0e-d0599619a83a", "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", @@ -65266,7 +65266,7 @@ }, "response": [ { - "id": "d37d932f-4a0f-46b5-ad5a-ff9b677c1638", + "id": "de1eaae1-7b9e-4fac-8e3e-3c495e437f3b", "name": "The list of access items.", "originalRequest": { "url": { @@ -65359,7 +65359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "064503bf-0148-4047-97e6-a24105a41c66", + "id": "13c8f86d-910c-4bdf-acfe-84ea01b4f580", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65452,7 +65452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4f043ce-15a5-4227-ad8a-fe52c673b82d", + "id": "f57a32e0-aac7-45b9-a298-a74012f60c94", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65545,7 +65545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61e85aab-58c0-485f-a433-fca3d3a6184c", + "id": "f3643037-bb32-4cd5-afcd-cf8bee3795b9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65638,7 +65638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa93477e-bf5b-4cbd-9aed-dc4f1d68c712", + "id": "c0b41569-2456-440e-9833-6a92e9821922", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -65731,7 +65731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3163c5f0-ca2a-4641-9b0d-a33e2b93b5bf", + "id": "9c48cc91-4e97-4571-90c2-59a808c198df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65824,7 +65824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0af0409e-4bc4-4286-93d1-39fdb92890ca", + "id": "56c40cf9-b955-48ea-815d-a1ad1446904d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65923,7 +65923,7 @@ } }, { - "id": "e699cf9a-ac8b-4999-9f87-3dc45df9251b", + "id": "51f84441-7315-41c8-a0cf-4668d06b55bf", "name": "IAI Identity Outliers Ignore", "request": { "name": "IAI Identity Outliers Ignore", @@ -65966,7 +65966,7 @@ }, "response": [ { - "id": "ebd5f01f-11db-4c28-ab15-1ff2b7d0489b", + "id": "91334277-23fe-4c50-abba-1018a7413846", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -66013,7 +66013,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0bf21083-0e54-4c05-9736-62f6a6b3395a", + "id": "2d70a2a1-38e3-4c0c-9c35-e97baa837fab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66070,7 +66070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa866790-44a2-42e4-8c85-f6326d65b2e4", + "id": "94d867cb-7dad-44cb-807f-3e25b1244357", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66127,7 +66127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2334844-6b82-484e-9c56-9e3603e23120", + "id": "cd36b49d-9e62-4c18-9f76-4bec31807d65", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66184,7 +66184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9934f29c-461e-4033-99bc-3756b4d4dc4b", + "id": "3a0a9b6f-f903-4496-a193-c983de754a4f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66241,7 +66241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "467d4bbd-831d-4967-b852-9fdc5f9fc863", + "id": "dbedeb3c-6482-4f78-aae6-670463f3f59a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66304,7 +66304,7 @@ } }, { - "id": "ef86d3d5-8c8e-47ff-877c-93540c8118d6", + "id": "e18a275c-7558-4da2-98fa-ea739ec4b57a", "name": "IAI Identity Outliers Unignore", "request": { "name": "IAI Identity Outliers Unignore", @@ -66347,7 +66347,7 @@ }, "response": [ { - "id": "194ef213-e215-4391-bdfb-4cb5ccc2996e", + "id": "6dfddf28-fd8f-4cf1-a3c6-f025889641f2", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -66394,7 +66394,7 @@ "_postman_previewlanguage": "text" }, { - "id": "15147b6e-bb29-489c-bb57-8f40dd7db5e1", + "id": "86bbd312-27e9-416d-8b77-36f1b63eb447", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66451,7 +66451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "feb3d19b-b4c9-4167-aa9b-f779dd6d0052", + "id": "13215b84-b21f-4105-a50e-7ca71b5dca88", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66508,7 +66508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9084aadc-9171-4d07-ac7b-1b288aaec7f9", + "id": "de0c1144-df40-4c54-8c17-8d840304ba8d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66565,7 +66565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dbc3ee4-60a9-4acd-903a-cfdd348c5e59", + "id": "b7366544-1f0a-4ec6-86f2-e632f6c0e0fb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66622,7 +66622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "247b3da9-d06a-4d0f-a47b-e72600835b8a", + "id": "31b3418a-af95-4d83-8429-3d35ea87fcfc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66685,7 +66685,7 @@ } }, { - "id": "ddba26ee-38f6-4a75-b82b-ef4dbd2b8dc4", + "id": "25ceaba8-a4f5-40ac-9030-92e5bde7fda5", "name": "IAI Identity Outliers Export", "request": { "name": "IAI Identity Outliers Export", @@ -66725,7 +66725,7 @@ }, "response": [ { - "id": "0a7e9dd3-ecc6-42d0-a519-53413a873e15", + "id": "09ab07b8-3a3e-4e5b-b882-b8f6b48972b0", "name": "Succeeded. Returns zip of 2 CSVs to download. 1 CSV for ignored outliers and 1 for non-ignored outliers", "originalRequest": { "url": { @@ -66774,12 +66774,12 @@ "value": "application/zip" } ], - "body": "sed nisi sunt qui", + "body": "Lorem", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "9424c023-af2c-403c-87cc-4386b587f0f6", + "id": "ad491ebc-4359-46db-bfe3-2877bcb4c187", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66833,7 +66833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6b70825-3c9e-47fb-9d33-21e9e81fe956", + "id": "67fd8647-c076-4a82-8f45-cce825086224", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66887,7 +66887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "521d0366-750d-4811-8748-051933f463aa", + "id": "e5935c42-7a32-4b4b-8ebd-2fbcb94c0953", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66941,7 +66941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d3efa86-a83e-4a80-8ad9-f7719059e6b2", + "id": "706a5f13-a47b-4055-9a07-662215ad87dc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66995,7 +66995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f390bd41-29e5-44dc-bf58-8e167df285ef", + "id": "b618c0a0-e081-4917-990f-dd6ba5fb48f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67055,7 +67055,7 @@ } }, { - "id": "a31e19b8-7b3b-4d69-b02f-68610481eaa5", + "id": "4192c1ff-9b66-4d92-a16b-5878b6ddcae6", "name": "Get identity outlier contibuting feature summary", "request": { "name": "Get identity outlier contibuting feature summary", @@ -67096,7 +67096,7 @@ }, "response": [ { - "id": "096dc49c-9bb2-48de-ad04-b3f7ebdd995a", + "id": "ce49b0e2-2864-4023-8c85-561520554936", "name": "Succeeded. Returns selected contributing feature summary for an outlier", "originalRequest": { "url": { @@ -67141,15 +67141,15 @@ "type": "text/plain" }, "key": "accept-language", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], - "body": "{\n \"contributingFeatureName\": \"Rare Access\",\n \"identityOutlierDisplayName\": \"John Smith\",\n \"outlierFeatureDisplayValues\": [\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"adipisicing in\",\n \"valueType\": \"INTEGER\"\n },\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"minim pariatur veniam aute\",\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\": \"ut Excepteur aliquip eiusmod\",\n \"valueType\": \"INTEGER\"\n },\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"est elit adipisicing\",\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": "dcffdb9b-6e93-45bd-a9ca-77a3758a22ab", + "id": "f92a7ea3-5593-4439-a2ee-cbb608a83de6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67193,7 +67193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5d49864-2148-4abc-b750-cfeac33a5765", + "id": "96dea3b6-f1ce-4495-9144-f12cf2ba8649", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67237,7 +67237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "924a0aef-1158-4366-8ee9-d5ae5c8f69ee", + "id": "9b04dfac-f027-45fd-9fea-ec8daf36f74f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67281,7 +67281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "776eba2e-8c55-4f36-af04-ed169df88477", + "id": "caa09f8d-c7d4-40a7-8e7f-9a5bb223fc74", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -67325,7 +67325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "720bbfa8-26b5-409a-b9c9-17eeb7b5e97d", + "id": "3983a97a-03d7-42f1-afff-675c60498577", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67369,7 +67369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0de00a44-aa13-4b10-a97a-89536ec7d9e1", + "id": "dfbcbcad-c74a-4c60-bbab-a17f4755d27a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67425,7 +67425,7 @@ "description": "", "item": [ { - "id": "35b81468-053b-4972-aba2-7058a8496bab", + "id": "52262787-d700-4037-a1e8-bf34938b9a4d", "name": "Identity Outliers List", "request": { "name": "Identity Outliers List", @@ -67495,7 +67495,7 @@ }, "response": [ { - "id": "b97dee8d-2949-4345-8c28-0906b6f9d599", + "id": "ce1c1456-a755-4f3c-b470-a1dd571f2445", "name": "List of identities that are not included in peer groups.", "originalRequest": { "url": { @@ -67563,12 +67563,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"anim incididunt ips\",\n \"type\": \"cupidatat qui ullamco id\",\n \"peer_group_id\": \"Ut a\",\n \"attributes\": {\n \"proident6bd\": {},\n \"reprehenderit_c\": {},\n \"enim_9e8\": {}\n }\n },\n {\n \"id\": \"Duis cillum occaecat\",\n \"type\": \"cupidatat tempor amet ex reprehenderit\",\n \"peer_group_id\": \"adipisicing\",\n \"attributes\": {\n \"dolore020\": {},\n \"aliquae\": {}\n }\n }\n]", + "body": "[\n {\n \"id\": \"ex exercitation minim\",\n \"type\": \"cupidatat laborum Excepteur qui ex\",\n \"peer_group_id\": \"consequat\",\n \"attributes\": {\n \"sit3aa\": {},\n \"consequat_9dc\": {}\n }\n },\n {\n \"id\": \"exercitation amet deserunt\",\n \"type\": \"consectetur commodo culp\",\n \"peer_group_id\": \"do ullamco deserunt\",\n \"attributes\": {\n \"in6\": {},\n \"eu8d\": {}\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "75606c87-7386-4522-a339-909cb808ae96", + "id": "1b1f4dce-98bf-4d9c-ae2e-aaa5f4c281fb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67641,7 +67641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a93bea9-936d-4ec3-b516-81ef36f305e5", + "id": "18deb9c9-5c92-40c7-87aa-0f913a50779d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67714,7 +67714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ae2289a-113a-434a-a2d4-add161bfd26b", + "id": "80c6f44d-2551-4ea0-bc56-39132170f573", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67787,7 +67787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2e7de40-ec12-4da1-a115-21d5306a2584", + "id": "b748549e-4d5f-4cde-8e7c-e03e47fbc2fd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67860,7 +67860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "565fb604-f7f4-45af-ba3c-9fa03febdbf8", + "id": "f437ad3d-fc87-489b-9927-c6f2a240d0c5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67945,7 +67945,7 @@ "description": "", "item": [ { - "id": "a9bfe8f1-8f93-48ea-9cd6-8801d2e3ba06", + "id": "a501b028-29f1-4587-b2d2-d7b354eee183", "name": "Returns a Recommendation Based on Object", "request": { "name": "Returns a Recommendation Based on Object", @@ -67988,7 +67988,7 @@ }, "response": [ { - "id": "9cb331fa-7323-4398-a02c-edf0dab4f867", + "id": "cda87a33-a48b-4726-86d7-f6dad436379c", "name": "The recommendations for a customer", "originalRequest": { "url": { @@ -68040,12 +68040,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\": 82409828.67460746,\n \"featureWeightedScores\": {\n \"labore3\": 46204145.41663459\n },\n \"threshold\": 72716895.37892097,\n \"identityAttributes\": {\n \"dolor_f_\": {\n \"value\": \"aliquip officia et\"\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\": -13693057.893540889,\n \"featureWeightedScores\": {\n \"dolore_7\": -24072377.310460925,\n \"doloree5\": -54432587.07972247,\n \"inde7\": -75350300.49030276\n },\n \"threshold\": -7502693.562774539,\n \"identityAttributes\": {\n \"reprehenderite\": {\n \"value\": \"magna amet\"\n },\n \"Ut_0\": {\n \"value\": \"exercitation ullamco id veniam adipisicing\"\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\": 97531538.36761034,\n \"featureWeightedScores\": {\n \"ullamco_7\": -47821659.58529534\n },\n \"threshold\": 1118070.6318654716,\n \"identityAttributes\": {\n \"Duis_1\": {\n \"value\": \"qui ea aliquip ipsum eiusmod\"\n },\n \"ut4\": {\n \"value\": \"aute occaecat esse voluptate\"\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\": -47957468.799909405,\n \"featureWeightedScores\": {\n \"pariatur3\": -19807230.240253165\n },\n \"threshold\": 97045907.0371775,\n \"identityAttributes\": {\n \"aliqua_8cd\": {\n \"value\": \"voluptate dolor adipisicing eu\"\n }\n },\n \"featureValues\": {\n \"feature\": \"department\",\n \"numerator\": 14,\n \"denominator\": 14\n }\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "48707b02-c47a-4d0b-9382-902346386bd6", + "id": "eac7cb1c-4789-49f7-9931-371f7ac5db81", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68102,7 +68102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00f830df-6b05-4a0f-8d6f-17b22872b44c", + "id": "dba1882e-54ea-48e6-936e-4a1b618e9242", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68159,7 +68159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a81980e9-8ab1-44a5-a8ba-e64bbb77fdd8", + "id": "c67958e9-16c0-4f81-b0c6-99ccec0932f6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68216,7 +68216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5663a894-a48f-454d-85f0-2ac21b477c3c", + "id": "a3ac8be2-35fa-4b72-a729-5b5d89652a55", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68273,7 +68273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c3df5f7-82cc-4e76-9e15-1e38c3c3f3c7", + "id": "a8d01642-6263-43d6-b277-cc45ccc11cfb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68336,7 +68336,7 @@ } }, { - "id": "fe410147-6b0d-40f3-8e79-bc064228220c", + "id": "9c05ad75-1410-48fb-8e07-8b0342c75848", "name": "Get certification recommendation config values", "request": { "name": "Get certification recommendation config values", @@ -68366,7 +68366,7 @@ }, "response": [ { - "id": "ead01edf-2ce6-4f05-aaf7-a5df7251b917", + "id": "6798f68e-ac70-4d9c-b347-63342e700bfc", "name": "Cert recommendation configuration attributes", "originalRequest": { "url": { @@ -68410,7 +68410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8547db24-04ee-438a-8b98-005ea82a63aa", + "id": "996451e0-c023-44e5-8699-596ced49608a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68454,7 +68454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87f55cd0-6ccb-4967-ab31-cb225742b69a", + "id": "67516a3e-39f7-41e6-a552-69f4c14a5983", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68498,7 +68498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fad59494-b01f-4c81-95ed-a59d9549cd80", + "id": "d3d648bb-22bb-41ac-827c-095dd00f460f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68542,7 +68542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cff83f33-2c67-4a6f-9dbb-2409c83517a5", + "id": "da6fe953-51ce-4441-bdca-c07c1b00196b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68592,7 +68592,7 @@ } }, { - "id": "073f0c32-d5ce-468c-86ae-9f40c426661f", + "id": "9cad0ba9-3c65-4366-85a3-c4aa72a3b7a3", "name": "Update certification recommendation config values", "request": { "name": "Update certification recommendation config values", @@ -68635,7 +68635,7 @@ }, "response": [ { - "id": "71368437-82bf-469d-a803-0108dfc50a27", + "id": "bc13e06e-de23-422c-93fe-51dd3046c3f1", "name": "Cert recommendation configuration attributes after update", "originalRequest": { "url": { @@ -68692,7 +68692,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f81fb133-7924-4c52-9a74-d79cb201f628", + "id": "0a140f26-2c97-4ad9-b3f2-576ad739a1b2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68749,7 +68749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4e4bbb8-1f2d-4fa2-a598-cc0608375959", + "id": "1cd0e610-b051-4b6a-a384-3f4ce6d44d63", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68806,7 +68806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd2596d9-d375-41cf-be44-f3234fce58e2", + "id": "76d4d2cb-a5af-4876-a09a-76259cb6d89b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68863,7 +68863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2716ce62-da5f-4887-bebd-9e93632c66a4", + "id": "2ee258b3-4525-41cd-b3ed-55840c5a544b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68932,7 +68932,7 @@ "description": "", "item": [ { - "id": "41b99836-4bb4-42be-b1e8-538a1dd116ce", + "id": "d14ae014-b8da-4f45-9b8d-8cd5a15bacea", "name": "Create a role mining session", "request": { "name": "Create a role mining session", @@ -68974,7 +68974,7 @@ }, "response": [ { - "id": "7cc3f94c-869c-49ab-b63d-c7fe9f549778", + "id": "802316f3-596d-46cc-bccb-cbb599ba3f0a", "name": "Submitted a role mining session request", "originalRequest": { "url": { @@ -69030,7 +69030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da2807fc-7a39-44a9-8a95-0489926b303c", + "id": "7207764e-3ec6-457c-8831-6b4219b769d7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69086,7 +69086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "568c2663-4b5b-4a41-a8a5-1b7284dd7357", + "id": "78c068b6-4716-4acd-b506-a0054f0a9a90", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69142,7 +69142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e78ba7d0-ae8b-47bb-a7a0-9ae97a76bbe9", + "id": "32f833a3-1f2b-4284-a4a3-478ce884e10b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69198,7 +69198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6aacfb34-56e7-4cf7-9cce-dc9da8601263", + "id": "f05efe4f-24be-489c-89d1-cad312b37c58", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69254,7 +69254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fed54a26-6fba-4c16-afb6-6eaaccf66ece", + "id": "fed0e20f-c65d-4cbb-a27b-057051cef681", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69316,7 +69316,7 @@ } }, { - "id": "7bf335f4-4b59-43ff-aff7-d51979578d5a", + "id": "802c00ba-0bd7-402f-8134-47d76ea88fa3", "name": "Retrieves all role mining sessions", "request": { "name": "Retrieves all role mining sessions", @@ -69391,7 +69391,7 @@ }, "response": [ { - "id": "fb698bef-117e-4676-af4a-0745267d8419", + "id": "9a0418b7-a4e5-433b-9499-6bd9ea993d56", "name": "Succeeded. Returns all role mining sessions that match the query parameters.", "originalRequest": { "url": { @@ -69480,7 +69480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c58fa066-6cbd-44de-942e-ac5633b9d577", + "id": "84aeae05-5040-44dd-94e9-a9674efc4b72", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69569,7 +69569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74bdcc6d-349e-4cb1-95e0-dccfd2ae3a2c", + "id": "e06be7c1-4828-41e5-a831-9a1b47ce3142", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69658,7 +69658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4df3a15a-35e9-477b-845a-5dff9b3127e7", + "id": "ae2b1d61-6146-4aec-a013-de3e9607d4d6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69747,7 +69747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00f03a9a-3bb2-414d-b217-8cbc0f6d73b0", + "id": "6b9a6ff3-1e2c-44b0-971b-95cb3d56c203", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69836,7 +69836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26bae356-f121-4b6a-97cc-314d026689dc", + "id": "a7d0bec3-9968-4df0-96d6-37282083b08f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69931,7 +69931,7 @@ } }, { - "id": "143d062c-ff4f-4330-9245-e3b2d58785f1", + "id": "df055d2f-b810-4d64-a18e-064daf0503f3", "name": "Patch a role mining session", "request": { "name": "Patch a role mining session", @@ -69985,7 +69985,7 @@ }, "response": [ { - "id": "7de610ad-ddbb-4da1-a1a6-26e6e63220d9", + "id": "a505b7c1-b4e9-4c88-a8fe-7e27254dcb5a", "name": "Success", "originalRequest": { "url": { @@ -70042,7 +70042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71f28204-bab4-4e9d-a9b7-35c134c830e2", + "id": "6faafb02-dd57-42b4-b056-1f0ea755fc08", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70099,7 +70099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcfa6031-aefa-4b81-baee-1f49dd7e3414", + "id": "72792dea-b077-4dda-9339-f517698a7134", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70156,7 +70156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b14e9c2-b0e0-4efc-bb69-37d36c224f45", + "id": "250938bc-f5c1-48fb-8608-ad4e065c4b0e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70213,7 +70213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2cf332c-c763-48bd-821d-3938cf4fd6f6", + "id": "4a29f623-395b-40ce-9a1c-2fdfa2b9817e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -70270,7 +70270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fe1d8d5-2ee1-467a-839f-a96320a669a3", + "id": "422e083e-32b5-405f-ada6-a0f5abb7f611", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -70327,7 +70327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "272682df-d49c-485f-abb7-78b9f8031076", + "id": "f3d1f9b3-4bb0-455b-8a19-366a51525893", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70390,7 +70390,7 @@ } }, { - "id": "50bd8252-b7bb-4e67-8b66-afc9bb13acfb", + "id": "f5c8fc25-7960-4f8b-9335-5ec15b06002a", "name": "Get a role mining session", "request": { "name": "Get a role mining session", @@ -70431,7 +70431,7 @@ }, "response": [ { - "id": "f7312f3e-bd64-4c0f-bebe-4b2b5c283574", + "id": "d241ccb1-457e-4705-9834-cdfe79114a32", "name": "Returns a role mining session", "originalRequest": { "url": { @@ -70475,7 +70475,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53fede6b-7b62-4427-8c02-9241b3f711ff", + "id": "6d0d522f-7cbb-49f2-9af7-c285ffa30f4a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70519,7 +70519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09613e69-19ab-4ebd-a1ef-206c2c91aaca", + "id": "ea2bbddd-916c-435f-9424-a804d542248c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70563,7 +70563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b673c488-61da-4941-a623-254c284739b2", + "id": "aac7e7b7-bd1a-42b4-a27c-0f201eeefd41", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70607,7 +70607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bf5cf3c-3234-4d8e-af08-25a949252bf3", + "id": "056c13b5-775f-4351-8e20-9fc4160f8bcb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -70651,7 +70651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99f4dac8-82ba-4709-9ee3-ca1440f47944", + "id": "b5de3a9c-0d28-4445-a3d3-ebab01b9534e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -70695,7 +70695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b231c29a-9997-4a52-b331-7fbe97152daa", + "id": "f565eb90-f5eb-4888-abd8-038848f3abc2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70745,7 +70745,7 @@ } }, { - "id": "686ce4eb-fc08-44d8-9cdb-f588b12207ba", + "id": "80c7b96c-4bd6-4bf7-9da7-3ea39ef81a46", "name": "Get role mining session status state", "request": { "name": "Get role mining session status state", @@ -70787,7 +70787,7 @@ }, "response": [ { - "id": "fb0d3702-75f5-4412-9400-605738b54404", + "id": "46a39965-973e-478a-a755-42241ca072a2", "name": "Succeeded. Returns session status", "originalRequest": { "url": { @@ -70832,7 +70832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57c80059-a113-4627-aa13-1292aaa76fe1", + "id": "55f38bf8-9447-4dc3-9d56-4a4cf6e5407d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70877,7 +70877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bacef999-26c5-4dc2-9d9f-95dc3d82382f", + "id": "90585f71-1346-4da6-81b3-5c5f70ac28e3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70922,7 +70922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81351ee7-7f04-4f37-a8c7-6a76b3f2d4c6", + "id": "afe50839-4929-4a30-99fd-4d77be670257", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70967,7 +70967,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44e2a157-db69-4b4c-95db-bad65cf7e1a5", + "id": "3c8b35eb-679a-4190-a46e-52e41e299674", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71018,7 +71018,7 @@ } }, { - "id": "0e6602d1-8365-4c52-81b9-bac90ff0b786", + "id": "3cb0088e-7f86-48cf-a757-0105199869d6", "name": "Retrieves all potential role summaries", "request": { "name": "Retrieves all potential role summaries", @@ -71106,7 +71106,7 @@ }, "response": [ { - "id": "2f507c34-d106-41f7-8ee7-b991dd1ee9ad", + "id": "fdbe73ad-3e3a-425b-9e5c-50501c864a4e", "name": "Succeeded. Returns a list of potential role summaries for a role mining session.", "originalRequest": { "url": { @@ -71197,7 +71197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b767b390-db4e-40a7-b9aa-d96ddd62a304", + "id": "e8193f57-7555-47ea-8761-875dd4e3e9b5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71288,7 +71288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8681fa2d-44ba-4412-9e26-371eed07960a", + "id": "bf1a10db-0837-49a0-9471-eb6c6e30379f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71379,7 +71379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c13478ae-057d-4530-affb-0f84f0ee2874", + "id": "4d8c9c4a-cb88-4483-ae80-8c18089a8a7b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71470,7 +71470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ceb27fd6-008f-4bf2-bcf4-32a0919fa84f", + "id": "37bdd731-6cf5-43f8-813a-b577a64e29b3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71561,7 +71561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "536fb921-0b57-442a-ae69-dde9ff36562a", + "id": "d8c9bdad-df3e-41e9-ad43-f3580f5f845c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71658,7 +71658,7 @@ } }, { - "id": "cc930f8a-5583-49ed-b3a9-e0b40dc90363", + "id": "0994e009-5b30-41e2-8d7e-88b7e58e22af", "name": "Retrieves a specific potential role", "request": { "name": "Retrieves a specific potential role", @@ -71711,7 +71711,7 @@ }, "response": [ { - "id": "1a595c31-be8c-42dd-a524-576d605dae65", + "id": "61f2986e-3cf5-41e3-9fb6-ed1d8bc5ecb7", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -71752,12 +71752,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 \"dolora\": \"esse irure\",\n \"laboris_0b\": \"ex nisi velit elit\"\n },\n {\n \"sunt54\": \"ea adipisicing\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"laboris_8d\": \"velit qui\"\n },\n {\n \"sunt53\": \"ea consectetur dolor\"\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 \"proident27f\": \"incididunt nostrud\"\n },\n {\n \"in_a5a\": \"do\",\n \"est_0_6\": \"dolore enim ut sed\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"ut2f2\": \"qui non\"\n },\n {\n \"eu_e1\": \"incididunt voluptate in\",\n \"ad_31\": \"irure\",\n \"id_b\": \"voluptate eiusmod esse labore\",\n \"consequat_fa\": \"proident sed ut\"\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": "4d22dce7-2146-4603-8311-196685b7ac07", + "id": "e840a8aa-b65e-4935-9f25-e724c806ba21", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71803,7 +71803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bd7792f-99c8-42e5-bf46-7c6852684c7e", + "id": "47d6d855-9dae-4403-9199-c2cc582395c3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71849,7 +71849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e08ff45a-02db-4a53-a52e-17db5b922a4a", + "id": "738da952-8c97-47f5-aa66-177a1de6a2de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71895,7 +71895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d886ea46-93da-4ab4-b637-3e77b070e8d6", + "id": "494869ff-c1e9-49e9-a0aa-6d3f0f116327", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71941,7 +71941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "220e43fd-157b-4fed-b5e1-1222ee4f45ab", + "id": "f00b2c47-13fa-46b2-8f44-5219a504feea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71993,7 +71993,7 @@ } }, { - "id": "cb7ef4e2-66de-44ab-9061-34abd9ce9df9", + "id": "d3670f1c-2989-4035-a3fc-9218ef794af7", "name": "Update a potential role", "request": { "name": "Update a potential role", @@ -72059,7 +72059,7 @@ }, "response": [ { - "id": "660f1ecb-4b07-45e3-94c9-55a74be2bcdc", + "id": "66300509-0036-4db9-8945-3873c0ac10ec", "name": "Succeeded. Returns the potential role summary based on the potentialRoleId provided.", "originalRequest": { "url": { @@ -72118,7 +72118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbcd6845-2357-4137-9906-4fcf9dd827bb", + "id": "6410f56e-c6b8-41e1-810c-7b8e67a74792", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72177,7 +72177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c73c373-9286-4db8-8c15-f7cae7974d6f", + "id": "726a71e8-cba1-46e9-8588-1b09621f62cc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72236,7 +72236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "daf6cbcb-7026-4039-ba3d-cf9ecf60fd3c", + "id": "f840fc77-5b5c-4c71-befb-5872d4e3355a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72295,7 +72295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50450a97-0cdf-45ab-a77e-c03415722660", + "id": "3aa8ffbf-efdc-4c6a-9dc5-e3817042b700", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -72354,7 +72354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a838edc-1422-4a9d-bc7e-79897708b9a7", + "id": "f20a6cbf-acb4-4521-94fd-5ad5b5eb8482", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72413,7 +72413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a2d66fe-ebf4-4053-8edb-b37f1af43fd7", + "id": "cbaaf799-e732-4132-b023-7a998b3a3b8f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72478,7 +72478,7 @@ } }, { - "id": "a4c0fbf1-c44b-4928-83b5-96f67174cb24", + "id": "3e5c49b3-f3bb-4baf-9505-a77fc839fee0", "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", @@ -72560,7 +72560,7 @@ }, "response": [ { - "id": "c70251ce-9535-4678-96ef-260c4b5385b3", + "id": "1fcb303a-c748-4ad8-ac26-0f53e8d6c760", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -72635,7 +72635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8505eb25-bee9-4cc5-a2f5-886fa49fab06", + "id": "64b28dc5-c090-4240-a4d1-c4bdc120cb0c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72710,7 +72710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "833fbd0f-06a3-494a-848f-3405534eff4e", + "id": "bc56038d-2c31-4478-a2c9-afe3487b2e8d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72785,7 +72785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4774a311-7f81-4906-a75d-8e1841b28c2b", + "id": "8f1e9f14-410f-47e4-98b8-0f2b4ad605a8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72860,7 +72860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfa3519f-a956-4e80-86b8-a09dd971b6d5", + "id": "f5696b38-b40c-41e7-8f4e-022fd81b5056", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72941,7 +72941,7 @@ } }, { - "id": "56aa821d-a161-459f-be6f-2ef04b1d9085", + "id": "d9701637-6be2-46c1-a420-71f2cf97130e", "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", @@ -72968,7 +72968,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "false" + "value": "true" }, { "disabled": true, @@ -73050,7 +73050,7 @@ }, "response": [ { - "id": "dd092512-ea6d-4c28-9ea4-e0daa23678b9", + "id": "fdc254df-58c3-4ca2-b1e0-2295b122fe86", "name": "Succeeded. Returns a list of entitlements for a potential role.", "originalRequest": { "url": { @@ -73072,7 +73072,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "false" + "value": "true" }, { "disabled": true, @@ -73152,7 +73152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a636bc25-e42d-456e-954f-d63ab523c813", + "id": "951b704e-0a5a-4e89-b315-90c5f21be54d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73174,7 +73174,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "false" + "value": "true" }, { "disabled": true, @@ -73254,7 +73254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b34e7281-1b3d-4b0d-8be3-793a8982504c", + "id": "a384650a-5454-4988-877d-3d82e5a0281c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73276,7 +73276,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "false" + "value": "true" }, { "disabled": true, @@ -73356,7 +73356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d7054dc-596e-4906-b7a0-1e9ba7ee2dbc", + "id": "8c5bb750-1d35-477e-8cf2-6c4b14b2813d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73378,7 +73378,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "false" + "value": "true" }, { "disabled": true, @@ -73458,7 +73458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43fa0a44-cf83-44ba-809d-f35b13a6741f", + "id": "4408948b-8b80-4d8c-b724-5cd9d0703ffb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73480,7 +73480,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "false" + "value": "true" }, { "disabled": true, @@ -73566,7 +73566,7 @@ } }, { - "id": "0817d0ac-9590-47e0-a618-4231b5a23220", + "id": "8d6c2172-c283-4b0f-9f96-9310b893b36a", "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", @@ -73630,7 +73630,7 @@ }, "response": [ { - "id": "95a89730-8219-4f16-8f9d-04f9fcb74ea8", + "id": "2ad7f539-f7a8-4384-9e6b-15b6ebcabd0f", "name": "Succeeded. Returns a map containing entitlement popularity distribution for a potential role.", "originalRequest": { "url": { @@ -73682,12 +73682,12 @@ "value": "application/json" } ], - "body": "{\n \"laboris7_\": -6307597,\n \"dolor_b\": 47176835\n}", + "body": "{\n \"nonda5\": 30699547\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "631204e8-0a83-4914-8b9a-9652baf2654a", + "id": "ecf47171-aba2-415d-95cd-1c1a32c1768b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73744,7 +73744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75c15a4b-5e52-4586-acec-4cb8c3907f9d", + "id": "c8e49720-3a14-4558-80c6-be77f79b6ce1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73801,7 +73801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b910b15a-99eb-4f42-8ff1-0d09073c6f43", + "id": "172b0462-d7cb-4c11-afd3-ad778af6af2a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73858,7 +73858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f10dfcff-6b9b-4345-9ac9-0186e8b815c1", + "id": "84a9b82c-1a67-4249-82fb-b4e8ab6a6787", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73921,7 +73921,7 @@ } }, { - "id": "c6c6bd31-a69e-4b7a-a832-1dda58116e63", + "id": "c651a538-73b1-4d81-83da-8cfff84f5c6c", "name": "Edit entitlements for a potential role to exclude some entitlements", "request": { "name": "Edit entitlements for a potential role to exclude some entitlements", @@ -73988,7 +73988,7 @@ }, "response": [ { - "id": "7a46695d-f42c-4545-bce0-6967bb096e4c", + "id": "f143ce57-6dfd-494c-8d55-f0cba5f4cf44", "name": "Adds or removes entitlements from a potential role's entitlement exclusion list.", "originalRequest": { "url": { @@ -74043,12 +74043,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 \"dolora\": \"esse irure\",\n \"laboris_0b\": \"ex nisi velit elit\"\n },\n {\n \"sunt54\": \"ea adipisicing\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"laboris_8d\": \"velit qui\"\n },\n {\n \"sunt53\": \"ea consectetur dolor\"\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 \"proident27f\": \"incididunt nostrud\"\n },\n {\n \"in_a5a\": \"do\",\n \"est_0_6\": \"dolore enim ut sed\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"ut2f2\": \"qui non\"\n },\n {\n \"eu_e1\": \"incididunt voluptate in\",\n \"ad_31\": \"irure\",\n \"id_b\": \"voluptate eiusmod esse labore\",\n \"consequat_fa\": \"proident sed ut\"\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": "634b8adb-95c4-4857-a679-56ad3d4fa234", + "id": "26ba0de0-f5c2-42c2-9ad0-1d4d2061bb3c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74108,7 +74108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a6c6d6d-8330-4d32-b3c0-e722e6110ec8", + "id": "4626f0e8-5d99-409d-867d-158ddb66c00f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74168,7 +74168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ab53940-51da-4407-b433-756f48d69228", + "id": "6b53532e-93e0-4c92-8888-e00685cba8ba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74228,7 +74228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a3eb653-f103-40b6-8dc6-940ab4c696b1", + "id": "ea3dca43-d8d7-4ecc-89f8-e2d5f0130738", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74294,7 +74294,7 @@ } }, { - "id": "4bac1525-3b96-4de9-907d-7f4460b319dc", + "id": "ce66b9f4-cad7-4978-a6ab-c25339dd0e14", "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", @@ -74330,7 +74330,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -74394,7 +74394,7 @@ }, "response": [ { - "id": "a361f9ff-2935-4d92-b1c4-e7c45d5c1aab", + "id": "4fcefeb8-a5d6-4c17-b8cd-65bc036e12f1", "name": "Succeeded. Returns a list of identities for a potential role.", "originalRequest": { "url": { @@ -74425,7 +74425,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -74487,7 +74487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8f7779c-bb06-4bb1-a3c3-fa53fca601d6", + "id": "31663767-f8fb-4303-8e29-8cece23247f5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74518,7 +74518,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -74580,7 +74580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6599809-9f27-4f7f-8d1b-893549a29f3a", + "id": "614da522-3cc4-47ef-b495-eb1775a7b74a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74611,7 +74611,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -74673,7 +74673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adca556e-845a-4891-98b0-e55c8c9276e3", + "id": "6ccc84df-12d1-4da4-bb6b-865760bb8f8d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74704,7 +74704,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -74766,7 +74766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10344688-b43b-45ca-baae-545c42507a2d", + "id": "aa21bc0a-b58c-46da-9d0f-e18af5fcf409", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74797,7 +74797,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -74865,7 +74865,7 @@ } }, { - "id": "c962a68b-9188-4f93-90e6-bf45a0b7f6a0", + "id": "25d92e19-1b23-4343-92f7-5ae322159b02", "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", @@ -74919,7 +74919,7 @@ }, "response": [ { - "id": "00fa7bd1-f668-49ca-b27c-de250477dec4", + "id": "9823089c-7166-4105-876a-e0151c96fc52", "name": "Succeeded. Returns a zip file containing csv files for identities and entitlements for the potential role.", "originalRequest": { "url": { @@ -74961,12 +74961,12 @@ "value": "application/zip" } ], - "body": "sed nisi sunt qui", + "body": "Lorem", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "0ab2d6e9-1dbb-46a7-8f40-579d799240f7", + "id": "768a3968-8c8b-438e-a33b-59e04e0569d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75013,7 +75013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "422f9a6c-c95e-4512-ae42-d86eb05f82b4", + "id": "3488cd8e-7985-4d29-adee-b2e099886480", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75060,7 +75060,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65143829-020a-4c5b-acd9-b69193e150ae", + "id": "73b775c8-d5e4-4505-9dc2-9499c3b65dd9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75107,7 +75107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10f595d1-4907-41de-ba00-8da12d221285", + "id": "c61dad80-974d-48f5-afe3-6927bd49def8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75160,7 +75160,7 @@ } }, { - "id": "e905e303-1c15-46f4-993e-d703ee29dc4f", + "id": "87805ec2-831c-4b10-88e9-d43365650f65", "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", @@ -75227,7 +75227,7 @@ }, "response": [ { - "id": "e4249790-298f-4b62-8c25-55ecc7faeaaa", + "id": "b5391c47-5a9e-4da7-a009-4dd55338af59", "name": "Job Submitted. Returns a reportId that can be used to download the zip once complete", "originalRequest": { "url": { @@ -75287,7 +75287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccaa8ed4-cd37-4c2b-a94f-d2825114a547", + "id": "b607909e-48d5-4478-b704-b54612d5dbfe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75347,7 +75347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da60f4ea-e503-41b0-9e2b-6c071e025780", + "id": "bc4c275b-4ce0-41b7-820f-8bb94d80b98f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75407,7 +75407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7eed4dc8-ca49-4173-8844-28f6bd4ae70a", + "id": "e787d4d3-1c1c-4642-8dee-30bd6b689d28", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75467,7 +75467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5b1dcee-a327-4adf-9a3f-a4698a6e33c0", + "id": "fe665cb4-15a2-43a9-b2e1-1debb2f40953", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75533,7 +75533,7 @@ } }, { - "id": "d3e3d39e-bc58-4746-bba2-3a5428e72621", + "id": "65ed45b1-6d88-4f00-8a08-72311981216e", "name": "Retrieve status of a potential role export job", "request": { "name": "Retrieve status of a potential role export job", @@ -75598,7 +75598,7 @@ }, "response": [ { - "id": "2c7933bf-c20b-42b7-ab81-949bb36d48bb", + "id": "6d84629d-8638-4851-9b02-5ea5b9d6c55b", "name": "Success. Returns the current status of this export", "originalRequest": { "url": { @@ -75646,7 +75646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7a2b647-e709-4a04-a5f8-c1baf3715c3e", + "id": "50ad580d-26ec-49fc-aeb3-44477e79b61e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75694,7 +75694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "366090c2-e092-41c4-a6e7-b0fbf25eead6", + "id": "ed573d72-4758-4d2e-abb2-d3ff9e0c0ef6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75742,7 +75742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28e3d417-f96c-4a4d-9958-709333f95926", + "id": "3310af85-b644-4454-be45-4f6da3d38d90", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75790,7 +75790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c9f79fb-be1c-4399-8c5a-e365829f29c6", + "id": "8c79c81f-79ea-4379-bab7-3affbed076bc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75844,7 +75844,7 @@ } }, { - "id": "fb0c66c6-66a5-48f7-9a89-09162a9668a5", + "id": "6fd48059-8631-4d47-a3ec-65e0c4779a0d", "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", @@ -75910,7 +75910,7 @@ }, "response": [ { - "id": "78f1af77-2f07-41b2-825e-5709d643d832", + "id": "d317fa0f-e430-4eff-a79f-db1e9473701b", "name": "Succeeded. Returns a zip file containing csv files for identities and entitlements for the potential role.", "originalRequest": { "url": { @@ -75954,12 +75954,12 @@ "value": "application/zip" } ], - "body": "sed nisi sunt qui", + "body": "Lorem", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "13d9ab0d-1cd3-4da1-a99a-ea50e198be5b", + "id": "7d79475d-38da-4407-beb0-bf128fa98021", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76008,7 +76008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76056489-9f0d-47a7-a99e-5027d48f042f", + "id": "fbda7317-44e8-448c-b464-553a83e43b0a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76057,7 +76057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8643b26-d2da-4f55-8780-4b72723b7d11", + "id": "33f3c47e-05b3-4e50-addd-6476e4d8262f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76106,7 +76106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44e12c0b-2472-4404-8a5b-239f618c5843", + "id": "5990e636-0e89-4441-992f-67707de9e9fd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76161,7 +76161,7 @@ } }, { - "id": "d6012e21-2ccd-4fa8-8c16-d383bf43139e", + "id": "6387603e-af13-43b4-a2fd-39074a783e99", "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.", @@ -76247,7 +76247,7 @@ }, "response": [ { - "id": "8c1e500e-ec3a-4185-95af-0d2ff38a96ec", + "id": "6003b580-e05d-4b29-b8db-a3b6a8dcf0c8", "name": "Accepted. Returns a potential role summary including the status of the provison request", "originalRequest": { "url": { @@ -76326,7 +76326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d7d8320-f2d3-4b68-be7c-40c05fd79889", + "id": "7dd07d40-8487-499f-ad4b-4722d88555cc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76405,7 +76405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d5d875a-47f0-4096-9e65-f043d6187ae6", + "id": "d13d2ccf-6c99-4412-a1f4-e9187c1276d5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76484,7 +76484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f5d8627-0048-43d5-b23a-3196c276ba74", + "id": "3b44b140-8308-4aba-949e-4d4648fdf655", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76563,7 +76563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "788d47b8-7486-4e52-9dfd-47212e08bd13", + "id": "dc7f4570-2ff8-43e1-bd03-8d105132b712", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -76642,7 +76642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7adbd098-794d-4474-af9c-91fc232bcacb", + "id": "2733c2c7-4818-46cf-b933-598bcad37f37", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76727,7 +76727,7 @@ } }, { - "id": "334fa20c-3c7f-4214-876c-8e515d5b8640", + "id": "09401253-f9b3-4835-8466-35aa6625e8cd", "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", @@ -76827,7 +76827,7 @@ }, "response": [ { - "id": "639182c3-cece-4e29-8eec-9f3b1032671e", + "id": "aa173ee6-2037-473b-a82f-1c707c18bb1c", "name": "Succeeded. Returns a list of excluded entitlements for a potential roles.", "originalRequest": { "url": { @@ -76920,7 +76920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5eef69ab-2620-4cad-871e-adb989906791", + "id": "07022fa7-c902-46a2-954f-3a4c6fb5760c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77013,7 +77013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b08bcba-be72-4a02-9e86-33a15ece6af1", + "id": "7e5f794d-2f0c-4edd-8cbd-fdf9bc5a691a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77106,7 +77106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b024cb38-03f9-4cbb-9f64-ff59999cbe89", + "id": "8b7826b9-a13a-4e1f-b3bb-aa343f3b755f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77199,7 +77199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10e54a56-c8a5-4759-9f1f-33b795057e4b", + "id": "c5b21d07-92a0-4707-800a-b994b0805f74", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77298,7 +77298,7 @@ } }, { - "id": "5963d905-4eb5-4f1a-8832-763cacb537b1", + "id": "0f2e56c6-4b69-4c00-bc59-7ad1aee29560", "name": "Retrieves all potential role summaries", "request": { "name": "Retrieves all potential role summaries", @@ -77373,7 +77373,7 @@ }, "response": [ { - "id": "1ad047bb-1122-4bc0-86de-953565060797", + "id": "fa59799a-a2a6-46a0-b5e8-50112830bb7f", "name": "Succeeded. Returns all potential role summaries that match the query parameters.", "originalRequest": { "url": { @@ -77462,7 +77462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1d7175e-f934-4f8d-960f-dbba250bb53f", + "id": "c14fc6d0-1514-469a-8e02-4c33d93246d1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77551,7 +77551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "daa466e4-a8f8-4e22-b23d-76191e638bd6", + "id": "4d45f188-71c8-48e3-9f34-e88bad919336", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77640,7 +77640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f1f7893-a3cb-4817-b3fc-2040fa2bd9d3", + "id": "752c2e9d-6c68-4fba-be75-0387c577a4f2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77729,7 +77729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e40ff241-1a59-4c91-a754-3cf24eb1cc87", + "id": "2beb39c7-98c0-4225-8786-176d393dd40f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77818,7 +77818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c96e6e5-96bf-489a-abf0-dc5812fc62cd", + "id": "7f5bea4b-51c5-48a5-b4d2-d62448c11e21", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77913,7 +77913,7 @@ } }, { - "id": "69f2a387-c186-4912-a8cf-7d95a7baf3de", + "id": "4d4900df-cf87-40e5-b994-4e7864f50f67", "name": "Retrieves a specific potential role", "request": { "name": "Retrieves a specific potential role", @@ -77954,7 +77954,7 @@ }, "response": [ { - "id": "c449c8bf-ae4a-43e1-82ed-b3826711cdf6", + "id": "a5363538-e99f-4782-b521-4b307ac173fe", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -77993,12 +77993,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 \"dolora\": \"esse irure\",\n \"laboris_0b\": \"ex nisi velit elit\"\n },\n {\n \"sunt54\": \"ea adipisicing\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"laboris_8d\": \"velit qui\"\n },\n {\n \"sunt53\": \"ea consectetur dolor\"\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 \"proident27f\": \"incididunt nostrud\"\n },\n {\n \"in_a5a\": \"do\",\n \"est_0_6\": \"dolore enim ut sed\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"ut2f2\": \"qui non\"\n },\n {\n \"eu_e1\": \"incididunt voluptate in\",\n \"ad_31\": \"irure\",\n \"id_b\": \"voluptate eiusmod esse labore\",\n \"consequat_fa\": \"proident sed ut\"\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": "bdaa6f4f-ef2a-4633-b226-afaa45550537", + "id": "dbeb1525-19f0-4d29-a529-3e0d7ed37cf0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78042,7 +78042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d6e91f5-932f-4a9b-9406-ec1299717954", + "id": "cae89464-55e7-487e-b51e-7dcfc6cc6d32", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78086,7 +78086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c987e0d-c5cc-4010-bec1-7b91ef6f6584", + "id": "f5625ae4-5682-476e-9779-4d1f622003b7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78130,7 +78130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27401697-f2ed-49ad-b3f6-85b242afef6d", + "id": "69b7a299-da5e-431a-bfde-257c238b7603", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78174,7 +78174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cee12f7e-3b89-49ad-b1ae-fe13026ef990", + "id": "dfd660e1-910c-48be-9567-bc5c930dcbf2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78224,7 +78224,7 @@ } }, { - "id": "3e7d2d94-0116-4a7a-808d-3024095cdba8", + "id": "af8087e2-58c4-4c15-aed3-c524bf06663d", "name": "Update a potential role", "request": { "name": "Update a potential role", @@ -78288,7 +78288,7 @@ }, "response": [ { - "id": "59adcf47-5818-432a-b727-bd20c657324c", + "id": "e41ecf68-5eb3-4492-9ec6-858143357fbc", "name": "Succeeded. Returns the potential role summary based on the potentialRoleId provided.", "originalRequest": { "url": { @@ -78345,7 +78345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ac7f621-ae84-4b35-b735-43cc2df42ee3", + "id": "d17161ca-c26a-4a4a-a89d-5b30fabfbb8a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78402,7 +78402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "748167ac-7ef1-494f-8361-83e0d20f79e7", + "id": "fcc71e06-b520-4e0c-8256-0c1cfe6aeb35", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78459,7 +78459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "883c0c9f-e75b-4661-839b-71ab15568371", + "id": "42ddb64f-1615-4203-951d-f4bc26f2c34a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78516,7 +78516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ac0fea9-0eb0-4efa-a305-6c175a9f7f4b", + "id": "d49ca458-a6f8-4fbd-8517-cfbbcec351e6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -78573,7 +78573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33f6fbe9-75d6-4ec6-a76d-2cc0fafbd0cc", + "id": "9f696849-c100-4859-9044-2738f9e77387", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78630,7 +78630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "998d0a5e-5476-4ea4-b564-b9111341689e", + "id": "9bd8e9d3-d3e6-4b67-b1f6-cdfd0b4fde7e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78693,7 +78693,7 @@ } }, { - "id": "cc345c2e-765b-410b-ae5e-b915375b3893", + "id": "141bc25f-ba64-4e82-8891-dbc507dc5cde", "name": "Retrieves all saved potential roles", "request": { "name": "Retrieves all saved potential roles", @@ -78760,7 +78760,7 @@ }, "response": [ { - "id": "735cf451-1eb9-4355-b7b3-992c09b378ac", + "id": "96a5f2cb-ff48-4e61-af68-da6f526dfd0d", "name": "Succeeded. Returns a list of draft roles for a role mining session.", "originalRequest": { "url": { @@ -78841,7 +78841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53fe76bb-0d52-45b3-a3f2-9a2b97790d08", + "id": "ea73c08b-65ca-4712-ad55-81a1cf630b34", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78922,7 +78922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d5aa3d6-89d1-4617-9eb5-1659f20e546e", + "id": "a9d70cd5-b331-4846-9cc0-76cf9e890765", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79003,7 +79003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e61f78d-c998-4283-bae7-0ef972fa7edd", + "id": "6314a69c-2704-4698-92d9-36e54ce135eb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79084,7 +79084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e245563d-4faa-4e10-8bf4-b30b6483dffc", + "id": "0b10985d-1e21-4ec0-a3fd-dc1b93969186", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79165,7 +79165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f0b0bb0-d4fa-41b2-9d15-1afbcedcd846", + "id": "6514ed01-9eee-4a6d-bf35-116d6c7dbf11", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79252,7 +79252,7 @@ } }, { - "id": "e550ca9b-cd8b-4085-b955-c5c387799366", + "id": "75e17d9a-6683-4581-b16b-d5bd7bf37320", "name": "Retrieves potential role source usage", "request": { "name": "Retrieves potential role source usage", @@ -79343,7 +79343,7 @@ }, "response": [ { - "id": "1aaa5a77-c030-47e3-8f9e-ca576f4c3790", + "id": "fc91ae8b-4735-4743-b167-a7f16ffc4509", "name": "Succeeded. Returns a list of source usage for the identities in a potential role.", "originalRequest": { "url": { @@ -79427,7 +79427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "596ed7f5-379a-4e5b-9e5f-a9c9f408789b", + "id": "548f6b24-4505-48f1-ab79-bbb4f32a844d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79511,7 +79511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f72c253e-e2b5-4227-b585-ebb8639cbc1f", + "id": "2e687831-d369-42f3-976f-d8eb1ffef6b1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79595,7 +79595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7e893f7-ac17-44fd-86c5-717c0b42ee62", + "id": "339051a2-19f6-4ff6-a01a-bee00bb35233", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79679,7 +79679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79af16a4-f724-4008-9325-503f7361728b", + "id": "664819fb-a350-403c-ab79-537e9c91e95a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79763,7 +79763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "913c2a87-0fe8-4a3a-b500-8d1415e1cd20", + "id": "691706ea-44f4-4983-a48e-fe333593ffc8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79859,7 +79859,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": "bd16984d-0f15-4e1e-99bb-cda63aff7df0", + "id": "1c2965eb-f73b-4b79-b52e-1462c1c7c576", "name": "Attribute synchronization for single identity.", "request": { "name": "Attribute synchronization for single identity.", @@ -79880,7 +79880,7 @@ "variable": [ { "type": "any", - "value": "sed nisi sunt qui", + "value": "Lorem", "key": "identityId", "disabled": true, "description": { @@ -79901,7 +79901,7 @@ }, "response": [ { - "id": "98b73636-ce58-4c35-91c9-e8f5276b0f15", + "id": "94e10de2-bb23-4d4a-8b8a-6e16761b503d", "name": "An Identity Sync job", "originalRequest": { "url": { @@ -79946,7 +79946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ae3b4c7-1671-4372-9289-dc6f061e7609", + "id": "639c9076-d4c0-4339-849e-73c904263413", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79991,7 +79991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b96ff6c5-22e8-499d-af10-060b08d3791b", + "id": "be668a86-792a-4829-b505-d50aaa2ff192", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80036,7 +80036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d116aa5-5c51-45d3-b2c4-e6ababa53cf7", + "id": "202b4cf6-34e4-4784-867b-29fa5ed35c74", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80081,7 +80081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39be81ef-76b5-42cc-8c8f-67bb6a09b94e", + "id": "a996f295-07bb-4ded-afc0-dd15aa0d2c3f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -80126,7 +80126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66ec69db-c40b-484b-91c7-f1515b7daa56", + "id": "808e9f36-d79a-433e-83c2-2763c3ddd50c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80171,7 +80171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d282ac78-470c-434f-8619-acccd0821ccd", + "id": "1cd3cca0-77d9-4aa6-b201-4cde4cfdd6ae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80222,7 +80222,7 @@ } }, { - "id": "934644af-ce39-4111-b076-4cd4e4b51f7a", + "id": "aebaa0ad-5443-4da5-ace6-fa46015f6b57", "name": "Get ownership details", "request": { "name": "Get ownership details", @@ -80264,7 +80264,7 @@ }, "response": [ { - "id": "9b484d5d-ea62-44b0-9612-9136068d9491", + "id": "1ae5ed44-a829-497a-b884-a4188141f780", "name": "Ownership association details of an Identity.", "originalRequest": { "url": { @@ -80309,7 +80309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c180683e-be38-4942-9770-e96945750f2a", + "id": "c8cb7e38-6c10-4458-aef5-ab48da63f018", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80354,7 +80354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5389c67f-dfbf-4a45-bdc0-24dece8986a4", + "id": "24784ec1-ca0f-4f63-a7f8-118dcae31544", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80399,7 +80399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfb3c1e3-566b-416e-aedf-1fcf2a962e46", + "id": "414a2a80-f48a-46ec-84e8-e472eccbda9b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80444,7 +80444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbe6faa5-07d0-45a5-a524-f455692431ec", + "id": "d0fa8426-91f1-4f1a-9bb1-8ac114eb1811", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -80489,7 +80489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f906afd-e637-4562-88eb-4a71462f4f00", + "id": "4f6f0173-aeb9-4687-9750-9689ae327a17", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80534,7 +80534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "662b5990-dd40-43d7-bd66-e8ba74fec3f0", + "id": "c0b5fee1-4b67-48ab-93fc-029aa533928a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80585,7 +80585,7 @@ } }, { - "id": "ea75fda0-afdf-44d0-9542-c6111adf59d7", + "id": "98bee3d8-931d-44ef-be06-7fdbaef87a0e", "name": "List Identities", "request": { "name": "List Identities", @@ -80669,7 +80669,7 @@ }, "response": [ { - "id": "0a8bf639-c0d4-47e3-b118-5970ef9ce0cd", + "id": "df1403c1-f6a8-43b8-90e8-2663e4ab9d57", "name": "List of identities.", "originalRequest": { "url": { @@ -80767,7 +80767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc2c9be6-cee2-401f-90b0-a92da0f41834", + "id": "b7d644b8-a3cd-4dc4-8019-b46b798ac73f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80865,7 +80865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16bb6927-f62b-4250-954b-e8223a50634a", + "id": "816e8f62-403a-43ee-9a3f-78b8dcd8626a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80963,7 +80963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e4b1950-dd56-457d-aee6-9ec4ac690bce", + "id": "75e04218-c53f-45a5-abe3-b5add019d7b8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81061,7 +81061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d80f7da-496d-4bf4-bd13-bf3ae360e576", + "id": "026867a0-eb08-4f79-bbb2-5e49cb405bea", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81159,7 +81159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3280dc80-8c45-4a3c-aa8d-9914995cff5e", + "id": "7716ab3d-f946-4c0f-8908-fdebfae38da0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81263,7 +81263,7 @@ } }, { - "id": "d44c1239-3126-4d1f-93f2-f857ce28ddf3", + "id": "3624cb9f-a82b-4d74-9867-53829e878325", "name": "Identity Details", "request": { "name": "Identity Details", @@ -81304,7 +81304,7 @@ }, "response": [ { - "id": "0f819e1f-dea5-41b6-84d9-702b432ec5e6", + "id": "ce0614f1-0e06-400f-819d-7aa55686f5e4", "name": "An identity object", "originalRequest": { "url": { @@ -81348,7 +81348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f38dc35-6f5c-49e8-8771-1f6f2dd9eb71", + "id": "d0bb1563-f25a-4c40-8052-baa4464639b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81392,7 +81392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca35a603-90e5-4cf7-94b9-9b73276d1068", + "id": "8f436f09-3ebd-41e3-b1de-b71cd97f6e03", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81436,7 +81436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ff3deb6-d8e2-4164-8f32-f2c97fdd4c46", + "id": "9add4499-137a-4caa-b20a-a78a63c4cf0e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81480,7 +81480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "013eb5da-cdba-4280-aafa-67682f047451", + "id": "69f51a23-2894-4a88-9cd1-fab04bac5005", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -81524,7 +81524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8f8f4d5-a32c-405e-9449-f2c9aa67e0ba", + "id": "2ec0c497-17b7-4f1a-9c77-69335de7bdba", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81568,7 +81568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89477bdd-87a5-499b-afc7-d94023e27a05", + "id": "c09a43c2-e77b-4d27-b80c-84e62cbfc917", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81618,7 +81618,7 @@ } }, { - "id": "c6189166-0efb-43ec-9bcb-23927b14c21b", + "id": "0962885f-b6c4-49a0-8f54-3d004dd932d9", "name": "Deletes an identity.", "request": { "name": "Deletes an identity.", @@ -81659,7 +81659,7 @@ }, "response": [ { - "id": "36f184e9-ea2d-4e10-ab27-8769337524cf", + "id": "e9bce413-328f-49ed-bc8b-7a40f905753c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -81693,7 +81693,7 @@ "_postman_previewlanguage": "text" }, { - "id": "639dec72-8ded-4367-916b-fc2f093b3184", + "id": "a13950df-2a3c-4a48-b24f-c1f62dc38d23", "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": { @@ -81737,7 +81737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be93c99b-871a-4139-9763-c6daff54ca78", + "id": "e6d7e29f-353b-4bff-9590-0964358f8552", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81781,7 +81781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f4d7ed0-7362-421b-95f2-f6807157a324", + "id": "e7d51ea6-9ef3-4f50-ad29-81d2e7f84a1f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81825,7 +81825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8beeddf0-c08d-4890-aab5-588aaa03d149", + "id": "4510024d-20ab-4177-b9a6-f5779bbd6567", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -81869,7 +81869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "977a53ca-1a66-40a7-941c-8faa300f6b1f", + "id": "fd701cdc-8784-4c41-a2b0-12647e7177fd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81913,7 +81913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a741f6fb-38b2-4be1-b749-849bb70fd02b", + "id": "c117fdbf-28a8-4893-815c-319107100afe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81963,7 +81963,7 @@ } }, { - "id": "87a4c05f-e7ab-406a-a0f4-8f3bae52fcbe", + "id": "36a1599c-5902-4d45-b19d-655adc43ac9e", "name": "Process a list of identityIds", "request": { "name": "Process a list of identityIds", @@ -82006,7 +82006,7 @@ }, "response": [ { - "id": "9086137d-5a79-42a7-aa4a-695bf247195e", + "id": "1fb5a9d0-e3da-489f-93b8-b446f255a473", "name": "Object containing the DTO type TASK_RESULT and the job id for the task", "originalRequest": { "url": { @@ -82063,7 +82063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab053e12-8ca6-434d-9f7e-96601dd68d62", + "id": "70bfd258-4620-48ba-8730-e134558956f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82120,7 +82120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78199e84-b8c0-429e-94e0-b7684113e694", + "id": "88a1a88e-9b1d-480b-ad0d-40e7c53005fd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82177,7 +82177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c95e1589-09ec-4095-80f2-28494c1b5b92", + "id": "cfa45805-91c3-4a52-af12-f4cc1abd34f0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82234,7 +82234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d90c328e-eabb-4f81-a8c8-010e6cad38e0", + "id": "a1b4b9f1-60a7-4a0e-badd-0463dd946aad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -82291,7 +82291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc848a90-e6d4-4347-aa3d-aa19c2572b1e", + "id": "49c6c714-d61d-4197-88c1-725b6bfd2542", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82348,7 +82348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8864a68-3e4a-4e49-9545-441734784a67", + "id": "012d090a-5b69-4648-9bcd-db65ef4b61c7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82411,7 +82411,7 @@ } }, { - "id": "0f4dcf33-d723-4895-ab41-23b3d8fb5262", + "id": "dcf4f139-345c-46d4-a0bf-c1162113a429", "name": "Reset an identity", "request": { "name": "Reset an identity", @@ -82457,7 +82457,7 @@ }, "response": [ { - "id": "54b65b36-0f5b-4d8c-8fed-fce257386b37", + "id": "91b1f8bc-d1eb-4eb9-aed4-36f598a0e7aa", "name": "Accepted. The reset request accepted and is in progress.", "originalRequest": { "url": { @@ -82492,7 +82492,7 @@ "_postman_previewlanguage": "text" }, { - "id": "36b9c2da-34fd-408a-a510-c242ce68cd80", + "id": "824d3e5e-5fd4-4740-bb13-ab921357d780", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82537,7 +82537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9e11384-a600-4119-ad2a-a9d03171600d", + "id": "9f3f3c5f-1825-4b18-b391-92dfe2112707", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82582,7 +82582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d09a6000-8d30-4471-9e61-7218945f09fd", + "id": "7468425c-9a3f-462b-bc42-7db35be38ccf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82627,7 +82627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "185c1fe7-98c4-4493-81e0-bda362b59691", + "id": "bca33825-5c3d-4c39-aa77-5f469c94c49a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -82672,7 +82672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3830da4-56a0-4317-bcdb-64fca544d0a9", + "id": "5a5c4bd4-d013-4167-8cb9-d7d5c72f59d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82717,7 +82717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "445af73c-d320-4cdd-b90a-6bd1bb9e3fad", + "id": "60a6dec4-3992-4132-8314-0550e397e2ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82768,7 +82768,7 @@ } }, { - "id": "5884a948-7721-4bf8-9020-236b5267555f", + "id": "9157e69b-191c-4600-bfaf-5effa429ed4a", "name": "Get role assignment", "request": { "name": "Get role assignment", @@ -82818,7 +82818,7 @@ }, "response": [ { - "id": "146e2c2a-c8fd-4895-88d4-a9dc7c753494", + "id": "d181e0b7-d2b7-45a8-8d6a-a92c4a51fcb1", "name": "A role assignment object", "originalRequest": { "url": { @@ -82864,7 +82864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17e95e7b-67df-4f10-ac44-bfa85df0729d", + "id": "df124f95-1ee1-4a24-8b5a-9098b001d99c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82910,7 +82910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec681631-89a5-40fc-b8a7-57640b66f16a", + "id": "5bbb35ea-c1e2-4bee-bcc3-e65fe205fd6a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82956,7 +82956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5b669ec-04e0-4770-b282-8e3f7f7eb21c", + "id": "1e3d9be2-8a52-4b8a-9cc5-ac383e6e74e1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83002,7 +83002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bc8b3fe-8eec-41a3-829c-14019972f342", + "id": "8c1abd67-5245-40e2-a482-49550504f884", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -83048,7 +83048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "879a06a7-fdfe-4533-a7f2-bf6455a24ff7", + "id": "a27b0e80-7da8-4cdc-a659-4611feb5fd96", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83094,7 +83094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a951a0b7-fbe9-4f5a-94d7-bdd1ea4c9598", + "id": "f408f6ce-8230-4aab-bf30-95583cf96de1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83146,7 +83146,7 @@ } }, { - "id": "2ec77905-dcd2-457e-bc87-b1baddb58a6b", + "id": "513948ea-1835-47c2-b5d8-aff7b91a0a48", "name": "Get role assignments", "request": { "name": "Get role assignments", @@ -83207,7 +83207,7 @@ }, "response": [ { - "id": "817bbb7c-e68f-49a1-82c8-fc244ad99c85", + "id": "ff6cf34b-ef36-424a-8ff0-9989590852de", "name": "A role assignment object", "originalRequest": { "url": { @@ -83271,7 +83271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7859db23-aff2-4883-b5d8-489b12df2575", + "id": "2e6c2e70-be66-47a6-85eb-345926c89485", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83335,7 +83335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "792ae6cb-0f87-4af2-b555-37d1bed7c3a3", + "id": "9e01855d-d368-4f14-882e-cdf928c90d2c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83399,7 +83399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2c352e5-9a9f-44d6-a262-a8b189734a78", + "id": "4306b6cc-3de2-4b14-a3e4-6c8a8602f537", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83463,7 +83463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41640312-be35-4531-97f0-e512e1d15d8a", + "id": "2bceb3ed-988a-42de-a10d-cba2b1c6b0d0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -83527,7 +83527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0cc947b-3962-4232-961d-15989fc39d5f", + "id": "74e39334-892c-42d7-8679-b9ad91320580", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83591,7 +83591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "245940b1-5608-4d84-aad4-3d5b04c1d9e8", + "id": "6dfa7956-278c-49cd-8508-92fb90835878", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83667,7 +83667,7 @@ "description": "", "item": [ { - "id": "78974b26-1369-46ff-beef-f36de779611d", + "id": "e5e9b9f8-3613-4fc1-b301-b67b17fa0912", "name": "List Identity Attributes", "request": { "name": "List Identity Attributes", @@ -83733,7 +83733,7 @@ }, "response": [ { - "id": "aabac8c5-4323-4f94-8d09-616f789b24aa", + "id": "31143f63-dd34-459f-9ebe-017b0551a8ed", "name": "List of identity attributes", "originalRequest": { "url": { @@ -83813,7 +83813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52c0d020-288c-4ddf-8839-462d6b719b35", + "id": "116ddec4-ce88-41eb-b7e1-ac794e57c879", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83893,7 +83893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "336003a9-607d-4f91-bad3-3d6e22047130", + "id": "afe17e09-28a1-4d47-83da-b0431b5810a8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83973,7 +83973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99a17f9c-f8ed-4701-be71-ca890395dcd4", + "id": "28d8adb9-3f3b-4a8d-9ff3-5589ed9dc312", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84053,7 +84053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "943db2b7-286e-4121-91e8-9e9bb501dbbd", + "id": "8408775b-22e4-4a9d-895e-b0cf00c12614", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -84133,7 +84133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "822911d4-b93f-4ea7-b9ae-67cc567ae11e", + "id": "9537ac5a-b7ac-4b64-aee4-1fbb3e6645fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84219,7 +84219,7 @@ } }, { - "id": "7633d6bd-1f21-4b01-9827-568652c31adc", + "id": "71715190-cbb9-4ef8-862b-80cf0f7ac95f", "name": "Create Identity Attribute", "request": { "name": "Create Identity Attribute", @@ -84261,7 +84261,7 @@ }, "response": [ { - "id": "9d32c81b-da15-495c-b78a-ba0012136c65", + "id": "84bdf3e1-6c4a-4322-8535-a8a553a9b988", "name": "The identity attribute was created successfully", "originalRequest": { "url": { @@ -84317,7 +84317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfa2a613-d0cd-4ccf-ad21-071098690215", + "id": "0e62d505-026a-40e2-9e48-80b8b47f36bd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84373,7 +84373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3aff26c1-1e3d-44b1-aed4-d3ba648c1a2c", + "id": "1b59f74a-ad3c-453a-bc0a-489e2639fcd2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84429,7 +84429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0277e1a-05e6-40eb-94d5-f25e4fc73fc1", + "id": "899f0c83-808d-4ff6-92b1-892ddcac5c0f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84485,7 +84485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5f42ef0-a179-42a3-9265-e29597fda23b", + "id": "1b4355ca-03b2-4799-8447-83708feff1c1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -84541,7 +84541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf61818d-a6b3-42d1-a836-d00d49ee2f09", + "id": "bec2592a-f63f-4b7c-ab35-7e1808499233", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -84597,7 +84597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28003dfe-c960-417e-b303-2def9c7d650b", + "id": "152e6f5a-7664-4923-aaac-776ad44ed8f7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84659,7 +84659,7 @@ } }, { - "id": "46971400-c741-43f8-9c41-be15b1021427", + "id": "0e96e174-5989-4b5e-b292-7803d134ff94", "name": "Get Identity Attribute", "request": { "name": "Get Identity Attribute", @@ -84700,7 +84700,7 @@ }, "response": [ { - "id": "494564b1-3fa0-4a17-acd7-c12495ab7304", + "id": "3eafcebf-0d74-4ff0-be6f-b094b704d1f8", "name": "The identity attribute with the given name", "originalRequest": { "url": { @@ -84744,7 +84744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06e71bab-2995-47ed-b5eb-01e3079c2c98", + "id": "c2abe002-8a5e-4585-8f2b-93570585880f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84788,7 +84788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6397c56-be5a-4198-80b6-c5a3f421ef7a", + "id": "f742a153-8cdf-4541-b6cc-085b564e710e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84832,7 +84832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25de56f2-754c-412c-969b-dd104aaeb153", + "id": "b3263898-6d6c-44ba-b279-57f53aa145f1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84876,7 +84876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d316a7b-259a-4388-8347-4728301aaac3", + "id": "d7d31f47-c878-4566-89bc-2e695c43190d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -84920,7 +84920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46f338f4-4b01-445a-afa6-f0d367a87a0e", + "id": "18c9bed6-6537-4e62-90f1-c7ad2e8fba31", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -84964,7 +84964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c357ae6b-c2fe-4a39-9298-9b3e6a0f88e3", + "id": "4f296ac3-808e-409d-b920-309797b4defc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85014,7 +85014,7 @@ } }, { - "id": "2e3acfed-1cbc-4f61-9997-391de1d2e33e", + "id": "c4a173e0-ba05-4d51-a654-e553fe08e718", "name": "Update Identity Attribute", "request": { "name": "Update Identity Attribute", @@ -85068,7 +85068,7 @@ }, "response": [ { - "id": "b271247b-d8bb-4b5b-abf8-78be8f95c324", + "id": "dc4dd14e-ba7c-4b94-8197-2a7556bb192f", "name": "The identity attribute was updated successfully", "originalRequest": { "url": { @@ -85125,7 +85125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9731008-f150-4026-8e52-ba152ce2fece", + "id": "7b034af0-8208-437e-8e9e-c5a9ba33e902", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85182,7 +85182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11579447-4a6e-4fae-9bf1-1e96b8bd7181", + "id": "49392f2a-719e-46f6-8525-9b749136b963", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85239,7 +85239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "578a9dfa-b49d-4ff8-adee-d19d52b67b98", + "id": "17de798e-ef44-47ff-9f06-aaf522e80515", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85296,7 +85296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "caefbe21-0af2-4d9b-ab53-7fac79eda686", + "id": "0d4f17ff-ca6c-4791-aa21-d084b161b1c5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -85353,7 +85353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4744ff48-645a-458a-abf2-cc7b81c3779a", + "id": "8209445f-a43e-45f2-a3a7-0a28bd2c40db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85410,7 +85410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d67654a4-4d7f-4ddb-a2c4-e80ebe4eb2e7", + "id": "c4202b03-e4a2-4ee3-ac50-7b6084bcb7f9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85473,7 +85473,7 @@ } }, { - "id": "47e6985f-2ca0-4bc2-8245-906b9d768701", + "id": "ec546bca-1a04-433e-9358-f935922da7fa", "name": "Delete Identity Attribute", "request": { "name": "Delete Identity Attribute", @@ -85514,7 +85514,7 @@ }, "response": [ { - "id": "0c2bdeac-ca55-4d8f-88b0-c2cd2950ba77", + "id": "e7d9f076-4fde-4bee-9ba4-c6507266d974", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -85548,7 +85548,7 @@ "_postman_previewlanguage": "text" }, { - "id": "476e3c91-c5e7-4b14-95d9-62c8cbf1706b", + "id": "8e8f35d5-439e-4cda-9b80-9527952fe022", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85592,7 +85592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b0ea073-6e61-45c8-94c7-7e557445133d", + "id": "26e05493-0875-481a-884e-a02ad3bd0d44", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85636,7 +85636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "138b7b0b-83ca-4110-b3a5-3d9cb7f002ca", + "id": "71b1df7d-c3ef-4fb9-a35a-239e99a0bf12", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85680,7 +85680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9b0ac71-5329-43ee-895f-e49b0fd6ae4a", + "id": "b7406354-7298-4e2a-b9f0-c66310a20da7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -85724,7 +85724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07fe8d18-41f0-4152-8c31-bf5b42bbaf39", + "id": "84442427-251a-44a2-9f3f-01a21adc9b0f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85768,7 +85768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1549b16e-2e24-4d13-bf9f-f74db6377ae1", + "id": "0e2a4799-2fbe-4d1e-a10c-77453b5b99b5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85818,7 +85818,7 @@ } }, { - "id": "0dd85498-605c-420a-9c63-77a1974361c2", + "id": "7d089ea0-9eb4-4dd1-9ff0-f2d2a312d9de", "name": "Bulk delete Identity Attributes", "request": { "name": "Bulk delete Identity Attributes", @@ -85861,7 +85861,7 @@ }, "response": [ { - "id": "e64b9fd0-f290-4c98-996e-56ee0f353874", + "id": "51aed11b-4192-4f49-a00f-417a07e568a8", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -85908,7 +85908,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b55eb523-eb11-4267-90a4-83786ef15329", + "id": "6ad5e759-1131-44cc-92d6-df5fefdf245a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85965,7 +85965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "682a52dd-af13-462b-950e-d2c7af00d820", + "id": "f99d1faa-1a78-498c-8b1c-30fc8b924052", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86022,7 +86022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cd1dc67-8005-44d1-82d5-977c690b333b", + "id": "f8bf1156-e89b-48d4-8842-dc476ce8dfc3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86079,7 +86079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "336a0593-ade3-484b-89ac-46fd1b4ab884", + "id": "3806961f-0941-4d6b-8115-672323d0a6b2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -86136,7 +86136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71ce9938-f527-4d2d-a377-73f7c85fa076", + "id": "3a6302ef-91f3-4d3d-b9f9-8ea47ec19071", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86193,7 +86193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d58c298b-3017-46e1-807d-a3a24a1ad274", + "id": "8536af8d-c9d0-4d91-a4d4-652d351b20c6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86262,7 +86262,7 @@ "description": "", "item": [ { - "id": "7298e630-e648-44b5-ad3c-8c0c2b67455b", + "id": "01ff0f99-99f3-40be-ace2-fe0c10021378", "name": "Lists all the identities", "request": { "name": "Lists all the identities", @@ -86337,7 +86337,7 @@ }, "response": [ { - "id": "c31a9851-55eb-4416-9106-f88fe38138a2", + "id": "b0bf80db-6d12-471a-be67-0ca0868d6abf", "name": "List of identities for the customer.", "originalRequest": { "url": { @@ -86426,7 +86426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49f4c23b-0e0c-4f8c-be85-a87eaaaefc25", + "id": "41a81e27-52cb-4513-b377-d7bbc3cccf6d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86515,7 +86515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "947654e8-fc22-46ca-af08-8fea9eafc88f", + "id": "828e888c-a5fc-43af-9281-b03ea209b720", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86604,7 +86604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ab105e3-56eb-4750-8f83-15fd1af419c9", + "id": "add34d46-3fce-4bd0-b371-728f4b21f486", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86693,7 +86693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bc8891f-025e-445c-9047-85454811cade", + "id": "40aacfff-39da-4829-a11f-6ce1e387c066", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86782,7 +86782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27c4fcb7-8dab-443f-aa85-e15357cd2aed", + "id": "82301bc7-43c9-42ce-9d89-ec3c208b29d6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86877,7 +86877,7 @@ } }, { - "id": "4effc138-73aa-46f7-acef-e01871f8f120", + "id": "4210f253-4b89-437f-8333-60a6a26cf977", "name": "Get latest snapshot of identity", "request": { "name": "Get latest snapshot of identity", @@ -86918,7 +86918,7 @@ }, "response": [ { - "id": "c94cf4f4-d738-489d-a44a-dde3ad708534", + "id": "8fdaf624-8e50-4275-a430-cf8c5188657f", "name": "The identity object.", "originalRequest": { "url": { @@ -86962,7 +86962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5707d7e0-a86b-492e-90be-90d9303a2fee", + "id": "122e4b50-1d6c-4dda-81ff-9cbea1a5eb47", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87006,7 +87006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f3bbcfd-ea93-4fa1-8dc5-3a0717cf7a8e", + "id": "aba59e54-f5f8-456c-8d21-98a5b0011d8c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87050,7 +87050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b672af51-54d7-477e-9741-7f46f0e1380f", + "id": "21ba46a8-13a1-4177-a341-cbae00d44068", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87094,7 +87094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "207aaab1-7b9b-4705-a5fe-2e2fbe32fdca", + "id": "55b1d25e-f52e-4b79-a191-e7c9b8502045", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87138,7 +87138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a126dbe-7954-4ed7-80b3-f1b46cbe111a", + "id": "2d54f2ed-7537-4037-8b06-636bebf2970c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87188,7 +87188,7 @@ } }, { - "id": "4948d115-1e1f-4e49-bc54-22207b9cd4f0", + "id": "f543db6c-a773-4ba3-b2b3-58c1bd394080", "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", @@ -87240,7 +87240,7 @@ }, "response": [ { - "id": "a917827e-1bb8-47cf-8da1-1f9e7cf45b54", + "id": "be84f36a-efeb-44ce-be7b-80df49fe0cdd", "name": "Access Profile", "originalRequest": { "url": { @@ -87295,7 +87295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "defb9865-1be0-4a27-8821-351081342f63", + "id": "4d8f53e0-a6a0-4940-8802-9591c1738d0a", "name": "Account", "originalRequest": { "url": { @@ -87350,7 +87350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d863ae9b-cc3e-413d-8889-77d78ed01f89", + "id": "21047383-9704-4088-ac65-16e9031dc377", "name": "App", "originalRequest": { "url": { @@ -87405,7 +87405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4311c60-7ce7-4980-9ed6-f854fec9f18c", + "id": "99ed0738-6902-4fb0-8206-c748d798c61e", "name": "Entitlement", "originalRequest": { "url": { @@ -87460,7 +87460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e9bb495-7984-44b6-b478-c39c4c9239b2", + "id": "5e50e41d-4101-46c5-abba-8dee97d47e83", "name": "Role", "originalRequest": { "url": { @@ -87515,7 +87515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83fab9a9-ee8e-429b-b5ea-17957cca7ce4", + "id": "f16ced4d-b3e2-4012-a258-07214ed40907", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87570,7 +87570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4379771b-1b7b-4df1-be71-9d41ee7483c7", + "id": "8938a305-f2eb-4609-811a-fc7140e4e0dd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87625,7 +87625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54593c68-0386-45eb-ab5b-d4f49ef68c25", + "id": "5a9bc52a-8c0e-4eb1-84fc-ba67019f99cd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87680,7 +87680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d238f8b-5dbc-4362-bce8-110f47003517", + "id": "a1ed1d00-a903-4e3a-9bdf-a6c4d5c94acd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -87735,7 +87735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ac6aed2-fc96-434e-9a9f-b8cebfc29afb", + "id": "d4c6dd5f-142c-4a36-9907-5995a7a63eba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87796,7 +87796,7 @@ } }, { - "id": "6a394dbc-9424-4c38-b331-891c19dd2d83", + "id": "e7d3840d-a714-49f7-acbe-de73ae152101", "name": "Lists all the snapshots for the identity", "request": { "name": "Lists all the snapshots for the identity", @@ -87884,7 +87884,7 @@ }, "response": [ { - "id": "8b1ef83f-ac8d-42c9-8da7-3d03e810edb7", + "id": "f35febd7-361d-40a5-92ea-c16bdc5878a4", "name": "A list of identity summary for each snapshot.", "originalRequest": { "url": { @@ -87975,7 +87975,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf4367d3-8516-48c8-8198-e5ce6bd88d7c", + "id": "43192a7a-e904-4917-89a7-55ce9869d763", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88066,7 +88066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c14a1438-021f-4d7c-95d8-289f1ac429e1", + "id": "986e5ff1-6e20-4cfb-91ac-e97f3c91cb07", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88157,7 +88157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41afc36b-4079-4f30-bfd9-cb4e47a8a732", + "id": "d5d6593c-72fd-4511-a559-94033a6f5c6a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88248,7 +88248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c114766-03de-4cfb-a7f9-1f7b64588c3b", + "id": "ce7c2503-d7de-4169-8299-3224c88c7a3c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -88339,7 +88339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acb70270-1864-4a77-ac2c-62ec5c37c88b", + "id": "d81627b6-7e1b-4541-b87a-6337657802a9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88436,7 +88436,7 @@ } }, { - "id": "5d289333-94c0-4aee-b665-4312b855cf7a", + "id": "131d503c-9f13-4fa1-92f1-a1dd8801adcd", "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", @@ -88533,7 +88533,7 @@ }, "response": [ { - "id": "f1f0cece-f934-42c5-8d54-e67655f66a8d", + "id": "f8b0ea02-e0ef-409d-b51a-db3ca0aa34f8", "name": "A summary list of identity changes in date histogram format.", "originalRequest": { "url": { @@ -88633,7 +88633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4ee0951-c55f-4ce8-b438-d1cc3ba1cc79", + "id": "3482de58-97c7-431a-bc9d-043ef6aa4ad2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88733,7 +88733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f31b4c08-c41d-48e3-b481-49e8acd2edbd", + "id": "7d1eb854-7b3a-4e65-847c-20ae90d092b6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88833,7 +88833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33c5915d-b510-4d75-acaa-5d267a42d167", + "id": "299530be-9d54-4464-a2ef-9a0050196f51", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88933,7 +88933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29257e1b-15ad-425f-92d7-93d1e6345562", + "id": "0bb075f9-bdac-4a90-8e53-c825bfd02898", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -89033,7 +89033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8473ff6-9e3c-4bf3-8f63-961d0a8e0d26", + "id": "ae504cee-0462-47b7-98eb-e8341f74d768", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89139,7 +89139,7 @@ } }, { - "id": "d6886b81-9e14-4e75-aa64-1e9612c164bb", + "id": "d1cd50fc-ccd5-4379-8e60-615d54ab49da", "name": "Gets an identity snapshot at a given date", "request": { "name": "Gets an identity snapshot at a given date", @@ -89192,7 +89192,7 @@ }, "response": [ { - "id": "a5c33555-5a96-4642-b2ca-5979f7057159", + "id": "6bb5234d-586c-49ed-8ba9-9b5c9357a4cf", "name": "The identity object.", "originalRequest": { "url": { @@ -89238,7 +89238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f45b24cb-d8cb-40f6-94dc-c8bd5d94cf3f", + "id": "46ea1149-95e9-4a46-a77a-a3c24edb2a3a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89284,7 +89284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89c24b6a-572d-4c7f-8100-9f0e43740f99", + "id": "4e6bd742-0800-4798-b98d-b5284b2038ac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89330,7 +89330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fded4d1a-994a-48b7-acae-faf83ba16291", + "id": "5d8de30a-0fa7-458f-9754-a0432711810b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89376,7 +89376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "668c14e8-a512-4bf1-9fd4-b00dccb8a9ac", + "id": "e6389f06-fb21-4077-8569-e7d7092756db", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -89422,7 +89422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3405bda2-af1b-428c-ac9a-b76899ef81f0", + "id": "4a04d1e7-89bf-43be-bde0-2f8650540848", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89474,7 +89474,7 @@ } }, { - "id": "ae1e5953-eb53-4c43-bd56-a3cdd20518ab", + "id": "140c01ea-2ca9-4b22-a0b5-56e627e11cef", "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", @@ -89538,7 +89538,7 @@ }, "response": [ { - "id": "0e8b021e-11bd-487c-b753-ab8f22a08128", + "id": "f21496ac-cf7f-4398-a3d2-3cf4e7772f62", "name": "Access Item AccessProfile Response", "originalRequest": { "url": { @@ -89595,7 +89595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51c24eae-4456-430c-8f3f-d75c2c41066a", + "id": "2a084b8e-2d02-405c-a211-c88b2c1875c1", "name": "Access Item Account Response", "originalRequest": { "url": { @@ -89652,7 +89652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d872f13b-bfee-4026-b11c-ac488d55dae6", + "id": "bc20ca66-be3c-4c4e-beb6-853c22a0a83c", "name": "Access Item App Response", "originalRequest": { "url": { @@ -89709,7 +89709,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25e8aa4b-fedb-4260-be48-fead76f45777", + "id": "6934d891-e37b-4c2b-b947-ec0c1f8c98a8", "name": "Access Item Entitlement Response", "originalRequest": { "url": { @@ -89766,7 +89766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a32f951-516b-4632-b50e-6badf4651ea3", + "id": "716e829b-88b9-4570-84eb-3546c8c94703", "name": "Access Item Role Response", "originalRequest": { "url": { @@ -89823,7 +89823,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df95c511-8535-47be-8b6e-756f70474251", + "id": "355f1770-5978-4e55-aae8-ddedc50e650b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89880,7 +89880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baafcb7e-5299-4e96-beac-8040c2bc6bc0", + "id": "d4223ef9-8f80-4bf1-abf3-ba49ad0d0593", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89937,7 +89937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd70c571-4dd2-4437-bb54-c991b6274887", + "id": "48f793b1-835a-4d75-b155-a4e45aedde1f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89994,7 +89994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9fa68bd-7643-4102-b0e0-8bddca6d17ab", + "id": "e9c1d07c-217d-45a5-8828-377c8c24bbe9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -90051,7 +90051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "872756e1-42be-49c0-81b0-71c8aaeb4448", + "id": "f54bfb51-31fd-4985-9946-dd3bc7612248", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90114,7 +90114,7 @@ } }, { - "id": "17fda779-0fd7-4390-aab7-0addb9f60ecb", + "id": "86c3ff8e-d8e6-480b-9563-7170ffd8a456", "name": "Lists all events for the given identity", "request": { "name": "Lists all events for the given identity", @@ -90229,7 +90229,7 @@ }, "response": [ { - "id": "81aacdf8-72bd-44f8-bad9-f0c44713c834", + "id": "e96fb3af-ca89-4a5c-9482-4b6bb466d03d", "name": "AccessItemAssociated", "originalRequest": { "url": { @@ -90329,7 +90329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccd25617-cf5f-4173-8939-ab146bdb9f1a", + "id": "02559bfa-ca47-423d-b74b-a871a879618b", "name": "AccessItemRemoved", "originalRequest": { "url": { @@ -90429,7 +90429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15a55696-ad0d-4ce1-bac4-4027528df480", + "id": "46d07944-1892-405d-80c6-77c0f1fdaa95", "name": "AttributesChanged", "originalRequest": { "url": { @@ -90529,7 +90529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62b2956c-9a96-47d0-80f8-389a9525d785", + "id": "69552e98-f824-4534-a488-1198b6a96ad5", "name": "AccessRequested", "originalRequest": { "url": { @@ -90629,7 +90629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b71addc1-48e8-4c32-a561-95979b95156a", + "id": "ac454700-ee24-420a-90ca-b020f5372fe8", "name": "IdentityCertified", "originalRequest": { "url": { @@ -90729,7 +90729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b8c8ff0-2d18-47b2-ad05-04baec118327", + "id": "e6e8fd04-14c8-4a14-8cef-2f616f2f38e3", "name": "AccountStatusChanged", "originalRequest": { "url": { @@ -90829,7 +90829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "952e7322-164e-4ad6-a26f-ada9acf1bb78", + "id": "efa5c935-d538-44a1-983a-d880620fa1d5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90929,7 +90929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ea3479f-7fe0-47c3-9be2-197c3278cfe4", + "id": "8f2e3e53-d9a4-4fd1-9948-cabcb533d723", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91029,7 +91029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1eca462f-1e99-43fe-99cc-8ec824d7cece", + "id": "6afe0a17-0a04-4d02-be0f-8b410281c6c1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91129,7 +91129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33182ff1-9c26-400f-a44b-55ac588addc0", + "id": "71dfcdab-711d-4498-8efb-484a5b60fae5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -91229,7 +91229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "800a7a03-62b7-4a99-82f9-58a66852c072", + "id": "9e4f228f-9dcc-40dd-b010-d6d0bbc4c672", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91329,7 +91329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3135f2f-1d70-4e61-b3ec-2b2be02cf55b", + "id": "7b834343-240e-4480-a26a-5ffba10d15d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91435,7 +91435,7 @@ } }, { - "id": "5294b7fb-479a-4b06-a14a-890bc121cc78", + "id": "7e1816e2-9adb-4c6e-9079-d6364be44f94", "name": "Gets the start date of the identity", "request": { "name": "Gets the start date of the identity", @@ -91477,7 +91477,7 @@ }, "response": [ { - "id": "c2dd6eb4-67f4-4f95-a631-16075b5ccffb", + "id": "9e9318cc-8343-41ee-ae8e-84dfc4463c60", "name": "The start date of the identity", "originalRequest": { "url": { @@ -91522,7 +91522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56ee63a8-4d24-46b2-9a45-f41bcff985d0", + "id": "092e7463-ccca-489d-b729-d1e2a0de4654", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91567,7 +91567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "443233f1-f738-460c-841b-45381fe5cfd9", + "id": "23e62c22-d0dc-4d38-9ae4-700f4c6e5960", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91612,7 +91612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df34ebd2-1215-40d7-bb50-368570215777", + "id": "67cb0168-028c-495c-bc3d-2a6f43bcf218", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91657,7 +91657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9f26bfb-5232-4b89-bfdc-03e2e7aa1280", + "id": "ff7f6106-89a4-4906-be8d-0a583ba69b1e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -91702,7 +91702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7320bd69-9c0a-4dfb-9d7f-3bdc15437585", + "id": "6cd898f0-2681-418d-8512-19b092d47193", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91753,7 +91753,7 @@ } }, { - "id": "2f122c30-6c18-4a8a-adb6-1b7890aa67a9", + "id": "872a8248-26c6-47b6-bbaf-87206af16702", "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", @@ -91796,7 +91796,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "nulla dolore" + "value": "irure in laboris qui" }, { "disabled": true, @@ -91805,7 +91805,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "sunt" + "value": "voluptate ipsum culpa dolore sint" }, { "disabled": true, @@ -91859,7 +91859,7 @@ }, "response": [ { - "id": "6f1e838b-4a87-4810-a699-fa5d3cff23ff", + "id": "27c44544-25fc-4de4-b76f-6eadae80a6c2", "name": "A IdentityCompare object with difference details for each access item type", "originalRequest": { "url": { @@ -91897,7 +91897,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "sunt" + "value": "voluptate ipsum culpa dolore sint" }, { "disabled": true, @@ -91959,7 +91959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dcb2b90-47c2-476d-8473-048beb564fa7", + "id": "a52cddcf-f35f-4d95-aee3-adec70945bc8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91997,7 +91997,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "sunt" + "value": "voluptate ipsum culpa dolore sint" }, { "disabled": true, @@ -92059,7 +92059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79f4cd1e-8b63-46c5-84e7-5b6813d21b94", + "id": "2ac2dd4e-66f0-44b7-b30d-b7322ade6a49", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92097,7 +92097,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "sunt" + "value": "voluptate ipsum culpa dolore sint" }, { "disabled": true, @@ -92159,7 +92159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30b9143a-a3a2-4bfe-8157-237f20157554", + "id": "676fc8d5-35b5-4685-b19c-e8f20ec03b43", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92197,7 +92197,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "sunt" + "value": "voluptate ipsum culpa dolore sint" }, { "disabled": true, @@ -92259,7 +92259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c34fdef8-4c3a-4e10-ab30-c15f78f81f8f", + "id": "464c6d8a-25f7-4df3-afa4-afb0c93a9de6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -92297,7 +92297,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "sunt" + "value": "voluptate ipsum culpa dolore sint" }, { "disabled": true, @@ -92359,7 +92359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4467337-f0a7-421f-abf4-d3b43b79b496", + "id": "141f3a08-7382-4f91-b19b-3e3e2fc0b05f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92397,7 +92397,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "sunt" + "value": "voluptate ipsum culpa dolore sint" }, { "disabled": true, @@ -92465,7 +92465,7 @@ } }, { - "id": "35924f4e-8963-41dc-b976-69e1d8e674da", + "id": "6647296e-33f5-4f70-ab7e-02f363b2449c", "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", @@ -92577,7 +92577,7 @@ }, "response": [ { - "id": "4044c992-bf1e-423b-9ccc-8aa03e3d0fef", + "id": "8a4ceb0f-7856-4b68-a97f-e8043d17c774", "name": "A list of events for the identity", "originalRequest": { "url": { @@ -92678,7 +92678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65bc77ea-8541-4be2-982e-a9eeaea212cd", + "id": "21f8ca15-4e40-4f54-940f-23f4d7e66862", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92779,7 +92779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39a06154-5f3d-492d-938e-1877bb733764", + "id": "2e161762-fe3b-41bf-abac-1db2314b738b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92880,7 +92880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1c7d3b4-a746-426d-a145-834870d657c8", + "id": "f6262f2b-9714-4ba6-bdb6-c3c3562d0361", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92981,7 +92981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf6b64d4-21ad-42dc-aac4-25321f14b6d1", + "id": "d43eebfc-3251-4ff6-afe7-5bf7802aed66", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -93082,7 +93082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bc0ec7c-3e93-4ebc-b32f-6e235f42483c", + "id": "f6b3f2e6-7790-466d-ad0a-a5280f23723f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93195,7 +93195,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": "91f9a035-c669-4ce3-9c8b-7b9695104845", + "id": "4c7be293-19ae-453c-af40-5ed86c520867", "name": "Identity Profiles list", "request": { "name": "Identity Profiles list", @@ -93270,7 +93270,7 @@ }, "response": [ { - "id": "0e598738-0565-44b1-b2d5-39eedd9deb98", + "id": "c2a7e9d8-53ba-4b6b-9422-b2468de44c08", "name": "List of identityProfiles.", "originalRequest": { "url": { @@ -93354,12 +93354,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\": \"cda2ca43-86a8-014e-8ba0-8dc7cd570980\",\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\": \"urn:uuid:b3391f47-e466-f77d-5924-f821bfb039b8\",\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\": \"f3ba75bb-8089-2ed1-d6b0-26f01ad089a0\",\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\": \"urn:uuid:791648b5-126c-a564-95db-c1411e16f261\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "54c24aa3-7ceb-4fa8-ad36-f10f5d137d5a", + "id": "3d00a572-f02a-45a2-8e72-f78f10d6596b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93448,7 +93448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d12f0b42-5904-4687-9953-1eb2a843a038", + "id": "6a2f61bc-cfa1-4fff-861f-d46b2d4d152f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93537,7 +93537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ad48d5e-c96e-4ba0-b419-0ca000f940e9", + "id": "b7d05da2-ea1d-4cbf-b555-af399c7d48c4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93626,7 +93626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e3537a4-3851-4607-99fd-52dc5aea2063", + "id": "94186ac2-2df5-489a-8fda-17e0e58ba141", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93715,7 +93715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "838e78af-30b1-4d7d-9651-ad2c10b1854f", + "id": "4f8071e7-429a-4917-bfe8-90dcdf5770d8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93810,7 +93810,7 @@ } }, { - "id": "61c4ebe3-032d-40e0-930b-7f57dc9f9aa1", + "id": "c92069a7-6cf9-4571-8374-1a848487ee97", "name": "Create an Identity Profile", "request": { "name": "Create an Identity Profile", @@ -93841,7 +93841,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\": \"21e62507-312b-68b3-c365-83cca131d5ab\",\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\": \"3f893391-57b6-a214-8dfd-3aa321a691d6\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -93852,7 +93852,7 @@ }, "response": [ { - "id": "60e0d7df-40f0-4f3a-a47f-90ef66a6a836", + "id": "9c6fe0a5-a5b0-4ed1-b82d-e3447d91f9e6", "name": "The created Identity Profile", "originalRequest": { "url": { @@ -93886,7 +93886,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\": \"21e62507-312b-68b3-c365-83cca131d5ab\",\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\": \"3f893391-57b6-a214-8dfd-3aa321a691d6\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -93903,12 +93903,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\": \"21e62507-312b-68b3-c365-83cca131d5ab\",\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\": \"3f893391-57b6-a214-8dfd-3aa321a691d6\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "09d42f4a-ce6a-4877-87f3-a392b4981502", + "id": "6cfb6207-0d3f-4187-82af-71a8b7abfbeb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93942,7 +93942,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\": \"21e62507-312b-68b3-c365-83cca131d5ab\",\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\": \"3f893391-57b6-a214-8dfd-3aa321a691d6\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -93964,7 +93964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98a007d9-57da-4a9e-a6ae-34f30df94585", + "id": "115e649e-3162-4a3d-b887-7558964e13a7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93998,7 +93998,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\": \"21e62507-312b-68b3-c365-83cca131d5ab\",\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\": \"3f893391-57b6-a214-8dfd-3aa321a691d6\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -94020,7 +94020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c6e3d3d-a3c4-422c-a294-e8f3d47d7774", + "id": "7f7770ee-6698-490f-bf54-3ded064c20a7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94054,7 +94054,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\": \"21e62507-312b-68b3-c365-83cca131d5ab\",\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\": \"3f893391-57b6-a214-8dfd-3aa321a691d6\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -94076,7 +94076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea379c63-bd01-4edb-ac98-2e2cb2840ca8", + "id": "4b155035-dcdd-45f1-ab07-a403c3eae4b9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94110,7 +94110,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\": \"21e62507-312b-68b3-c365-83cca131d5ab\",\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\": \"3f893391-57b6-a214-8dfd-3aa321a691d6\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -94132,7 +94132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28ff770f-d466-4b8d-a221-3459ddd828aa", + "id": "28f7faa2-c5d8-488c-b90a-d8ea20977eea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94166,7 +94166,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\": \"21e62507-312b-68b3-c365-83cca131d5ab\",\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\": \"3f893391-57b6-a214-8dfd-3aa321a691d6\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -94194,7 +94194,7 @@ } }, { - "id": "343f8917-f630-46b6-9757-b70ed57a28b4", + "id": "a0818a5b-ead1-44fd-ba1b-8ede2c24f492", "name": "Delete Identity Profiles", "request": { "name": "Delete Identity Profiles", @@ -94237,7 +94237,7 @@ }, "response": [ { - "id": "c43cd33f-6419-48a3-97b6-5504e1039b46", + "id": "681be2da-65a6-4491-a6c0-d163ab669c34", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -94289,12 +94289,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\": \"2006-11-28T23:38:50.583Z\",\n \"launched\": \"2024-01-17T10:13:40.753Z\",\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\": \"2012-11-11T00:09:03.968Z\",\n \"launched\": \"2013-06-09T07:39:17.240Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8b724563-82f0-4309-8085-92d70133db01", + "id": "a925a1f8-01d9-4748-bf1b-c9af03fb944c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94351,7 +94351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66a7c776-daa5-4d3c-a671-9cfbcf23dc93", + "id": "bdb86798-d53a-4bf6-aedb-ad8641e3018b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94408,7 +94408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f050cee-22b3-41d8-99bc-d18dfd8fe4d1", + "id": "27849621-6c47-41b5-b8fd-9055c5002fff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94465,7 +94465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b797768e-e962-4f6d-9656-0a74badf4b06", + "id": "3efc06af-bc01-497c-a49a-6fef33809d54", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94522,7 +94522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76072472-a56c-4caa-a637-034d4acef571", + "id": "c4933aaf-20d4-41ee-b162-1bfdc4177a86", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94585,7 +94585,7 @@ } }, { - "id": "19d0fa03-e6d6-4202-9ced-6523adb784fc", + "id": "76a6a856-ae8f-4397-ba39-874d08ac1ec7", "name": "Export Identity Profiles", "request": { "name": "Export Identity Profiles", @@ -94661,7 +94661,7 @@ }, "response": [ { - "id": "1d60c2e5-a8ef-48fb-998d-e34aa65d30eb", + "id": "de6f7ace-383f-4e82-a002-ebd406c1b381", "name": "List of export objects with identity profiles.", "originalRequest": { "url": { @@ -94751,7 +94751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6dd8e74e-55eb-478d-8c8a-7831418b1688", + "id": "5df28b75-5099-4bf6-b084-82a625dbcc55", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94841,7 +94841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd3a5333-289a-4a9b-9282-7b818543ca9a", + "id": "9cd843e8-9786-4245-949e-12fd741276f7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94931,7 +94931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfd4c799-85bb-483a-b560-a35cd405f481", + "id": "5030ce6f-64b8-4908-b60c-1a62c7258a5b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95021,7 +95021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4860f44-a106-414b-a742-3b473b4d918c", + "id": "d059c5b2-2cb7-4811-8b32-3cc1292a974f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -95111,7 +95111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "164e0a4a-eb72-4203-9f74-432093328f2b", + "id": "c57d86de-bf33-4add-bac4-09547d55a606", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95201,7 +95201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b5dcebc-4ea3-4393-916b-7ff256c9a570", + "id": "e41b4071-009c-4547-a49b-cd2daa5b3cdd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95297,7 +95297,7 @@ } }, { - "id": "055590c9-f878-4181-9c90-f13ce92bb421", + "id": "5bde3f11-9c90-4cce-bc9c-a8f0dcec1e7b", "name": "Import Identity Profiles", "request": { "name": "Import Identity Profiles", @@ -95340,7 +95340,7 @@ }, "response": [ { - "id": "9a7245f0-4494-47c7-9464-20f5e3b132de", + "id": "395e21a6-da23-46ee-afb2-e17fb7403efe", "name": "The result of importing Identity Profiles.", "originalRequest": { "url": { @@ -95392,12 +95392,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 \"nostrud_7d\": {},\n \"officiac\": {},\n \"sit_8f\": {}\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 \"velit61a\": {}\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 \"cillum5\": {},\n \"dolore_c\": {},\n \"fugiat5\": {}\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 \"do_e\": {}\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 \"eiusmod_d\": {},\n \"cupidatat_80\": {},\n \"labore_f1\": {}\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 \"pariatur6\": {},\n \"quic3f\": {}\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 \"laborum_17a\": {},\n \"pariatur1d4\": {},\n \"eac65\": {},\n \"adc\": {}\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 \"fugiat9\": {}\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 \"ut_a9\": {},\n \"Excepteurc_\": {}\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 \"est52\": {},\n \"sint_c1\": {}\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 \"nulla_9\": {},\n \"commodo_abf\": {}\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 \"tempor_3\": {},\n \"magna3e\": {},\n \"ex_060\": {}\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": "710a28a2-c8d5-4865-a04e-646877c01d2a", + "id": "086dbc58-df15-4069-a692-60f2db6b81ca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95454,7 +95454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "084adb48-01d0-4f1d-921e-b6ca705a37dd", + "id": "b5add672-d026-4499-a6d0-3e79a7f9bebc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95511,7 +95511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbe7e442-d7fc-4b8f-98fd-74451965ec51", + "id": "91af0777-ae91-4e7d-821a-e819e069c123", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95568,7 +95568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0902533-ba77-46ca-befb-da572cffe2f1", + "id": "514175ac-d272-41a9-a0e8-08ebb79f95dc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95625,7 +95625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38011b47-fb46-4b73-bb93-4db5f0e3023e", + "id": "6c787875-2e08-43d5-8d0f-bf4512d34d4f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95688,7 +95688,7 @@ } }, { - "id": "4bbac1a7-cf97-4881-b6f8-fd4d3ca5fa49", + "id": "0be929d6-c8ca-4764-ac53-18322fb10425", "name": "Generate Identity Profile Preview", "request": { "name": "Generate Identity Profile Preview", @@ -95720,7 +95720,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:eab43e83-2c01-2399-f096-3a55f622c2cd\",\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:bb234493-2598-af59-c043-212eebbd995f\",\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", @@ -95731,7 +95731,7 @@ }, "response": [ { - "id": "3b792f2c-2e5d-4f85-88c5-da69f312d76e", + "id": "87595c56-f4e3-4745-81ab-4b1b2fe7f527", "name": "Object representing the preview object with all of the identity attributes using the current mappings.", "originalRequest": { "url": { @@ -95766,7 +95766,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:eab43e83-2c01-2399-f096-3a55f622c2cd\",\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:bb234493-2598-af59-c043-212eebbd995f\",\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", @@ -95788,7 +95788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0256020-cbaf-4b6a-8ac7-8fac67579dcd", + "id": "9ff13cdc-291a-4007-8e3f-6194f5fad3be", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95823,7 +95823,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:eab43e83-2c01-2399-f096-3a55f622c2cd\",\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:bb234493-2598-af59-c043-212eebbd995f\",\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", @@ -95845,7 +95845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4425f7f2-d0cb-454d-83f2-e11229cf72d2", + "id": "6979def2-d8ac-4ccc-bae7-1f3f37b39aa9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95880,7 +95880,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:eab43e83-2c01-2399-f096-3a55f622c2cd\",\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:bb234493-2598-af59-c043-212eebbd995f\",\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", @@ -95902,7 +95902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4e6c81f-d12f-497b-aeeb-bc7b15343e27", + "id": "435a3077-f5d7-4e8a-97f9-acbb2af99f64", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95937,7 +95937,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:eab43e83-2c01-2399-f096-3a55f622c2cd\",\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:bb234493-2598-af59-c043-212eebbd995f\",\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", @@ -95959,7 +95959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c89fbcc2-1ef5-4e8d-afb1-a400976370dd", + "id": "82c4eca6-43c1-411e-81f6-2af973535422", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95994,7 +95994,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:eab43e83-2c01-2399-f096-3a55f622c2cd\",\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:bb234493-2598-af59-c043-212eebbd995f\",\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", @@ -96016,7 +96016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93fc4a96-977a-45a9-b0f0-37d14922be83", + "id": "88a8a788-fd35-4208-9fad-48c8619d8dc3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96051,7 +96051,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:eab43e83-2c01-2399-f096-3a55f622c2cd\",\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:bb234493-2598-af59-c043-212eebbd995f\",\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", @@ -96079,7 +96079,7 @@ } }, { - "id": "767f66d4-edf7-4e32-8d24-a8f7764d905a", + "id": "c08595b7-a3dc-4caa-9a67-916180d9657a", "name": "Gets a single Identity Profile", "request": { "name": "Gets a single Identity Profile", @@ -96120,7 +96120,7 @@ }, "response": [ { - "id": "8d1af789-409f-46fd-ae5e-f9405f43dde9", + "id": "16ad5cfe-258a-4148-9764-2e6ca2a970f7", "name": "An Identity Profile object", "originalRequest": { "url": { @@ -96159,12 +96159,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\": \"21e62507-312b-68b3-c365-83cca131d5ab\",\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\": \"3f893391-57b6-a214-8dfd-3aa321a691d6\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "16579a16-e1d5-4ae8-8725-9f6d33ae119b", + "id": "649757a6-2acf-4405-99fb-0ba8962a4f38", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96208,7 +96208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d786011-ecbb-4ca5-8e60-c81fcf71743f", + "id": "96bc1bf0-82a0-499e-a1cf-6e1b526f6bc2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96252,7 +96252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cea3567-26ca-4df7-8e46-6015d3105960", + "id": "886cb9f7-8ee1-47ea-844d-64641e5f2dd7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96296,7 +96296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57cb652c-fd22-4398-a1d6-501b84e8e82d", + "id": "e89fe6b0-24d5-4f9a-80f7-1ca03f10765b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -96340,7 +96340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c7cc2ed-d384-4ee2-bac5-d0f65c15c939", + "id": "8a61228b-0cdc-42ac-ab34-669b9bb81d16", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96384,7 +96384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5507ab73-3852-48fe-9781-ac75fc5fc882", + "id": "be5b94b7-bdd6-48fb-a385-52f092084277", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96434,7 +96434,7 @@ } }, { - "id": "d68181af-ef1a-40d7-b2e3-cb4e8f0171d0", + "id": "179f22b9-a7d0-4d37-b8ba-04c24e6346ea", "name": "Delete an Identity Profile", "request": { "name": "Delete an Identity Profile", @@ -96475,7 +96475,7 @@ }, "response": [ { - "id": "37411da3-2c1b-427f-aeb0-0b1bc28a9b75", + "id": "cb03446d-101e-45ba-9b55-262c31112f75", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -96514,12 +96514,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\": \"1996-05-24T10:13:15.970Z\",\n \"launched\": \"1954-02-09T16:37:22.520Z\",\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\": \"1974-02-17T09:12:51.873Z\",\n \"launched\": \"1955-07-24T02:18:48.379Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9a9fa6ce-5849-4b49-ab03-aed45372de47", + "id": "52653410-1288-4fb7-bb7e-93013dfd971c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96563,7 +96563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6f3ee2e-d8a0-40ad-985e-a0b2858986f8", + "id": "ecc5c8b9-866d-4b4d-9269-d9640ab8bf5f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96607,7 +96607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9475be2-db21-49f2-a61e-5640eda44795", + "id": "fa22d2f6-9f12-4383-8bf9-1ae8946805f9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96651,7 +96651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bc2864d-d485-4811-bddb-85763127c841", + "id": "ab61e6f4-667f-441d-83de-956f0e8943cd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -96695,7 +96695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbb0d7dd-dcb6-4cdb-9f01-0e204c1f018f", + "id": "6d11629b-3ece-4f37-ac9a-96849178b2e3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96739,7 +96739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85208590-e1f6-405a-a008-7bfc1a914233", + "id": "d26d3f6d-3802-4510-aa65-6192de497e2b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96789,7 +96789,7 @@ } }, { - "id": "675001c0-9875-471b-9589-b6d5bffd93a5", + "id": "211bad95-2213-4a54-98d4-fb331fe62993", "name": "Update the Identity Profile", "request": { "name": "Update the Identity Profile", @@ -96843,7 +96843,7 @@ }, "response": [ { - "id": "68436c2d-7444-47f9-b394-7c7ad78ba941", + "id": "805e04fc-229d-40cb-82c1-3d94ab14734a", "name": "The updated Identity Profile.", "originalRequest": { "url": { @@ -96895,12 +96895,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\": \"21e62507-312b-68b3-c365-83cca131d5ab\",\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\": \"3f893391-57b6-a214-8dfd-3aa321a691d6\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5e9ab96d-8b75-400a-9efd-3fbfb386510f", + "id": "89aebb81-d170-4092-805a-6d591fbb251e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96957,7 +96957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db0d787a-e531-476e-b34c-52e84f452ce8", + "id": "8ed9bf42-dd0e-4adb-bd82-39adb360dad3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97014,7 +97014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21325aa3-ee12-4a30-9a01-23c1001975d6", + "id": "8d6e9ba0-25d9-4323-8d97-c66cb4b4e34b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97071,7 +97071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbb43889-96d7-40d4-b60b-7597c47743d7", + "id": "69161ff8-bb0a-4aac-baad-1616f511eed3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -97128,7 +97128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7eddabc4-25d2-431d-b2ea-1a3638ee2a5e", + "id": "19820aa9-ebd6-47d2-93a2-56dde236e68b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97185,7 +97185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "571efba4-262c-4d58-bf5b-393987fa651d", + "id": "8550b3bc-3f33-429e-96b5-0f3e2646a768", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97248,7 +97248,7 @@ } }, { - "id": "580c7763-fa66-4281-b4fb-e78477698578", + "id": "472cb3d9-291e-4974-82b1-798cdd14bdbe", "name": "Default identity attribute config", "request": { "name": "Default identity attribute config", @@ -97290,7 +97290,7 @@ }, "response": [ { - "id": "70aa56bd-29f5-4811-ac5b-474993e09a18", + "id": "a96b915e-87e8-4a9c-8ebc-312da8070ceb", "name": "An Identity Attribute Config object", "originalRequest": { "url": { @@ -97335,7 +97335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "227c3f47-8268-4b7e-87ee-7e1131bdf33c", + "id": "07d61ac4-6290-4a28-b62a-97d58ae79f44", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97380,7 +97380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ac3555e-27d5-429f-b140-10294bdfcc8c", + "id": "3c9903f7-1b3a-4bef-9048-e0ad3189b3ba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97425,7 +97425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ee1e293-bfec-4245-b2bb-5aa1ca2678be", + "id": "2a39c12b-3407-4c98-ab0f-07f0d7ad3d42", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97470,7 +97470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2643940b-9359-4ab5-84e0-229d2ab6f0db", + "id": "1ec1e6c0-aecd-4e87-b3c7-6eed438136c4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -97515,7 +97515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b49457d-b677-4b65-a2dd-502882c12fd8", + "id": "1aa572cd-d5f8-40ec-9f4a-2110410d6f17", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97560,7 +97560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a287f4e-0a14-4e70-bd1d-3bca3e6ace7d", + "id": "45708cd7-27ce-446a-a5a5-0fd210cd84d2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97611,7 +97611,7 @@ } }, { - "id": "f8b2f3a2-b459-4a83-9969-635194ef704b", + "id": "98c1e587-e977-44e1-9906-e28c0818ace4", "name": "Process identities under profile", "request": { "name": "Process identities under profile", @@ -97653,7 +97653,7 @@ }, "response": [ { - "id": "e667b40a-e569-40b0-a430-ef5fa2a8205a", + "id": "101d1e37-317f-417c-b198-a4c752b86c0a", "name": "Accepted status after refresh has launched", "originalRequest": { "url": { @@ -97698,7 +97698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6d922a0-7850-48fe-83c7-dd1aa2d2e6ed", + "id": "1445231c-32a7-4c3f-be40-dddfd2ce2cca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97743,7 +97743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd48cd75-a60f-4780-9ade-65cc568f23f6", + "id": "715fe79d-bc52-4116-9716-85488d20bc61", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97788,7 +97788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c9779b2-9749-4e93-aea4-30644ef52339", + "id": "b160a402-7432-4087-8d8b-e56631eb1c8d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97833,7 +97833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdca8ba2-50ea-4697-a072-7137ce80664f", + "id": "f971eba5-5c0e-4bd1-8a32-ac31f66e22bd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -97878,7 +97878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f21cef77-4a98-455c-b7fd-116173645b94", + "id": "c00fa982-347a-4d00-bb1f-ebef48ed547f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97923,7 +97923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "424a91d0-303e-4b2b-8728-5c4f0ca6ae04", + "id": "a688b5d1-9bc4-4949-833c-730712baee19", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97980,7 +97980,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": "02704b38-e01a-4c5a-8067-eaac65ba8a25", + "id": "0909c55f-68c2-4fc7-9fc2-d0dd3a51d246", "name": "Lifecycle State", "request": { "name": "Lifecycle State", @@ -98002,7 +98002,7 @@ "variable": [ { "type": "any", - "value": "sed nisi sunt qui", + "value": "Lorem", "key": "identity-profile-id", "disabled": true, "description": { @@ -98012,7 +98012,7 @@ }, { "type": "any", - "value": "sed nisi sunt qui", + "value": "Lorem", "key": "lifecycle-state-id", "disabled": true, "description": { @@ -98033,7 +98033,7 @@ }, "response": [ { - "id": "0be907a4-6a1b-4e85-ad07-64159f93770a", + "id": "f19229c9-90f9-43a3-b2b8-dab94cdea020", "name": "lifecycle-state", "originalRequest": { "url": { @@ -98079,7 +98079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c46ce7f7-3cf7-4393-873f-f76cb3a26544", + "id": "e4f9fd35-b320-4530-8cd8-928c8da1829c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98125,7 +98125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8810841-940c-46c5-9678-be9154135941", + "id": "e68c2daa-b929-4d12-8130-0cdd4f198735", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98171,7 +98171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "178822f5-dd9d-4204-b749-e25fcf4d669e", + "id": "44da4925-97cc-4bfa-9e52-434cd74f8c60", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98217,7 +98217,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc74a132-b933-4aa5-b9ad-8e8284bb43bd", + "id": "a3f483af-335f-42ef-9b54-2ea7677df2e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98263,7 +98263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8690f118-889b-4c6e-b108-ebb097484cf7", + "id": "a7801876-775c-4b54-bfcf-4ccbbcd701c7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98315,7 +98315,7 @@ } }, { - "id": "577606ca-644a-4802-9ac6-8b7fdb49d9b3", + "id": "ca65c938-86e5-470c-aa7e-6f4c57998472", "name": "Update Lifecycle State", "request": { "name": "Update Lifecycle State", @@ -98337,7 +98337,7 @@ "variable": [ { "type": "any", - "value": "sed nisi sunt qui", + "value": "Lorem", "key": "identity-profile-id", "disabled": true, "description": { @@ -98347,7 +98347,7 @@ }, { "type": "any", - "value": "sed nisi sunt qui", + "value": "Lorem", "key": "lifecycle-state-id", "disabled": true, "description": { @@ -98381,7 +98381,7 @@ }, "response": [ { - "id": "9de6edd7-3984-46ec-8626-5643f6fc0292", + "id": "1889af16-5d60-4f97-8b10-35993301790a", "name": "Updated lifecycle-state.", "originalRequest": { "url": { @@ -98440,7 +98440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c26d2bf-e9e3-4ddc-95e2-457391af5606", + "id": "387b39d7-c2af-46b0-99ff-020f57fddcf4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98499,7 +98499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddd488f2-b0bd-494e-bfe5-557074d2bdfb", + "id": "3645fe7e-137d-4e7b-b687-fbda10de6412", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98558,7 +98558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "471d9549-1407-4797-b069-7fd100bd429e", + "id": "cde0141f-d608-474c-be53-9d4fc869c628", "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": "b1ae26bb-75fb-4b29-a9b5-bcfe2c0447b6", + "id": "d9ddee5e-27da-476d-9a98-4c7df36f4450", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98676,7 +98676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b09a799-314d-49c2-ad67-0c54562752d6", + "id": "529d1d2f-6997-4471-a4bc-33d6f4e9b293", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98747,7 +98747,7 @@ "description": "Read and write operations for managing client data and statuses", "item": [ { - "id": "196fa4cb-cb69-4c3b-add0-9081e92d96a1", + "id": "b4de0266-4749-4c0b-a9a0-5d6de0d70ace", "name": "Specified Managed Client Status.", "request": { "name": "Specified Managed Client Status.", @@ -98799,7 +98799,7 @@ }, "response": [ { - "id": "fdab41b7-4dcc-4d4d-a5ed-1e11ebaeae2f", + "id": "45392c39-75ed-4dda-978e-72c458cacaf6", "name": "Responds with Managed Client Status having the given ID and Type.", "originalRequest": { "url": { @@ -98849,12 +98849,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\": \"NOT_CONFIGURED\",\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\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f2aa16f4-536b-4bdf-adff-1b4e0dd0256b", + "id": "b1bc1bed-02cb-4dad-81cf-4e12e2d97690", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98909,7 +98909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07bca193-9af6-468a-a8ee-6a7b0d5d32f8", + "id": "6caa9ed0-a01f-49b8-bd2e-9a18a1402df7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98964,7 +98964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55143975-832d-41be-9c38-44631c398939", + "id": "0e73a32f-7759-4be1-83b8-fcb7aeb31678", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99019,7 +99019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e2abc58-5f0e-4dce-866e-9da628265fa7", + "id": "48f97a1f-5b23-4e44-b010-197575006204", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -99074,7 +99074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3754921-adb9-4c80-885d-9542c3d734a6", + "id": "00fbd11d-ed59-4d3c-931c-812ac70d4111", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99129,7 +99129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cfb67f1-fd94-47ef-8286-85a1067d5dad", + "id": "cf20deaf-cc88-4aec-9a5e-265515a29324", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99190,7 +99190,7 @@ } }, { - "id": "c1b0d385-f465-4e11-b1ea-97ac779bbcfa", + "id": "bd3e9ca6-c248-44ef-8570-14e5ba91ad59", "name": "Handle status request from client", "request": { "name": "Handle status request from client", @@ -99234,7 +99234,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\": \"NOT_CONFIGURED\",\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\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -99245,7 +99245,7 @@ }, "response": [ { - "id": "23d8e94b-b62e-44a6-9f97-686b85b77460", + "id": "bb36d48c-253a-4d01-9c55-c7a1200a29de", "name": "Responds with the updated Managed Client Status.", "originalRequest": { "url": { @@ -99281,7 +99281,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\": \"NOT_CONFIGURED\",\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\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -99303,7 +99303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4203b576-4fdd-4b8e-96e9-f858c83a6a03", + "id": "ad3db6fe-e261-4bb4-9d30-2b280b40e76c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99339,7 +99339,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\": \"NOT_CONFIGURED\",\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\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -99361,7 +99361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70e9eb8e-7f51-4b25-a22c-38e4775e721b", + "id": "f5e534ec-a4d6-4d98-b8a2-dbc3f6db9851", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99397,7 +99397,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\": \"NOT_CONFIGURED\",\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\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -99419,7 +99419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d575910f-1023-4f79-b27d-d04c8934066f", + "id": "cb4a780d-ead1-4e96-b4bf-c3baf796cf14", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99455,7 +99455,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\": \"NOT_CONFIGURED\",\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\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -99477,7 +99477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77b60735-b1e7-4af1-a7ec-071ae78a94be", + "id": "e08d4340-fcfd-4b05-8d9b-65b720fcf8a6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -99513,7 +99513,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\": \"NOT_CONFIGURED\",\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\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -99535,7 +99535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1141e062-0456-4374-998b-11c067a1dabb", + "id": "cf6a7975-1a16-4bb7-b752-90721cc0117f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99571,7 +99571,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\": \"NOT_CONFIGURED\",\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\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -99593,7 +99593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "daf58497-f0d1-4796-9706-601b7d3b3679", + "id": "a398e81c-4e26-43cf-87a0-e342c9e7c09c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99629,7 +99629,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\": \"NOT_CONFIGURED\",\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\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -99663,7 +99663,7 @@ "description": "Operations for accessing and managing client Clusters, including Log Configuration", "item": [ { - "id": "06041aa5-9172-4a9e-b9db-f5b11e794ab6", + "id": "5fdc0331-2b28-47b1-98f2-eb2902f955db", "name": "Get a specified ManagedCluster.", "request": { "name": "Get a specified ManagedCluster.", @@ -99704,7 +99704,7 @@ }, "response": [ { - "id": "fdc44bc4-1561-4375-b275-15398088e8ef", + "id": "e3e759bc-1e44-4289-8567-95e827a8533d", "name": "Responds with ManagedCluster having the given ID.", "originalRequest": { "url": { @@ -99748,7 +99748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7af27f0-d7dc-404b-a283-097fd2c0fc81", + "id": "0324b109-e0ae-43b8-8579-1ad60221db0c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99792,7 +99792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef91cdba-8ea9-4553-894b-b3a48d197f1e", + "id": "1cb25746-5e19-4950-b322-adda63235b32", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99836,7 +99836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13836d09-f3b8-4fba-b880-8fc0709dac92", + "id": "941a352f-274c-412b-8dfe-2264f5384c77", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99880,7 +99880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7894626-5066-4a6e-9a74-9fbc2cacaf5b", + "id": "a7360b30-fbe1-4687-ab25-e6bf859d1ada", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -99924,7 +99924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e99e9320-19b2-4830-8f20-e1ea9722587e", + "id": "f5f47827-5152-47bb-988b-1803fa08bee8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99968,7 +99968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f0f4e4e-4681-468c-9743-8e5da4245fff", + "id": "3fa0eb03-ba97-4563-97d0-900bff1c7da8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100018,7 +100018,7 @@ } }, { - "id": "24af7daa-edb7-42e4-954e-a1b1bb8321bb", + "id": "7bd9d20b-8097-407a-a1b9-db683f054814", "name": "Get managed cluster's log configuration", "request": { "name": "Get managed cluster's log configuration", @@ -100060,7 +100060,7 @@ }, "response": [ { - "id": "553fb3cb-7515-446a-9c24-012ed8203496", + "id": "92d51931-0d32-4cd6-8c99-d19de7735031", "name": "Log configuration of ManagedCluster matching given cluster ID", "originalRequest": { "url": { @@ -100105,7 +100105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa533d32-0450-4df5-87e2-bf8958b3adf9", + "id": "f5ed4502-5af9-4dd2-b1a1-4e06ea8f0888", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100150,7 +100150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b766499-e897-4f87-85f2-90fe1838de8f", + "id": "bd48191c-0b5b-47d5-b868-3eacda4df165", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100195,7 +100195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3368a3a1-d110-4765-b6cd-d7682e65f584", + "id": "cd818f33-b214-4b02-b4ad-50c2b906221d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100240,7 +100240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48350b70-1c4e-4d7e-9add-03add03addff", + "id": "ed417676-f2c3-425e-a6c5-ea1851daa7c8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -100285,7 +100285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c8cd10c-d90e-49a5-ba3e-06176abb891e", + "id": "620e9008-d49e-4539-92ef-403efcd9fdc9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100330,7 +100330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54b51fb0-6d22-4a22-8fb9-445b04f20ca2", + "id": "8019274c-bb29-4197-8f0d-3d19ef577694", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100381,7 +100381,7 @@ } }, { - "id": "e58938a2-28f8-46a0-a513-e6acb8fcdb3b", + "id": "0fd09b19-7389-4d1c-bb9f-617491af34bf", "name": "Update managed cluster's log configuration", "request": { "name": "Update managed cluster's log configuration", @@ -100436,7 +100436,7 @@ }, "response": [ { - "id": "03c75731-c9cf-4bdb-89c2-49af8efa436e", + "id": "58252c7a-c2a8-4384-8cb8-d95ed40472f7", "name": "Responds with updated ClientLogConfiguration for given ManagedCluster", "originalRequest": { "url": { @@ -100494,7 +100494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "664e957f-c1cc-4527-9b37-e547f80ce3ea", + "id": "05c721db-d488-4edb-9c00-af957831a672", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100552,7 +100552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f9d82eb-1685-44c6-92e5-d7b3a1f6d9d0", + "id": "923fe264-38b3-4499-8c86-e47df9dd5c61", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100610,7 +100610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5c627d4-1187-4be2-b24e-ef516e3cd656", + "id": "ff739400-6e36-41e8-a622-12876b19a0d0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100668,7 +100668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0eb3939d-494b-44a0-a3c9-4e0b7a9917cc", + "id": "2df5d421-a987-4d97-abaf-61e56d1e9675", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -100726,7 +100726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d53964ab-2228-45a6-96ad-95bdf3e7fe86", + "id": "6fd6543c-4006-4332-bf10-34dc94984ff0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100784,7 +100784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38b157f4-1de0-476b-8d47-38ef06327b3e", + "id": "9ac3bde5-fcec-4986-8f12-633bb1c31859", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100848,7 +100848,7 @@ } }, { - "id": "f69301d8-d748-4e54-ac7e-8bc21973adf0", + "id": "c4877e7c-49b9-4ff3-88a1-820bbe28f73a", "name": "Retrieve all Managed Clusters.", "request": { "name": "Retrieve all Managed Clusters.", @@ -100914,7 +100914,7 @@ }, "response": [ { - "id": "3540f32a-b1c0-48a2-8578-2aa9bb2eabf9", + "id": "9cc6e793-949a-40d3-aae4-fe1bfed3c4f7", "name": "Responds with a list of ManagedCluster.", "originalRequest": { "url": { @@ -100994,7 +100994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad6c2ba8-95ad-42b0-acfd-1923ed5e58ca", + "id": "19e1e9c8-0119-4330-9b66-ac4136d39ea0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101074,7 +101074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09384dad-82ed-4b21-837f-3f211fbaa34c", + "id": "bdb8bd5b-b300-47d5-928a-0a9ea03889ae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101154,7 +101154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e5bd735-7e81-4b04-aa38-b06d4dfaf92b", + "id": "419e01fb-cac5-42ff-adbe-a4db487d9015", "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": "75e19e7e-cae1-4e71-9b4c-1def16e84fc4", + "id": "b6e6b09a-8a68-4ba2-a8ea-bd2d19dd75e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101314,7 +101314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec10d2ba-5483-41a0-92b4-6824690c0b1a", + "id": "0048212e-c169-4e48-9488-ae3e316c1745", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101406,7 +101406,7 @@ "description": "Configure and test multifactor authentication (MFA) methods", "item": [ { - "id": "011d341c-0eae-4a34-a884-758db63aac45", + "id": "022aae45-536a-4de4-91fc-92e745250b59", "name": "Configuration of Okta MFA method", "request": { "name": "Configuration of Okta MFA method", @@ -101437,7 +101437,7 @@ }, "response": [ { - "id": "e2762383-274d-4e58-9364-f682f220eca8", + "id": "accd3363-ac6a-45eb-b998-97e0f6f2cbd2", "name": "The configuration of an Okta MFA method.", "originalRequest": { "url": { @@ -101482,7 +101482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4846f246-3721-42e2-b69b-8e8fc8e2c337", + "id": "21c66ff5-7862-4d56-a39c-68f116f27e88", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101527,7 +101527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfb2938b-35e1-486e-8965-147d978a562e", + "id": "06675580-440b-4089-b8e6-d29fa15272bf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101572,7 +101572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eab1eee8-3ab2-47e6-824f-48bea6e4e353", + "id": "6483af6c-7c65-473b-9f01-77ea9b417c53", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101617,7 +101617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "662b3f2f-5731-49a6-aa7a-d323816ad8c5", + "id": "d708a16e-2461-463a-8a9a-e88442bf40d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101662,7 +101662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "906d58a5-a16e-47e7-ba8d-550a3718feab", + "id": "df5f8b2e-ea20-47f0-b2fa-9b3582406047", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101713,7 +101713,7 @@ } }, { - "id": "e95da68b-ba59-4523-8573-a39738ffbfe8", + "id": "ae8cac22-5a50-4c94-97aa-2e64bcbfc0dc", "name": "Set Okta MFA configuration", "request": { "name": "Set Okta MFA configuration", @@ -101757,7 +101757,7 @@ }, "response": [ { - "id": "b49bf148-b7e2-45de-9011-bf19f5dddc53", + "id": "8a42b864-1f92-41c6-be9b-d6b51cf0f8a0", "name": "MFA configuration of an Okta MFA method.", "originalRequest": { "url": { @@ -101815,7 +101815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aad747c8-695e-421d-acdf-6be9d185b059", + "id": "184fca0f-4fef-46c8-bbb2-0e36572b315c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101873,7 +101873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d5219f7-8ab9-47bc-8739-0ec053a759f6", + "id": "0f966d58-6f2f-4f44-9f91-401fedaf501f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101931,7 +101931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69d0b56a-9cfa-4518-9ede-a68686cf3f22", + "id": "018e3043-acf8-417c-b389-f808818fcff5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101989,7 +101989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65525d82-c646-446f-92f1-17118662e91c", + "id": "1f99073d-4133-42b8-ba1c-140c341f1860", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102047,7 +102047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85ea2e92-ada4-41a5-8ea6-3b4dd6d43296", + "id": "d485c42c-2418-4594-83eb-c0584e241e98", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102111,7 +102111,7 @@ } }, { - "id": "0b4a763d-1d76-4403-90a4-2e5eb30cce7c", + "id": "7f3d398b-3dde-41ca-abae-60629bf20deb", "name": "Configuration of Duo MFA method", "request": { "name": "Configuration of Duo MFA method", @@ -102142,7 +102142,7 @@ }, "response": [ { - "id": "935b0f21-adc1-4ef9-80f3-e92fe2709b96", + "id": "33f1504a-6030-412c-802b-fa0eba51e2cb", "name": "The configuration of an Duo MFA method.", "originalRequest": { "url": { @@ -102187,7 +102187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d62a39b4-4970-4b4a-8b21-7045f02f47f7", + "id": "c90d22af-19eb-4a8b-acf2-f84417ae2cac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102232,7 +102232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d80532b5-8a71-4068-9230-0d890460ee49", + "id": "e8603e91-1e9b-4eac-a8d7-b6aaf389deab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102277,7 +102277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25868a9f-6dfa-426d-b1c8-5de57ef7df98", + "id": "dcea0dbe-ccb3-44fe-84eb-dca1d36309c1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102322,7 +102322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4586e39-b9f6-4173-8b70-34f126962fae", + "id": "be385841-347a-489d-ad26-1d85836132fa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102367,7 +102367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d32d8ef-d43b-4e1b-8754-7cbd8c3f948c", + "id": "b914d75e-9ae9-484f-b4f7-0449ec4fc621", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102418,7 +102418,7 @@ } }, { - "id": "83919211-7455-488b-b45c-bb0ca16e71b8", + "id": "0583b8fb-cdd3-4a4a-b995-5fec2f16ca4e", "name": "Set Duo MFA configuration", "request": { "name": "Set Duo MFA configuration", @@ -102462,7 +102462,7 @@ }, "response": [ { - "id": "4fb8fdde-e896-4a4d-844b-7276d77a983f", + "id": "5911379a-bd00-4f88-993b-51c650536e9b", "name": "MFA configuration of an Duo MFA method.", "originalRequest": { "url": { @@ -102520,7 +102520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1517679-07ac-42a9-8934-c2643b5238f8", + "id": "85e9f506-2d38-47d5-b3db-0a61853fd994", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102578,7 +102578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6029bd12-2940-44ce-8159-040da68a6dab", + "id": "c96f2f98-2b82-41b2-8ad3-e6364297b0dc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102636,7 +102636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00465545-eef7-4425-abd4-6dc1fad27d5c", + "id": "84ab7d05-e1cf-4363-bb98-ac191815d501", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102694,7 +102694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9249764f-f6b7-46cc-932d-1183aa40f873", + "id": "7b1323cd-e2f2-4b1c-9100-ce931b2d6327", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102752,7 +102752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa6354b7-05d3-436d-99e7-a978c8d2d5ca", + "id": "b9ff0f5b-f824-4ede-98e4-89119e57eb50", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102816,7 +102816,7 @@ } }, { - "id": "00d5a3eb-845c-4f1a-aefe-ccb8ddd426f0", + "id": "05dd3ed4-ec7b-4437-bf69-5ddaa0b5cbb2", "name": "MFA method's test configuration", "request": { "name": "MFA method's test configuration", @@ -102858,7 +102858,7 @@ }, "response": [ { - "id": "54107e4f-0791-4afa-ad6f-27ef2e498d27", + "id": "49734503-7562-47e0-9103-9f00247adb83", "name": "The result of configuration test for the MFA provider.", "originalRequest": { "url": { @@ -102903,7 +102903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c65d9aa9-83fb-41d3-b4b9-088f63765197", + "id": "8944db31-5b2d-4938-a0ba-2ac3c0b89869", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102948,7 +102948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d263152b-8798-41df-897c-854764e52a60", + "id": "46f39931-2597-49fc-a3cd-c540d84cacb9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102993,7 +102993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db3e25c7-dd87-460a-b9d2-55629e033853", + "id": "f9016985-8d54-4157-99bb-e38c77e3353c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103038,7 +103038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4570150-0046-43c7-9cb7-80eb38da81f8", + "id": "b4887777-27bf-421f-88de-ef52f703557e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103083,7 +103083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "410e2c66-be50-47b5-8ad7-494954d2b629", + "id": "365f99a8-d420-4462-89fe-0b816936a3d8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103134,7 +103134,7 @@ } }, { - "id": "4265a4ad-d1c5-4aa3-a402-83b28cecea9c", + "id": "46f45919-9b9c-4584-815d-08de35a3be56", "name": "Delete MFA method configuration", "request": { "name": "Delete MFA method configuration", @@ -103176,7 +103176,7 @@ }, "response": [ { - "id": "eedf84e6-ab54-4943-93c8-54b2a48bf15b", + "id": "d9e31aa0-a9a7-488b-9466-93294ac6eed2", "name": "MFA configuration of an MFA method.", "originalRequest": { "url": { @@ -103221,7 +103221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb5850d8-569b-4244-970b-7b17de48d89b", + "id": "a3d84716-dd2b-4368-864a-a666f4d8e332", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103266,7 +103266,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abd0b4c0-fa2a-44c2-bd3f-d1ee92a4f3c1", + "id": "3937f301-61fa-4bdf-9419-8df32ff711a0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103311,7 +103311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52465ed0-68fe-46d6-bdce-95362b9aa0da", + "id": "88a617cb-b17a-44f1-9f16-13f0d797ac10", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103356,7 +103356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcf6df41-8ca4-45ac-afa2-fdb09fe03955", + "id": "1f292eb1-a27b-4c77-8150-2e84d119c919", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103401,7 +103401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "279bddc4-66b2-4dd7-ac74-170ca7df9c48", + "id": "4bd78eb2-dfc9-450b-a25b-072bdd0de594", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103458,7 +103458,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": "957672f4-7dde-4a84-984e-6fe0d2391c4e", + "id": "b95f1174-128a-4ed7-bc72-2a10eac3b716", "name": "Verifying authentication via Okta method", "request": { "name": "Verifying authentication via Okta method", @@ -103502,7 +103502,7 @@ }, "response": [ { - "id": "71312f22-9f12-40a8-a2fd-a3f9a7565829", + "id": "2a2ff1d9-3439-4d10-b963-b3ac466d2399", "name": "The status of verification request.", "originalRequest": { "url": { @@ -103560,7 +103560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "597e56f2-5f55-4018-bb78-db7dee1187b5", + "id": "ac9ef384-5a2d-46fa-8194-d8556459c4bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103618,7 +103618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee0f0641-ccc3-419d-9fec-4611568fc366", + "id": "2ae81f1d-665e-4aa7-8245-7f3296080179", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103676,7 +103676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4fe87f9-9597-4023-ba17-8f96c7e19a8e", + "id": "e57fa80d-ba76-4cea-9863-789382694451", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103734,7 +103734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3e239ae-39fd-4b82-8dde-03cf0bcacaa2", + "id": "8edd84f8-fb92-4dc1-8107-c860e6ed7627", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103792,7 +103792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1e2d357-190a-42f4-a97b-4f717cf1147c", + "id": "96e5d348-b252-43bf-b679-e68663a6abf9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103856,7 +103856,7 @@ } }, { - "id": "16e6fc4f-6efe-408e-b98d-a0444611c61e", + "id": "a24c67e3-46a2-4f53-9bcc-432f2049beb8", "name": "Verifying authentication via Duo method", "request": { "name": "Verifying authentication via Duo method", @@ -103900,7 +103900,7 @@ }, "response": [ { - "id": "116e13c6-2db6-4361-9b8c-f8f2ce537fa4", + "id": "1430d195-6a9b-4f55-b63f-12e1516a970f", "name": "The status of verification request.", "originalRequest": { "url": { @@ -103958,7 +103958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "776dd3d0-be0e-4e10-ae19-d27a4772f1e6", + "id": "525a08f5-88d4-4a34-a0b3-c4cdbe41a68f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104016,7 +104016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f27ccbe-91e9-45bf-8ae0-885482f4e5f9", + "id": "5ec74160-b6ad-457b-ad18-33498fd4668f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104074,7 +104074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40c37d47-a25c-453c-8225-51cc9f09a614", + "id": "be457a62-cfd9-442d-a92a-9fa275879fc6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104132,7 +104132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "daa9ceb7-8274-4429-a2b0-c9b6d1c293b8", + "id": "44ef20d5-51b9-48cf-9567-3a0f25b7e244", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104190,7 +104190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3daac37-21d8-49ef-80a2-9a37f7b2afe2", + "id": "0d663f62-5b92-4c20-8c95-ec1caa0b477d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104254,7 +104254,7 @@ } }, { - "id": "1df4e1f2-2280-44cf-92c6-cb7077bc31bc", + "id": "82ea1a69-4f51-4872-8534-25b8efe17ee9", "name": "Polling MFA method by VerificationPollRequest", "request": { "name": "Polling MFA method by VerificationPollRequest", @@ -104309,7 +104309,7 @@ }, "response": [ { - "id": "729cdc6a-be79-4527-bc84-6e1c5c244ed3", + "id": "29d3f92b-afc1-41c6-9b01-f2d2fc44354f", "name": "MFA VerificationPollRequest status an MFA method.", "originalRequest": { "url": { @@ -104367,7 +104367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "932b6970-f2da-4a2e-b07f-badde9f34593", + "id": "d25a69b1-10b6-4450-9723-4a0fa178d743", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104425,7 +104425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "800d6e3b-f79c-41d1-bcd9-b0f53fc11319", + "id": "5213adef-4e4c-43aa-b461-a3654243e279", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104483,7 +104483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4226d440-7354-4d4b-88ac-a21f88a1a16c", + "id": "4b1d8904-b7a6-485c-8326-d319a90bfe42", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104541,7 +104541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afc766fe-51bc-4311-b417-08c3ca7d39f9", + "id": "4565ee5a-9b5c-4edc-a859-87bb98e98dd6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104599,7 +104599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f90c7f58-38f6-4980-8dc0-1853d6d2cffc", + "id": "78909ea0-480d-4eb9-84be-4de2374df4ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104663,7 +104663,7 @@ } }, { - "id": "3aaee9a3-bfa8-4fcb-8346-48932f92f30d", + "id": "f8eb5fb2-b51b-4f5d-88d4-a5a8d3fe6cea", "name": "Authenticate KBA provided MFA method", "request": { "name": "Authenticate KBA provided MFA method", @@ -104707,7 +104707,7 @@ }, "response": [ { - "id": "bc940636-8cdf-4e68-b3bd-ae4761b90693", + "id": "cf4c9322-11be-47ba-8fd9-cceae0536c56", "name": "KBA authenticated status.", "originalRequest": { "url": { @@ -104765,7 +104765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd0f2ba0-7077-4926-9794-8b5502b3e06e", + "id": "ffe5f75e-b633-4014-889d-357e1910262f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104823,7 +104823,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32b9d1db-4957-43a5-acb6-691972edf00b", + "id": "d8e06f26-a7a8-4786-940d-021328ad93c6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104881,7 +104881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "509bb73a-0ce9-4a25-a6a9-f9f5362ad3cf", + "id": "9a411a5a-6c16-4644-8207-f6c99f7ce023", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104939,7 +104939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e89d3c7-d338-4755-8246-7b19c5fb480e", + "id": "e291647f-586c-4160-89a9-8c14428d52ed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104997,7 +104997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0ef5998-c4e9-49be-af07-ce04430673f9", + "id": "aa013d73-8bae-4726-9e21-f93b53ca72de", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105061,7 +105061,7 @@ } }, { - "id": "1b231b99-7648-4c12-a6e6-04f842d59419", + "id": "874e4a01-05fa-421b-a2af-0ae63437ff51", "name": "Authenticate Token provided MFA method", "request": { "name": "Authenticate Token provided MFA method", @@ -105105,7 +105105,7 @@ }, "response": [ { - "id": "88f4f592-6d9e-41a5-8f64-3752354ca773", + "id": "e7339a48-d3f9-402f-b71a-8003469e8e0d", "name": "Token authenticated status.", "originalRequest": { "url": { @@ -105163,7 +105163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f76ff636-b52c-45d9-a693-8bfafd7b7acd", + "id": "d706a56a-0ef3-49de-ad96-134bc3715948", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105221,7 +105221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54e63480-6ed4-4232-b354-36e0bee1e962", + "id": "49154299-e422-4b3b-b21e-d628d434cb63", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105279,7 +105279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d2a63d9-9ea1-4c6c-b97c-510f834a904c", + "id": "25b53d9d-eabc-4c52-845d-2df731bd0cc0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105337,7 +105337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1252cd2-d324-4fd0-8ade-ea7832cdf482", + "id": "031d7330-5a06-4756-8d67-2bee161e5e19", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105395,7 +105395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49379970-a059-4433-b69f-503be8cee271", + "id": "20998c34-d0eb-4738-bbc8-38fb125c84f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105459,7 +105459,7 @@ } }, { - "id": "23e39d80-30c5-4542-8201-ae539025db18", + "id": "85faf27a-3a88-425e-a4c9-f49d636ea766", "name": "Create and send user token", "request": { "name": "Create and send user token", @@ -105503,7 +105503,7 @@ }, "response": [ { - "id": "ec8e7542-b8a4-4ee6-ace2-d9f5cc5afcd6", + "id": "4bb72576-1ec5-4e27-8ae7-df263c2eadd3", "name": "Token send status.", "originalRequest": { "url": { @@ -105561,7 +105561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11607fcf-cc4e-421e-80c0-5d0e530401ce", + "id": "6026e0c2-ba5c-456f-a5d5-ab571bd67b74", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105619,7 +105619,7 @@ "_postman_previewlanguage": "json" }, { - "id": "373f44ec-a736-4332-896c-1f97c9948d83", + "id": "1d102e90-6c3b-406a-8739-e7b5d42dad5d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105677,7 +105677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d72f67c-9ccd-4f87-9a2a-0787a904c068", + "id": "2b521bd6-0552-4d10-b603-73b18eca931b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105735,7 +105735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a60f3482-264f-48ff-bf39-782e8ed323ae", + "id": "1be242dc-2acc-436e-baa7-62b287f15ca5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105793,7 +105793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7e3626a-4f62-474a-960f-c9aaa301ea2a", + "id": "c70c0a20-34b9-4c7f-ac2b-1ab9d42555c1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105863,7 +105863,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": "359416bb-dfec-4432-9c87-46a588b16d7a", + "id": "e2aa24cb-6259-4b8e-b9d3-fa50fd30732b", "name": "Create Non-Employee Record", "request": { "name": "Create Non-Employee Record", @@ -105894,7 +105894,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -105905,7 +105905,7 @@ }, "response": [ { - "id": "4a038934-f560-4a12-a191-0b0940bb09c4", + "id": "12642d20-39c7-4808-a4b0-94a8676ea710", "name": "Created non-employee record.", "originalRequest": { "url": { @@ -105939,7 +105939,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -105956,12 +105956,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"sint volupt\",\n \"accountName\": \"tempor Duis\",\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 \"anim_d89\": \"ut adip\",\n \"enimf0\": \"Duis minim officia eu\"\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\": \"aliquip et in ea\",\n \"accountName\": \"Excepteur cupidatat\",\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 \"officia_26\": \"laborum\",\n \"Duis_25e\": \"consectetur et ea \",\n \"consectetur9\": \"laboris Ut anim labore ad\"\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": "ed6a8f07-fbcd-42ff-8ef9-d78529398bb3", + "id": "663138a3-e959-444b-93f1-5147823b3abc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105995,7 +105995,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -106017,7 +106017,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f4157a2-1283-4358-88ec-5be8ec0941a6", + "id": "8e90884d-a732-4a6b-8556-5786790c95b8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106051,7 +106051,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -106073,7 +106073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54a0689d-52f1-4818-aad7-cd01f7bdebd3", + "id": "3395f84b-bc1b-46f7-94f7-d662805e57c3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106107,7 +106107,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -106129,7 +106129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e483cf96-a7e7-4f24-ae00-c9f5bb69435d", + "id": "060420bb-3dd9-42e7-96e5-09ecd31ec440", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106163,7 +106163,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -106185,7 +106185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94eb1de3-75ce-41b6-9028-457e1090fbac", + "id": "de6d8b02-efa4-47f9-a29c-9bc80810fce3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106219,7 +106219,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -106247,7 +106247,7 @@ } }, { - "id": "1ff1d488-c8bc-4377-99df-d3d54c353144", + "id": "c4126fa7-4d3f-4979-b21b-c9a11fe12ac0", "name": "List Non-Employee Records", "request": { "name": "List Non-Employee Records", @@ -106322,7 +106322,7 @@ }, "response": [ { - "id": "a209dc12-555c-4b56-a227-3801731b7730", + "id": "91fd1199-e7a7-4bfb-8bff-589785ce3417", "name": "Non-Employee record objects", "originalRequest": { "url": { @@ -106406,12 +106406,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"cillum incididunt\",\n \"accountName\": \"veniam Excepteur id\",\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 \"enim543\": \"ut ipsum aute et\",\n \"velit_7e\": \"c\"\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\": \"ullamco\",\n \"accountName\": \"sunt laborum ut\",\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 \"ad_c1_\": \"Lorem deserunt\",\n \"voluptateb\": \"amet\",\n \"in_9\": \"reprehenderit ut 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]", + "body": "[\n {\n \"id\": \"culpa consectetur\",\n \"accountName\": \"nostrud non\",\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 \"nulla6aa\": \"dolor cillum\",\n \"nisi11f\": \"nisi mag\",\n \"occaecat687\": \"quis tempor dolore\",\n \"laboris_d89\": \"deserunt officia minim ex pariatur\"\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\": \"consequat aliqua\",\n \"accountName\": \"cupidatat ad elit\",\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 \"fugiat6f0\": \"enim quis sunt consectetur\",\n \"ut6aa\": \"amet c\",\n \"amet_018\": \"dolore anim\"\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": "c7322c7b-4719-4d45-b0ec-58fd6b411485", + "id": "ca4b2307-9c28-45ce-b45b-c0892e53ffac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106500,7 +106500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "621d92fb-ce1e-43c1-b40d-b1b9915b6c41", + "id": "31f4b3a5-a225-4438-9303-028fca37d863", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106589,7 +106589,7 @@ "_postman_previewlanguage": "json" }, { - "id": "187fae6e-46bb-461a-bcfc-383cefc11403", + "id": "ac47ff82-62ac-43ad-8c7c-556271f5ad09", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106678,7 +106678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df90ea03-da1d-46fe-8bf6-1c60cad691fd", + "id": "94c456e2-3aa0-49ac-a4b4-4ec69c5f8c9a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106767,7 +106767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f9f6a93-2494-4633-9dcf-7d2152ad37c6", + "id": "c8e83a9c-8262-4e4c-a7b1-9ea867ede3b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106862,7 +106862,7 @@ } }, { - "id": "3de9e009-cfc3-42de-919b-9df9db4d2ffe", + "id": "35096434-8b76-4e29-bf53-a951680fe4b5", "name": "Get a Non-Employee Record", "request": { "name": "Get a Non-Employee Record", @@ -106903,7 +106903,7 @@ }, "response": [ { - "id": "d5ee58ec-3117-4f66-8bb5-0be30b44b12f", + "id": "126ac68a-04a4-4a66-9ea8-f854919df8bd", "name": "Non-Employee record object", "originalRequest": { "url": { @@ -106942,12 +106942,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"sint volupt\",\n \"accountName\": \"tempor Duis\",\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 \"anim_d89\": \"ut adip\",\n \"enimf0\": \"Duis minim officia eu\"\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\": \"aliquip et in ea\",\n \"accountName\": \"Excepteur cupidatat\",\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 \"officia_26\": \"laborum\",\n \"Duis_25e\": \"consectetur et ea \",\n \"consectetur9\": \"laboris Ut anim labore ad\"\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": "4d6a217b-11a7-4414-afcf-b41c04f2c312", + "id": "882d29a4-cacf-4502-9982-1944e36a8ba3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106991,7 +106991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "554045bd-2aeb-4090-86d3-f40c9e0460db", + "id": "59a5346d-9e6d-4be0-bdf7-ea9de6e15aa7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107035,7 +107035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b31adce-5515-4e73-afd5-68890b69cbc5", + "id": "c2802f14-657a-46f6-8709-bf067d496981", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107079,7 +107079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d4d1cf2-0418-4dcd-8aad-ff6d15cdb492", + "id": "d5b9520e-a60b-474b-9837-836c45f35d86", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107123,7 +107123,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e108e380-e58c-4e7e-8b3c-a86db5b4f076", + "id": "8176b13b-ce95-4fe6-ba35-a7057f7d095b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107173,7 +107173,7 @@ } }, { - "id": "24890f0a-317e-42aa-b616-09b9f47040b7", + "id": "7efb120e-a321-411c-9320-6b9d5fe37e2c", "name": "Update Non-Employee Record", "request": { "name": "Update Non-Employee Record", @@ -107216,7 +107216,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -107227,7 +107227,7 @@ }, "response": [ { - "id": "f0e28e69-3797-4d91-829e-c0d8f8f40e16", + "id": "e96ea55a-2b12-4abc-83d8-e8fed1eee26f", "name": "An updated non-employee record.", "originalRequest": { "url": { @@ -107262,7 +107262,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -107279,12 +107279,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"sint volupt\",\n \"accountName\": \"tempor Duis\",\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 \"anim_d89\": \"ut adip\",\n \"enimf0\": \"Duis minim officia eu\"\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\": \"aliquip et in ea\",\n \"accountName\": \"Excepteur cupidatat\",\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 \"officia_26\": \"laborum\",\n \"Duis_25e\": \"consectetur et ea \",\n \"consectetur9\": \"laboris Ut anim labore ad\"\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": "cb2ba154-7050-404f-a9cc-ed0d830d1f8e", + "id": "8eb05ea0-85b2-4d7e-b227-85856f6f6b04", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107319,7 +107319,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -107341,7 +107341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2203292f-43cf-4bf1-a3fe-92b34aa8f55e", + "id": "344c27ce-5a9e-4fb3-b975-efcfc89fa39e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107376,7 +107376,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -107398,7 +107398,7 @@ "_postman_previewlanguage": "json" }, { - "id": "739d3c05-a737-4230-b7c1-78feb508e586", + "id": "1096e449-dd7b-465e-9232-25e402ac78d4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107433,7 +107433,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -107455,7 +107455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8be82c59-b7f0-4a50-b0a5-970a5682b8f5", + "id": "3581b13d-9d70-411b-a3b2-bc6ece5eb369", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -107490,7 +107490,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -107512,7 +107512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b752b101-bd1a-4019-847e-75238f7ba87c", + "id": "364a9896-0836-4341-b92b-e4c7e0e4f6fe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107547,7 +107547,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -107569,7 +107569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af03c493-d01a-4c1c-b025-370f4affce1e", + "id": "5ea3d336-182d-4f20-9377-90d07580e99f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107604,7 +107604,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -107632,7 +107632,7 @@ } }, { - "id": "710a53b0-962a-4ed2-9a15-fd4b982e0d51", + "id": "07ba6781-b980-4373-9b13-ba8aebf738b2", "name": "Patch Non-Employee Record", "request": { "name": "Patch Non-Employee Record", @@ -107686,7 +107686,7 @@ }, "response": [ { - "id": "deced5a7-6014-4366-91b1-b4b113d99a89", + "id": "301d14ba-fa78-4dde-8d11-3acb04b03cbf", "name": "A patched non-employee record.", "originalRequest": { "url": { @@ -107738,12 +107738,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"sint volupt\",\n \"accountName\": \"tempor Duis\",\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 \"anim_d89\": \"ut adip\",\n \"enimf0\": \"Duis minim officia eu\"\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\": \"aliquip et in ea\",\n \"accountName\": \"Excepteur cupidatat\",\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 \"officia_26\": \"laborum\",\n \"Duis_25e\": \"consectetur et ea \",\n \"consectetur9\": \"laboris Ut anim labore ad\"\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": "435561f2-0041-45f4-bd3a-ff44f3b60581", + "id": "6c75ca1d-74de-49ad-ad4d-53bd23e6a6da", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107800,7 +107800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbe83cb6-0f35-432f-b8f9-e76bb997902b", + "id": "bcef65bb-0790-441e-9748-597fd3727a99", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107857,7 +107857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd15044b-2189-45ad-9fce-27cd980ddb26", + "id": "1d71e102-55f6-4480-a343-d53231a11b60", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107914,7 +107914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "485d6a1d-1447-43ea-b29b-9813a7da0db7", + "id": "220afddd-7018-4797-95e2-f4e630dc28d3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -107971,7 +107971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e14198a2-ebf7-434a-aaff-4c4bc40c02e1", + "id": "0cec32f7-7558-43e4-8d5a-02795693311e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108028,7 +108028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e07d7fab-9fae-4d5e-ba97-d2ac6da70867", + "id": "f145efd1-11a5-49b9-9d7d-1a5f37b66547", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108091,7 +108091,7 @@ } }, { - "id": "b0eb0d9a-c983-4279-b104-1cb77ecbf488", + "id": "6e4eeef5-dd8d-452b-a133-6c157b65019e", "name": "Delete Non-Employee Record", "request": { "name": "Delete Non-Employee Record", @@ -108132,7 +108132,7 @@ }, "response": [ { - "id": "c3380572-7005-406d-853d-a33909a4bba3", + "id": "1860d0b9-9fd8-4c5f-af3c-a7a343d08da4", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -108166,7 +108166,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7f1b9563-1a7e-4cd8-beb9-f156d1859d01", + "id": "be70101c-a89e-4d9f-85d7-931f1b5bdc0b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108210,7 +108210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7d89cd7-9fdc-4788-a988-8e591fc8f99a", + "id": "14b89da3-3955-480b-977c-a551de8015f5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108254,7 +108254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "491ac67b-a876-49cb-a34e-99c066046a00", + "id": "bce9e12e-6a61-4984-8083-fa195cb32855", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108298,7 +108298,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3858c2c1-ef4e-4b4d-8ad9-151258fb1be8", + "id": "b12bc95d-c604-4d0a-852f-a76450bdf41f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108342,7 +108342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e23c339-ee1f-4757-b0e9-67081a5d3fde", + "id": "bc98f941-3efc-48ad-a1e2-83da5017c172", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108392,7 +108392,7 @@ } }, { - "id": "97fb46a8-7e5a-4c86-84b9-7ae159de40c9", + "id": "8031ad09-c09c-433a-ac1f-325e539d3f54", "name": "Delete Multiple Non-Employee Records", "request": { "name": "Delete Multiple Non-Employee Records", @@ -108424,7 +108424,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"abc0a557-5b11-2f26-425e-d099e92a50fb\",\n \"urn:uuid:f799915b-c55d-2466-1ff2-f7dcfeab967c\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"54ca43e2-402f-4c27-16a3-28e94a9cfbe3\",\n \"ffa1ff65-b7fa-ceb6-eafb-dc0e6074dbb1\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -108435,7 +108435,7 @@ }, "response": [ { - "id": "913f6695-7fbf-4e5b-bb0f-cdd9be293185", + "id": "1c98be06-5392-4c60-b5f4-9902635dc1f1", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -108466,7 +108466,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"abc0a557-5b11-2f26-425e-d099e92a50fb\",\n \"urn:uuid:f799915b-c55d-2466-1ff2-f7dcfeab967c\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"54ca43e2-402f-4c27-16a3-28e94a9cfbe3\",\n \"ffa1ff65-b7fa-ceb6-eafb-dc0e6074dbb1\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -108482,7 +108482,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b2ecdb85-4a67-4631-bda7-2ae71393c111", + "id": "18d2c6b4-4689-4305-a23e-b33f4b43ff7a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108517,7 +108517,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"abc0a557-5b11-2f26-425e-d099e92a50fb\",\n \"urn:uuid:f799915b-c55d-2466-1ff2-f7dcfeab967c\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"54ca43e2-402f-4c27-16a3-28e94a9cfbe3\",\n \"ffa1ff65-b7fa-ceb6-eafb-dc0e6074dbb1\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -108539,7 +108539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70e9bc7f-abd1-4991-9257-4530f453d00a", + "id": "ca802468-dc5d-4ea2-81f3-e8aadfa324c3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108574,7 +108574,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"abc0a557-5b11-2f26-425e-d099e92a50fb\",\n \"urn:uuid:f799915b-c55d-2466-1ff2-f7dcfeab967c\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"54ca43e2-402f-4c27-16a3-28e94a9cfbe3\",\n \"ffa1ff65-b7fa-ceb6-eafb-dc0e6074dbb1\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -108596,7 +108596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5c9f218-9401-45f4-b21f-796eb63331ac", + "id": "eda9a76d-d59c-4e99-ae55-ec42646be4f4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108631,7 +108631,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"abc0a557-5b11-2f26-425e-d099e92a50fb\",\n \"urn:uuid:f799915b-c55d-2466-1ff2-f7dcfeab967c\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"54ca43e2-402f-4c27-16a3-28e94a9cfbe3\",\n \"ffa1ff65-b7fa-ceb6-eafb-dc0e6074dbb1\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -108653,7 +108653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6b39145-8d58-4291-a1ff-9b7c8e8aa069", + "id": "f9fceb18-ae34-422e-afa6-450e085a4d5b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108688,7 +108688,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"abc0a557-5b11-2f26-425e-d099e92a50fb\",\n \"urn:uuid:f799915b-c55d-2466-1ff2-f7dcfeab967c\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"54ca43e2-402f-4c27-16a3-28e94a9cfbe3\",\n \"ffa1ff65-b7fa-ceb6-eafb-dc0e6074dbb1\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -108710,7 +108710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38fb245c-9a93-41dd-91f0-23d9c13152f4", + "id": "e6cf4584-bf1a-4b8e-812a-f94639c9b2d8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108745,7 +108745,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"abc0a557-5b11-2f26-425e-d099e92a50fb\",\n \"urn:uuid:f799915b-c55d-2466-1ff2-f7dcfeab967c\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"54ca43e2-402f-4c27-16a3-28e94a9cfbe3\",\n \"ffa1ff65-b7fa-ceb6-eafb-dc0e6074dbb1\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -108773,7 +108773,7 @@ } }, { - "id": "52657ee3-c288-4c5c-a6ff-7d450b8a5357", + "id": "de369e02-2021-44b3-ab22-ce5b103b0985", "name": "Create Non-Employee Request", "request": { "name": "Create Non-Employee Request", @@ -108804,7 +108804,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -108815,7 +108815,7 @@ }, "response": [ { - "id": "f0cc3845-64b5-4456-88a6-42b9ff4f1b0b", + "id": "26317053-6e21-4343-849a-6a20f66bb0a5", "name": "Non-Employee request creation object", "originalRequest": { "url": { @@ -108849,7 +108849,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -108866,12 +108866,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 \"temporda3\": \"cupidatat pariatur anim\",\n \"aliquip55\": \"dolor Excepteur est magna sed\",\n \"nulla_81\": \"et ullamco cillum nostrud\",\n \"ametc90\": \"in tem\"\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\": \"sed\",\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\": \"ut cillum est adipisicing proident\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"CANCELLED\",\n \"comment\": \"do exercitation\",\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 \"cillume96\": \"ex dolor\",\n \"amet_9b\": \"pariatur ut eu do\",\n \"adb_\": \"paria\"\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\": \"in cupidatat tempor mollit\",\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\": \"esse dolore\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"NOT_READY\",\n \"comment\": \"non\",\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": "16476157-0b1e-4478-a6c8-06abb69643ad", + "id": "b0a9225b-533f-4fcc-917b-6bd3c77eb14e", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -108905,7 +108905,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -108927,7 +108927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d64a0d2-6817-4be7-82e2-0729c209a7b9", + "id": "1c3cea85-3837-4857-a1ed-ff070b33a7f7", "name": "400.1.409 Reference conflict", "originalRequest": { "url": { @@ -108961,7 +108961,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -108983,7 +108983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f676c74-10d1-49af-bf10-6a43a8ba0ae5", + "id": "10b6f953-17c2-4d6f-89f3-9d4b3b326228", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109017,7 +109017,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -109039,7 +109039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "482a00f4-aee5-4466-8d2a-a09699c9974f", + "id": "41bb0945-54bb-4d2a-b087-820aa053e259", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109073,7 +109073,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -109095,7 +109095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35175c7c-a918-4f5b-a4d1-f47ef37c789c", + "id": "c45cb292-ec20-4498-88b7-695b76b67712", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109129,7 +109129,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -109151,7 +109151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "106a9464-3c0c-407f-87fe-b8c878169779", + "id": "c0672f25-830d-46e7-8892-dbdf95d6b07a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109185,7 +109185,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 \"do_c\": \"veniam ut fugiat enim\"\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 \"ut4_\": \"commodo adipisicing\",\n \"dolor_7\": \"dolore nisi qui deserunt\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -109213,7 +109213,7 @@ } }, { - "id": "fa070e6a-8ae9-4709-b68c-9d4acf66debf", + "id": "8f05288b-cfef-4767-85ae-cfa336bf90b3", "name": "List Non-Employee Requests", "request": { "name": "List Non-Employee Requests", @@ -109297,7 +109297,7 @@ }, "response": [ { - "id": "068ebce7-1a9c-453f-bfe8-a465889b2e5b", + "id": "56bdf8df-d539-4bf3-92b6-cd8eeafcaf58", "name": "List of non-employee request objects.", "originalRequest": { "url": { @@ -109390,12 +109390,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 \"ex_1d\": \"et dolor consectetur\"\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\": \"aute pariatur ven\",\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\": \"commodo voluptate co\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"PENDING\",\n \"comment\": \"consectetur sunt eiusmod\",\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 \"sit4\": \"a\"\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\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"est sed\",\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\": \"qui consequat\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"Duis ut ex officia cillum\",\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 \"ad_08\": \"aute esse qui\",\n \"aliquaa56\": \"eu ipsum\",\n \"reprehenderit_0_\": \"ut\"\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\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"consequat est a\",\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\": \"id aliqua labore tempor\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"PENDING\",\n \"comment\": \"pariatur id in commodo consequat\",\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 \"laborisc0\": \"esse veniam laboris Duis aliqu\",\n \"eta3\": \"mollit Ut\",\n \"qui1f\": \"minim officia elit\",\n \"Excepteur6d4\": \"pariatur 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\": \"l\",\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\": \"nisi aute magna\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"REJECTED\",\n \"comment\": \"incididunt laboris irure\",\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": "b28303e2-f6f8-4ca0-814c-7f4dffd13fe7", + "id": "9b85f86e-fd00-4f30-ad36-1dcffce18fb3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109493,7 +109493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b748cbd-5267-40bc-8aaf-1ce0f473614d", + "id": "474496c3-99b7-49fb-8b00-1023990d0c12", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109591,7 +109591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32614563-d301-457a-bbe1-e0921fcf028e", + "id": "fdfc179e-39cb-4313-8741-99dd9f787536", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109689,7 +109689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2a87265-8ca5-4d4e-8c10-e7d2b43ab1ac", + "id": "44052a65-4ff7-4a12-892e-38c24a68417b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109787,7 +109787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43b440a9-13c7-4d52-b052-c49deab41d09", + "id": "184d2c64-5e71-4001-873c-c50f70902652", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109891,7 +109891,7 @@ } }, { - "id": "9288c0dd-15d0-4fc5-a729-924433570c40", + "id": "13a3ae42-500e-412f-84c4-1179f8445372", "name": "Get a Non-Employee Request", "request": { "name": "Get a Non-Employee Request", @@ -109932,7 +109932,7 @@ }, "response": [ { - "id": "b4e6f801-126e-4f48-9eb5-019d5696bc05", + "id": "0d4ffc84-9d61-445e-874d-a2dd59c7061a", "name": "Non-Employee request object.", "originalRequest": { "url": { @@ -109971,12 +109971,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 \"temporda3\": \"cupidatat pariatur anim\",\n \"aliquip55\": \"dolor Excepteur est magna sed\",\n \"nulla_81\": \"et ullamco cillum nostrud\",\n \"ametc90\": \"in tem\"\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\": \"sed\",\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\": \"ut cillum est adipisicing proident\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"CANCELLED\",\n \"comment\": \"do exercitation\",\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 \"cillume96\": \"ex dolor\",\n \"amet_9b\": \"pariatur ut eu do\",\n \"adb_\": \"paria\"\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\": \"in cupidatat tempor mollit\",\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\": \"esse dolore\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"NOT_READY\",\n \"comment\": \"non\",\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": "5f21be14-b1fd-461e-a359-f52a0e7213f5", + "id": "3dce27b8-bbdd-4efa-928a-a2b9224904f7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110020,7 +110020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf7f86a8-2999-428d-83d7-752de1dfef0f", + "id": "1c1abda0-8970-4fb0-a972-669172637f69", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110064,7 +110064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5e1ce0a-3a2f-4cc5-8bc1-e348797b6b42", + "id": "280dac7e-992d-48dc-a2e8-40c8f8b1aff6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110108,7 +110108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85da4513-2d2d-45c3-8853-fff9b5f1db91", + "id": "18aeb38e-401e-4fdb-8927-45da5bcd16c4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -110152,7 +110152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16476251-601a-4fbd-a5ec-ce9ef6b737e9", + "id": "1b31c383-2617-41ae-8e7e-7d252ceab3a5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110196,7 +110196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89073941-4c35-4930-b682-390c03e27b98", + "id": "6ef31c6e-50d7-47ea-b680-b7fa0e125e4d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110246,7 +110246,7 @@ } }, { - "id": "9668a9a0-2685-45e7-8c8d-3b876fa08235", + "id": "5de01d9a-fc7c-4a71-94f0-17109c3d427e", "name": "Delete Non-Employee Request", "request": { "name": "Delete Non-Employee Request", @@ -110287,7 +110287,7 @@ }, "response": [ { - "id": "57d2edbe-1e05-400b-a189-78b3d41c3a23", + "id": "72f03846-8217-496c-bf87-97672ade0003", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -110321,7 +110321,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d42c4356-9814-469d-a878-35c519b6c74a", + "id": "1e7b56e3-b0e6-4c2c-b63e-bc5d63fe120e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110365,7 +110365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fac9f79-e785-459e-a3ed-e264dd73e16f", + "id": "41a536fc-0411-4245-ac47-b88e5cabd354", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110409,7 +110409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3d85375-3291-4dc6-99c0-6c8100f576ce", + "id": "0a900d17-d482-4ec6-90e9-c435f7476843", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110453,7 +110453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78748276-3d2f-461c-81ad-287ff0967a0c", + "id": "d92b17ad-ad2c-44fb-a512-8b91d2bec5a1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -110497,7 +110497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec102ead-bd3a-4ab9-8514-237c13bbd075", + "id": "85bd443b-fa14-4256-a43f-d6750296a984", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110541,7 +110541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07577560-b20d-4a57-8c0a-2b8c858597ca", + "id": "7c45089a-0dce-471f-976b-5159e66e12ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110591,7 +110591,7 @@ } }, { - "id": "091df759-1eea-47b6-b994-d7533d15ec20", + "id": "24769174-a2d2-49ea-87aa-11abe7b34429", "name": "Get Summary of Non-Employee Requests", "request": { "name": "Get Summary of Non-Employee Requests", @@ -110633,7 +110633,7 @@ }, "response": [ { - "id": "426de7e3-fe00-460f-94a9-870ba05b93d2", + "id": "362fb912-2586-4931-b221-bc3183da036f", "name": "Non-Employee request summary object.", "originalRequest": { "url": { @@ -110673,12 +110673,12 @@ "value": "application/json" } ], - "body": "{\n \"approved\": -61154242.992187634,\n \"rejected\": -70613971.8427988,\n \"pending\": 68589062.9344582,\n \"nonEmployeeCount\": 82755691.2195276\n}", + "body": "{\n \"approved\": -57908360.983422555,\n \"rejected\": 51438657.17006236,\n \"pending\": 41354360.35729939,\n \"nonEmployeeCount\": -96683384.07032189\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bd711dc7-efee-421f-bd32-518d41b755b2", + "id": "6f60f0b6-d3ac-4a54-98b2-cb0dc9acda3e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110723,7 +110723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b82b3174-d377-4c20-9921-984d56534131", + "id": "a6d72b74-28d1-49c0-b2ac-ad7f3067a39e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110768,7 +110768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10f7d215-3aeb-4625-ac1c-79250610f522", + "id": "27e2197e-2e2c-4332-983e-9c539122eb52", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110813,7 +110813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92e7e9ab-b585-4ea1-ba5b-53e62da2c063", + "id": "331a6b1d-401d-44a6-bbbf-c2298b9c7e1c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110858,7 +110858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85806418-faff-4203-8e1e-573a2794ca15", + "id": "8d8297aa-d0c9-4388-9fe8-10d95c69595d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110909,7 +110909,7 @@ } }, { - "id": "8f7c5cf4-6a6c-415c-8069-9d6a5152cf5e", + "id": "4d6e1ef6-ec73-4fcd-8c02-4dd04a9754b0", "name": "Create Non-Employee Source", "request": { "name": "Create Non-Employee Source", @@ -110951,7 +110951,7 @@ }, "response": [ { - "id": "c5976634-edbd-468a-a559-8014aebadd81", + "id": "3f350934-3f21-4be8-9f4c-f04370dae962", "name": "Created non-employee source.", "originalRequest": { "url": { @@ -111007,7 +111007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98962c78-892c-4858-b4ed-cd019f62aa4f", + "id": "0c8a36a8-5faf-47a1-a7af-c36a2a0edfc1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111063,7 +111063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "027f8dcf-bca6-4615-acc4-4ac4d7c98988", + "id": "56003758-e1d4-44cf-9ac7-dd0ae00d8c91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111119,7 +111119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbfea2bc-75c1-4779-a162-68a3c07cc6cf", + "id": "dcaa5cd2-c004-47cb-bebf-45cba061d714", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111175,7 +111175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23bc3eff-cba2-4dde-89ec-b25fc78ee1c8", + "id": "15d26391-d9f0-44ea-8c04-7ffc4bc8ea38", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111231,7 +111231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcb9faa1-0f84-4435-b605-16dccc688c4e", + "id": "28ecc57f-889f-4481-b23d-8d8f74eb7b73", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111293,7 +111293,7 @@ } }, { - "id": "a7760192-dd76-48e1-b711-e8a27765506b", + "id": "dd870fc4-0cdc-4e1d-a262-4cf5cd783d66", "name": "List Non-Employee Sources", "request": { "name": "List Non-Employee Sources", @@ -111377,7 +111377,7 @@ }, "response": [ { - "id": "ea2f44ac-d3ad-4f86-8c67-987988b0dce3", + "id": "cdf55c62-ce7e-4312-b5b8-a9f68c66b374", "name": "List of non-employee sources objects.", "originalRequest": { "url": { @@ -111475,7 +111475,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd14a303-a7d9-4f9e-abb6-39ea27f1fee3", + "id": "ed7109a1-51da-4813-9930-a70d3ecfd2cb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111573,7 +111573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf78c971-d22e-400e-83e4-b191a8d7fc2d", + "id": "6968cfc1-2cf6-466b-8233-37757427b5e5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111671,7 +111671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f72cacdf-3dd6-4b75-bfef-f4515c7b5461", + "id": "3f65ea47-4f6e-4c21-a8e8-c0b2989aa918", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111769,7 +111769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dedabc3b-0179-4e2b-91c5-60adcaad16c8", + "id": "e549d640-b36c-467c-a36f-69b025053673", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111867,7 +111867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2200c4df-a85c-4351-92b2-0a813ac70ded", + "id": "c0d46e35-e80b-4ffc-9a1b-9cc058a0217d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111971,7 +111971,7 @@ } }, { - "id": "3282e19a-9182-43e8-bb87-a23313700454", + "id": "d27865c6-a612-4a74-a897-4684e0a1d20f", "name": "Get a Non-Employee Source", "request": { "name": "Get a Non-Employee Source", @@ -112012,7 +112012,7 @@ }, "response": [ { - "id": "0efe9745-a651-426f-b08b-4112c111197f", + "id": "2f509990-4f23-41e9-a5de-1122b39ad71a", "name": "Non-Employee source object.", "originalRequest": { "url": { @@ -112056,7 +112056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db98fabf-9c16-439c-8528-98295c29c70a", + "id": "3043e62e-fbf1-4be6-ab42-cb0a229d92ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112100,7 +112100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcec24f8-73e8-4bc5-b83e-f4a14f26abac", + "id": "feab7190-3911-4743-a3a1-ba9bf4f213a9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112144,7 +112144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dba8e08d-7187-4e68-96dd-279f3099ad49", + "id": "216a2255-0af0-4ad4-b9aa-76bd04e9a246", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112188,7 +112188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8738553-4650-4679-b944-dfa4a697a4c1", + "id": "313bd0d6-34a4-4c09-9f72-4687d58c5454", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112232,7 +112232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4027b726-1670-4131-ae90-f73db04ae97b", + "id": "8fe31cf8-c96d-4735-adac-78cdabab45ec", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112282,7 +112282,7 @@ } }, { - "id": "e39284fc-ed33-495d-911d-7adf9ba38823", + "id": "79f80835-5a9e-4d3c-8ee8-7ede7f6d8342", "name": "Patch a Non-Employee Source", "request": { "name": "Patch a Non-Employee Source", @@ -112336,7 +112336,7 @@ }, "response": [ { - "id": "217ab76c-0179-43ff-bcee-210d2e0d20ea", + "id": "64518e80-8106-4ef2-8fe6-a678197a2d57", "name": "A patched non-employee source object.", "originalRequest": { "url": { @@ -112393,7 +112393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb86b59f-34b0-419b-a67e-35f4ab265076", + "id": "8e988640-f054-445a-b6bd-c7f0438c4df1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112450,7 +112450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "608243f8-8c78-4fe7-adc8-b5b6c2ec1570", + "id": "db125353-4cce-4bd9-88f9-64dfca2c95d9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112507,7 +112507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48e2acea-7e85-48bb-b42c-a4973f9f7bf9", + "id": "6988098d-b190-4cbe-9f86-b069a5836221", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112564,7 +112564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbe7802a-ceca-4821-b055-22c4674352af", + "id": "8052c2bb-3549-4659-815e-f5ccf0df796a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112621,7 +112621,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78b8c08f-7bb5-4861-8f15-749fa2971cef", + "id": "327b5dc0-ce8e-4d8e-be62-bfbd084b92c9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112684,7 +112684,7 @@ } }, { - "id": "d19a0231-ff59-4be9-98e4-81c2e25c0068", + "id": "a05067b5-ab4e-4166-ab64-73ac1d1042bc", "name": "Delete Non-Employee Source", "request": { "name": "Delete Non-Employee Source", @@ -112725,7 +112725,7 @@ }, "response": [ { - "id": "a9d3758c-c2b0-4fbc-9ed7-60c0b6db31d2", + "id": "6f02a082-2a5e-4d33-ba4d-fc75b733a795", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -112759,7 +112759,7 @@ "_postman_previewlanguage": "text" }, { - "id": "239d5177-69dc-4865-8589-c333b1322f4c", + "id": "e85d9174-8f6c-499a-9094-52e5a4cdc716", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112803,7 +112803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4c57f2f-32c2-4c84-bacb-27995b373464", + "id": "05e1c86d-be37-46fe-979d-208de34ad02f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112847,7 +112847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26321597-1337-4ef2-9dca-a46e302f0be6", + "id": "9542bb58-d3f1-4fff-a04a-16621c81ea57", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112891,7 +112891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34cf5263-5bac-4a24-b027-8e3c6a8aa68f", + "id": "f6887b36-2bf8-4571-8a1f-2d91a468db59", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112935,7 +112935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e5c66fc-25f5-4553-b0ce-8cdc742dd7e3", + "id": "75f4076b-3fda-4eab-9f8d-895324578514", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112985,7 +112985,7 @@ } }, { - "id": "55b0ef99-4d1b-4072-9eef-747db37033d2", + "id": "080a1d9b-7371-472e-8b54-5bd608a88ac5", "name": "Exports Non-Employee Records to CSV", "request": { "name": "Exports Non-Employee Records to CSV", @@ -113028,7 +113028,7 @@ }, "response": [ { - "id": "cdf64395-a033-4a2e-92e3-9d1540f68260", + "id": "d97ba8c2-4dbd-41f7-8e86-c65d69a85004", "name": "Exported CSV", "originalRequest": { "url": { @@ -113074,7 +113074,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7235268d-7227-42a4-91e0-8d89feb391bb", + "id": "fe15a160-472a-45ce-8e51-365f2dabeb12", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113120,7 +113120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88c9152d-9f16-4442-b875-574697b09245", + "id": "1c1de2c3-bf88-404a-8669-68b8f3e7024e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113166,7 +113166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e026d87-9add-4922-8c3f-c0983ad3026c", + "id": "7d17c9c5-ee3f-4eda-a0d9-288186435b64", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113212,7 +113212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3aa663a3-c7c1-498e-a1dd-3c051a8fbd53", + "id": "dffc09c1-8d10-4a0b-8e39-37759d37de79", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -113258,7 +113258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9606a31e-36d0-4e7e-8b17-8148f1a00c17", + "id": "649de309-98a0-4ed9-8e3d-624715d69d26", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113304,7 +113304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97830def-4c2c-4386-8e87-b496c10b014b", + "id": "b6fcf60f-75dd-4ae1-b534-f1cd51aa3b75", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113356,7 +113356,7 @@ } }, { - "id": "57a94c24-f24a-4e0b-955c-b29c5493afce", + "id": "5c12f8e4-e398-478f-8668-6d44ec3edd49", "name": "Imports, or Updates, Non-Employee Records", "request": { "name": "Imports, or Updates, Non-Employee Records", @@ -113407,7 +113407,7 @@ "type": "text/plain" }, "key": "data", - "value": "exercitation", + "value": "eu laboris magna velit", "type": "text" } ] @@ -113415,7 +113415,7 @@ }, "response": [ { - "id": "761ffc6f-50c6-4845-86b4-64c97b2558bf", + "id": "1ca432b2-7991-44e6-9400-6a91ba752dca", "name": "The CSV was accepted to be bulk inserted now or at a later time.", "originalRequest": { "url": { @@ -113458,7 +113458,7 @@ "type": "text/plain" }, "key": "data", - "value": "exercitation", + "value": "eu laboris magna velit", "type": "text" } ] @@ -113477,7 +113477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f647987c-a4e7-4cc3-9084-ced72756aa30", + "id": "ca0aa172-4a17-446c-b34b-47d4bd753419", "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": { @@ -113520,7 +113520,7 @@ "type": "text/plain" }, "key": "data", - "value": "exercitation", + "value": "eu laboris magna velit", "type": "text" } ] @@ -113539,7 +113539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d95729d-2820-44b1-8c9b-d759fb8a2adc", + "id": "7e457fa2-e3df-4301-8ccf-c3bb56e71ec5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113582,7 +113582,7 @@ "type": "text/plain" }, "key": "data", - "value": "exercitation", + "value": "eu laboris magna velit", "type": "text" } ] @@ -113601,7 +113601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "488d067a-3dd5-4cf0-a166-9a2b9941898b", + "id": "9b7ebf91-ab81-4407-9bcf-f905a84040ae", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113644,7 +113644,7 @@ "type": "text/plain" }, "key": "data", - "value": "exercitation", + "value": "eu laboris magna velit", "type": "text" } ] @@ -113663,7 +113663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46448f48-610a-449c-aff1-9646a11bbb29", + "id": "69f9f313-89d1-449e-9e3f-cc8f8216905c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -113706,7 +113706,7 @@ "type": "text/plain" }, "key": "data", - "value": "exercitation", + "value": "eu laboris magna velit", "type": "text" } ] @@ -113725,7 +113725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dcb306d-01f9-4b66-a1c3-7fd4e56733f9", + "id": "59e359dc-2d85-4024-ba90-f71017873746", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113768,7 +113768,7 @@ "type": "text/plain" }, "key": "data", - "value": "exercitation", + "value": "eu laboris magna velit", "type": "text" } ] @@ -113787,7 +113787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bbfc06b-c871-424a-9fb6-4d9d71afa1b8", + "id": "aa23d1ea-d802-4390-b995-ce72f821b1d5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113830,7 +113830,7 @@ "type": "text/plain" }, "key": "data", - "value": "exercitation", + "value": "eu laboris magna velit", "type": "text" } ] @@ -113855,7 +113855,7 @@ } }, { - "id": "36d397ff-c218-4466-93b8-57ff52592717", + "id": "fb229683-68ff-45ac-9811-fc56db82e6b2", "name": "Bulk upload status on source", "request": { "name": "Bulk upload status on source", @@ -113898,7 +113898,7 @@ }, "response": [ { - "id": "47e3f91a-84b8-4b88-bebe-16ca524ef6b4", + "id": "03b60295-a6a3-4d3f-b86b-ed18252f06ea", "name": "Status of the newest bulk-upload job, if any.", "originalRequest": { "url": { @@ -113944,7 +113944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8308c5ff-0c58-4b39-8de2-7e28b3230c97", + "id": "59a7c484-8027-4da8-834e-11dae26432c5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113990,7 +113990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41f5e1f9-3add-4c65-8580-3ddb46c23a7c", + "id": "3d7eedaa-e8c6-49d9-b4a4-e3ad4547030e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114036,7 +114036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff19b661-026d-43ed-bc10-c4b1bdb33363", + "id": "8890604f-2273-45d8-b6c7-11ed9a106921", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114082,7 +114082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "868caef8-285d-4523-a688-2672c6e5d939", + "id": "799dd887-854f-4018-b1ce-003fde383f3c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114128,7 +114128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10d55a0c-cfae-4dc4-8b78-7ffb1362ad1a", + "id": "74a39908-6ef7-42d7-a95c-97e98adffa10", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114180,7 +114180,7 @@ } }, { - "id": "a7badc22-2eeb-4e4e-bec0-e724e247bd97", + "id": "2242480c-549e-4622-8761-3e800b1fbc78", "name": "Exports Source Schema Template", "request": { "name": "Exports Source Schema Template", @@ -114223,7 +114223,7 @@ }, "response": [ { - "id": "f817aa3d-34fa-4190-a331-2710068f6975", + "id": "469edaa6-a148-4d0e-aa42-b324342f093b", "name": "Exported Source Schema Template", "originalRequest": { "url": { @@ -114269,7 +114269,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2a9aa6d0-5d20-48b3-8090-254e80d135dc", + "id": "8ceb3232-52b5-4bd0-ada3-ba72a41db84f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114315,7 +114315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65464336-84e7-49ea-943b-6a537e9cf118", + "id": "55867b88-3904-44ee-8123-42999c5cd3d4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114361,7 +114361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f950469-281e-4a84-98a2-64ca7c573bc2", + "id": "423b53a1-2434-42b8-b0f1-f8575803294d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114407,7 +114407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2750d2c3-8e60-4c78-80b0-1203820ea340", + "id": "f5214f0a-de7c-4f8c-abf1-f371da6efffb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -114453,7 +114453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11a1d480-3954-4138-a3d2-43105bcd9410", + "id": "9480cfe0-6c8d-48c1-8b4c-db7b5a87fda6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114499,7 +114499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17cb5d34-a72a-447f-8286-ad90171e7a32", + "id": "6feb911b-4c62-4029-8652-4b381e2a0554", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114551,7 +114551,7 @@ } }, { - "id": "852d550b-d623-497f-a408-8b90bdf29718", + "id": "27f51e1d-1706-450e-b85a-77155024f81e", "name": "Get List of Non-Employee Approval Requests", "request": { "name": "Get List of Non-Employee Approval Requests", @@ -114635,7 +114635,7 @@ }, "response": [ { - "id": "075c2bc0-6688-4328-8ae2-67eec42fa7ae", + "id": "c114189c-5c08-40af-ab9a-85531b8773d9", "name": "List of approval items.", "originalRequest": { "url": { @@ -114728,12 +114728,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\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"ad Lorem est laboris\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"sit quis esse dolore\",\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\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"in tempor minim dolor anim\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"in anim\",\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\": \"REJECTED\",\n \"approvalOrder\": 1,\n \"comment\": \"ipsum sint\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"est nisi Lorem\",\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\": \"REJECTED\",\n \"approvalOrder\": 1,\n \"comment\": \"sunt est reprehender\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"proident aute cillum in\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2226ad7a-beb1-4ef9-8433-3197aceec9d0", + "id": "c8ed92be-823d-43ed-918f-e56d1e920789", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114831,7 +114831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7221b68b-4be3-45cc-bd4a-3b427a6527b1", + "id": "5d18862a-c472-4651-a25a-bc2694126ba2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114929,7 +114929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef498311-439d-436c-bee3-b077ff58d30a", + "id": "07099a92-d30b-4b5a-a017-ce73a34f5c53", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115027,7 +115027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1efcc15-c51c-46de-aaa4-4c65d0cc3da0", + "id": "5fc70a24-de85-44a6-b026-d677cdcd0e01", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115125,7 +115125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29b08bb5-52fa-43c0-a01f-74c883aa61fa", + "id": "68804aa3-cd3c-407f-99e9-683e036f232d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115229,7 +115229,7 @@ } }, { - "id": "2b9534c7-eb8d-4433-b9e3-72ca7226761d", + "id": "b6d763c8-1fe9-4820-9ca6-4ffaeff9751b", "name": "Get a non-employee approval item detail", "request": { "name": "Get a non-employee approval item detail", @@ -115280,7 +115280,7 @@ }, "response": [ { - "id": "9b055e55-2cf1-4590-ae5a-1d41a7b75616", + "id": "b245cf0a-5fe6-4d4a-9d23-04822b90f300", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -115329,12 +115329,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\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"eiusmod ullamco labore\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"sint ea reprehenderit qui\",\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 \"tempor76\": \"reprehenderit enim\",\n \"officia_31\": \"enim Lorem eiusmod Ut\",\n \"aliqua9f\": \"ut tem\"\n },\n \"approvalStatus\": \"REJECTED\",\n \"comment\": \"elit labore deserunt\",\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\": \"REJECTED\",\n \"approvalOrder\": 1,\n \"comment\": \"nulla officia\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"laborum Excepteur minim\",\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\": \"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 }\n ]\n },\n \"data\": {\n \"sed_91\": \"se\"\n },\n \"approvalStatus\": \"REJECTED\",\n \"comment\": \"eiusmod aute enim ipsum\",\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": "3e0c744a-6025-48be-8f1f-d27d3412df41", + "id": "ac6394d4-8771-4540-a095-b34c670586c3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115388,7 +115388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f303fc14-959c-41c7-bcf4-5134c312dcaf", + "id": "fea23f73-6a73-4576-bf3f-06e556292662", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115442,7 +115442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8484c76-65c8-4f9f-8006-71c18bd5d720", + "id": "195974e8-b9ca-4a9f-bd1e-6f6e6ff007ad", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115496,7 +115496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df47f62a-8905-4dca-a53f-0072e33d8c1c", + "id": "52212df7-e5c0-4696-bfc1-33d6f608d165", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115550,7 +115550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aee29423-bbba-43dc-80b5-af77af667573", + "id": "a2dbb90c-335e-4aa3-b97f-74068861ef73", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115610,7 +115610,7 @@ } }, { - "id": "b87df4b7-63c0-4dbb-ab86-215a5ab37a1d", + "id": "2947984b-a98d-429d-a200-1133660befb1", "name": "Approve a Non-Employee Request", "request": { "name": "Approve a Non-Employee Request", @@ -115631,7 +115631,7 @@ "variable": [ { "type": "any", - "value": "sed nisi sunt qui", + "value": "Lorem", "key": "id", "disabled": true, "description": { @@ -115654,7 +115654,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ipsum velit\"\n}", + "raw": "{\n \"comment\": \"anim in\"\n}", "options": { "raw": { "headerFamily": "json", @@ -115665,7 +115665,7 @@ }, "response": [ { - "id": "b3c7d2c2-6bd2-4a14-8ed5-ed3ae8acca54", + "id": "ed0862e4-c2f3-4edf-b5c4-d95d3fe5239d", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -115701,7 +115701,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ipsum velit\"\n}", + "raw": "{\n \"comment\": \"anim in\"\n}", "options": { "raw": { "headerFamily": "json", @@ -115718,12 +115718,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\": \"REJECTED\",\n \"approvalOrder\": 1,\n \"comment\": \"mollit deserunt ut\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"Duis deserunt in\",\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\": \"NOT_READY\",\n \"approvalOrder\": 1,\n \"comment\": \"velit dolor est\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"officia ex qui\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3754e9e8-e2b2-450a-a945-b259c74611bf", + "id": "f04e8a50-f7ef-4993-889c-fe33c42d1955", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115759,7 +115759,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ipsum velit\"\n}", + "raw": "{\n \"comment\": \"anim in\"\n}", "options": { "raw": { "headerFamily": "json", @@ -115781,7 +115781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e518a9e4-b859-43bb-a594-276801bea566", + "id": "0a9e4e9c-d13b-4c35-99d7-dd2fdce8958f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115817,7 +115817,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ipsum velit\"\n}", + "raw": "{\n \"comment\": \"anim in\"\n}", "options": { "raw": { "headerFamily": "json", @@ -115839,7 +115839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22ea58ab-456b-4cd3-b69a-56746468c042", + "id": "c65e9687-5188-4c3b-918d-b56044457757", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115875,7 +115875,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ipsum velit\"\n}", + "raw": "{\n \"comment\": \"anim in\"\n}", "options": { "raw": { "headerFamily": "json", @@ -115897,7 +115897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70afae8a-c306-4886-94cf-788785404c56", + "id": "b969dbbb-77a5-408e-a85c-6f28a3c6f113", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115933,7 +115933,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ipsum velit\"\n}", + "raw": "{\n \"comment\": \"anim in\"\n}", "options": { "raw": { "headerFamily": "json", @@ -115955,7 +115955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e5b9eff-e1b9-49fc-9969-52f44f503a56", + "id": "fd808cee-7e4c-4208-a6e7-b917c37004cd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115991,7 +115991,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ipsum velit\"\n}", + "raw": "{\n \"comment\": \"anim in\"\n}", "options": { "raw": { "headerFamily": "json", @@ -116019,7 +116019,7 @@ } }, { - "id": "17de5ed3-3021-4570-a7f8-4cc305000c31", + "id": "f32e8d3d-05ee-4b83-9a44-a2e56cdd3996", "name": "Reject a Non-Employee Request", "request": { "name": "Reject a Non-Employee Request", @@ -116040,7 +116040,7 @@ "variable": [ { "type": "any", - "value": "sed nisi sunt qui", + "value": "Lorem", "key": "id", "disabled": true, "description": { @@ -116063,7 +116063,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ipsum nostrud\"\n}", + "raw": "{\n \"comment\": \"incididunt dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -116074,7 +116074,7 @@ }, "response": [ { - "id": "b6da34ed-4c01-4952-a88d-6181d8f6793a", + "id": "bd6c23c3-4f70-48ae-9f89-0e76d67cd2e8", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -116110,7 +116110,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ipsum nostrud\"\n}", + "raw": "{\n \"comment\": \"incididunt dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -116127,12 +116127,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\": \"REJECTED\",\n \"approvalOrder\": 1,\n \"comment\": \"mollit deserunt ut\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"Duis deserunt in\",\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\": \"NOT_READY\",\n \"approvalOrder\": 1,\n \"comment\": \"velit dolor est\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"officia ex qui\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "df45a116-cd4b-4853-a986-75cc0e8331d2", + "id": "ee4ccd43-4329-4f0a-98fe-94f3ddbf30d8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116168,7 +116168,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ipsum nostrud\"\n}", + "raw": "{\n \"comment\": \"incididunt dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -116190,7 +116190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3e89fa0-b256-4955-bfa8-5ac5fffca06b", + "id": "0c249210-3992-446d-8cc9-5abc298e9878", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116226,7 +116226,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ipsum nostrud\"\n}", + "raw": "{\n \"comment\": \"incididunt dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -116248,7 +116248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35c382ba-e1ff-48b0-b4d8-411700210700", + "id": "ffb3bbb9-e623-4095-9d4a-382de24ca8cc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116284,7 +116284,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ipsum nostrud\"\n}", + "raw": "{\n \"comment\": \"incididunt dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -116306,7 +116306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae1d9e03-41b3-440c-9fdf-adb2dce94f19", + "id": "15687c10-decd-4f68-9556-6eb44e9b08af", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116342,7 +116342,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ipsum nostrud\"\n}", + "raw": "{\n \"comment\": \"incididunt dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -116364,7 +116364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b004e1b-5415-44fc-8951-401409a4c2b4", + "id": "237ee394-c257-40d5-965d-4efa80245bd9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116400,7 +116400,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"ipsum nostrud\"\n}", + "raw": "{\n \"comment\": \"incididunt dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -116428,7 +116428,7 @@ } }, { - "id": "0c6a50c7-6c41-4416-acab-b0238cc37ac2", + "id": "56497fd1-99ac-4bdb-aa53-42538eadf6e0", "name": "Get Summary of Non-Employee Approval Requests", "request": { "name": "Get Summary of Non-Employee Approval Requests", @@ -116470,7 +116470,7 @@ }, "response": [ { - "id": "cee3f6d2-1443-4263-a8fc-a1a34718fc19", + "id": "d1328550-40e4-4cbe-9a13-2c5fd6a79116", "name": "summary of non-employee approval requests", "originalRequest": { "url": { @@ -116510,12 +116510,12 @@ "value": "application/json" } ], - "body": "{\n \"approved\": 18716143.86537224,\n \"pending\": -42350459.94307969,\n \"rejected\": 73579506.52834192\n}", + "body": "{\n \"approved\": 80576804.49187204,\n \"pending\": -17185148.98242423,\n \"rejected\": -90558219.9291787\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "100e50e1-4e3b-4388-a918-1944f14bf3d0", + "id": "7fd32bce-f0c4-49f9-a4bf-5d2225690f12", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116560,7 +116560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf795d63-4920-4e31-8784-ba75157fa465", + "id": "772650ea-9215-4913-b7e3-0e1a64695dc7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116605,7 +116605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3a0c90e-bf58-4f18-bcf4-40b18dbaf2b0", + "id": "5f2ab1a7-e8f4-41c5-942d-f0c60f9139cf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116650,7 +116650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "faf2b07c-eddb-4f22-afe4-85fce4c51e31", + "id": "53bd393c-87c1-4207-a83c-7e7836025c71", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116695,7 +116695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d028775-8a90-4267-a7e3-370e85ec80d3", + "id": "c4813127-ae41-4403-b9eb-5db24b2a0f43", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116746,7 +116746,7 @@ } }, { - "id": "ec667b1e-d5e3-44c2-8102-36a8c053885a", + "id": "d22711e6-8788-4c88-8dcb-f36820655ff3", "name": "List Schema Attributes Non-Employee Source", "request": { "name": "List Schema Attributes Non-Employee Source", @@ -116788,7 +116788,7 @@ }, "response": [ { - "id": "4ef38378-f083-4861-8f2f-957ee2ded65f", + "id": "dd1cfd5b-7281-40a7-8e7c-e196cfafe4e1", "name": "A list of Schema Attributes", "originalRequest": { "url": { @@ -116833,7 +116833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64cc256d-2fa1-47e0-a108-1440f64aafd5", + "id": "035202ef-ab15-4e2f-9607-eb6a7d0c1fb5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116878,7 +116878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3026181-e737-46d8-a31f-3b6ade65d90c", + "id": "b24d7738-8e96-44e1-95cc-c6e43f22c877", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116923,7 +116923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24482b19-c1b8-475f-a153-af251be18584", + "id": "cc56e65e-2b8f-48eb-8230-d47e2364a991", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116968,7 +116968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79f269f8-a503-45cb-8660-bda00693e79a", + "id": "391372b0-ce3d-426f-93aa-feec11c9fa42", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -117013,7 +117013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dc0dbaf-dfbb-427a-9456-5a311eed4bcb", + "id": "dcae0887-41dd-4567-b3fa-ef946d45cd1c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117058,7 +117058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26b40ba9-aa86-4fa9-b968-1271033bfdb1", + "id": "b2d3884b-9db6-44e9-a7a0-fa28bd456a1c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117109,7 +117109,7 @@ } }, { - "id": "1cb6be98-019a-41f1-a788-6557a53ee99a", + "id": "a3bf26c4-4e5a-4c4c-bbb2-6adab4fec724", "name": "Create Non-Employee Source Schema Attribute", "request": { "name": "Create Non-Employee Source Schema Attribute", @@ -117164,7 +117164,7 @@ }, "response": [ { - "id": "8345e460-b359-4d2a-9c52-9b358c2bb0b4", + "id": "d19d7e26-fc51-4cd3-a30f-4814ea3a8f7d", "name": "Schema Attribute created.", "originalRequest": { "url": { @@ -117217,12 +117217,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\": \"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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "632cc816-9595-4d16-9a71-968887fa8999", + "id": "6a374b1e-313d-43cf-8d03-112f5577e644", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117280,7 +117280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da42f5bb-6fb5-4a0e-a846-e90cb2c72a6a", + "id": "5a849fb0-0385-4b55-9716-570e0acb0836", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117338,7 +117338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c77061e7-e41f-4e8d-b9cc-80b0ad23b966", + "id": "594b6d38-52dc-41a9-add2-326b36743aff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117396,7 +117396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18467d92-6ec4-4b5e-8991-544f05692cd2", + "id": "54a99e46-80aa-43c9-8698-e7189d24b3b4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117454,7 +117454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d682f2b-16d2-45cd-a2a0-727b3aac73d9", + "id": "52210efe-fd6c-43cd-b2bd-7aecf94485d8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117518,7 +117518,7 @@ } }, { - "id": "a28c778b-29d1-4999-9812-435a5b78cd51", + "id": "033c17b6-8bfd-43ed-9414-66a01d555a15", "name": "Delete all custom schema attributes", "request": { "name": "Delete all custom schema attributes", @@ -117560,7 +117560,7 @@ }, "response": [ { - "id": "833dc409-58de-4716-98a0-1244a5f463cb", + "id": "0370174c-5d41-4221-81df-c6310c0e48bb", "name": "All custon Schema Attributes were successfully deleted.", "originalRequest": { "url": { @@ -117595,7 +117595,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c68e8ed0-a107-47bf-a786-7ea3db39c654", + "id": "d122c5dd-5818-4a84-89fa-951b607a6547", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117640,7 +117640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f6f5f85-e330-47da-a006-ff3416c2814b", + "id": "f6c1e8b5-04ce-426e-bea9-528b03dd8d1f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117685,7 +117685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72d9e2b3-cd88-4bf7-891c-4ef148e14c04", + "id": "f1d1ae83-c2db-4dda-b370-86c8b920fb13", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117730,7 +117730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "650832ff-87f0-49c5-a545-11a2538378bd", + "id": "09173e14-6d7b-4e1b-a286-f29735d26da9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117775,7 +117775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47e33b57-dacd-4376-9a9e-5d939319c9d8", + "id": "a00cfb14-946b-4bd9-b1c9-1f0aeb342a00", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117826,7 +117826,7 @@ } }, { - "id": "5bae43d4-b583-4c60-84be-b9f52c27b1f3", + "id": "859de5c2-daca-42e9-8bb5-3b4a72650e83", "name": "Get Schema Attribute Non-Employee Source", "request": { "name": "Get Schema Attribute Non-Employee Source", @@ -117879,7 +117879,7 @@ }, "response": [ { - "id": "2a9cef54-2041-435f-82aa-afb8103c766b", + "id": "57a9de9b-5c5a-4925-b53a-3d89ab7ea9a9", "name": "The Schema Attribute", "originalRequest": { "url": { @@ -117925,7 +117925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b05c837-802e-429b-8b04-036fec4b8861", + "id": "fb493a37-c477-4c52-a6d3-5d131744f4ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117971,7 +117971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea4bdc97-cba6-4eb7-8c5c-d41dc4805e0d", + "id": "f788fe2d-4f58-461f-bab4-3c663c3e1bec", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118017,7 +118017,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2714d0a-ba99-4e8e-9d68-5004e1941049", + "id": "3ba46fa4-aec3-420a-8db3-9feeada64efb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118063,7 +118063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27cafebb-de35-4e5e-8f19-3cdf907534f0", + "id": "81f02c3b-5518-4842-a591-0917c7c9ec16", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118109,7 +118109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "814162ba-a5c2-4d24-a5fe-1af5790da4e5", + "id": "24ff13c4-67ff-416b-ba67-6742c3383cc9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118161,7 +118161,7 @@ } }, { - "id": "6cb14032-e87f-437d-aa3c-c4f6757439c2", + "id": "f5f21c5c-239f-45c7-9524-cbb693abfd7f", "name": "Patch Non-Employee Source's Schema Attribute", "request": { "name": "Patch Non-Employee Source's Schema Attribute", @@ -118227,7 +118227,7 @@ }, "response": [ { - "id": "9c0aa5ee-5d64-4c12-8982-058c62342f0e", + "id": "6f5bc104-24cc-4b0f-9d88-da0e92775c7f", "name": "The Schema Attribute was successfully patched.", "originalRequest": { "url": { @@ -118281,12 +118281,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\": \"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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aa8012ea-3d59-49f3-84e1-6b559b4d4b92", + "id": "1564933b-6187-43c9-9a4c-8e1e063da874", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118345,7 +118345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de3dc22e-4afd-406f-909b-af2dfd702850", + "id": "c82e8b75-61fb-49a7-968d-165bed8861ee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118404,7 +118404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f713f451-8b66-431b-bbf4-04cf10b543e9", + "id": "d654b0fb-7152-4aa8-8d02-df2b83a575b1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118463,7 +118463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fc225e1-4c5d-40ec-9297-f181d00907b6", + "id": "71d6423f-d10e-4d41-bf91-3f556032c249", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -118522,7 +118522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "703ed2d8-a233-4708-ac7d-a853578a05fc", + "id": "1da83121-41ea-487d-8fb1-889fd188a2d5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118581,7 +118581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6a4b5ee-df9c-4b13-aaca-7b6f063553af", + "id": "c6bc5e83-efd0-4ddb-ad4a-f644db73afdb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118646,7 +118646,7 @@ } }, { - "id": "17592f5b-457c-45f6-ad99-a7f1b612c0a1", + "id": "2cc42565-f940-4c14-aa42-85c59e68d685", "name": "Delete Non-Employee Source's Schema Attribute", "request": { "name": "Delete Non-Employee Source's Schema Attribute", @@ -118699,7 +118699,7 @@ }, "response": [ { - "id": "68f0f4a9-b4d5-42ce-a1fe-eea89ab09b79", + "id": "6d8e7766-36f8-4f1b-acef-1fbd04914632", "name": "The Schema Attribute was successfully deleted.", "originalRequest": { "url": { @@ -118735,7 +118735,7 @@ "_postman_previewlanguage": "text" }, { - "id": "49f85dd9-9a5f-40ed-ba86-1399bb2d799f", + "id": "85fcecbe-5726-4cd9-85b5-baebb6af0a10", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118781,7 +118781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "794a7734-f794-4e78-9b4b-a587ca96f07c", + "id": "48a42683-848e-402b-81ac-10750094b254", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118827,7 +118827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "768d0ac9-cc2a-420c-a67b-b6cde2e63896", + "id": "c99169e1-fa9b-4321-8c88-54b66bc36836", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118873,7 +118873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26f0e5ab-f35e-4518-958c-43f782a86b35", + "id": "c99578fa-56bf-43be-afa7-66c4078739df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118919,7 +118919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "148cf0a1-4400-4291-b0fa-aef9fc75f92f", + "id": "374edc7d-a4f3-4563-aa8f-da93158e0ed6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118977,7 +118977,7 @@ "description": "", "item": [ { - "id": "e88e4091-7541-43f9-979a-7328e84c7e62", + "id": "2f2c2b6f-020f-4b79-8fd8-ad1a811ff29e", "name": "Change MAIL FROM domain", "request": { "name": "Change MAIL FROM domain", @@ -119019,7 +119019,7 @@ }, "response": [ { - "id": "ff4c5afa-67c2-4ccf-806c-59559b6ae9ea", + "id": "08ba18ae-ed69-4131-8f0f-00f047122c79", "name": "MAIL FROM Attributes required to verify the change", "originalRequest": { "url": { @@ -119075,7 +119075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "560a72fc-2dd7-4633-b60c-c015a23c631b", + "id": "6108b1e9-7e64-41d4-8ced-9ce9b8768daa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119131,7 +119131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa999089-a3dc-4a0d-9bd4-e8c2c7f3817b", + "id": "b648b2bd-89d8-4a9e-8260-ced80cf1aa3e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119187,7 +119187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aaa7ef70-efff-47ee-b3ab-44934908b315", + "id": "0fe94605-9024-440e-a5ed-90f16aaaca24", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119243,7 +119243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d754c5d-1118-482d-a959-3592a1a0fc8a", + "id": "e52fed3d-a50c-487b-9a1d-7193394bacee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119299,7 +119299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cc88a1b-d1a9-4adf-90c0-2a78e7cef3e3", + "id": "c854b6b5-f4a3-49c7-bb75-c419e4c1674a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119361,7 +119361,7 @@ } }, { - "id": "651d8c26-9f9b-463f-8b8f-625f86e527f6", + "id": "3d3884e1-313b-4aaa-9d76-1c64033b342c", "name": "Get MAIL FROM Attributes", "request": { "name": "Get MAIL FROM Attributes", @@ -119406,7 +119406,7 @@ }, "response": [ { - "id": "66a298ef-0bcf-4902-8008-f20c61ffe129", + "id": "8911ce4e-a75b-4d88-9a7b-3fe47b3d4fec", "name": "MAIL FROM Attributes object", "originalRequest": { "url": { @@ -119460,7 +119460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3da3c0f8-520d-4b95-91e7-08be0dad79b0", + "id": "2ae4b88f-6867-4b86-9435-5f46ec0a7482", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119514,7 +119514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a795e133-0d63-4c03-8046-1f32d02cf84e", + "id": "0af8c632-1224-4830-a2d9-55743432ae1c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119568,7 +119568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dacadc1-1726-4644-a98e-3df616ee6cf8", + "id": "45a28c44-0918-451d-b4c8-ac660ef368a4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119622,7 +119622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6749d47f-94ae-490b-a60b-1857e56ba563", + "id": "f12cc5e9-e977-468c-bf96-8343ef7efa0f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119676,7 +119676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "229aab16-3d02-4b25-b29f-7033f5fe3767", + "id": "760786ae-6e18-4d8c-b9f8-5fc41fea964c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119736,7 +119736,7 @@ } }, { - "id": "8f77ba77-cf3d-4ad2-8e5e-b5f35a827d8d", + "id": "393181cc-021a-4e1f-a7a2-69dcfbed5c08", "name": "List Notification Template Defaults", "request": { "name": "List Notification Template Defaults", @@ -119793,7 +119793,7 @@ }, "response": [ { - "id": "1531dceb-f898-418d-8ce4-347944be4e34", + "id": "db85e50f-c4d1-4128-904b-e19561fde3fe", "name": "A list of the default template objects", "originalRequest": { "url": { @@ -119864,7 +119864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2559a942-d228-47fe-a30a-c71c1d085bc9", + "id": "626799db-f960-4428-bda4-bb69e1e04dbe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119935,7 +119935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba9ded1a-59f2-4d79-8fd7-1b5a6203b354", + "id": "8db0bee1-713a-4877-9d98-74d5de3a707c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120006,7 +120006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73cb8b85-25df-4989-af0a-a91109f7f753", + "id": "61475dae-dd3b-4ff8-b06c-68da8119beef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120077,7 +120077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98e218f8-4e28-4fcc-9475-8c05ab7838d6", + "id": "a58471c4-a209-433f-ac3d-931fd10d85ef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120148,7 +120148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7b99636-2394-4e2f-a065-be23d64fb637", + "id": "518171e4-1fb2-484c-8d33-6a5fcc8de7f9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120225,7 +120225,7 @@ } }, { - "id": "ef9a5033-8a83-431e-bce5-4fd32c3642b6", + "id": "dfd6cf90-5d45-4422-af22-d145e53fdb4a", "name": "List Notification Templates", "request": { "name": "List Notification Templates", @@ -120282,7 +120282,7 @@ }, "response": [ { - "id": "9f5629d5-d7fd-4242-8bbd-7020a00d17fd", + "id": "282e2490-f3a4-48a9-a947-fcdca2c396ec", "name": "A list of template objects for your site", "originalRequest": { "url": { @@ -120353,7 +120353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dafabb10-36de-49af-b0b0-2309ae977923", + "id": "e1ba69ea-e96e-4a48-800d-f06bf83d5c13", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120424,7 +120424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e7710db-7c4a-413e-b7d8-d2fe65cd6057", + "id": "023d43b6-b5b8-449e-83ab-30d53845ac13", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120495,7 +120495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "357692f5-91a9-48cc-92fc-9febee93d51d", + "id": "5d56581e-bdbe-4516-bc0b-59151990460b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120566,7 +120566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f0015aa-f3c6-4c6d-b97b-4959dd73004f", + "id": "dd01094b-b3e9-4156-b1d3-4e5dc051e40d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120637,7 +120637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a272511-a17b-4ed7-ad4c-d123057d261f", + "id": "58644fa9-04ba-462a-a930-950ce7a04954", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120714,7 +120714,7 @@ } }, { - "id": "dfd12581-0394-41f3-9d36-846489105e96", + "id": "ad3375df-a884-4837-a632-c2a7bb31b7bd", "name": "Create Notification Template", "request": { "name": "Create Notification Template", @@ -120756,7 +120756,7 @@ }, "response": [ { - "id": "ae72ced0-a605-4f88-8993-7e89816c9566", + "id": "3df4fdb2-2867-46ce-bd80-4e45c0dd8365", "name": "A template object for your site", "originalRequest": { "url": { @@ -120812,7 +120812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01e25153-3c58-4912-bbcd-3705e702db9c", + "id": "0df505ce-0216-4ab5-92dc-437e58242a9d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120868,7 +120868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca6cb375-857b-4e87-8c3a-8ded4c25fe8c", + "id": "bcb6e407-4093-48d1-82d8-51e7fda2fee7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120924,7 +120924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bf0e67d-b7d0-40d6-921b-315c1532c123", + "id": "221e8bfd-1941-4bd2-81bf-888603c23cc6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120980,7 +120980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cf85e9d-1965-40bd-b845-ae3579767f6c", + "id": "42150c83-9e76-4893-9f38-d51e9acb0f0b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121036,7 +121036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "940832f6-d574-419a-a533-c440953cb748", + "id": "dbbc221b-7123-47ac-a858-e0fd33f07da9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121098,7 +121098,7 @@ } }, { - "id": "bd5f425b-cf06-4009-8383-68355fc96eaa", + "id": "ee7d818c-4610-4a4c-8c77-54c2593d6fd9", "name": "Get Notification Template By Id", "request": { "name": "Get Notification Template By Id", @@ -121139,7 +121139,7 @@ }, "response": [ { - "id": "f83ceeb2-adea-4c99-b171-3e7aabfcfbfc", + "id": "7a4d8539-c961-4b3f-b8b5-1d75f1bf82a9", "name": "A template object for your site", "originalRequest": { "url": { @@ -121183,7 +121183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15a0dcf5-0af9-4ad1-a7e9-e5c9bd2bbe73", + "id": "c4f6b380-e8e9-43bd-befd-b63a843eb16e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121227,7 +121227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d170848b-b15a-4622-a54c-b20264f70830", + "id": "34a5f236-d330-4f4d-94f8-de0cc1c8357e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121271,7 +121271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c510b9f6-a4ed-4892-bcde-8282b18881f8", + "id": "c1fcaff7-1e84-4373-b16b-e0cfc9a5fedd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121315,7 +121315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6c7e1f8-7cf3-496e-a40f-2ec8ca6984b6", + "id": "2c053164-8593-481c-ba3e-f330b2337dde", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121359,7 +121359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd00873b-7c58-44b5-8fd5-09576d30deed", + "id": "ff6dd88c-d737-42b6-914f-b1f2c7154faa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121409,7 +121409,7 @@ } }, { - "id": "191bb4c7-0b96-48a4-bf37-9b1e9bc2abb6", + "id": "72d71b82-2394-4628-bf70-a5b71a2d66ee", "name": "Bulk Delete Notification Templates", "request": { "name": "Bulk Delete Notification Templates", @@ -121452,7 +121452,7 @@ }, "response": [ { - "id": "3e87f3a8-dfc6-497a-b64f-5df26d8d224e", + "id": "91eee618-b7fb-459b-9713-d7e2404cd522", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -121499,7 +121499,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8f2fe0a6-a939-4ece-ac4c-e6e4b08bfd81", + "id": "2d8fb22f-1374-431b-8859-9b94d9f62172", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121556,7 +121556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fcf9472-8947-42fc-93c4-16d9ef901ac9", + "id": "a8121e2b-fb5f-4122-8327-3ff34f52900d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121613,7 +121613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b01b4413-c521-4aaa-8af1-d41c05b32bd3", + "id": "d558d1cb-b7bc-4338-9388-cc86dad93ed9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121670,7 +121670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7765cde-97a7-4123-9e16-560c8e144c43", + "id": "baa3f479-10d0-400c-8c3f-e95130c9b345", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121727,7 +121727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27c02676-4eb9-40fa-9e1a-c615c0e75587", + "id": "3ae22054-835d-4722-b264-c7cc7ece3281", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121790,7 +121790,7 @@ } }, { - "id": "16dd2b9f-d82e-4b4d-9d8c-8021eb72b12e", + "id": "e751869e-e1ec-4478-86cc-1e78c97f3b1d", "name": "Get Notification Template Context", "request": { "name": "Get Notification Template Context", @@ -121819,7 +121819,7 @@ }, "response": [ { - "id": "41d8b8d5-8624-46eb-80fa-fc5eb1b1f052", + "id": "98901624-6d64-49b4-a088-7418e7d547ae", "name": "Notification template context attributes for a specific tenant.", "originalRequest": { "url": { @@ -121862,7 +121862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d005e4e6-cbd9-469e-a07d-0f5b8ff558d8", + "id": "04936c78-a879-4e35-b28b-158ecc0da130", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121905,7 +121905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9136d54b-aa94-40b8-9db6-4732c634d4e3", + "id": "4a3b5a72-e2a4-4fd3-bd40-8ef8b4119186", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121948,7 +121948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a137d3d-63e8-4505-93df-bf3652a66046", + "id": "ea983ad0-141b-4d47-b6e0-54ba74ebb9a3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121991,7 +121991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a9979f0-e876-47c4-a580-684dfc215bc0", + "id": "6c3bc5f8-cfff-4194-ba41-1fa15c7974b0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122034,7 +122034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c837e330-77db-49fd-bce8-1eca48d5b79a", + "id": "3bec1cb1-4ec2-4ce4-b9c2-933822559161", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122083,7 +122083,7 @@ } }, { - "id": "556371a4-26bd-4991-8e82-26bed183b564", + "id": "499b4d8e-fbe8-4581-a52a-32a4473a9d1c", "name": "List Notification Preferences for tenant.", "request": { "name": "List Notification Preferences for tenant.", @@ -122118,7 +122118,7 @@ }, "response": [ { - "id": "027afeb2-16e0-4baa-9b58-f4f860195b02", + "id": "a78895b1-218d-4ac7-86af-e1d0eac6da62", "name": "Return preference for the given notification key.", "originalRequest": { "url": { @@ -122162,7 +122162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dc9c121-4347-4ea0-8bb4-7009f2b62ab4", + "id": "0ad11eb5-213a-479a-92d8-d3430d8b279b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122206,7 +122206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7611dde4-03a3-4df1-99e0-10a88469f212", + "id": "6c3e723a-2438-40cd-a2a1-c9f2c31fdd4a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122250,7 +122250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00a54d1f-8b68-4a27-a3d5-8ec83b15ddbc", + "id": "4eaa51a0-9cbc-4f8a-be10-ca0fec402fc5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122294,7 +122294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd5a1851-a5d8-4925-9313-e187b58719b5", + "id": "63ee080c-9ad8-463a-ba9f-fc505d5d21c3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -122338,7 +122338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "376fce60-ff1a-4b0a-bb55-2f81ca47b697", + "id": "a191261c-b469-4f4b-ad6b-57cd931c0954", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122382,7 +122382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b406a7e-65eb-46da-bc1b-b1580a7bd4d9", + "id": "ad8ddbef-fbaf-4c79-ab99-192ec24eedb4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122432,7 +122432,7 @@ } }, { - "id": "a279a949-3bda-4fe9-855b-08fc1222d650", + "id": "89719445-518f-44ab-adf2-ca5ce77b1e79", "name": "Send Test Notification", "request": { "name": "Send Test Notification", @@ -122474,7 +122474,7 @@ }, "response": [ { - "id": "43c1eade-3354-46d1-a97a-dd11cd93a2f8", + "id": "0408c642-5a3d-452a-8de6-e9d435cb56a8", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -122520,7 +122520,7 @@ "_postman_previewlanguage": "text" }, { - "id": "23112f1b-c730-40ec-aa71-df8988349abe", + "id": "1a8214a9-347b-4435-9e00-e8b2f0011a41", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122576,7 +122576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0c8bdbb-338e-45f3-bcbd-e16700a0204a", + "id": "236e7bec-9789-4944-b7cb-66d4554aa80b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122632,7 +122632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb3390c9-20df-4ec8-80a8-e23e898bec7b", + "id": "d815730f-dc4a-4704-b668-496cb4b559f9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122688,7 +122688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e61384b-b75f-4d73-97c1-2d756b722d69", + "id": "c3f9ec7e-922e-4618-bfa0-ab1abba2fcca", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -122744,7 +122744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87fbdeb5-d07b-4d63-9e55-ab14d13e7351", + "id": "6f2f4d66-966a-4a8d-bf83-a1a3ba414947", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122800,7 +122800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d4d165b-5aff-4e67-a488-72615dd20092", + "id": "138c3d37-5015-420c-bd86-7a7c9d34a457", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122862,7 +122862,7 @@ } }, { - "id": "55de3c66-b9c1-4b75-b5f8-63d81f363c22", + "id": "23990998-ddad-4417-9abf-df966581a73d", "name": "List From Addresses", "request": { "name": "List From Addresses", @@ -122937,7 +122937,7 @@ }, "response": [ { - "id": "0dda3e2b-7395-4b6d-b910-dbdf622b447a", + "id": "636b43a2-3da0-4f8f-8eef-ac03d097a1d5", "name": "List of Email Status", "originalRequest": { "url": { @@ -123021,12 +123021,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"non laboris cupidatat\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"FAILED\"\n },\n {\n \"id\": \"veniam ex\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"FAILED\"\n }\n]", + "body": "[\n {\n \"id\": \"exercitation\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"PENDING\"\n },\n {\n \"id\": \"labore\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"FAILED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6c3ec048-ac63-449d-97f5-e5184292f66d", + "id": "516930b4-a0c5-4523-94c4-f2aaafb66503", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123115,7 +123115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44e91284-e60d-43da-87b7-fc003e180180", + "id": "c763af4c-d412-42f8-bdb9-32f552752886", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123204,7 +123204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90cf1b88-c9a7-4266-912d-9b6dadb9b0d5", + "id": "e294b263-d210-485a-b18b-13cab7a45681", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123293,7 +123293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "723ce619-db76-4f7f-b94b-67c1b4cd7ff5", + "id": "3cfb5a1f-1ab0-45bc-89cb-15e73a3b1204", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123388,7 +123388,7 @@ } }, { - "id": "61b1e515-2ee2-4ed2-9290-4d9fe295f146", + "id": "96a95707-1478-4710-a382-7bdedff0be05", "name": "Create Verified From Address", "request": { "name": "Create Verified From Address", @@ -123430,7 +123430,7 @@ }, "response": [ { - "id": "894e8b01-c466-4c2d-83c9-c20a77dbc539", + "id": "995f354e-6e13-4c94-b6b7-757b0db340d2", "name": "New Verified Email Status", "originalRequest": { "url": { @@ -123481,12 +123481,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"Ut fugiat\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"SUCCESS\"\n}", + "body": "{\n \"id\": \"anim\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"FAILED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "26dfa271-9168-4654-8aca-236961ff49d1", + "id": "5e5af186-7c75-4a8a-a01f-22189c11a4c2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123542,7 +123542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c7a89d7-95f6-414d-9c0f-6567904c5bec", + "id": "db988fe4-0dec-430c-af19-ba9a7699715c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123598,7 +123598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abf962cc-d2df-4d36-905f-f0735cfd7fe7", + "id": "531f0d3e-9db6-48e6-973e-ac28d9790277", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123654,7 +123654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cba978b-b5ad-49f2-b1e3-a522b2dc631c", + "id": "fc68816d-2662-47bd-8936-ce690ab2a2a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123710,7 +123710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3646246c-ec55-435a-922c-c4b258eb658f", + "id": "23073df2-1087-47f5-b5fa-9490876534ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123772,7 +123772,7 @@ } }, { - "id": "0a4d6fc4-8031-4326-b837-77bb9de414ee", + "id": "e7aee8fd-1c12-42b0-a369-831361d5e40d", "name": "Delete Verified From Address", "request": { "name": "Delete Verified From Address", @@ -123792,7 +123792,7 @@ "variable": [ { "type": "any", - "value": "sed nisi sunt qui", + "value": "Lorem", "key": "id", "disabled": true, "description": { @@ -123813,7 +123813,7 @@ }, "response": [ { - "id": "933e0444-88a7-4568-9408-b9e271573965", + "id": "79b398c9-e50c-4f6b-814a-18074245c12c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -123847,7 +123847,7 @@ "_postman_previewlanguage": "text" }, { - "id": "83dfc4d7-3f78-4176-8825-967edd51a750", + "id": "57dfda57-bbe7-4f8d-826a-0fbf3f8f0ddf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123891,7 +123891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7b92c78-fa78-4b93-a25d-cdb628bc1c72", + "id": "bf9178e7-34d8-431d-9d31-c18698845359", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123935,7 +123935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6853eef0-cc23-4d64-9b4b-8d3d368a3784", + "id": "2eb09f07-daf1-4f5f-9389-fac440971248", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123979,7 +123979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b881f3e-f31f-48e3-acd9-21155a62ffaa", + "id": "ba342e1c-e266-4dfb-ae27-8f5ab166cb33", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -124023,7 +124023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5fba10b-9293-4871-833d-f962dda796e4", + "id": "b10566cc-ca19-4802-a5bf-7e0fbd067f6d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124067,7 +124067,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0014fb1-7155-4543-b8f2-2af5c2ce74ed", + "id": "9ec55fa3-5398-4acf-b13b-37aed60bf3e0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124117,7 +124117,7 @@ } }, { - "id": "f26c94e4-ca7d-4362-bb8a-f1eb216ec183", + "id": "b6a3452d-59d1-486d-97cb-1a5224fed19a", "name": "Get DKIM Attributes", "request": { "name": "Get DKIM Attributes", @@ -124146,7 +124146,7 @@ }, "response": [ { - "id": "9730c1bd-6356-429d-a179-5678cb2d57a8", + "id": "f7b32600-e276-459a-850a-121d67b099d2", "name": "List of DKIM Attributes", "originalRequest": { "url": { @@ -124189,7 +124189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "016ad44e-d1a8-49a1-adf8-eb01d423bef8", + "id": "2f019352-7098-4050-bdb6-bd34314c682d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124232,7 +124232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac782b37-376d-4577-bbf3-b4cc0dd0ceda", + "id": "8263c4ce-6318-43d0-8c33-77fce0eb1694", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124275,7 +124275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9eff7951-27f4-430a-8431-3d4a32107f97", + "id": "c4d93b44-2ebb-426f-a5f9-6ed7035d5000", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124318,7 +124318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09627bb7-1d24-4e30-9969-792c24c75c71", + "id": "661bec29-0b02-4e47-8107-5e237a804643", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124361,7 +124361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44010ddb-9db2-409d-9579-42c207d60065", + "id": "9ce29535-42d1-4358-b313-2690f003c968", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124410,7 +124410,7 @@ } }, { - "id": "f7469982-cb9b-4cc2-ad57-705e4202164a", + "id": "cc16c723-0ca0-4753-9140-fb22eaef7b9b", "name": "Verify domain address via DKIM", "request": { "name": "Verify domain address via DKIM", @@ -124452,7 +124452,7 @@ }, "response": [ { - "id": "7c3e49b4-ad11-4b7c-bdce-02a881ad42a4", + "id": "a433dcb0-d0e1-4708-8075-7ed21eafc1ab", "name": "List of DKIM tokens required for the verification process.", "originalRequest": { "url": { @@ -124508,7 +124508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c11ef6bc-2afd-49f4-aae6-d00e944087b8", + "id": "e66ad514-8b0b-45cd-a24e-99de23c4697a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124564,7 +124564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75f5da5f-4a81-4bde-b4fc-5887f20614ff", + "id": "f9e0eb12-ccd5-40c7-a27b-c074ab91a4da", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124620,7 +124620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae75c088-b85c-40c5-960f-779d5e66e5dd", + "id": "06c24f43-1094-4c6e-9039-2b447862ad2e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124676,7 +124676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b873684-4199-4add-9f9e-9baff6f906d9", + "id": "4cca534a-70aa-41df-8168-b9491fe8d68c", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -124732,7 +124732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a254fee-2c94-47c3-9951-cb8d726de28f", + "id": "875c8a43-d715-4f8f-b7e2-0a1d2ec0379c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124788,7 +124788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1567660-8253-46ee-ad1a-bc08085795fd", + "id": "529632a1-ecbc-405c-98a2-65e9dc41eb49", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124856,7 +124856,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": "89493ac3-622f-4da1-bd1c-ca0733de45e8", + "id": "221ceb00-bd29-4c7f-8f23-58bbcd9dc36a", "name": "List OAuth Clients", "request": { "name": "List OAuth Clients", @@ -124895,7 +124895,7 @@ }, "response": [ { - "id": "6ff765b1-d608-4a6e-87c3-bc88d60ce81f", + "id": "efcd1a95-6094-4040-a6e8-4aa2ad0f3d5b", "name": "List of OAuth clients.", "originalRequest": { "url": { @@ -124948,7 +124948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b535958-4573-4e73-888d-1a600bfcedae", + "id": "e8a992d8-7652-4fc8-aa5d-02b782ffa595", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125001,7 +125001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8aaf091-de9d-4c18-82aa-9962486de2e7", + "id": "989b7ba9-014b-43ab-a9d7-e7cd9a6bc056", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125054,7 +125054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47ab0adb-f01b-4f52-b7fa-fa904b2b4625", + "id": "6f2b00c5-81af-4326-ab16-a44d70ffc80c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125107,7 +125107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e12851b0-2713-455c-9704-acc3c4d31b35", + "id": "822bc57b-20d4-4742-b596-51e2cb9caddc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125160,7 +125160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d35067c-9881-4292-bc05-2d3138ce47d3", + "id": "2672c021-62b4-4e50-8e38-47ba2b2eb745", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125219,7 +125219,7 @@ } }, { - "id": "bedb540c-cac5-450e-85aa-1589eb19c80b", + "id": "9872d657-3331-41a5-ba7e-422bff59589d", "name": "Create OAuth Client", "request": { "name": "Create OAuth Client", @@ -125261,7 +125261,7 @@ }, "response": [ { - "id": "b7264d05-8868-44fb-a1f9-5a1feb4f4731", + "id": "85a9f27a-2441-49ba-9407-7204353025ee", "name": "Request succeeded.", "originalRequest": { "url": { @@ -125317,7 +125317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d67736ed-6af3-4fbc-abee-8967a23bc5d0", + "id": "825e2fe7-09db-4eb1-ab4b-231e88edd2bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125373,7 +125373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b18c606-994a-48cf-ab36-8f41b93a45c5", + "id": "37bfffbc-2fe4-4e06-8830-779c882bf0dd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125429,7 +125429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5c547db-d6a1-469e-b5c9-6df512c44c18", + "id": "60a4c961-f2ec-443d-abd6-db917fadda6a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125485,7 +125485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08e58a38-7903-4e39-855c-b1c857efb5f8", + "id": "4c7c7318-cd5a-4efa-afb4-acff1ffc4405", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125541,7 +125541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89527b24-ae50-48da-b75b-dd17001bfe98", + "id": "568e3677-20ed-4421-8cc2-2dece9387159", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125603,7 +125603,7 @@ } }, { - "id": "0e27cd47-6b78-4029-95d8-682d44acdc1e", + "id": "e708b88a-975b-41d0-8693-aa0cc6e290c5", "name": "Get OAuth Client", "request": { "name": "Get OAuth Client", @@ -125644,7 +125644,7 @@ }, "response": [ { - "id": "bb493150-48db-49af-8208-bad9edd49eb5", + "id": "76aa5991-2e2d-4caf-bbe7-f0fe1a63683a", "name": "Request succeeded.", "originalRequest": { "url": { @@ -125688,7 +125688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15bf8151-1561-4492-a312-43937758c9ec", + "id": "40d17488-ca6a-4cf2-aeb7-85d8c4ca1c8f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125732,7 +125732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8657e13c-1414-4ca5-babd-ed970a1c80c5", + "id": "3c31c8fa-65ae-4677-a7c7-b369554565ce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125776,7 +125776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac888846-7958-488d-bfbe-fced4aca42d7", + "id": "25f0141e-6af6-4eac-8c30-fe251aa66c62", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125820,7 +125820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8ba8cd2-0fe1-4b59-8a18-ca0fdd65c782", + "id": "53626c7f-4efb-4808-9565-c2820d5794b1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -125864,7 +125864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e68200a9-822f-4598-a5fe-de008f6c038c", + "id": "ae6afaf7-4112-4651-914b-9969585b4ca0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125908,7 +125908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96d5a85e-5fd0-462f-b1b4-97e99dabafbe", + "id": "46a16d21-4077-4590-a121-71f31c1a8ee1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125958,7 +125958,7 @@ } }, { - "id": "32013ca7-883e-48fc-8bfa-bc2f8a8af377", + "id": "fc746f91-0c83-4d54-a98c-0fe9f27fe32f", "name": "Delete OAuth Client", "request": { "name": "Delete OAuth Client", @@ -125999,7 +125999,7 @@ }, "response": [ { - "id": "50e97ac2-4c2b-45b2-b19a-d85fca401e96", + "id": "2ee9f7cc-0fd1-46a4-8573-2a5d6a41eed2", "name": "No content.", "originalRequest": { "url": { @@ -126033,7 +126033,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d6e9b879-3745-44ec-8980-9b7a2a8aa9c2", + "id": "7a4c8751-b770-4f30-852d-e4fe0c8d97b2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126077,7 +126077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1e002c9-dfc3-45cf-b644-1593197d5208", + "id": "413b3eea-eaf4-49c1-ac39-b6bd2bc442bf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126121,7 +126121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa926b33-9db2-4ab7-b91c-31fea7a37f1f", + "id": "042e0289-f694-4fab-a69f-a09b83e82380", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126165,7 +126165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c666acdc-9fa4-4e17-b22a-34cfe15e16b7", + "id": "1e6c42bf-9c50-4493-a52d-83cdbdeee00b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -126209,7 +126209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3553747-1c53-4f09-b641-ab131093abb2", + "id": "0854a81b-e325-4542-a3a1-326d60b33d51", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126253,7 +126253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88fc0a47-f686-4c41-acb0-7f2208f5c33b", + "id": "338cef7c-ce60-4ad2-a6e3-9fa0739194c7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126303,7 +126303,7 @@ } }, { - "id": "91e2564f-0e18-42c9-82b8-2f32df510119", + "id": "96b8ad1b-8d01-4469-a343-33caf0e8ab3e", "name": "Patch OAuth Client", "request": { "name": "Patch OAuth Client", @@ -126357,7 +126357,7 @@ }, "response": [ { - "id": "da60a0f7-2123-43d0-aba3-1e2f8d15e6ee", + "id": "98f4c6ea-cb94-4e28-b2d0-17ebd4344aeb", "name": "Indicates the PATCH operation succeeded, and returns the OAuth client's new representation.", "originalRequest": { "url": { @@ -126414,7 +126414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c638c459-c075-41bc-bd40-294be302428c", + "id": "04fb0768-ff58-4bab-a694-65fcd4e79a44", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126471,7 +126471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5d1a0cc-25a7-44b6-8a2a-11ac3815d019", + "id": "143ee2ca-ced0-4d1e-b3fd-39059e4184e5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126528,7 +126528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba51e8e3-3507-4ba1-9211-ef2be38ab6d0", + "id": "d3c0076e-830c-43d7-b21f-b11a45e87333", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126585,7 +126585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04749497-8667-4aa4-aeac-5b213051a944", + "id": "34773410-aae5-419b-b9b5-6af21e1f4391", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -126642,7 +126642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "566fbb42-743f-4e13-b8a9-4a2f2bd8014e", + "id": "5ab2e045-3655-42e0-9d56-afd1b0511ff9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126699,7 +126699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "974cd9f1-6fb2-473a-987a-53bb48b380ab", + "id": "53719947-7285-4faa-994a-9c4b3a0919e3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126768,7 +126768,7 @@ "description": "Operations for managing org configuration settings (eg. time zone)", "item": [ { - "id": "0cb8a5a2-0a85-4722-a86e-132d81697de9", + "id": "498c3cab-76d3-4a49-847b-b0857572b55d", "name": "Get Org configuration settings", "request": { "name": "Get Org configuration settings", @@ -126797,7 +126797,7 @@ }, "response": [ { - "id": "dd3a692c-6680-4188-8f36-931c0d0ee64f", + "id": "eb6d010f-a5e1-4e78-a56a-3f8ee89d6d3b", "name": "Request succeeded.", "originalRequest": { "url": { @@ -126835,12 +126835,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\": \"eu consectetur Duis quis\",\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\": \"Ut dolore\",\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": "f3a3a41d-4a11-47fe-82af-09fcf1657ee5", + "id": "2d39808d-d82e-462c-8a94-336a1f80e8af", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126883,7 +126883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a95a385-a849-45fd-b34d-f97904df4e51", + "id": "8acb222d-db9d-4c99-a4cc-9d747aa6fc3c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126926,7 +126926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "778c8a3f-ab41-4ddc-bf6c-97bca35a8e9b", + "id": "f55bbe3b-2179-4a62-8164-c981bf1bb6bd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126969,7 +126969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d47a08ff-9c08-4edb-b0db-1c957741a343", + "id": "afcb60ca-41ac-409f-9473-19e1d97290cd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -127012,7 +127012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2db8da96-069a-4707-a589-2d2f34a88b10", + "id": "5c6b73bc-7f4b-46ec-9a89-3dba1c6164d8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127055,7 +127055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14897bfd-f57a-4adb-80b4-61c9455ef972", + "id": "9783e5f7-39a2-4588-91dd-2488611bc06d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127104,7 +127104,7 @@ } }, { - "id": "f0cffad6-03ee-4252-ba52-b23ec8bef66b", + "id": "48685a26-6c14-4898-8738-b35ba1d42171", "name": "Patch an Org configuration property", "request": { "name": "Patch an Org configuration property", @@ -127146,7 +127146,7 @@ }, "response": [ { - "id": "a7893948-683a-4648-b765-0a34b3f3b63c", + "id": "7d236973-7f1f-4a38-a54a-d1a6d5519eff", "name": "The Org was successfully patched.", "originalRequest": { "url": { @@ -127197,12 +127197,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\": \"eu consectetur Duis quis\",\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\": \"Ut dolore\",\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": "6c90acfe-7d9a-4650-9d8a-68da493e7e40", + "id": "a061ea0f-7340-40c6-98ed-cecb1d82c07c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127258,7 +127258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a44740e5-a8c7-4fff-a32f-1d6934970893", + "id": "c51f09bc-8621-41aa-95f4-55af1f14817a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127314,7 +127314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f5d8ea5-9231-44c7-85bb-53e0227671b2", + "id": "ab4563e6-5bd1-4829-a018-3cdf454e5b54", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127370,7 +127370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65a209ea-185e-43d8-a4f7-100d37aba2ca", + "id": "0f3ea1bc-6e23-4c17-ac2e-6b7b7721b65f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -127426,7 +127426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb69f560-095c-4fe5-a1b3-7c0c823c2e51", + "id": "7d23407a-90f8-486e-bebc-a78170c7139e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127482,7 +127482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3996f16-2c25-4de7-bf45-a03afe005405", + "id": "62d37eb4-7154-43f9-8781-5238754dd7c6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127544,7 +127544,7 @@ } }, { - "id": "7bcfafa4-2f14-4303-955b-14831a329a1e", + "id": "8768de74-137c-4f78-93c9-5fc82053bb92", "name": "Get list of time zones", "request": { "name": "Get list of time zones", @@ -127574,7 +127574,7 @@ }, "response": [ { - "id": "51f60453-5844-49b5-9438-c3fdea2405c7", + "id": "e8aeac07-c949-467b-8354-1ec28eba8191", "name": "Request successful", "originalRequest": { "url": { @@ -127618,7 +127618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d0c8a24-3a05-4d05-85db-a439d7e77c23", + "id": "90c10854-7fc2-4ecc-aa82-be65fa407e1c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127662,7 +127662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12ef91b9-291b-447c-86fe-1732b6fd35a0", + "id": "90d3960c-ddfd-4665-bee8-b828378a41e4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127706,7 +127706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d03fa96-3eac-4efe-a54c-30186bf99410", + "id": "ad33f62a-bb51-4933-b761-e5b92f7c8aee", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127750,7 +127750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b58ec8f-d701-44fe-8435-5b3a73624fa4", + "id": "e41c7029-aa67-4e82-83f3-bf6a60ce95fa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127794,7 +127794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09ebe92e-48ec-4681-bc7d-535b59a8611d", + "id": "a0312c25-878c-4925-b679-2c0a6ad9a080", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127850,7 +127850,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": "2d096936-6c36-4589-86b0-c5dbf02a8994", + "id": "58ca6bc8-23ad-40fd-b141-a23254871626", "name": "Get Password Org Config", "request": { "name": "Get Password Org Config", @@ -127879,7 +127879,7 @@ }, "response": [ { - "id": "d77770d4-1da4-47d5-ba38-0cc881051818", + "id": "918e54d1-c2b0-403c-aa8d-7a383b22d2d5", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -127922,7 +127922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5781665e-66a9-407e-864f-08632cc0341b", + "id": "4e1ef8a5-1187-4217-951f-5548e7e26ce2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127965,7 +127965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "780ede26-42d2-458d-bf2b-4618f354fcdd", + "id": "36fb8870-f455-446d-b56c-d48e219276f1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128008,7 +128008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc21e9ef-425c-4834-87f7-04d3d29ab386", + "id": "fd8d6a3d-b4e1-4ab0-a257-a5cd6cc6dfe9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128051,7 +128051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee44ed9f-3cc8-4fa7-b10e-44ee3fdc4bf1", + "id": "58ea14b6-f60c-4a29-83c0-c2a10ae6ad9c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128094,7 +128094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "319d502a-3908-4e72-ba02-bd3ed6476f10", + "id": "cfac2ca7-4507-4a1c-8a70-6bada60925a7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128143,7 +128143,7 @@ } }, { - "id": "e00d5b45-3606-49ee-93d6-9fbfcf8d7243", + "id": "1f715722-5d0e-4224-9a7b-b11c386d9002", "name": "Update Password Org Config", "request": { "name": "Update Password Org Config", @@ -128185,7 +128185,7 @@ }, "response": [ { - "id": "9894ca2f-05d1-483a-b90f-cf59937b5727", + "id": "f6513f6a-4745-4ea8-a4a3-f51467cf4bfc", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -128241,7 +128241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46bc0f4b-d636-4147-a52e-6a5ec38abb95", + "id": "22ddfef2-7d20-4234-9556-1ca49af4d12a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128297,7 +128297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0949a45-9f37-4426-9eef-7bba9bb69729", + "id": "b43c0d1d-42af-4b41-8ec3-bd46b299079e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128353,7 +128353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78ac5664-87bf-4d40-be37-dd03a7a7d9a2", + "id": "2319e0e8-f1a8-4db5-b17e-a1aba7f0307a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128409,7 +128409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7e556cc-52b4-4924-a850-03906d4a7acf", + "id": "1223d56f-0d62-42d8-b3ef-4708cfead9da", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128465,7 +128465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5efb2c71-18c2-4794-9fbc-f7adcf523d33", + "id": "865f3c53-1dec-4258-9e6b-16585c53d5d1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128527,7 +128527,7 @@ } }, { - "id": "85f73e3e-4391-4900-92b1-6368cc9af50f", + "id": "b5b0f211-2c57-40e8-aef9-bfe5fbdd89d9", "name": "Create Password Org Config", "request": { "name": "Create Password Org Config", @@ -128569,7 +128569,7 @@ }, "response": [ { - "id": "ce772791-8028-4d75-bd9f-5eb47e1c2763", + "id": "77986159-26f5-450a-8646-b45dbeb4cee1", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -128625,7 +128625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9aa55973-4cf5-4c5f-8055-26ae4335479d", + "id": "97a180e2-9c47-4b42-aa01-b30c5d59557d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128681,7 +128681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddfea4d8-fb14-41cb-a57c-549b626ad3ba", + "id": "035f85ad-0244-47fd-8a79-3c1315bd69b9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128737,7 +128737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13b44ed3-69bb-49b0-a93d-b6b5374e9823", + "id": "173110d9-1bc9-4c5e-a3a5-f720a6ca7347", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128793,7 +128793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd0fed29-444c-4349-9a89-d8dbcd4e7b7f", + "id": "c4386ebf-8b2f-4adf-b68a-311e0f1bfb22", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128849,7 +128849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d42cf97-938d-4b15-8f45-3e1cbda6fd4e", + "id": "3a801f80-990c-4519-a5d4-cbc77d3486fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128917,7 +128917,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": "828d70c3-b85f-480d-b4d6-0ae959fc119b", + "id": "96381934-38dd-469f-8515-8186ad0840e1", "name": "Get Password Dictionary", "request": { "name": "Get Password Dictionary", @@ -128946,7 +128946,7 @@ }, "response": [ { - "id": "5371b973-138c-4cb9-b640-16a7b025ea65", + "id": "3390ecf8-a044-45b5-b1a2-0056fef98084", "name": "A password dictionary response", "originalRequest": { "url": { @@ -128984,12 +128984,12 @@ "value": "text/plain" } ], - "body": "sed nisi sunt qui", + "body": "Lorem", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "377cb7eb-19fc-43cc-9200-97a5b6724311", + "id": "165f607d-ca9f-4c1c-93cf-c7449b418b83", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129032,7 +129032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca239bf5-239f-4099-892a-ca8492d0ece1", + "id": "86ed4b08-8a2a-429c-8bcd-042e7c398cf1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129075,7 +129075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a261efed-780a-41ec-b6dd-c84d22e3122e", + "id": "9634dd25-9433-421b-8f72-0ba10aff9622", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129118,7 +129118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afe71253-4595-4783-9b14-ea3e2df151ac", + "id": "14b53b27-85f7-497f-8827-8cdcdce84798", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -129161,7 +129161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07cb49ba-14b1-4d58-9960-4ad3e148af24", + "id": "00cf32f0-df5f-4a48-a176-d53888768328", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129204,7 +129204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17df4f63-5a6e-4213-8daa-ab61735b9c43", + "id": "227abe93-98b5-4f03-816e-c734d66f0c7b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129253,7 +129253,7 @@ } }, { - "id": "ad97c3bd-751a-43b5-adaa-4846c0ec078b", + "id": "62a9f031-5c56-44dd-ba5d-fc9532a472f3", "name": "Update Password Dictionary", "request": { "name": "Update Password Dictionary", @@ -129291,7 +129291,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -129299,7 +129299,7 @@ }, "response": [ { - "id": "ffe29aff-6007-40fb-b326-777b38205d20", + "id": "d1b18ba3-a1d9-4f73-9bfe-587fcf2776be", "name": "Successfully updated.", "originalRequest": { "url": { @@ -129336,7 +129336,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -129349,7 +129349,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ce38095e-0ab0-47fa-a75c-61f63a207e91", + "id": "c8395e6e-c1b7-4cf0-8491-169df5c71cbe", "name": "Created.", "originalRequest": { "url": { @@ -129386,7 +129386,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -129399,7 +129399,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5d1c24fe-d03a-43a9-9dd4-a839e567cab4", + "id": "034b3f97-42b2-421d-b8a6-a82f85c0b44f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129440,7 +129440,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -129459,7 +129459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f66051e6-7c1d-46a6-b386-5285fe844d20", + "id": "908aadce-9f2c-4626-885f-daa9afdab467", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129500,7 +129500,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -129519,7 +129519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bf79c96-ca5e-47ca-a4c9-d353cd6b142d", + "id": "4580c02e-675f-4ad3-b4b0-cd09f45a1a68", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129560,7 +129560,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -129579,7 +129579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e04fdb7-dbcb-4f2a-9bd6-5a736ba986d9", + "id": "6397b80a-ee89-41b6-a3bd-2c4b83ee77b7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -129620,7 +129620,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -129639,7 +129639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8b25e1b-64bc-4def-9528-743dd9071181", + "id": "4c471a4b-5b44-4511-98e0-28aaa60bb7ea", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129680,7 +129680,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -129699,7 +129699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c293ce8e-4402-45b5-b8b7-fac07c4b6ba7", + "id": "cc430b16-f940-4e9c-8d5d-ea41bfa54cf6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129740,7 +129740,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -129771,7 +129771,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": "636f1e06-f166-4ec0-916d-264555da4c11", + "id": "09a300f4-f4f4-493f-92de-932f21ede1ee", "name": "Generate a digit token", "request": { "name": "Generate a digit token", @@ -129814,7 +129814,7 @@ }, "response": [ { - "id": "f8aea60f-a1c3-4710-9425-9ab9518c109c", + "id": "e07e3927-0b25-437d-9b94-0db5b50fb62c", "name": "The digit token for password management.", "originalRequest": { "url": { @@ -129871,7 +129871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a050a62-0f61-429a-b466-69cb16a7b7ce", + "id": "9b2cd3c5-9928-48d7-9351-6b76b7159167", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129928,7 +129928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aec243eb-d2de-4d69-806c-04602ed38f6c", + "id": "eb946aad-6162-4233-a621-16c85effca3c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129985,7 +129985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0de82690-8ff3-41d2-891a-b33b3ffefb10", + "id": "a9d3e71e-f779-489a-887b-701cf5ed92ea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130048,7 +130048,7 @@ } }, { - "id": "f9c8d888-0b58-4637-a7f7-3f318d5b7073", + "id": "d5c022f5-f940-4b3b-88fc-f99f4157473b", "name": "Query Password Info", "request": { "name": "Query Password Info", @@ -130090,7 +130090,7 @@ }, "response": [ { - "id": "9977e9e6-ec70-4968-93ff-c0a51a90321d", + "id": "3bbae63e-3327-45e1-a186-9d4babfd8fcb", "name": "Reference to the password info.", "originalRequest": { "url": { @@ -130146,7 +130146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec784a72-81d3-495c-bacc-f4553777f188", + "id": "b3439e6c-f5d4-4a6b-87b1-2c0c0f1b4f42", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130202,7 +130202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee69cdd6-3bae-4c80-bc4e-12d7584ee4bd", + "id": "0de32416-6a96-4e65-8e93-83e5712f02c9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130258,7 +130258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d08b6b4-a642-4028-b4b4-00e875986403", + "id": "07e5a48b-a707-4002-aed5-e9d54cc8d30a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130314,7 +130314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "155f62f5-10a7-414d-ac1b-4f9ef091dca9", + "id": "4caf321e-201e-466c-8014-0d8d2c6ffa20", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130370,7 +130370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "923f5c76-d87a-4b9f-88ca-efbd58a3f828", + "id": "5284badc-54a3-4a22-94d2-b335822ba8fa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130432,7 +130432,7 @@ } }, { - "id": "030c57db-b5f8-44ea-95cb-be7b8b36df06", + "id": "092160dd-e9c7-42fb-8176-defcee457197", "name": "Set Identity's Password", "request": { "name": "Set Identity's Password", @@ -130474,7 +130474,7 @@ }, "response": [ { - "id": "2b03350c-6bd0-45d0-acf2-0f6d622b4ac0", + "id": "98d7141b-074d-493f-bb2f-a5adbeb1ea4e", "name": "Reference to the password change.", "originalRequest": { "url": { @@ -130530,7 +130530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76370b8a-c0f2-4c57-9ef4-9fe29af79f49", + "id": "9589950a-6d97-41e9-b7fc-e9b7e3592316", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130586,7 +130586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "605dd207-7095-4467-96b8-88106f06a61f", + "id": "891883d3-3d05-4176-b8cd-8c52261659c8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130642,7 +130642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cfcf3e1-f57d-4266-a005-375172a23670", + "id": "acd77d14-97e9-4f09-9a64-a7f3ceb72c39", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130698,7 +130698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9fe37af-11c6-4526-9f81-17380012b153", + "id": "6f91fde6-47db-43c3-8ce4-394f5ea32faa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130754,7 +130754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c8340a8-e6c3-4287-a841-91af74e344da", + "id": "f06a9828-d5aa-4291-8cd6-38d86aa3c696", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130816,7 +130816,7 @@ } }, { - "id": "30bbbbdb-d33b-4d4e-bae2-b9d2289d50e8", + "id": "18d3cf4b-9dc3-4622-8021-001e49891e65", "name": "Get Password Change Request Status", "request": { "name": "Get Password Change Request Status", @@ -130836,7 +130836,7 @@ "variable": [ { "type": "any", - "value": "sed nisi sunt qui", + "value": "Lorem", "key": "id", "disabled": true, "description": { @@ -130857,7 +130857,7 @@ }, "response": [ { - "id": "44c02717-a567-4413-8567-d639ea033239", + "id": "100a6b77-2ab0-4f38-9596-1a9e3509bcf1", "name": "Status of the password change request", "originalRequest": { "url": { @@ -130901,7 +130901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2df4535f-34c5-4d19-ae95-28283930aff3", + "id": "ec33cb78-72d7-41a0-bc27-083d5651f860", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130945,7 +130945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b079de91-3478-40ef-8573-bcf998fb8fb0", + "id": "ba88fac6-b6e1-45cf-9cff-e23c530c89ce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130989,7 +130989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a54e8d2-cad8-40e1-a500-2a306d9a8ad5", + "id": "16bc98e1-2ff3-4a49-aa90-7acb0a50f783", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131033,7 +131033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c2368c2-dec2-4d65-ad8e-195441c4a553", + "id": "28b5081d-92e0-42a9-8dcf-1f61818fa847", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -131077,7 +131077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df838ee8-7268-48a8-8fe5-90e435adace0", + "id": "ef6f75f1-54b4-467e-a991-68959ee3cb38", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131133,7 +131133,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": "5e8973e5-28d1-422b-95ed-43ce2b41c095", + "id": "6a1b06ff-50ce-49e1-bfaa-bae4e1350bb8", "name": "Get Password Sync Group List", "request": { "name": "Get Password Sync Group List", @@ -131190,7 +131190,7 @@ }, "response": [ { - "id": "a49f5dbe-782a-4976-8bd4-89c8ef7adfb3", + "id": "d3200d2b-6c11-41e8-a1ff-cead4583ec6d", "name": "A list of password sync groups.", "originalRequest": { "url": { @@ -131261,7 +131261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6de80354-13b8-4540-be5e-81aea25ca430", + "id": "ef69f73b-68fe-4825-a315-4ec25b9937d9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131332,7 +131332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2097c222-10ad-4c0c-8ad5-b487d5e9c699", + "id": "a69df69f-9f49-4026-a5cd-ff5d4c0eb9ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131403,7 +131403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c762a644-8e66-4c46-a63f-a155c0e260d7", + "id": "2b9c328d-72db-4930-914d-ba44fe1539a1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131474,7 +131474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1fec4af-315e-491c-8bc1-6aae1e62185f", + "id": "cdcd7b79-2f76-474f-89f5-a528012802c1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131545,7 +131545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1470873c-2378-4684-88a2-e072a0c40c8c", + "id": "b9e2b7a6-35e3-48e6-8c57-f91e6f782c90", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131622,7 +131622,7 @@ } }, { - "id": "66838036-5bbe-4e24-a777-dc9baaff7573", + "id": "7cca224f-d0cf-4778-b0c4-f3b10dca6c80", "name": "Create Password Sync Group", "request": { "name": "Create Password Sync Group", @@ -131664,7 +131664,7 @@ }, "response": [ { - "id": "93193753-e7c6-43db-b5f4-deec5b8798ed", + "id": "fbb2fa1a-2519-497d-be45-7bce7fd2cd22", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -131720,7 +131720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fb45147-f6fa-46bf-a9aa-44586c9899ce", + "id": "1b26c5ea-15da-46b7-9420-edd3cce0aaee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131776,7 +131776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d96ad66-51d5-4c42-b126-d05ba9b174a3", + "id": "d352050e-846c-4fbf-b999-def9a73a1017", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131832,7 +131832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b69c2ef8-bcbc-4ecb-9ffd-1b0472dcb36e", + "id": "c01922a6-4c13-465c-978a-deb619a1914a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131888,7 +131888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4ae22b3-7497-4b30-a223-7f3b047f2b99", + "id": "3c402ebd-83e7-4413-a37f-3a4ce1377d2a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131944,7 +131944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3fbec6c-8141-4c26-bc1b-fa00d2d6600d", + "id": "09769688-9c7b-4978-9ec6-506e3e8e626b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132006,7 +132006,7 @@ } }, { - "id": "66a2f5d2-42ff-4a9c-a0d3-6884fb071737", + "id": "f7348d1e-444b-434f-af4b-10de2f5f7ba6", "name": "Get Password Sync Group by ID", "request": { "name": "Get Password Sync Group by ID", @@ -132047,7 +132047,7 @@ }, "response": [ { - "id": "8b9c0da5-a69f-400b-84bc-2f5ec978b697", + "id": "d3a29c4e-2b21-465f-86f0-e3a0f0115990", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -132091,7 +132091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e535260-bdbf-48e9-a682-50c830d11f01", + "id": "3b0e458a-2b4f-40a4-82c1-816ceb57d04c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132135,7 +132135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbe729b6-cc0e-4d36-bc05-9fd67b72f20b", + "id": "9824107d-1f7b-45b5-b39c-9d0da3d20ab2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132179,7 +132179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "467e4ea0-a052-4652-8150-b6b0ec32be2a", + "id": "434ec6c3-d456-45f5-9af5-1216a01459d3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132223,7 +132223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3cdc815-0fba-4f2d-803c-421b7eabf3fc", + "id": "e991b252-ffed-4bb9-9894-2e23f19dec20", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -132267,7 +132267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da38dcd0-a31f-47f6-a487-6305c12e8412", + "id": "76d5578a-3d03-4d1a-8229-ff909601448f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132311,7 +132311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10341973-93bf-48d6-a572-dd02dc355347", + "id": "79c82acb-2383-4197-a5ff-d71db01a2cb0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132361,7 +132361,7 @@ } }, { - "id": "149fadb2-0598-4e51-8d02-521fe99b81ba", + "id": "196ed014-c614-4dc1-962c-40f7df65dc96", "name": "Update Password Sync Group by ID", "request": { "name": "Update Password Sync Group by ID", @@ -132415,7 +132415,7 @@ }, "response": [ { - "id": "97fb5a8d-cd6e-4682-b2d1-8bba3d13e5b5", + "id": "43fc4ed8-9865-4c86-8cc5-87d60fec26b7", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -132472,7 +132472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e540b81-ebb9-4aa4-8c45-6bea2af8339f", + "id": "05950456-41bb-47f2-b916-8fd8332c6a13", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132529,7 +132529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f91bc28-4db5-48f6-ac1f-ea7607475332", + "id": "05872a36-dd13-44f9-9608-3b34dfc494e9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132586,7 +132586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9623b7da-427b-4e3e-9427-30b33d8bdb38", + "id": "602eb580-f649-4ffa-a6bf-029e04d676af", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132643,7 +132643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbd3a29b-e9e3-47d7-9012-c39978bdd8d4", + "id": "d7e50360-5fd5-4411-b8f4-1a72fb9bba50", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -132700,7 +132700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79d2cdf3-7c1f-40ce-9182-6ce50f6521c7", + "id": "55157286-fbba-4297-9708-6b8e27d57df8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132757,7 +132757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2a7fd6a-c24a-438a-83aa-b48d0905c8f2", + "id": "0a4e3ede-e59d-42a0-8a86-016196309037", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132820,7 +132820,7 @@ } }, { - "id": "7e9e27e7-2bd6-43b1-8c0c-be962972139c", + "id": "829f4080-3a1e-4e0b-afce-8091be36aff6", "name": "Delete Password Sync Group by ID", "request": { "name": "Delete Password Sync Group by ID", @@ -132861,7 +132861,7 @@ }, "response": [ { - "id": "bc7197f1-8e58-4d2f-9167-42a10bf77d5a", + "id": "9cccdb9c-6657-4a16-9571-a73aacbb0fe8", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -132895,7 +132895,7 @@ "_postman_previewlanguage": "text" }, { - "id": "176e6487-ac1e-49f3-84c5-1e0dd5000d71", + "id": "029ac962-4719-45d1-96a8-a9ed639de766", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132939,7 +132939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f3d890e-6e49-4309-b1c6-5fea917b3385", + "id": "b7ef73a5-7b4f-4c51-8c74-6d8f9ef8872c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132983,7 +132983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f36dbc8-e0ca-41a3-99ae-40b076dd4d9d", + "id": "c000db37-df1b-46b0-81a6-19000b082c4e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133027,7 +133027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cafafec0-ae20-49c5-99d7-cc13664e1098", + "id": "3bb6f641-b83c-4520-accf-b7f6221b6891", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133071,7 +133071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1593e896-4d73-4551-bd56-cbd12b8e26dc", + "id": "b170172c-4ce0-4b34-8a41-d5ffd072cc60", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133127,7 +133127,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": "94f407e4-b7b4-4f1a-a15e-dbc3463d23a2", + "id": "db2b1e82-1e0c-4dc5-b082-e5c654a96abb", "name": "List Personal Access Tokens", "request": { "name": "List Personal Access Tokens", @@ -133175,7 +133175,7 @@ }, "response": [ { - "id": "9b825a61-6662-420d-a5a3-6c6bac1beb52", + "id": "ffe220d5-5184-422f-b871-192defadbcc9", "name": "List of personal access tokens.", "originalRequest": { "url": { @@ -133237,7 +133237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5a95ac3-27e7-4826-9d7a-9cd0947345b6", + "id": "f4716f79-7446-40b7-811c-041e8c0f997e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133299,7 +133299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10a5dfe7-7bf0-49d2-9063-18981920ffe1", + "id": "95c98255-7c5e-4e36-9cad-4b411e85d5cc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133361,7 +133361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6c1abef-ac3c-4f8f-9a6d-c133f7343928", + "id": "60769952-4cd6-45d4-bd97-e2476c63a345", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133423,7 +133423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b7c7791-3080-4a39-a24e-1d89104db18a", + "id": "48ae0cf6-a99c-4354-90eb-afb13925d8e4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133485,7 +133485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3acd735-1801-4bc1-a944-5680a829a5d7", + "id": "13e8697e-dde2-4d47-aeb8-e3b5c3ba4ac7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133553,7 +133553,7 @@ } }, { - "id": "17f227e6-48aa-4637-a76e-d675e95b7436", + "id": "3e588890-13fb-4cc2-bcff-7d34361e4849", "name": "Create Personal Access Token", "request": { "name": "Create Personal Access Token", @@ -133595,7 +133595,7 @@ }, "response": [ { - "id": "be616b97-3a25-404a-9e1a-f019aef1a971", + "id": "6f2e8a29-3183-478d-9d8a-4269b591bb84", "name": "Created. Note - this is the only time Personal Access Tokens' secret attribute will be displayed.", "originalRequest": { "url": { @@ -133651,7 +133651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffd4e663-96aa-4c43-84d5-1892ed62ee3c", + "id": "bfb64da4-ff8e-4575-a041-186d10eb8177", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133707,7 +133707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3237da7c-ea80-4ee3-9f32-ef4aa09f4daa", + "id": "280fb544-9ee2-48d0-8683-f2bc20703116", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133763,7 +133763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b727e63-cafb-430b-b89e-c50d3d1a47c2", + "id": "2cd38ab0-c6a9-4e15-8fe8-5b74f36a255f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133819,7 +133819,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a663e44-4c05-480f-af17-12c9561d359a", + "id": "152d9070-fb07-460d-8a2a-b645866dfb83", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133875,7 +133875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdeb3b13-3d6c-4066-bfbb-30b26e7c2d7d", + "id": "94b585d2-d333-4dd1-9863-62e87d4a02df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133937,7 +133937,7 @@ } }, { - "id": "70b853a3-5e53-434d-8a9e-1661c49f89b7", + "id": "de16dd6c-a53b-4dc6-9d4f-68f6fedcc981", "name": "Patch Personal Access Token", "request": { "name": "Patch Personal Access Token", @@ -133991,7 +133991,7 @@ }, "response": [ { - "id": "61b06fd9-80b7-4f37-8df7-86f466cbf74f", + "id": "4efb18d6-a85b-4817-ab8a-f251bb185fce", "name": "Indicates the PATCH operation succeeded, and returns the PAT's new representation.", "originalRequest": { "url": { @@ -134048,7 +134048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f89c183a-68af-49ac-92e7-9c169501ba4a", + "id": "04725212-dca3-43b9-89f9-5eaef9e6d40a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134105,7 +134105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bc81232-6503-4d5b-a397-821b858949b4", + "id": "d71ac40a-9168-410f-a956-261493ebf2fb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134162,7 +134162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b90a2faa-3e9a-4fe2-bae9-ccbab929be95", + "id": "0efa3f23-eae6-4e85-aecb-a913db3b8b6b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134219,7 +134219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14e9ef71-22e6-40ae-aad9-a4504fb7cccf", + "id": "d2385c5f-1314-4128-97d7-52c64d882557", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -134276,7 +134276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47b42b7b-35b3-48d4-8f93-a527a2eb56f0", + "id": "36caad30-00a2-40e8-902a-feb7529eeb99", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134333,7 +134333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a633875-94e0-4ff7-b4ca-b91d00117d11", + "id": "32f9dc61-861f-4250-b15c-d572e3936829", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134396,7 +134396,7 @@ } }, { - "id": "19350b30-1f99-4556-88eb-575d44d0ca48", + "id": "d738e1f3-244f-4007-b6f6-95359ddce2c9", "name": "Delete Personal Access Token", "request": { "name": "Delete Personal Access Token", @@ -134437,7 +134437,7 @@ }, "response": [ { - "id": "d0481c56-c069-493a-9a6d-95f6c9fe7ebb", + "id": "3251dec4-6fff-439e-907b-05908ec58e76", "name": "No content.", "originalRequest": { "url": { @@ -134471,7 +134471,7 @@ "_postman_previewlanguage": "text" }, { - "id": "421f6348-fbe3-487f-a3e8-39932473d51e", + "id": "54bd5b0c-ec08-4a3c-a292-dd60e6dbc166", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134515,7 +134515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d48d137-8fb1-41d5-b019-1f8d33f10587", + "id": "2e176486-75a2-490c-bb6a-262e2e37d024", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134559,7 +134559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72805d69-a6be-4476-9f53-647886d54cc5", + "id": "06aeddb8-2c4e-4001-b9f3-8bbc5bbbecbc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134603,7 +134603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81b665ac-48cf-4f5b-8c10-54e3aee3aead", + "id": "b9f32fd2-a326-4ee2-84df-ecdc8fd34ee0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -134647,7 +134647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87ed4dd4-3ed1-4672-8045-e8f2e5cf64f7", + "id": "01471cfe-aab7-47c6-81d9-b44dca572410", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134691,7 +134691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b105e33-ac95-41ad-8c68-4077336fa575", + "id": "e24ca3dc-7ed6-46b2-af2a-7a2600127a01", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134747,7 +134747,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": "71065f52-0d0b-4343-949c-cb489cdc119b", + "id": "969d20d7-aa69-4ae4-a9f8-da1092833aa5", "name": "Get Public Identity Config", "request": { "name": "Get Public Identity Config", @@ -134776,7 +134776,7 @@ }, "response": [ { - "id": "e19cafaa-91c9-4c43-ad28-ae6f2b824807", + "id": "992b516c-09da-4f92-8a8b-4c093b8846bc", "name": "Request succeeded.", "originalRequest": { "url": { @@ -134819,7 +134819,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd41d0c6-f710-426a-bee2-b3d0a7309b11", + "id": "2429df14-2e9f-4d32-b8d8-133526b4070b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134862,7 +134862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25430d73-5f50-405a-a560-ab7d2997f95b", + "id": "4df25fab-0962-4a95-ada9-78617c3510de", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134905,7 +134905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a610d87d-4f80-4c17-8641-d658480d4ab4", + "id": "8caa0646-0bb0-41d7-9530-6e5b08b63fde", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134948,7 +134948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c60bda09-af6b-4051-8591-2947f9b87e8d", + "id": "562380ea-143a-4287-a9cd-f5b18c9c61ea", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134991,7 +134991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e603051f-99b3-40d0-96d7-5b461818595c", + "id": "a3755ff5-8cf8-4bd4-8453-6d06ca525334", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135040,7 +135040,7 @@ } }, { - "id": "729f0d12-8346-492e-b421-c194d1cb1750", + "id": "7806d826-24cf-4b04-934c-8d2af315081a", "name": "Update Public Identity Config", "request": { "name": "Update Public Identity Config", @@ -135082,7 +135082,7 @@ }, "response": [ { - "id": "2f1f478d-a42f-4211-8c44-cf4dbf1cba4d", + "id": "02b64f09-b211-46f3-888d-d6a969feb222", "name": "Request succeeded.", "originalRequest": { "url": { @@ -135138,7 +135138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a83b4676-0150-43a7-a6f4-4c8dccba7c25", + "id": "86f684c5-1c97-4079-b636-0a34456e22f7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135194,7 +135194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff310f41-0c85-4402-8c66-27ea1a955087", + "id": "caa2b4b5-9d61-4848-a898-a7dc45948354", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135250,7 +135250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efc4453c-37d2-4183-bb99-3ab5617218ad", + "id": "b11980dd-1ce3-4ee2-9421-5f07bc5e2f22", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135306,7 +135306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "faf8656f-bc6c-4b53-8968-d9a6d858cc39", + "id": "39a04440-658a-4e24-8092-527f2a744c35", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -135362,7 +135362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "394fe3c9-82e2-4da0-acd5-825586981c2c", + "id": "65281d25-1003-4508-804a-716103aa078c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135430,7 +135430,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": "db5e4581-bd2f-4471-8dc1-fbcc6c75e23e", + "id": "135a1419-f1fa-410b-a3cf-10630784d546", "name": "Requestable Objects List", "request": { "name": "Requestable Objects List", @@ -135541,7 +135541,7 @@ }, "response": [ { - "id": "be86f2db-2d6d-4569-b792-8cf5ff89036b", + "id": "48032d02-034e-4f94-a0e1-9245b37f1598", "name": "List of requestable objects", "originalRequest": { "url": { @@ -135666,7 +135666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ad3869e-27b9-4527-be59-5cfed6945214", + "id": "27854f77-e31a-4f24-a0da-cddce19d79fc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135791,7 +135791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e2d4c84-f2fb-4158-ab6e-e8de42a9e146", + "id": "83d05d20-917d-4d44-b2f0-67a8bf907d3b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135916,7 +135916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95001909-f8fb-42ac-90e9-4eddfb775355", + "id": "410bac10-806f-406f-914d-70fcae6f9fcd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136041,7 +136041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99b2319a-01e2-434a-b1b1-7ebe3104b1c1", + "id": "9ca186f7-f136-4931-96f1-22f35e24cc90", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136166,7 +136166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c1072d4-3c2d-436d-9d1f-7a9a07060d9e", + "id": "dd592f54-7052-44b7-8880-14f6aa50ade3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136303,7 +136303,7 @@ "description": "", "item": [ { - "id": "812ff23c-dda8-4c52-9bc5-dcd2fa97ddc2", + "id": "931e2c6d-9598-4f2b-98b4-4d1dc2bc2185", "name": "Generate insights for roles", "request": { "name": "Generate insights for roles", @@ -136333,7 +136333,7 @@ }, "response": [ { - "id": "69d0468a-05c0-45c5-86ed-be5ab5b30de3", + "id": "c2d6bb62-9b1a-49b4-ac82-77d7f495e94e", "name": "Submitted a role insights generation request", "originalRequest": { "url": { @@ -136377,7 +136377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d92d4e3-6bbb-448c-8fe0-da4230e079d7", + "id": "606bea34-8222-4a99-b19e-b7970f76a85c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136421,7 +136421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45e8c6b0-4376-4e46-ae67-aea8f0a0f589", + "id": "caadb262-6c91-4565-a7f3-1b3bc2cc8c09", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136465,7 +136465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aecb66da-1077-4edf-a8b3-c3e607c78153", + "id": "6ce81961-3604-49ec-a166-9533bb4025de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136509,7 +136509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed29fa51-822b-4f3a-a479-b7895b951f8f", + "id": "45088dc9-d4a9-4253-a114-dad0d2cf8e76", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136553,7 +136553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c54116e-62fd-4064-8c12-3d32d30286dd", + "id": "132d7655-820b-4dcb-abac-e2b783aee738", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136603,7 +136603,7 @@ } }, { - "id": "06a5fad7-d3ec-4939-a408-041293c4dcbc", + "id": "54e4af2c-479b-4848-96b7-ca54648d9b0e", "name": "Returns metadata from prior request.", "request": { "name": "Returns metadata from prior request.", @@ -136645,7 +136645,7 @@ }, "response": [ { - "id": "5384da55-2750-4453-8920-0ebee00c5125", + "id": "6c63f2d4-96cc-4372-a253-9bbf3c5040b3", "name": "Succeeded. Returns details of an earlier role insights request.", "originalRequest": { "url": { @@ -136690,7 +136690,7 @@ "_postman_previewlanguage": "json" }, { - "id": "251325e1-bc60-46cf-a1bd-14d86319d8e6", + "id": "86938380-57c7-4061-bccd-2b289b1de7e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136735,7 +136735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcf916ee-d273-497a-aee0-0006f0fcce13", + "id": "9280fef8-b508-47b2-bb53-294debde5804", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136780,7 +136780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac5f1b55-6834-45c9-b795-d0abb917faa3", + "id": "fcdd8f86-6b3f-41cd-bbc5-c716fa4cfd0d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136825,7 +136825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e287c890-eab4-4c64-a8a6-7e85d958586e", + "id": "d1cdafef-b915-4eb8-b4ec-be77193f0918", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136870,7 +136870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47584642-5b0e-4790-9403-4a28c0cf39e1", + "id": "5fd2f7e0-6d1a-402e-84c9-992148daa0b7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136921,7 +136921,7 @@ } }, { - "id": "f966464b-2d1a-4196-b649-7c69a913be83", + "id": "781c65d4-62f6-4d0f-a8aa-01a679a22488", "name": "Get role insights summary information", "request": { "name": "Get role insights summary information", @@ -136951,7 +136951,7 @@ }, "response": [ { - "id": "d371d434-74a3-4b4b-a10f-4cc5b3126ca1", + "id": "7811a921-3ea0-4ac8-96bc-3fed604fa8f7", "name": "Succeeded. Returns high level counts.", "originalRequest": { "url": { @@ -136990,12 +136990,12 @@ "value": "application/json" } ], - "body": "{\n \"numberOfUpdates\": 57646539,\n \"lastGenerated\": \"2020-05-19T13:49:37.385Z\",\n \"entitlementsIncludedInRoles\": 45,\n \"totalNumberOfEntitlements\": 250,\n \"identitiesWithAccessViaRoles\": 550,\n \"totalNumberOfIdentities\": 980\n}", + "body": "{\n \"numberOfUpdates\": 35212490,\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": "4f998679-7538-4649-a7ed-fc8ed7d9cdd6", + "id": "ad038890-eb86-4620-adca-475b4a45e2d4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137039,7 +137039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1eb99ac-e016-4207-a4b4-38fe3e8d82e1", + "id": "59284cfb-8910-48a0-9469-046ac842603a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137083,7 +137083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "759e06bc-ca81-4db2-8c3d-2a6c5743ce58", + "id": "45a933ad-5d63-4949-8a1d-c9f0b60af0e3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137127,7 +137127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ab068ef-3fb5-49c0-8235-9866150ecd0d", + "id": "cf4ef0e4-227a-4cbf-b698-c9e3d0d1bc23", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137177,7 +137177,7 @@ } }, { - "id": "e11295b4-c0de-4572-97d0-82a3a4349cf8", + "id": "776c7e95-454d-4cf9-a2fe-6c77fea313c7", "name": "Get role insights", "request": { "name": "Get role insights", @@ -137252,7 +137252,7 @@ }, "response": [ { - "id": "28c2e4af-4e02-4c19-b00e-6f2c22dcb52d", + "id": "dc21dc0e-67fd-40f8-96a0-ab0e5936818b", "name": "Succeeded. Returns a list of roles with information about insights for each role.", "originalRequest": { "url": { @@ -137341,7 +137341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5decdc55-c947-461f-8276-d09bf442e130", + "id": "8b1ee65d-1707-497a-ad26-8181e36ae92d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137430,7 +137430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44ca6b23-eb16-4a04-93aa-19d9a608384e", + "id": "60902555-00a4-4c17-ba6b-50e9e728fad7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137519,7 +137519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "200de8e5-cb27-41e0-b397-94f05c2ddb6d", + "id": "fffb1b56-d4d6-40f5-906e-744026105be1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137608,7 +137608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9108625-dc04-4820-840f-6d0bbd872b30", + "id": "4089a9bb-f758-4146-9aa0-b4fe1bc9ca35", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137703,7 +137703,7 @@ } }, { - "id": "019c0b36-60f5-4e73-9c99-686b6243d584", + "id": "0478a21d-bf73-46a6-8b87-ff21f8ad243c", "name": "Get a single role insight", "request": { "name": "Get a single role insight", @@ -137744,7 +137744,7 @@ }, "response": [ { - "id": "40580d13-2142-4ff8-84c8-054a08bf5a7c", + "id": "ec19f5ca-a25b-427a-9858-fa63191592dc", "name": "Succeeded. Returns information about insights for a single role.", "originalRequest": { "url": { @@ -137788,7 +137788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6703b9e0-1552-4de8-b132-4c2a2ee025ac", + "id": "1fb9fca0-6bc7-4da8-8c6e-3236d65b78cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137832,7 +137832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d74ba582-5ebb-46d6-9e6a-ee8d3fab96ac", + "id": "5ff28f3d-167f-4ca7-82ab-eaf7be163a92", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137876,7 +137876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8790aad-4ac1-43c3-a16b-e88d96efed55", + "id": "74c38982-d6d7-451f-bb6c-3e77d20fcee8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137920,7 +137920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a03428d-f899-4e49-b4a5-1c6f9b97623e", + "id": "19a5bc5e-58f6-4e6e-b134-fba348db2445", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137970,7 +137970,7 @@ } }, { - "id": "ec26d0e9-f623-4d26-9a87-4ecbf40fc238", + "id": "916ac8d5-c6e8-456b-a805-acbdaecb30a1", "name": "Get entitlement insights for a role", "request": { "name": "Get entitlement insights for a role", @@ -137995,7 +137995,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -138031,7 +138031,7 @@ }, "response": [ { - "id": "69ecb97d-b111-4305-8e5c-a6b5ad92cec9", + "id": "e4934ede-4ebe-4dac-aa70-88e6171733e1", "name": "Succeeded. Returns a list of entitlements to be added for a role.", "originalRequest": { "url": { @@ -138051,7 +138051,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -138090,12 +138090,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"Ut\",\n \"id\": \"Excepteur\",\n \"description\": \"occaecat reprehenderit eiusmod ad\",\n \"attribute\": \"ipsum laborum sint ut\",\n \"value\": \"est sed id elit\",\n \"source\": \"quis aute Ut\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000\n }\n },\n {\n \"name\": \"Duis culpa\",\n \"id\": \"dolore commodo\",\n \"description\": \"velit ex\",\n \"attribute\": \"in esse dolore sunt\",\n \"value\": \"in\",\n \"source\": \"ea consectetur enim\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000\n }\n }\n]", + "body": "[\n {\n \"name\": \"deserunt veniam incididunt est\",\n \"id\": \"voluptate Excepteur\",\n \"description\": \"officia ipsum ut occaecat\",\n \"attribute\": \"exercitation\",\n \"value\": \"esse eiusmod in dolore fugiat\",\n \"source\": \"reprehenderit aute enim\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000\n }\n },\n {\n \"name\": \"pariatur ad non\",\n \"id\": \"Duis sed laboris dolor dolore\",\n \"description\": \"sint irure ut\",\n \"attribute\": \"in do reprehenderit amet occaecat\",\n \"value\": \"Duis Excepteur\",\n \"source\": \"Ut aliqu\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0dc56588-d57c-4079-9b14-0602a6e5be09", + "id": "72dd085f-d857-406c-938a-414b9858dea9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138115,7 +138115,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -138159,7 +138159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca6e47e2-f4eb-4a37-b65a-d86cdbc9bdd3", + "id": "a9e3efe2-7dc7-4945-9d16-d025c45960b0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138179,7 +138179,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -138223,7 +138223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4279971d-9bb8-4b3f-901a-b63742323bbd", + "id": "87c1b680-63a3-4d47-b1d0-fa19c5b644c8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138243,7 +138243,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -138287,7 +138287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3e2f8c3-d8b8-4131-9a45-51591a9c9ce1", + "id": "e9babddd-5333-4afd-845b-5be64f0002a3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138307,7 +138307,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -138357,7 +138357,7 @@ } }, { - "id": "90a7958d-3532-43cf-adb5-cc4c17705225", + "id": "6b5da6ba-2647-48b4-8e54-b956bd57c926", "name": "Download entitlement insights for a role", "request": { "name": "Download entitlement insights for a role", @@ -138419,7 +138419,7 @@ }, "response": [ { - "id": "1103ae63-9f01-4da3-b146-239fb55aad52", + "id": "3dd913c1-35a1-4228-8cc6-1fbcf68799b5", "name": "Succeeded. Returns a csv file containing a list of entitlements to be added for a role.", "originalRequest": { "url": { @@ -138479,12 +138479,12 @@ "value": "text/csv" } ], - "body": "sed nisi sunt qui", + "body": "Lorem", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "38ccf1fc-d77f-4b60-b7e6-83813dc971bb", + "id": "44dd1c3c-60b4-44fb-93f0-0b80c58bee4f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138549,7 +138549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "713e86e3-b6b7-4586-8924-56cc19087124", + "id": "31f30164-c9f6-45ac-bbd6-f30b0b8b92a2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138614,7 +138614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "680031c5-f1b9-4278-a88a-4a43b43105fc", + "id": "f621aa1a-752e-4bb8-b731-3df2f25adc32", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138679,7 +138679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69244e2f-2545-46f7-8f62-969f662d7be0", + "id": "e4abf43f-eeb8-4232-80d1-d76752fcb59d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138750,7 +138750,7 @@ } }, { - "id": "3a95b479-55b0-48ae-8966-f08eb4df9604", + "id": "3f360903-21c7-4b34-b17f-2c31fb659a9b", "name": "Get current entitlement for a role", "request": { "name": "Get current entitlement for a role", @@ -138802,7 +138802,7 @@ }, "response": [ { - "id": "83112233-a070-4c51-b044-8b00dde58256", + "id": "d752a265-1600-49e3-be51-0f4fa1a20710", "name": "Succeeded. Returns a list of current or pre-existing entitlements for a role.", "originalRequest": { "url": { @@ -138857,7 +138857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9edb3aaf-ed39-4444-91ad-dddf1c3cbb9d", + "id": "3c043bab-c28f-4680-ad3b-2fc7fa59df51", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138912,7 +138912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7bf7919-8ccc-4301-bf00-093b8ea2f9b9", + "id": "5505fbff-f580-4bb0-8f7d-488378121b2b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138967,7 +138967,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f03ca25-f6f9-4aaa-8946-c26e0cfad102", + "id": "494af045-56c1-4dc4-acc3-70a7d6da950f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139022,7 +139022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90654d95-97f2-47b8-8571-7c0588303398", + "id": "39e02311-9ca6-4ef0-9531-7bc670ac86ce", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139083,7 +139083,7 @@ } }, { - "id": "53f4fdbd-56e2-4605-ab81-809eb943db1a", + "id": "c8a00009-462f-4a66-aac9-b41cfc0077f5", "name": "Get identities for a suggested entitlement (for a role)", "request": { "name": "Get identities for a suggested entitlement (for a role)", @@ -139192,7 +139192,7 @@ }, "response": [ { - "id": "3965a299-ff61-4548-9de8-46285363a805", + "id": "28749728-9851-4a52-b57b-c3b90e18bbce", "name": "Succeeded. Returns a list of identities with or without the entitlement.", "originalRequest": { "url": { @@ -139294,7 +139294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e83b60bc-58ec-494c-a921-f220366a3a0c", + "id": "37bd9556-6874-4e85-91e4-7b02dcff8d41", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139396,7 +139396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8bcf777-1a32-4749-aef0-a4c17be6ce77", + "id": "a7fc41cd-ce2f-479d-8441-9ea6d3086cee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139498,7 +139498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d418c5bb-d1da-461f-8049-209818cc6e6c", + "id": "c15dde8e-0e30-44e2-8d66-31e9b1c4b51d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139600,7 +139600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de52f2a9-a221-4a24-8a5f-66538f52293c", + "id": "dad736fd-4418-42de-869b-982f2f15ab67", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139714,7 +139714,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": "3486fa6d-01d1-448f-a6e9-05a5e35a8e4a", + "id": "95d845ec-f20b-4e8d-97f0-4f0541fb560e", "name": "List Roles", "request": { "name": "List Roles", @@ -139816,7 +139816,7 @@ }, "response": [ { - "id": "0063b690-bab5-4f23-a5ad-d298273f0c38", + "id": "4887d09f-7d73-4932-855d-41efe34d2338", "name": "List of Roles", "originalRequest": { "url": { @@ -139932,7 +139932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51ca3948-b70a-4953-9b06-aaef78fa4dee", + "id": "a01a7aed-2a2d-4fae-b16e-ab9cd686cdab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140048,7 +140048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81b7e82d-f4d9-420f-bbc3-ba9f2ef3cab2", + "id": "82c16b95-61c2-469b-b44e-cb49258c4c91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140164,7 +140164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85a5ee01-272d-4840-858d-189fded1eee3", + "id": "f00ef2be-b04a-47de-923d-525d35756201", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140280,7 +140280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77249d45-346f-440e-99ec-6f3a34516445", + "id": "7d976a25-91fd-44a1-9610-004f0174b4f4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140396,7 +140396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b875bdb-86ff-4245-b79c-5f7aa929b96b", + "id": "d9dd700b-32df-4bdb-bb2d-b67918b36146", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140518,7 +140518,7 @@ } }, { - "id": "ed0deb36-65c8-440f-8e2f-1ea36161e568", + "id": "781b9625-5ca9-4793-bbd1-15116e00078a", "name": "Create a Role", "request": { "name": "Create a Role", @@ -140560,7 +140560,7 @@ }, "response": [ { - "id": "71d5389d-9059-467f-a27f-e36f3d385579", + "id": "2af66337-2cec-4094-917f-c19d71466d99", "name": "Role created", "originalRequest": { "url": { @@ -140616,7 +140616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a8cc03e-5dc8-4e32-8c8d-3b73c64cd57e", + "id": "5c93c51c-0fe0-4ef5-b114-e1efdfe68f5f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140672,7 +140672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b3f34da-21a8-44fa-8eb2-bd96ff246695", + "id": "4a48b722-ff0f-4454-a3b9-1f060a41ec2a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140728,7 +140728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fdb4012-05ef-4cb9-bc66-65c47fff9fea", + "id": "6cbf2ced-d1d7-44df-bec2-d20e06d17dcb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140784,7 +140784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04dcf7a9-73eb-41af-a456-75639ee4ec6a", + "id": "19e10d7a-cdca-4d2c-bba1-a5b82ef02e3f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140840,7 +140840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d7398c2-fdaa-4768-b7d8-d79dd2e4a0a4", + "id": "6e47d0af-817a-4418-a54f-b60e085f4c01", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140902,7 +140902,7 @@ } }, { - "id": "b044f143-91c9-4557-83d5-481c6b0e6762", + "id": "b7b7f08b-7483-4482-96f5-6569a85d20cc", "name": "Get a Role", "request": { "name": "Get a Role", @@ -140943,7 +140943,7 @@ }, "response": [ { - "id": "8d31f153-ae5b-408f-8fac-861f8c6861d5", + "id": "188d77f7-3cbc-4e1e-95ab-481a5393a11c", "name": "List of all Roles", "originalRequest": { "url": { @@ -140987,7 +140987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cff79649-f6d2-4bec-88f6-31cd94a482e1", + "id": "ed367101-c675-493b-8a1a-a87ab5f85360", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141031,7 +141031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd67eae7-728b-4fd3-b4cf-1790809c6d4a", + "id": "2fdc691f-66c8-45c8-97ce-3a7472f2ed22", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141075,7 +141075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0396684-4375-4edd-8e4b-6ff4fb1afb7a", + "id": "101e660e-eb2d-4d4e-8115-0e474d88c794", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141119,7 +141119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55da5315-efc9-4293-9274-129dff72bc4f", + "id": "046983d4-c987-425b-8fed-acaad24c967e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141163,7 +141163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f607c69-5d96-49bc-95c7-2972fc415f87", + "id": "9e089fc2-a010-4933-a664-a30802caf903", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141213,7 +141213,7 @@ } }, { - "id": "72692260-fcfc-4c79-9129-d0600c1a22dd", + "id": "f221a73e-71ee-4359-9cb3-ecf7a7a6f734", "name": "Patch a specified Role", "request": { "name": "Patch a specified Role", @@ -141267,7 +141267,7 @@ }, "response": [ { - "id": "c254704d-d5b0-497d-bf05-79d336c47a00", + "id": "1612903f-653b-4c0d-88af-a53b30d1ea2f", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -141324,7 +141324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0de22f32-ed11-4462-b9c4-e7f1632cbaf5", + "id": "17930524-360c-4c4d-b55a-13f559035330", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -141381,7 +141381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c151dfb3-b690-4ad1-a5e1-02b14d2593b1", + "id": "135b30cd-ae4c-4e16-8e9f-a9df4abc1641", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -141438,7 +141438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d3e6d0b-6548-448e-9fd8-e8820186e1f3", + "id": "349c2398-bf61-47ba-be63-4c9c23f49660", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -141495,7 +141495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02f558b2-c17e-45f2-b484-602574834b95", + "id": "cdbc55b2-7ed5-4117-9ca9-13c082b6daba", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -141552,7 +141552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16b5f25f-3771-40f1-a2e6-166aefc9b096", + "id": "3b0987dd-5acb-4064-b0c7-0af0c6115499", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -141609,7 +141609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67e2e95e-de54-48a0-a625-bc159722fe1f", + "id": "5b1a6f8d-05dc-4d62-a9bf-a0b9059bd93d", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -141666,7 +141666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45608620-dcc6-431c-b21d-5af1f159438e", + "id": "f8a8792f-cc52-4658-9115-82efebf0f548", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -141723,7 +141723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a731cead-12e0-46a0-aeeb-77a4bac039f4", + "id": "9f781e49-2a07-411f-80a8-501ccd451659", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -141780,7 +141780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "484b7382-f299-4cc6-acee-6ac4e59532d0", + "id": "7caccf69-b9e0-4ee6-8f1a-7fa543e30109", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -141837,7 +141837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83a75223-4c59-4eaf-8e39-80dc7b496f83", + "id": "552aecf1-931c-4ff4-a073-d19a96f11e17", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -141894,7 +141894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0c2ad43-dd7a-4a1d-85b6-68ccfcbd6e4a", + "id": "4ab68d3a-328a-42d6-a020-fdcc17703821", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -141951,7 +141951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "273f2d05-7590-456a-b247-6c538e1f6a0b", + "id": "7a954638-40cc-4322-aa72-60f75081e953", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -142008,7 +142008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72946a63-7c83-4062-b2e5-f7ad35ab1ced", + "id": "4ba270cb-f8f9-4b2a-a94e-10a8dbae39e7", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -142065,7 +142065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61e586e7-c35a-41f5-b6ef-d7d3db175ed5", + "id": "8cb36762-c3d1-42c1-a484-4ae904de777e", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -142122,7 +142122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "471afbae-e2d9-4d11-a933-57ce428041eb", + "id": "0eb0fdc9-91b0-490b-a417-c6edcb7b3190", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -142185,7 +142185,7 @@ } }, { - "id": "146982d9-d8b9-4593-8b1c-00381c186e85", + "id": "5e3b0439-ac7c-4cf5-a085-bc04d0ab6fc6", "name": "Delete a Role", "request": { "name": "Delete a Role", @@ -142226,7 +142226,7 @@ }, "response": [ { - "id": "9320df12-2754-4ec4-a3fe-771e7a365814", + "id": "9a8e541b-09b9-4b21-a9c9-9f5e2d58be16", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -142260,7 +142260,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f6e6c7d0-bc3c-4a3f-b26d-044299f7ed90", + "id": "0cae3142-398a-4ebf-953f-4c6ba158ecbc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142304,7 +142304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "352ae80c-927d-43e2-8d78-fffbb05b6969", + "id": "8b887c41-3465-4e17-a598-e861d6975801", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142348,7 +142348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac2b583e-42f0-4306-b23d-3b6a2e77540e", + "id": "cfdcdc08-9830-4cf6-b7a3-9b002a779eca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142392,7 +142392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00b57ef4-0e76-44e1-9cfb-24c9da495cae", + "id": "df332e21-2f64-4d88-9f6c-2a1bbb277238", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142436,7 +142436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54d6ec78-8505-4b55-9c14-d97711506eb2", + "id": "52e02ea4-0d71-406a-8b60-247e867b7c12", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142486,7 +142486,7 @@ } }, { - "id": "46a74fc8-2cde-4f0d-bdf1-dde1067687df", + "id": "76263167-de3b-4f99-bdd1-f2cbb1fc1bef", "name": "Delete Role(s)", "request": { "name": "Delete Role(s)", @@ -142529,7 +142529,7 @@ }, "response": [ { - "id": "87f3bcac-9e78-4701-b31b-f04c7abae4b8", + "id": "59d8c1cf-a380-4a32-b124-a7d2b6d4b3a4", "name": "Returns an object with the id of the task performing the delete operation.", "originalRequest": { "url": { @@ -142586,7 +142586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c748e09-234c-4b7d-810a-90543d609b00", + "id": "f6cdfd46-af76-439b-89ff-ee278cd737d1", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -142643,7 +142643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12a03f5e-da32-4ec1-8dc1-17c13f155184", + "id": "4ce6b7e0-5fdb-4c2f-b358-e0b734d0e99e", "name": "400.1 Role ids limit violation", "originalRequest": { "url": { @@ -142700,7 +142700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a83b326-bf9f-4aaa-af89-34a2fd7c5d49", + "id": "117d97ad-df59-48c3-ad22-b82225d3aae1", "name": "400.1.404 Referenced object not found", "originalRequest": { "url": { @@ -142757,7 +142757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9f3a909-97a9-4d88-a336-e375fe9147dc", + "id": "445fd543-162b-4c6f-9d67-c1d3702d6bb8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142814,7 +142814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae7f9489-45f3-4e7b-b9ae-785fb274b559", + "id": "0fd30dd4-04e9-4995-b254-951a97945ebd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142871,7 +142871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bd604eb-baf5-40a4-aff8-fb846652d9ac", + "id": "0f4eef48-1d45-43b2-aefd-a4dd6bd02fda", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142928,7 +142928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9484af1-c6df-4a04-bcbb-8cbed93958f4", + "id": "f1555ff7-9560-413a-a0b7-3e5170de52cd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142991,7 +142991,7 @@ } }, { - "id": "d01474c1-ee77-4020-86a3-0736b2e0c11a", + "id": "e12bfd76-23c6-440f-83a9-866e3b765df2", "name": "Identities assigned a Role", "request": { "name": "Identities assigned a Role", @@ -143076,7 +143076,7 @@ }, "response": [ { - "id": "3205b920-9cd1-45b0-8ac7-7dc45df02974", + "id": "22cadb5e-c17a-496c-a74b-d53adf4d5d4d", "name": "List of Identities assigned the Role", "originalRequest": { "url": { @@ -143167,7 +143167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1576f13-e1e2-4024-a704-44b90c1e6365", + "id": "3cbaacac-5de7-4e47-93c5-8f6fc1ae9894", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143258,7 +143258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8adab2ee-1c5e-4e41-9757-76f9aa9f4e28", + "id": "69f85e26-194b-4959-b8e0-381f8dd930be", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143349,7 +143349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89f03ca3-498e-40ac-8005-f4dc3d51719b", + "id": "10d7beeb-b69e-4e88-975f-430b79aa0ce3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143440,7 +143440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c9f210f-1026-4558-aa70-7d0c633f78fb", + "id": "185b5843-e547-45e7-b41f-b8a98c5bdf29", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143531,7 +143531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b953ec1-b342-4c55-b56b-9818aa175581", + "id": "253a0bdb-cd98-491a-9035-76120770d05a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -143628,7 +143628,7 @@ } }, { - "id": "a45e1f17-0867-4968-9890-f6deda4940c5", + "id": "5143ce44-6838-446f-9cb6-e62c4ce9610c", "name": "List role's Entitlements", "request": { "name": "List role's Entitlements", @@ -143716,7 +143716,7 @@ }, "response": [ { - "id": "b25ad1e0-05b0-41fa-bad4-7a9771ba8894", + "id": "6a7a183f-492c-468c-8cc1-374412617b32", "name": "List of Entitlements", "originalRequest": { "url": { @@ -143807,7 +143807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60039f9f-8651-42eb-a5af-ea2b1ff85f4a", + "id": "601dc998-3ec4-4dcc-9c8f-2c941747a326", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143898,7 +143898,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a04ac6f2-329d-4489-841d-01ca41122a7c", + "id": "2358f0b4-053e-4003-b431-aa706c5ccf92", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143989,7 +143989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23626f56-f527-4b2f-b8c9-f09b7328319a", + "id": "24a656ff-9a89-49fa-8e43-477523e92cd0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144080,7 +144080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a18bb3e2-1442-4b81-9729-28986ddf6a8e", + "id": "13814bea-0b3a-4718-ae89-14ae64ef8f1d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144171,7 +144171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4fd4610-4ded-4512-8b6f-9f2cf5b2ff29", + "id": "9189807c-0504-4e5d-ba99-2694d435cedb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144274,7 +144274,7 @@ "description": "", "item": [ { - "id": "b24443ab-06f7-41fe-abdd-60221677a9c3", + "id": "7d6ddeb9-2850-4fb8-a123-c649b8c135bc", "name": "Configure/create extended search attributes in IdentityNow.", "request": { "name": "Configure/create extended search attributes in IdentityNow.", @@ -144317,7 +144317,7 @@ }, "response": [ { - "id": "76840960-7626-423c-93e2-320a10976989", + "id": "59e92fb4-75fe-4543-80aa-d2691af85e17", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -144374,7 +144374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92d89ea9-8f01-4e2e-9b4a-735c06779dbb", + "id": "1a17c54e-ed9a-4299-ae4a-516bfee4cb5d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144431,7 +144431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcd734bc-4d6e-41d4-ac80-2c589b0aef24", + "id": "454a92b8-418f-473f-a3bd-4b9db78115fd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144488,7 +144488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df18bca5-cbec-491a-8b91-40816003a41d", + "id": "be61d4e0-ae1a-4036-a1e9-d3e3a5129004", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144545,7 +144545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad990ff0-3f8b-4b0f-a853-7bad6c809bbc", + "id": "36bdfe30-b086-42b6-abda-78b9fd8ca3fa", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -144602,7 +144602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d99690d5-e59a-418e-9ad3-a2e5fea9fdf3", + "id": "b596c860-b10f-4e8e-a976-ec30923ef841", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144659,7 +144659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd903891-ecb2-4095-9e5b-e1b2a91fb954", + "id": "265eec80-64b1-498a-9226-bfc5b3e33ae9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144722,7 +144722,7 @@ } }, { - "id": "631db332-8c0f-4fec-a38b-35ceb20a8bdb", + "id": "965a4dca-02b5-42e1-9ca4-a6a5e919daae", "name": "Retrieve a list of extended search attributes in IdentityNow.", "request": { "name": "Retrieve a list of extended search attributes in IdentityNow.", @@ -144752,7 +144752,7 @@ }, "response": [ { - "id": "90f33147-4151-404e-b461-98de34cc5727", + "id": "a7c54758-3dd2-433f-8555-4ef40314fcbd", "name": "List of attribute configurations in IdentityNow.", "originalRequest": { "url": { @@ -144796,7 +144796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85d5f8a0-a12f-4a33-b9b4-7e0de465a434", + "id": "ea485773-6993-4a16-b325-4a9e25bb0302", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144840,7 +144840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5738b72f-941c-4fef-9616-994cbcc628f1", + "id": "4c8e27be-59cd-4f10-ac38-21e4cf9e4ba0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144884,7 +144884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9be3e5e9-12f8-4a57-aa57-99efb104615f", + "id": "d4f18fce-fc86-40ce-b446-a50271e879ad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144928,7 +144928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3cd26d2-3773-421b-9bb6-c81e2bf5f67d", + "id": "e4c0ded7-44ce-48ca-ac32-bdcad0e5e314", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144978,7 +144978,7 @@ } }, { - "id": "03647a32-6d06-4d98-b501-2ad0838c11dd", + "id": "46630933-ac4c-402c-b982-aaa3d8343410", "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.", @@ -145020,7 +145020,7 @@ }, "response": [ { - "id": "98616c8b-c6f1-41ea-a803-139c66ee55ea", + "id": "7aea2409-3472-46cb-86c6-65a07d198193", "name": "Specific attribute configuration in IdentityNow.", "originalRequest": { "url": { @@ -145065,7 +145065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92a28836-f510-4d85-a722-368d6899fe15", + "id": "a6721ee5-cb8a-4a24-b0d3-46941e087c17", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -145100,7 +145100,7 @@ "_postman_previewlanguage": "text" }, { - "id": "920124a7-f427-4c06-a830-952bccb5a5d8", + "id": "2505ad5f-c6c5-4842-9d52-b0c0da778c1f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145145,7 +145145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f91a51b-a8ce-443e-adaf-9e6c5c3431f7", + "id": "f087832b-6d49-42da-8fac-5a5879929484", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145190,7 +145190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e28272e1-9d39-4dc1-a537-51a165e2947a", + "id": "a4320bb7-eb86-4640-8fa3-ab4463ac0be9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -145235,7 +145235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cda9fe9-b3ae-4814-a489-9c1e96f5106b", + "id": "55f9c5ba-ee00-4c08-8d03-55be6eb70822", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145280,7 +145280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcc87ddf-6b8a-4b87-8356-b9a3648eaab1", + "id": "d1d7993e-0269-4c89-937c-178c0d4d20ca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145331,7 +145331,7 @@ } }, { - "id": "0ec6ed32-ebf2-44cc-b331-40ca4c3a1421", + "id": "f33e84ed-1b6f-4cd6-a522-8c6f69549cf2", "name": "Delete an extended search attribute in IdentityNow.", "request": { "name": "Delete an extended search attribute in IdentityNow.", @@ -145373,7 +145373,7 @@ }, "response": [ { - "id": "4784e2d1-dd65-4914-acda-335fb17afba1", + "id": "880b3722-86b9-4381-b891-304093e05dfe", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -145408,7 +145408,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4abcde56-0b4f-4f96-b7c9-02cfe27770f9", + "id": "38a9aeef-701a-4a95-970a-b9318ae49ca6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145453,7 +145453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d96428c-ba4d-499a-aed7-e3e87c043531", + "id": "1c01915d-226e-4d87-8f9d-ac2ee96a8e1f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145498,7 +145498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd7a9bd3-d633-4abe-8316-09057c1dbbbc", + "id": "accfc120-6c70-4c87-b638-b4e2d83d3445", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -145543,7 +145543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2d5f83c-e1c9-4056-b4e9-61969b90bbd1", + "id": "c763fbfa-122b-4c94-9378-46cb57b67d60", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145588,7 +145588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75fbd16d-3386-4944-8436-eedfd0ff674b", + "id": "300824ca-a4f0-4d5b-bbae-ad305aec9471", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145639,7 +145639,7 @@ } }, { - "id": "865bd7a0-d140-4f76-9f6c-dd2d2df3c444", + "id": "d18ffddc-db25-4974-b187-8e5f567d43eb", "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.", @@ -145694,7 +145694,7 @@ }, "response": [ { - "id": "510c9a50-7700-400e-8a94-ad02682ca66a", + "id": "78ff9b6c-be18-429f-bc44-99f1b672f77a", "name": "Responds with the Search Attribute Configuration as updated.", "originalRequest": { "url": { @@ -145752,7 +145752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75683aac-43a7-4936-9336-25f60cb6e1df", + "id": "21a32568-f5af-4cf1-ac2f-0101f8d52ecc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145810,7 +145810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e803800d-4b0a-40b6-9ba8-6575e75ff888", + "id": "c3254e3d-1b57-4c7c-afde-e2d3fa19b1c7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145868,7 +145868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f525018-ab1a-4d91-8957-60e9a456ab05", + "id": "0ba0e79c-c0d7-417d-a981-114e8f35beac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145926,7 +145926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb5e4269-87d7-4d14-9110-985d29f92f20", + "id": "70e4ec19-c59c-4924-95e4-9ab7b991e208", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -145984,7 +145984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cc29d2b-47c0-40e3-bc4e-4c4bc0a39513", + "id": "3e10514c-e609-4227-a3ce-19a083392658", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146042,7 +146042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90c43236-d69b-40a5-9225-5c37b80fe157", + "id": "765b0f01-6487-4e39-88a2-ee6d04718bc3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146112,7 +146112,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": "44d3b583-d81d-42e8-943a-2fae89a6de10", + "id": "9b1087c4-b3c4-4a65-a139-ca36ed7d1924", "name": "Create Segment", "request": { "name": "Create Segment", @@ -146154,7 +146154,7 @@ }, "response": [ { - "id": "670aa643-319e-4926-82b1-ca49fe2dec8e", + "id": "717eab9f-b78f-4128-bb3f-6725cbc62230", "name": "Segment created", "originalRequest": { "url": { @@ -146210,7 +146210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e2d0161-f915-4b3a-b37b-2da43c466955", + "id": "884863b4-b2c0-43c4-a6cd-7c6ad07172ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146266,7 +146266,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97ed34a8-8606-4764-b4f6-3294f29da389", + "id": "7319dc6b-dceb-4d21-a5e2-9b02eb9063f5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146322,7 +146322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1d8e6ed-f311-4a53-9347-1d80efc8c7ad", + "id": "59450857-dff3-4481-9ee9-a46aeb281033", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146378,7 +146378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6371132-4311-4294-886f-815d95f91411", + "id": "d9541bd1-2366-406c-bfb1-b8b1e5514a41", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146434,7 +146434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f3158bb-1285-4af0-ba36-608f42693d91", + "id": "abe8313d-339a-458a-8693-a3b118708e19", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146496,7 +146496,7 @@ } }, { - "id": "f1129795-da5e-4d2c-8114-cf6a54849665", + "id": "0d2faa25-83c0-4db6-a50f-137771c8b1d8", "name": "List Segments", "request": { "name": "List Segments", @@ -146553,7 +146553,7 @@ }, "response": [ { - "id": "d9a55993-8777-45df-a0cc-1724ee69dee9", + "id": "3481b134-7e64-4289-a71d-643dc45cce46", "name": "List of all segments", "originalRequest": { "url": { @@ -146624,7 +146624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e4bcf32-8e36-4cc7-9754-4961b51b2a06", + "id": "8523f238-e354-41f1-977f-acc84922c059", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146695,7 +146695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6aa3fcc-712b-4669-aa30-bfc15f5b6550", + "id": "8d981e3c-6d63-400f-b238-34a04b6c27cf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146766,7 +146766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54cbe0b3-d450-4cf2-8185-de207a6b5c5d", + "id": "a2b4489d-10b6-4ded-b356-9435f5f62789", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146837,7 +146837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b49c3717-9c05-4813-9251-c53051802cd6", + "id": "6ff5405d-9fd6-41e5-b916-a3b8555b22ac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146908,7 +146908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a01f6b9e-99a2-4994-8552-81ad5813b45b", + "id": "f59c2926-97b5-4ba7-83f0-cc4d54a3b59f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146985,7 +146985,7 @@ } }, { - "id": "96d25f18-7aa7-4f77-ae08-2f0ba9151ead", + "id": "f16b0bcf-3d6c-42d1-b471-c967ff73223b", "name": "Get Segment by ID", "request": { "name": "Get Segment by ID", @@ -147026,7 +147026,7 @@ }, "response": [ { - "id": "09b0019c-8c88-48be-886d-e49941222cbd", + "id": "03816f07-d0d1-49f8-9cf3-04be731bf125", "name": "Segment", "originalRequest": { "url": { @@ -147070,7 +147070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50652778-e82f-4a77-b9fd-6f8e76627111", + "id": "d4c27390-e876-4c17-ad04-a2a57f7d413d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147114,7 +147114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ac23410-72ea-4139-98ae-11ec083a28ba", + "id": "2aa6dd86-d444-4d55-a2f9-62ec7bb8ac76", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147158,7 +147158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4fcde8b-58d3-4412-8872-4b77f2537983", + "id": "52adde3e-2ec4-4e72-a85f-2432ea6ea101", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147202,7 +147202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92ceb7c7-89ef-4730-b5ec-4b41f027e408", + "id": "999741fb-98d5-4471-8227-1c5bc9283d35", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -147246,7 +147246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a636007d-2098-4ef5-b3b5-57093ab2aab0", + "id": "c9bb450e-aba8-44a9-ba08-ac3a30e02ee1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147290,7 +147290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "419ddd31-00d3-4f27-adbe-abd1e6fdbfc9", + "id": "fd3463a4-2c54-4f47-adeb-5b7625c522ef", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147340,7 +147340,7 @@ } }, { - "id": "7e54cffd-a2bb-470f-9c54-96e49ece8247", + "id": "33d5357b-0219-4316-ad8f-9f625f623569", "name": "Delete Segment by ID", "request": { "name": "Delete Segment by ID", @@ -147381,7 +147381,7 @@ }, "response": [ { - "id": "cd3220a5-9e43-40ae-9717-3abb955f3e51", + "id": "ddc9fcea-41b2-4258-b5a9-4a70c8aae7e9", "name": "No content.", "originalRequest": { "url": { @@ -147415,7 +147415,7 @@ "_postman_previewlanguage": "text" }, { - "id": "62c169e0-c1b2-42a5-83c4-0b6bd61b6e6b", + "id": "20af0855-cbcb-421e-88c9-375965cf860a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147459,7 +147459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5535e26-d219-4cf2-b3f8-72c4f1de01e6", + "id": "a7399a3c-486a-4a8e-ac46-b60bd944a5c2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147503,7 +147503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e55f9624-ce91-4b21-aa13-2a2004b4f1fe", + "id": "522ff1ff-4585-448a-b456-c633c7fbb2be", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147547,7 +147547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cbbe659-3d44-4bba-858d-229720bdeece", + "id": "08d3db14-e111-415b-bdcd-075689f36753", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -147591,7 +147591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dcf5783-92c7-44f0-b37d-692f0eb5dce6", + "id": "bb2c5f6a-a037-418c-aacb-8d13fdb32e56", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147635,7 +147635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59ab1e89-4e8d-4e3c-b837-36687237373d", + "id": "1a6a90b7-18a6-4647-9f63-b21473b48d5a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147685,7 +147685,7 @@ } }, { - "id": "31f8c79a-e879-440c-9f0a-70d5763271f1", + "id": "f3c97ccf-9f84-4223-a1cf-c750da394ec4", "name": "Update Segment", "request": { "name": "Update Segment", @@ -147739,7 +147739,7 @@ }, "response": [ { - "id": "0b7b496a-d536-46c1-b88b-7c4f1252e429", + "id": "91e58a47-ac8c-482f-a608-2d4290bd6813", "name": "Indicates the PATCH operation succeeded, and returns the segment's new representation.", "originalRequest": { "url": { @@ -147796,7 +147796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1a31140-6bee-4e25-8a38-fdbe9f152f60", + "id": "b68b2120-c872-43c9-ae35-faf9198ea619", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147853,7 +147853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1275454d-27ab-4389-b04a-e5666d0d3730", + "id": "f1569ca8-08dc-4273-9955-fce5fd2297dd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147910,7 +147910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81253302-217a-4a8a-a96c-3a9efbc65f7f", + "id": "0a082a80-0ee7-4417-a21f-eb25a6d27d4e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147967,7 +147967,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a446aa60-9e06-46bb-b834-b8771ee457a1", + "id": "0a4a6bc2-9ccc-449f-80d7-29bfedb7fdb4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -148024,7 +148024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67a3692d-318b-475e-9781-9a491ee1684c", + "id": "eb1d20e3-bf77-4507-bffc-254ba253e26c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148081,7 +148081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16ba34e1-3424-452a-b849-94a9a492fba4", + "id": "114aa9e2-9a8a-42e5-836c-6233b8f27845", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148150,7 +148150,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": "d95d5fef-cf5a-4800-b419-55d1a0d25442", + "id": "f603037c-d49f-4e8d-8eed-7787aceb3053", "name": "List existing Service Desk Integrations", "request": { "name": "List existing Service Desk Integrations", @@ -148225,7 +148225,7 @@ }, "response": [ { - "id": "4f0dc09a-7aad-42ca-8820-b5b1a9b9af72", + "id": "34311702-f914-414e-b239-1ee8d730ffe0", "name": "List of ServiceDeskIntegrationDto", "originalRequest": { "url": { @@ -148314,7 +148314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11556f51-dc09-4981-845c-20b089ab8e7b", + "id": "2bda182d-2688-4bf8-9cd7-f89ce61409fd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148403,7 +148403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4142679a-3008-4aed-a2b7-afa5e928f6e0", + "id": "68d230ad-4d1b-4933-a867-0073a97b4ebf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148492,7 +148492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa59b4fe-02b9-4fed-819b-ada2cbf162d7", + "id": "28d9e3f1-ebac-4eec-99a2-91c1fcb01c6a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148581,7 +148581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03ac8acd-c717-40e3-b411-8961ee0ed7fc", + "id": "511bcf2b-f5e2-4289-8623-c63b09563f7f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -148670,7 +148670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92d2132e-17e6-41a8-ae2d-7fda9d853e8e", + "id": "edd5a3f9-f571-4106-9013-3260e1f7c53d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148759,7 +148759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44f71c69-4dfe-46ea-89c2-41cce091f2aa", + "id": "557b7939-07ec-4636-bcb3-417266c05ad5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148854,7 +148854,7 @@ } }, { - "id": "122c8d69-75eb-4ea0-a852-5c7ea1b7ebe7", + "id": "2d12ac60-051f-495b-a85e-e66ae56cf54f", "name": "Create new Service Desk integration", "request": { "name": "Create new Service Desk integration", @@ -148896,7 +148896,7 @@ }, "response": [ { - "id": "5f3b95a8-aafc-4e53-9dd9-3a6efc94efc3", + "id": "631f5d21-f606-40bc-9841-79db3a4faecb", "name": "details of the created integration", "originalRequest": { "url": { @@ -148952,7 +148952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "412362a6-ee08-4f76-8bbd-48d50b192263", + "id": "350e085f-87f0-4139-800f-590f2b9912fa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149008,7 +149008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "724ef34d-fe8c-4455-9b4f-a9ef3a3ddb30", + "id": "47a67795-921a-42f2-bd7a-85d88a4171ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149064,7 +149064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d8d62e6-06bc-4e98-b00b-dc2dde2d67fd", + "id": "f57eedab-be1f-4264-ae1e-aa3897afa46b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149120,7 +149120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53e17679-b00f-4521-a0d3-52b4eefa217b", + "id": "34c63281-c9e2-4386-ba8f-ac40a6fe8655", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -149176,7 +149176,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bc0b606-a230-4cdb-80aa-4754c249b510", + "id": "94fa9b60-f689-40b8-bd6f-c83b7d5c397e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149232,7 +149232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6dcbf70-96e8-41c7-961b-2f068d2420a2", + "id": "aa37454e-7ab0-4bb2-aa6b-6667d06a392b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149294,7 +149294,7 @@ } }, { - "id": "8187ac18-7fed-46c0-a36b-1c9c3e1af045", + "id": "1eacc162-cee3-4b3b-bb5e-7bb6378a0668", "name": "Get a Service Desk integration", "request": { "name": "Get a Service Desk integration", @@ -149335,7 +149335,7 @@ }, "response": [ { - "id": "3f8260b6-4817-4403-bcf9-e67e27bcdbd7", + "id": "1440da89-1327-4b43-9ca6-5d9c7a969d62", "name": "ServiceDeskIntegrationDto with the given ID", "originalRequest": { "url": { @@ -149379,7 +149379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75686234-3397-4869-8780-f032fe441d9a", + "id": "22501ea4-dc02-40e1-84e3-67de9ef1ea41", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149423,7 +149423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a955e156-4e65-4f4a-b5fc-e28a516b244c", + "id": "ebb73f61-709c-4fab-8f3b-aec7ee9c9f8d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149467,7 +149467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3254b7ab-f846-4a85-8b23-0b7162590dee", + "id": "77260063-7e27-414d-98ef-e31202939f5e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149511,7 +149511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2e66675-6ad1-4b24-a604-2b0e25f49b3a", + "id": "fcdcb215-9df7-4de9-a8a1-f3ed8fc09452", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -149555,7 +149555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e80658a7-b339-4e46-a047-78b66471cb4c", + "id": "d771faa4-8ac0-456f-8209-2fc942c82a7f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149599,7 +149599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b56a756c-a1e2-4c9e-9819-cec9a3000b0b", + "id": "f513ba20-e36b-4276-8620-59d878f27736", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149649,7 +149649,7 @@ } }, { - "id": "6875e1e6-5048-4c97-954c-7f7e31008609", + "id": "aa0ed278-dbf5-43c8-846b-f71873e71b92", "name": "Update a Service Desk integration", "request": { "name": "Update a Service Desk integration", @@ -149703,7 +149703,7 @@ }, "response": [ { - "id": "41d3654d-e2e9-4ed0-a32e-ac89654049bd", + "id": "67b5b86d-91c6-4ed2-9e5c-72297399201a", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -149760,7 +149760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9660419d-bb08-4a64-b40f-aa44593e27c6", + "id": "dd6b41ba-1af1-49b9-b606-9706975b794e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149817,7 +149817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea1e32bc-149b-4f19-bb30-d335d7ee15f8", + "id": "55317cd6-61a9-4af0-857c-7fede95bc874", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149874,7 +149874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eddb6ca5-7d8b-4d0d-bedf-9b1f8e841caa", + "id": "4cae926b-937f-4c6c-ba33-f754f7134029", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149931,7 +149931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d3c6420-22e3-402f-b481-97dae173e78f", + "id": "1838d591-7af9-4183-8aa7-fc0fd41a9f79", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -149988,7 +149988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af31f08a-7a39-4ce1-abb1-794248ba57b1", + "id": "4134687a-e0b1-478c-90fc-07135fcbe274", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150045,7 +150045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71fcd6d3-d79d-4aff-8a90-2908495a179b", + "id": "6d88bcde-dd1a-43b8-81fd-b00b97d4c26b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150108,7 +150108,7 @@ } }, { - "id": "f5552b40-6253-41a4-9aa5-9502936efb6d", + "id": "95f9be60-df47-4cb8-b8af-d88b59c5238b", "name": "Delete a Service Desk integration", "request": { "name": "Delete a Service Desk integration", @@ -150149,7 +150149,7 @@ }, "response": [ { - "id": "de65249b-c076-4ca6-bdb1-821c692faa0e", + "id": "173e208f-b51c-493f-a74b-e3d8c0eade59", "name": "Service Desk integration with the given ID successfully deleted", "originalRequest": { "url": { @@ -150183,7 +150183,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6cf98605-a376-419f-951e-d218dec3a7af", + "id": "29b593c7-c3f5-4616-84f2-69bf82f40b44", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150227,7 +150227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e18fd2f-e664-494c-bc7b-8f9c200d6265", + "id": "b95ac0ba-048a-42a9-a211-69e83a5963ef", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150271,7 +150271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fd0de7e-9b2b-49f8-b7fd-4d548edfdc2d", + "id": "2e6e4253-4023-4e07-94a3-a0a57ac5fb9a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150315,7 +150315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d300b33-8cc3-4ce4-bf76-c8cf6f4b53aa", + "id": "90a0e252-c502-49b1-96c0-be889d1e4ca3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -150359,7 +150359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb731633-87cc-4b01-b57a-85b122213c5c", + "id": "210d2f63-444a-4860-aacf-8bbc3e58a4e6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150403,7 +150403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27d0f8b0-41c7-4ae9-baae-45da282fb273", + "id": "d243627c-03c5-42c5-aa59-89c171d853f0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150453,7 +150453,7 @@ } }, { - "id": "2110eb05-d503-4ff3-b45c-ea42cbb0b81a", + "id": "0388375a-ba65-46ae-8b61-5bb04eae2d59", "name": "Service Desk Integration Update PATCH", "request": { "name": "Service Desk Integration Update PATCH", @@ -150507,7 +150507,7 @@ }, "response": [ { - "id": "55855036-2cea-4e7f-b1c5-fca84eb26b9e", + "id": "0b19d1bb-acf3-436b-be3b-46cd88711243", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -150564,7 +150564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b252711-3908-495e-8486-3c45015664c8", + "id": "22f96beb-36eb-481f-a521-bf3456ee2548", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150621,7 +150621,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdba2b30-5fd7-4c62-9ba2-321709913906", + "id": "d6aa907a-bc97-4daf-ae34-d823d5912c91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150678,7 +150678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96faefc0-618b-40ca-90bb-97536af4d1bf", + "id": "52661268-6e10-4d0d-b372-8152d5a8403d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150735,7 +150735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ee5fd40-2abe-4768-b553-fcf03f10e452", + "id": "e4b4789f-4fd2-480d-a21b-eacc941c22f1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -150792,7 +150792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f8301a2-1ad0-4e20-b9ea-09d195ec17a9", + "id": "c975d517-4dbd-4c7d-912a-d5f118d4a834", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150849,7 +150849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f69b239-17a7-4608-ba57-60b9c6f0300a", + "id": "19b4227e-021d-469b-bdc2-6a0a5f6afbcf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150912,7 +150912,7 @@ } }, { - "id": "f8063e44-992e-439c-8e36-fa7c9b14e3e6", + "id": "6fccba7d-c042-41df-ad96-982804a244e7", "name": "Service Desk Integration Types List.", "request": { "name": "Service Desk Integration Types List.", @@ -150942,7 +150942,7 @@ }, "response": [ { - "id": "4a5eeda3-bbb2-4e3e-a6c2-a18b83ff4b9b", + "id": "bb415985-8761-47ee-b62b-d06a7ed558ce", "name": "Responds with an array of the currently supported Service Desk integration types.", "originalRequest": { "url": { @@ -150986,7 +150986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f653055-0af9-4028-8b58-d70b1990507f", + "id": "233b0d70-9a7b-4d50-8bc9-0a09fd8c3ecd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151030,7 +151030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c1335c5-8e41-4af9-9861-4ecec865b1db", + "id": "2f081625-2328-4f84-9787-0fab7c8dae18", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151074,7 +151074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f5b64e3-4f7d-453e-b078-d5c0a5c6ec39", + "id": "ea33b005-b6c0-4536-8bb2-75ff17cfc5bb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151118,7 +151118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e71ef539-c4f6-499f-b5a3-cef5dce1d366", + "id": "253199be-a2a7-4600-af91-badbfc0f341f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -151162,7 +151162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8291d05-31b1-4fbd-a419-ea6f72845a88", + "id": "290b871f-a5ba-4447-adde-cfcdb4e5b8b4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151206,7 +151206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1b33708-1f05-49c3-ad3f-256c58003575", + "id": "f173cfae-88ed-438a-b61d-bcc9cf4b5e65", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151256,7 +151256,7 @@ } }, { - "id": "c9ee1075-2a32-4b23-8308-e518bde9fe2e", + "id": "9735a15d-c14c-489d-9ac2-338dc4ae020b", "name": "Service Desk integration template by scriptName.", "request": { "name": "Service Desk integration template by scriptName.", @@ -151298,7 +151298,7 @@ }, "response": [ { - "id": "1dad47e7-236a-4c01-a53a-58ab7df2c9b2", + "id": "d909cb6e-c0df-4437-905a-2ebf33098ffa", "name": "Responds with the ServiceDeskIntegrationTemplateDto with the specified scriptName.", "originalRequest": { "url": { @@ -151338,12 +151338,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"quis7_\": false,\n \"officiaa_\": -3652974.1953232884\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 \"essefd8\": \"ullamco esse\"\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": "2afe5102-153a-4491-9571-f50bb91c727d", + "id": "10e0fc87-09e4-45ad-bb77-5e5fb1eb083d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151388,7 +151388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0ac8c57-ee15-420c-b98d-e0d9c8b2bb64", + "id": "2830b766-2d4d-44ce-ba9f-489ac26544ee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151433,7 +151433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75b8de73-8d3c-4a96-8ad2-75fc899b63ca", + "id": "9d7b35ca-8961-4219-85cd-3b075c3fb383", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151478,7 +151478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f947e11-e6e6-49d5-a095-a21529100c76", + "id": "dc3fa8f1-47e8-4b61-8a5f-3c7e66f0811e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -151523,7 +151523,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1c65eca-a3c5-4fd1-b40f-ec06ef27b99c", + "id": "040d0a5b-aa8e-480c-bee4-7d8f61dd9769", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151568,7 +151568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48fcca35-5e3e-4f2e-8e32-55f96a87237d", + "id": "998aefac-0c1b-46e2-9a22-c0b63fdd8414", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151619,7 +151619,7 @@ } }, { - "id": "f292d4aa-0b9f-4409-8d81-19632eb780e4", + "id": "4b6ae35d-f471-4e89-af52-85d5e824e7be", "name": "Get the time check configuration", "request": { "name": "Get the time check configuration", @@ -151649,7 +151649,7 @@ }, "response": [ { - "id": "2311945d-94cd-42d0-8560-29fb950e54bc", + "id": "fb9c3de7-e870-43ce-9434-6654715cdfae", "name": "QueuedCheckConfigDetails containing the configured values", "originalRequest": { "url": { @@ -151688,12 +151688,12 @@ "value": "application/json" } ], - "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco reprehenderit\",\n \"provisioningMaxStatusCheckDays\": \"enim\"\n}", + "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"fugiat pariatur dolor ad\",\n \"provisioningMaxStatusCheckDays\": \"amet est\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7dab3c2d-3ca2-4dcb-a052-d00de69adcc3", + "id": "8c5131f4-0613-445a-8444-b8deae458bcf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151737,7 +151737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "926395e3-41cf-4109-96d4-d0f30596ab3d", + "id": "ceb93c05-2fd5-419b-9ef7-b7f49de349a2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151781,7 +151781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "744d972b-47a9-4b44-854c-8b9e28505ab7", + "id": "103e659c-5d71-4220-9fc6-1462f1711f1c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151825,7 +151825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e61d3c43-b6b5-4ea0-a967-18d4d084fd98", + "id": "28852238-2ebc-4b5c-bc2f-d97c70a81e3d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -151869,7 +151869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d59487a3-27c2-4edc-8529-52820ac898b1", + "id": "3352e6f2-3f44-4c41-99ee-3e98249014e6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151913,7 +151913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2112882d-24cf-4972-885e-99bcac230357", + "id": "18fa0362-2b70-46df-a3b6-5cceb24f20b8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151963,7 +151963,7 @@ } }, { - "id": "fc38d426-adfc-463d-8c1a-e2d3c9d5197b", + "id": "839fdae2-283c-422c-896f-0f9acee8feaf", "name": "Update the time check configuration", "request": { "name": "Update the time check configuration", @@ -151995,7 +151995,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco reprehenderit\",\n \"provisioningMaxStatusCheckDays\": \"enim\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"fugiat pariatur dolor ad\",\n \"provisioningMaxStatusCheckDays\": \"amet est\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152006,7 +152006,7 @@ }, "response": [ { - "id": "994fc267-e269-4d40-855d-db582e14bbaf", + "id": "efe57d5a-9465-46f5-b1bb-24e514a08e04", "name": "QueuedCheckConfigDetails as updated", "originalRequest": { "url": { @@ -152041,7 +152041,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco reprehenderit\",\n \"provisioningMaxStatusCheckDays\": \"enim\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"fugiat pariatur dolor ad\",\n \"provisioningMaxStatusCheckDays\": \"amet est\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152058,12 +152058,12 @@ "value": "application/json" } ], - "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco reprehenderit\",\n \"provisioningMaxStatusCheckDays\": \"enim\"\n}", + "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"fugiat pariatur dolor ad\",\n \"provisioningMaxStatusCheckDays\": \"amet est\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0becc014-9663-4c86-970d-c34328ea22f1", + "id": "5d984edc-6a41-4002-a888-2321070b0d64", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152098,7 +152098,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco reprehenderit\",\n \"provisioningMaxStatusCheckDays\": \"enim\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"fugiat pariatur dolor ad\",\n \"provisioningMaxStatusCheckDays\": \"amet est\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152120,7 +152120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "922d5e2f-e5ea-4cd1-9719-0f077b515150", + "id": "b7ffefdd-5dd2-4fec-a1fa-cf306b4d450a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152155,7 +152155,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco reprehenderit\",\n \"provisioningMaxStatusCheckDays\": \"enim\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"fugiat pariatur dolor ad\",\n \"provisioningMaxStatusCheckDays\": \"amet est\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152177,7 +152177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cd20be8-15a5-4304-963a-9bb8e3847530", + "id": "044531cf-ab7d-4212-9812-b41675d29eb5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152212,7 +152212,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco reprehenderit\",\n \"provisioningMaxStatusCheckDays\": \"enim\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"fugiat pariatur dolor ad\",\n \"provisioningMaxStatusCheckDays\": \"amet est\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152234,7 +152234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c201127e-0004-4259-993e-036d5f56b82d", + "id": "0f760fd1-b7f6-45a0-b61c-2f4db8cb0496", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -152269,7 +152269,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco reprehenderit\",\n \"provisioningMaxStatusCheckDays\": \"enim\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"fugiat pariatur dolor ad\",\n \"provisioningMaxStatusCheckDays\": \"amet est\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152291,7 +152291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "443c8ed9-6f86-4ffb-a950-695b913047fa", + "id": "b7bac684-eda8-4a2a-96d7-ab53c20ff1a4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152326,7 +152326,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco reprehenderit\",\n \"provisioningMaxStatusCheckDays\": \"enim\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"fugiat pariatur dolor ad\",\n \"provisioningMaxStatusCheckDays\": \"amet est\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152348,7 +152348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88f416d2-a7b4-4561-84e0-cced1e683b32", + "id": "6731fce4-86a4-446c-bfb8-7d747108a8fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152383,7 +152383,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco reprehenderit\",\n \"provisioningMaxStatusCheckDays\": \"enim\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"fugiat pariatur dolor ad\",\n \"provisioningMaxStatusCheckDays\": \"amet est\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152417,7 +152417,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": "dd249fc4-850c-4c93-b2ce-ce89ba045c47", + "id": "2900f49c-f8c5-4b36-a174-55dc225ea2df", "name": "Create SOD policy", "request": { "name": "Create SOD policy", @@ -152459,7 +152459,7 @@ }, "response": [ { - "id": "eaeef961-37bb-4a58-952a-2b6ae8988681", + "id": "76de037e-5070-4eb6-b143-7832de75488f", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -152515,7 +152515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "249ce1d0-3a4a-431c-9b39-03058c1853eb", + "id": "4dccc0ae-76d4-48e4-8231-c0945692fbc6", "name": "General Policy", "originalRequest": { "url": { @@ -152571,7 +152571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94cb050d-cf54-4891-a9ab-708aebf7519d", + "id": "396ddc23-1c57-4aaf-8ce0-d539808cb618", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -152627,7 +152627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13f526c2-9861-404a-a5ea-26385c09f7e9", + "id": "40112b23-9139-4e84-9995-d179fc6923ec", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -152683,7 +152683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a63ff1ca-9d29-4f5e-adb7-1a5154f9fa07", + "id": "9d3dc495-e1ee-49c3-ba0a-bf1dee4361f7", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -152739,7 +152739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d513214-0bee-4fb5-926c-b4de896a231a", + "id": "8480fa0f-964a-4056-9197-5a3643370387", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -152795,7 +152795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d79bd5cf-e7f1-466f-9408-3dd769b1373a", + "id": "c76573d9-d195-44e4-8601-b0c44ee4df9f", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -152857,7 +152857,7 @@ } }, { - "id": "428877ec-53ad-4a73-b9ef-138a439e7bfd", + "id": "5567c759-d76b-4ac7-8a81-8a75a715e841", "name": "List SOD policies", "request": { "name": "List SOD policies", @@ -152923,7 +152923,7 @@ }, "response": [ { - "id": "99802a7a-ccb2-4abe-9e09-a705065c215e", + "id": "16cc236a-e268-4c1b-bc5e-d049095bc96d", "name": "List of all SOD policies.", "originalRequest": { "url": { @@ -153003,7 +153003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb48f865-414b-46fd-a49c-3667f185374c", + "id": "82a6d641-2d16-4fcb-964b-6641521f63b2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153083,7 +153083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c6a3a40-422c-43a0-954e-b40e0e0940ee", + "id": "794e58a6-c3da-4a1a-8a50-a23208664865", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153163,7 +153163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0156ffa8-ecf5-469c-8c1c-f4edc00edee9", + "id": "19b603f9-96cc-4711-9ceb-6cbbc6ed90e4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153243,7 +153243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5046b8d5-9838-4d72-be1a-c7dbdc2b2b17", + "id": "53fb5554-676d-4ddd-9a44-dbecb7345b86", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153323,7 +153323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98b9081b-5c12-4034-ad86-16da7739fa70", + "id": "e7268bcb-6820-430f-b4cc-d83975ff6957", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153409,7 +153409,7 @@ } }, { - "id": "cde8b8b2-2fc5-4a46-8892-7aa516830988", + "id": "9304e4d8-7fb9-4436-8ede-469394803852", "name": "Get SOD policy by ID", "request": { "name": "Get SOD policy by ID", @@ -153450,7 +153450,7 @@ }, "response": [ { - "id": "cbc8ef03-c679-4056-8936-3d56086edd4c", + "id": "af0bca65-66b1-44fa-bf92-275bbbc9b06f", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -153494,7 +153494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "614f9049-2abb-408c-aa02-2795005c5e2b", + "id": "a8d7c3f9-8dab-40c1-84aa-9af83ddc401d", "name": "General Policy", "originalRequest": { "url": { @@ -153538,7 +153538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fadfc7e8-a4af-4534-b836-e1ab76e24c6e", + "id": "4e76f08f-c7ff-4041-a3e2-48a3f2be8506", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153582,7 +153582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b37eb0b-08d1-4fdc-bd47-480470087efd", + "id": "43bb90fb-47a1-48d6-86ce-06ede671e0a2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153626,7 +153626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73b14dc3-5c38-4377-8f79-0026247643be", + "id": "1aca80ad-7679-435d-bd06-de35a5c7f9f4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153670,7 +153670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25fb326a-8db4-4cf5-9eb7-8af92b4c9dd1", + "id": "0ad0d398-bfc9-45f1-a274-fae8b172c693", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -153714,7 +153714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e0675bb-0d11-47c6-ab1b-01518f21b83f", + "id": "9c16c12e-d6e1-4d5d-95a6-f192418b7f69", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153758,7 +153758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a1b9ad8-5342-4e4e-9727-d521bec38afa", + "id": "add1631a-64dc-4816-9347-ce4dd04cb810", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153808,7 +153808,7 @@ } }, { - "id": "a88dca1f-02ed-4949-8a25-045a548f8632", + "id": "3bf3410b-a7ad-40fc-b343-87e22a7b76b5", "name": "Update SOD policy by ID", "request": { "name": "Update SOD policy by ID", @@ -153862,7 +153862,7 @@ }, "response": [ { - "id": "9d6fbb86-c0ff-4655-bb92-05c4cf10d171", + "id": "8a83345d-a6da-4056-b4f4-eb4ca12ef759", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -153919,7 +153919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f8d8e8f-275a-42a0-9223-bb6b8ef1be8d", + "id": "24f52369-918e-4e91-b067-8bc8a5e174c3", "name": "General Policy", "originalRequest": { "url": { @@ -153976,7 +153976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c07928f-3813-483d-917a-f97eaa68bc24", + "id": "5da7b739-5c91-4f10-885f-44961d7f64de", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -154033,7 +154033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2ac212b-7c9b-4f2e-be0d-a175a8c83cc9", + "id": "7ee1509c-4ebb-46f1-af27-610b15dd6094", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -154090,7 +154090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "647cf6f0-e8d0-4cfc-8e8e-ae6b57fbd431", + "id": "e1b34896-c348-4e9b-9dad-5d7790e5fd89", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -154147,7 +154147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcc281f9-9cc9-4bbf-b22c-f37685c5ea7f", + "id": "da336104-76a6-4718-b7f2-5ede59c05ce9", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -154204,7 +154204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4904082f-d277-4015-aad8-09b2955b5f8b", + "id": "999f4e3a-4917-4f9f-a4d4-02949d1405bd", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -154261,7 +154261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f9af8a0-9deb-482a-b12a-6074d11af13a", + "id": "2ff51858-9ca1-4d9a-9a3c-5aca8543fbba", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -154324,7 +154324,7 @@ } }, { - "id": "836933f4-4351-4f74-9d68-17fcb6091a54", + "id": "6b7ef4d2-49d4-4a26-b7f4-b18cb5ec176c", "name": "Delete SOD policy by ID", "request": { "name": "Delete SOD policy by ID", @@ -154375,7 +154375,7 @@ }, "response": [ { - "id": "3eb7694e-de2e-42b9-b37b-233e065ae1e2", + "id": "d41165b1-7e7c-42a3-a0e3-a477ed8cc2cd", "name": "No content.", "originalRequest": { "url": { @@ -154419,7 +154419,7 @@ "_postman_previewlanguage": "text" }, { - "id": "549e2fa1-b9ac-4407-971e-cfaa2eb3468c", + "id": "3d62beb7-fd9f-4a8f-a619-36009e40a0b6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -154473,7 +154473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc109f83-198c-4a35-bac7-2c4c3abd0deb", + "id": "67f2edb1-4d61-4cf2-8057-ad53f31c6731", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154527,7 +154527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fd27ebc-5c13-4dd7-81bb-c58d3d8c6689", + "id": "e9bf731f-e4e3-40a6-8b92-ddb691f2167b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154581,7 +154581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30d5d90a-ee8d-4671-acb4-7350d1085520", + "id": "95914abc-b5d9-4a2e-9fcd-7b525057e606", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -154635,7 +154635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdd67420-d1af-4f88-a5fe-35387096fce8", + "id": "ba4f652b-496c-4c95-a7fd-9c6101b7f98a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154689,7 +154689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ca1b60d-ed3f-400f-9a54-f6d5da4d3ca4", + "id": "4e537c78-16d5-4698-8fcc-2d1613c80775", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154749,7 +154749,7 @@ } }, { - "id": "edde241e-1ccd-49f4-8848-1e19a92ee769", + "id": "8f6ecebd-b83b-45c6-ac3f-1392a7c9c079", "name": "Patch a SOD policy", "request": { "name": "Patch a SOD policy", @@ -154803,7 +154803,7 @@ }, "response": [ { - "id": "065fa261-00fd-4608-9ca6-ae7d94c76497", + "id": "e621e880-13c8-4b9a-a6ee-d00e0678d86e", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -154860,7 +154860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc5f5aaf-a3d5-465b-9185-61d46a789477", + "id": "9dbe10bd-e2fa-4aee-a7c2-df110108197b", "name": "General Policy", "originalRequest": { "url": { @@ -154917,7 +154917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cf708c1-a299-4f24-9478-d7b50efeef60", + "id": "60436383-78d5-47ba-a224-2ed4054b5619", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -154974,7 +154974,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56745461-a839-41c7-8de4-6fa2f6d4f6a9", + "id": "4896121e-de63-46b4-89da-f8d959b9106c", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -155031,7 +155031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aedf21c9-808e-4d4f-b46b-401559750d30", + "id": "17d095c2-8c88-4a59-ae08-14cff03bf1d9", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -155088,7 +155088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a0a65dc-6427-4f3b-9cdc-cc1af061f1d3", + "id": "baedf90b-45e6-4d6f-8bd9-4f0ff35818ed", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -155145,7 +155145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62f3971b-0590-4634-9ff1-bf90ff3bf4f0", + "id": "2f9f1eee-42ef-48c5-8b12-1876c4119ca0", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -155202,7 +155202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3567b8a0-6f86-4a24-8040-e6b9dbab0027", + "id": "20436e7c-5fd2-4e5d-9218-271a514a1b3d", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -155265,7 +155265,7 @@ } }, { - "id": "001f2858-9bae-4ce7-9363-12a846616c66", + "id": "a0f3068e-46b3-4b49-aab4-f2536a6e28d7", "name": "Get SOD policy schedule", "request": { "name": "Get SOD policy schedule", @@ -155307,7 +155307,7 @@ }, "response": [ { - "id": "5253d7cf-fe66-455d-a561-363cf4864bad", + "id": "6b794a15-7f7e-4a99-baac-28bd10a5ceb8", "name": "SOD policy ID.", "originalRequest": { "url": { @@ -155352,7 +155352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5029edac-82ea-4179-9c7f-72a7b698af67", + "id": "228fba54-0346-42e0-a2d7-da3fa1b4952e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155397,7 +155397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ce1aa19-cf82-462a-980a-3255498ac54d", + "id": "c22acdb1-6380-4044-8750-311107731c6e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155442,7 +155442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "305ae9ae-7236-413b-80ce-e58b9ed01da7", + "id": "2d2e3485-4056-4a41-b413-d5a8145b5833", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155487,7 +155487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "109c80a7-0ac0-4cba-aead-e3fc20040556", + "id": "b4c77c8d-b5a1-4b81-9bf5-219a872b937c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155532,7 +155532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "235d4281-9c9a-4e3a-b06a-73e4cf19f0e7", + "id": "ffa6f281-77b9-4b9f-aad0-187e8b302cad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155583,7 +155583,7 @@ } }, { - "id": "018b7439-5354-48e9-a709-70efca3e688e", + "id": "2d01460d-fc33-444d-bf89-4624fa4575b2", "name": "Update SOD Policy schedule", "request": { "name": "Update SOD Policy schedule", @@ -155638,7 +155638,7 @@ }, "response": [ { - "id": "66494191-0f24-4a47-9950-149ceeb3658e", + "id": "a19af572-383e-419f-9b29-0c340e92492b", "name": "SOD policy by ID.", "originalRequest": { "url": { @@ -155696,7 +155696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cf00b11-7faf-4bd7-938e-e6aac40f75ac", + "id": "1051dcac-ef6f-4c20-80cf-b236271a67bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155754,7 +155754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c27b63be-a21f-4a5b-8ba3-fbb62eb49c87", + "id": "ae22c3bb-8360-4b69-a51a-ed29965e98cf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155812,7 +155812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53defc70-5fb0-4aa0-9592-a6f269dc8d6f", + "id": "22b11e67-f2cf-4e39-9f66-185f20f5ff02", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155870,7 +155870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8c4ff87-85eb-4ba4-9f01-d7829ecdfa2f", + "id": "66842cb7-a1f2-4071-b1d3-84994729da9d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155928,7 +155928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1629e10-1451-474b-9c0f-d1718a587250", + "id": "13394aba-9f0a-42d1-9b3e-fa719f2d4c34", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155992,7 +155992,7 @@ } }, { - "id": "2d8c0c0d-3ad5-4670-8225-32111687305b", + "id": "86cbe7cd-1d16-4135-9941-e169bbae2c0d", "name": "Delete SOD policy schedule", "request": { "name": "Delete SOD policy schedule", @@ -156034,7 +156034,7 @@ }, "response": [ { - "id": "6c219db7-2635-4e43-85ea-db031d111c3b", + "id": "f1b70827-8778-4813-acce-9e2fcc001e11", "name": "No content.", "originalRequest": { "url": { @@ -156069,7 +156069,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5431f13f-8aad-4211-804c-865b5243fec4", + "id": "9181cad5-9136-426b-9dac-55e0e629f732", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156114,7 +156114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef24263e-7199-4074-b426-14f0a95117ab", + "id": "eac5f19a-9009-4214-bb9b-ff9d9c7a08f8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156159,7 +156159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "239b5908-ba1d-4741-8679-0f0e5396b3b9", + "id": "bd40fada-0cac-420a-b886-960df0ff8037", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156204,7 +156204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f67e5dd-3a57-4843-b518-6a7248fa4f10", + "id": "c5455c28-b925-4008-954a-c51a4badcb14", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -156249,7 +156249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a2da4f7-ce03-482e-ab15-3caf4f818d4a", + "id": "1f691d3b-dbf2-4cc3-b049-1968c43ddcd3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156294,7 +156294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdfa0404-18e2-4b51-ad51-62fdc51239f6", + "id": "33aa92cc-7a74-4907-bfe9-182956505e7e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156345,7 +156345,7 @@ } }, { - "id": "8c0ba358-1eda-4d48-9114-e5bd39fe6362", + "id": "208da337-ee9e-44e0-a77b-c1b49f1a0df7", "name": "Runs SOD policy violation report", "request": { "name": "Runs SOD policy violation report", @@ -156388,7 +156388,7 @@ }, "response": [ { - "id": "fd9b8f0c-9994-4bb7-aa88-b52ecf8e19ad", + "id": "5ec9bba1-b0ac-4170-94c3-6ba926f2318b", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -156434,7 +156434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22c24a49-a05f-46eb-9dad-66c1d563d913", + "id": "d30ae316-fac1-467b-9376-1f6305f7d3d1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156480,7 +156480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0642f6de-b5d1-4231-80c3-4dcfb1de68e2", + "id": "64c020f6-ed69-4a76-8785-2c2e9faf336f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156526,7 +156526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a129f45-1064-41bd-b8e0-16c43d843ba4", + "id": "18ada66d-feba-43f2-a98c-8e8f890dbc07", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156572,7 +156572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf39e988-99f7-4d10-bf2b-d2b92471c092", + "id": "092a508e-a4c2-4388-a0cb-c848e623170f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -156618,7 +156618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9eb97f3-db0f-4fca-ac38-04d8fdb25551", + "id": "55f8e624-6bff-4e6b-be48-b86333584b63", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156664,7 +156664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fc98e87-7e63-4a72-90a2-b600935e5db4", + "id": "92c993fa-a9e7-44c1-ab96-b85ed6e0b18b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156716,7 +156716,7 @@ } }, { - "id": "af9b8ed8-d8dc-42d7-88ba-7de9be04ca66", + "id": "bce6729a-710c-473e-ac98-f3fa6f6eb095", "name": "Get SOD violation report status", "request": { "name": "Get SOD violation report status", @@ -156758,7 +156758,7 @@ }, "response": [ { - "id": "23b79d04-e0b1-4345-9da0-b47e4cf95dcc", + "id": "7cd8a567-29b2-4d57-b118-608f1a93dfbb", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -156803,7 +156803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "213e09f7-c31e-4e12-a868-136d5bbf0cef", + "id": "fe821629-fb50-4734-a3c6-44660817afbe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156848,7 +156848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60930806-3ba7-4b52-b367-9a5fd08b9c90", + "id": "238ed923-6b41-49a2-a969-79747018f2a9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156893,7 +156893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "707c8085-37cb-4976-b99d-f2f1a6196ce6", + "id": "1f7c2852-2a41-4081-baf2-4ed6816e7d58", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156938,7 +156938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f88078b-7e28-45ae-a583-94458d9501cb", + "id": "7457058d-9191-4e85-a0aa-1279692fc9fb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -156983,7 +156983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b22d1b3-f084-477e-8152-edadf71514e5", + "id": "d2e4cb46-a765-4b3c-9525-c91411bdf7ac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157028,7 +157028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35e17aff-e6fe-4cb5-940f-2b9b5e5c4850", + "id": "bdb5e5c6-1fde-4c79-a65d-517d9c087e58", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157079,7 +157079,7 @@ } }, { - "id": "a1af61d1-a20d-4354-895f-bdda8b222a50", + "id": "dc8613ee-06cf-46d3-a18c-aa4128fad5b1", "name": "Get violation report run status", "request": { "name": "Get violation report run status", @@ -157121,7 +157121,7 @@ }, "response": [ { - "id": "61672ff0-f531-4a6f-aa0d-2e87e68f694f", + "id": "39996174-f3c9-4324-83e7-0de61ea22c74", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -157166,7 +157166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "663dec35-159f-496e-a1fd-5790660257b6", + "id": "7d008018-631d-4fd8-8414-277c1203b5d3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157211,7 +157211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80579dbb-e65c-4fa9-b7f5-6c78dcf9aa59", + "id": "14ada239-583f-41eb-bc56-f6a643899a18", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157256,7 +157256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "737fffe7-e64a-419d-ba60-271599f5d717", + "id": "b303e4a1-5c73-4796-abff-fda336a48d4c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157301,7 +157301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15bac05a-a7f1-4bcb-bc4f-b612fa84d99e", + "id": "946b0d01-99c8-4333-85e5-50c2764cf326", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -157346,7 +157346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "374742f2-da77-443c-8fd6-a30181a5ef59", + "id": "07d1e9ad-ef6c-4de1-9d90-44d55d7f3740", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157391,7 +157391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04729e19-a0d3-45d3-a927-2baaa3da7432", + "id": "09818137-2900-44cc-a459-59985505a9c7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157442,7 +157442,7 @@ } }, { - "id": "c43f9760-1a4b-4ad9-a713-0a70e2f84d97", + "id": "ba4ecfbd-12b9-445f-8666-fc883adb47f2", "name": "Runs all policies for org", "request": { "name": "Runs all policies for org", @@ -157485,7 +157485,7 @@ }, "response": [ { - "id": "b2b2f05f-6f89-4849-a397-902fa79aee3d", + "id": "93316237-1986-465e-8fef-d20894c8d362", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -157542,7 +157542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d28654fd-541e-406e-adc8-8aa6439e2bcd", + "id": "39e9e52b-e936-492f-ab82-460f7a2fc2f9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157599,7 +157599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb21d589-2d7c-4ae0-9fa7-32f86545a3d8", + "id": "cebeecb2-1083-43c2-87f1-dd851cea5c8d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157656,7 +157656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4e3983b-07e4-47e5-9fda-85ad6ff6d6ce", + "id": "ad525f0e-5292-434f-82c8-858470677044", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157713,7 +157713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc9eda07-9d3f-4d3f-be27-c4a7cdd8a55f", + "id": "e8776a83-17a8-4b57-bd10-2bd93b4c7009", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157770,7 +157770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adaa305d-0606-467d-a179-04e34eb5f95a", + "id": "26fd43a0-960f-4e3a-8347-537bc758dfbc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157833,7 +157833,7 @@ } }, { - "id": "9a2d9536-8eb1-4a20-8238-63ca32ade078", + "id": "9e76e4a2-246a-401b-a1a4-1968ee371e44", "name": "Get multi-report run task status", "request": { "name": "Get multi-report run task status", @@ -157862,7 +157862,7 @@ }, "response": [ { - "id": "5605b4d6-e6e0-4747-a9dc-876051956e3b", + "id": "833475ed-db2f-4392-a9a9-c6df00b17e64", "name": "Status of the violation report run task for all policy run.", "originalRequest": { "url": { @@ -157905,7 +157905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24a65be3-34ac-427b-afb0-31e28d464707", + "id": "dc204cb8-74a6-4a1f-b4b6-fbf4b6d0ea17", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157948,7 +157948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b6dc3cd-41a7-47ad-9eb8-8a84d35c63e7", + "id": "f6572289-431f-49a3-a128-c48b7d115f8b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157991,7 +157991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b5414bb-e439-4d90-8d58-f6d2bd90c71e", + "id": "20c6a488-0595-47f2-90f3-233cfd8aa718", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158034,7 +158034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20857bf9-10a3-44c8-9846-48832c174409", + "id": "90b9727c-aa7f-45c5-9e4d-a35ea560dd97", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158077,7 +158077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fc1d755-dc31-4dab-aae2-ee939187a1c5", + "id": "4df6cd18-3daf-465c-b043-0b35738ab4a7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158126,7 +158126,7 @@ } }, { - "id": "e882e5f3-92c8-4cba-9423-36dbef6bb4e7", + "id": "b293789e-60f8-4dfc-ba43-a30d6970c2ee", "name": "Download violation report", "request": { "name": "Download violation report", @@ -158168,7 +158168,7 @@ }, "response": [ { - "id": "0aaff87c-928f-4dcc-aed3-1f16a61afc66", + "id": "11571964-d75c-4674-b25f-3b9c71448475", "name": "Returns the PolicyReport.zip that contains the violation report file.", "originalRequest": { "url": { @@ -158208,12 +158208,12 @@ "value": "application/zip" } ], - "body": "sed nisi sunt qui", + "body": "Lorem", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "4171f61f-7d04-4ca7-ad73-24528e479267", + "id": "edad4a28-183a-4378-b96c-fcd1a2413db2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158258,7 +158258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94d0514e-03c9-42f9-aacc-440ecde0867d", + "id": "d784f6e8-b58e-4e16-a02d-4b8c45746e60", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158303,7 +158303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38018f8f-8bd0-45bf-bf58-2357e849812f", + "id": "e12db85e-65b1-477b-8fae-7f6b613ff2d8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158348,7 +158348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d75dde39-8898-48a1-a8e1-ccb38f09e9a2", + "id": "51420075-9593-4845-ac67-53fc27c678fd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -158393,7 +158393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ec52dd6-65d5-4e12-baf6-939e73bd33cd", + "id": "ab747267-10b5-47ac-94a7-c45c76295a21", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158438,7 +158438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c64db2d-ec43-46e5-9331-00de4ef49137", + "id": "c1136d49-a75f-44c5-a2df-a4dacca2747c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158489,7 +158489,7 @@ } }, { - "id": "e47819af-7b22-4236-96b7-0bea395eb9a0", + "id": "a92a5d57-7b0d-43e6-8c54-a2bfe9d7f5c9", "name": "Download custom violation report", "request": { "name": "Download custom violation report", @@ -158542,7 +158542,7 @@ }, "response": [ { - "id": "a8589801-0ff7-450c-8331-6f4edf5b2152", + "id": "a6a3f880-8fc8-41ab-b354-f829e0c8a9ac", "name": "Returns the zip file with given custom name that contains the violation report file.", "originalRequest": { "url": { @@ -158583,12 +158583,12 @@ "value": "application/zip" } ], - "body": "sed nisi sunt qui", + "body": "Lorem", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "be30d690-d6d7-40b2-841f-b4042913353d", + "id": "dd0e78b6-520c-4f2a-b0fe-400316d12b95", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158634,7 +158634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d4173b6-c127-4af2-8be5-e3fc78a768c7", + "id": "099931b7-5bd9-4357-b776-75e0254ac983", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158680,7 +158680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "002e5d0b-4ab0-4a0c-a1ad-78978bd55238", + "id": "cce41415-3dba-43a8-a09d-6927897ad15f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158726,7 +158726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35b4df84-b030-4b2e-a871-631300040ab8", + "id": "0654191d-028b-48a8-bc28-4fe17b9abc9e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -158772,7 +158772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0c65631-5396-48e4-ade7-d49b212edf10", + "id": "1c4bd25d-9536-4470-a518-886c603a926b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158818,7 +158818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e9a75b0-cd1c-49e3-8f92-8d7d681a6ea4", + "id": "6327d4d4-6317-4fdb-a431-db5dbf4b5440", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158876,7 +158876,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": "f7238ff3-27ed-4422-b040-2071b61e9a5c", + "id": "c6d7663f-a970-4a0f-b981-b5f56538dbeb", "name": "Predict SOD violations for identity.", "request": { "name": "Predict SOD violations for identity.", @@ -158919,7 +158919,7 @@ }, "response": [ { - "id": "14d5abc4-2002-45b4-aa80-5b271212d13c", + "id": "65d33a91-ae8a-4f48-ba9d-d4ac81e5a7d0", "name": "Violation Contexts", "originalRequest": { "url": { @@ -158976,7 +158976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b9fba89-e793-477a-b900-4c80c5df7cdb", + "id": "1b55e7fe-038d-4b65-8440-b961d9766162", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159033,7 +159033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "357eabd8-4418-406f-9a7f-5970fe55b55c", + "id": "509a0fb5-b95a-4203-97cb-e5fbab0558d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159090,7 +159090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24863831-22a6-4f44-9b8f-7104e19253c0", + "id": "55c5dac4-12cc-440a-9f6c-8f3eae35ca5c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159147,7 +159147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea82a398-fac3-4e91-a665-dbb5d0293854", + "id": "5a6ad905-90d1-4e42-8c4a-4e4da59136a6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -159204,7 +159204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e649256-970f-4460-8ecf-83a7ec30f38c", + "id": "d7a12bc4-f9f5-44f4-acb2-78d8b80600e4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159261,7 +159261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4db293fe-9b53-4747-b49d-dce5acbb5330", + "id": "67d3d95c-ec93-4b90-993a-eb60afd176fd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159330,7 +159330,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": "c1f6718e-4862-4c6e-a800-6dbe822a63f6", + "id": "56fb8a2c-46ac-4b22-a331-e01d94d5ceaf", "name": "Finds status of source usage", "request": { "name": "Finds status of source usage", @@ -159372,7 +159372,7 @@ }, "response": [ { - "id": "463d2f13-bfb1-4655-a4e4-9f613f93967a", + "id": "3dc16bb5-d5c5-4917-b9b2-d40715422edb", "name": "Status of the source usage insights setup by IDN source ID.", "originalRequest": { "url": { @@ -159417,7 +159417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c6b1598-c8a7-4a83-8872-7a884164dbbe", + "id": "ff017119-133e-4fe9-982f-e059d738374a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159462,7 +159462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbfc3abb-938d-460b-baf8-a3c192bb73fa", + "id": "638e706f-cf37-455f-a1d7-681d6e0316d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159507,7 +159507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c30fd315-f520-4965-9516-9554a9f12d05", + "id": "fa888fbc-9d7a-4f24-80ed-4ba42fe6efd4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159552,7 +159552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d524298-914a-48aa-bc40-850078d7a4a6", + "id": "b365ae5e-82ed-4d9b-b5b7-320f63ed6dc2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159597,7 +159597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84ca63a5-457e-4d0e-bda9-9a6e8318c758", + "id": "6bef9e60-9f07-4dab-8951-f197afd4cc60", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159648,7 +159648,7 @@ } }, { - "id": "038c19db-32bb-4ba2-b47f-ddc284bedecf", + "id": "7e9f0c5e-6e23-470a-9d7e-f20ac6f7c771", "name": "Returns source usage insights", "request": { "name": "Returns source usage insights", @@ -159727,7 +159727,7 @@ }, "response": [ { - "id": "3019a8cb-b9bb-46d2-ba4b-22dfd25f8011", + "id": "0b779c4f-4fba-4c76-a0b4-ec6f45b5ab04", "name": "Summary of source usage insights for past 12 months.", "originalRequest": { "url": { @@ -159809,7 +159809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c51e1f4-48ab-4374-b5df-a70249004f26", + "id": "be524278-2449-497c-bb9e-cc4343a22a41", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159891,7 +159891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "969d8465-85c6-46de-90b8-0241eed6b190", + "id": "813f0615-4d60-40fb-9698-cef8b288ad8d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159973,7 +159973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6661fd8d-4b10-4c56-b00b-e68455de00d4", + "id": "a08a581d-6e7c-4ee9-9efe-e7d6d708cd62", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160055,7 +160055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0857fb27-d322-4c29-a08a-ec5427225bff", + "id": "28224b6e-9acc-4bdb-8458-f1367b343c56", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160137,7 +160137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cef22150-15e9-4a41-a4ba-ec4dac527502", + "id": "be2212e4-7051-4d8e-9dab-58e97d7be270", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160231,7 +160231,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": "73a04291-48e5-4dc1-b36e-4cafaec73d12", + "id": "2ef5de6c-ed14-44ab-87cf-1f99192d2c61", "name": "Lists all sources in IdentityNow.", "request": { "name": "Lists all sources in IdentityNow.", @@ -160315,7 +160315,7 @@ }, "response": [ { - "id": "6436392b-f78b-448b-94d5-28990114b064", + "id": "bc244811-59b7-41a3-b6a0-6e6bf667faec", "name": "List of Source objects", "originalRequest": { "url": { @@ -160413,7 +160413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bf6d387-a2c0-41c2-af07-1f15a2750b73", + "id": "6165a003-bf24-412e-a6d2-01184f3dcb93", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160511,7 +160511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d390b11-aae0-4c0b-8a57-8556465b149f", + "id": "f34af29a-0587-457f-9ee8-538d4516b210", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160609,7 +160609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0eed3654-5232-4741-b750-07a7799c7a13", + "id": "e62d30db-61e1-4241-aec9-7daaf6b871fa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160707,7 +160707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c3069ad-e8ea-4364-8c30-7624feb7413e", + "id": "ed2459ee-a070-4f9f-bf76-ed89fda702e3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -160805,7 +160805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f72f979-dadb-4368-a07f-64af6278cb37", + "id": "1ca6a4d8-7e71-48ec-a467-ae56bc41b806", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160903,7 +160903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ae1add6-e657-49f9-8332-b6c94ff858c8", + "id": "e2b73189-9b78-4543-bb7f-e824c808789f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161007,7 +161007,7 @@ } }, { - "id": "63100212-b5b0-469a-a168-35de32360dc4", + "id": "35352f60-d40d-4791-8cbd-0c6e179ba246", "name": "Creates a source in IdentityNow.", "request": { "name": "Creates a source in IdentityNow.", @@ -161059,7 +161059,7 @@ }, "response": [ { - "id": "20378717-3926-4775-9cc0-c8112de1206f", + "id": "fc872e4a-102b-4c2b-9edc-40deae22d491", "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": { @@ -161125,7 +161125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83be79e5-6f07-4ffd-aacf-a1163cc96975", + "id": "80bf463a-cc86-4306-8deb-1d50b1ca9283", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161191,7 +161191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1f8cabd-7979-4e99-a9bc-a50674ac6c65", + "id": "da7b1387-3b31-4a8c-b150-64bd397969d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161257,7 +161257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb889e45-b7da-45a3-86b0-a75159914734", + "id": "f89d8a86-d94a-4e40-b40c-bb5fffc4da49", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161323,7 +161323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25f2d83d-b0ef-4df5-bf0f-9e579fe0f208", + "id": "d34bf2cc-71a0-49ae-8124-814ad26bb9c9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161389,7 +161389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01633ff5-13b6-4365-9d74-b8e9e6835864", + "id": "f9a9de66-d1b0-4555-87da-5ca0d84aebd6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161461,7 +161461,7 @@ } }, { - "id": "ca9793ee-dd56-4b0f-b0fd-0469214ae115", + "id": "83b865c7-c774-434b-a275-32a1c3f63b2a", "name": "Get Source by ID", "request": { "name": "Get Source by ID", @@ -161502,7 +161502,7 @@ }, "response": [ { - "id": "d7148f31-1e3c-4115-9d70-f5b270cf9402", + "id": "d1a4c72b-07dc-4fcf-aae1-85f2f1032301", "name": "A Source object", "originalRequest": { "url": { @@ -161546,7 +161546,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87179e52-1a6d-40be-bd1c-65abf345c945", + "id": "587602dc-cba0-42c9-91df-371c046bb347", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161590,7 +161590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "487d9f5b-e25a-4ba4-958c-ab5e46d33665", + "id": "43ec19c8-478b-41fe-b6f5-e0d14c772e22", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161634,7 +161634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "968fc26d-aa1c-42a4-99ff-d437e8c34e6b", + "id": "c769d9a1-4d66-4e98-8ef3-b5b527e38ad1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161678,7 +161678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7af9a752-8b22-4489-9b32-f197488d9434", + "id": "f5f31703-97b2-4bb6-908b-f735bc448607", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161722,7 +161722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02c43e2c-2d77-40b5-be07-43cd89411dc4", + "id": "1dc9c1ca-1f6e-4327-ae0e-352ac6cfa438", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161766,7 +161766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "810add12-251a-4ee9-b3e3-8a8b62099a19", + "id": "4166e10b-237c-466d-aeba-5756e5579856", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161816,7 +161816,7 @@ } }, { - "id": "bc52fcc3-2e4c-4bb7-8a60-d1ea18c086e7", + "id": "9b1a37e3-aac5-471d-9146-9aabe892947f", "name": "Update Source (Full)", "request": { "name": "Update Source (Full)", @@ -161870,7 +161870,7 @@ }, "response": [ { - "id": "aa426667-e269-4d3e-b348-42ca7658745c", + "id": "171cb30e-7350-4c84-a10e-3a45210bfe7a", "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": { @@ -161927,7 +161927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06917a85-eb9e-47a6-a750-2a5e92275b7d", + "id": "94e734d1-4e6e-43ea-897d-83f1c55bb073", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161984,7 +161984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d227363-ec6c-431b-b778-726468017b1a", + "id": "4f2ac821-c3e0-4f86-9466-fbbc4099c2fa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162041,7 +162041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83127fa0-2dea-403d-9167-7dd2acf92fcb", + "id": "67817f8e-9549-4141-9e9f-0a77c254f70c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162098,7 +162098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6025c031-e06e-4bdc-81b2-047c47cfe178", + "id": "c8b399ce-a23f-47d2-b1ed-a358f6bcf29e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -162155,7 +162155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59dede70-893c-44cf-b2ae-faa202c3e83c", + "id": "e1146b21-131d-48e0-b26a-d0bcd425824e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162212,7 +162212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99dbc8a5-3b8a-4e3e-b612-75b52ce54211", + "id": "c7b0385d-501e-4533-b40f-cfc905964788", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162275,7 +162275,7 @@ } }, { - "id": "577ec07b-92ad-45bb-b200-5da73c1adfec", + "id": "fea52afa-061d-485b-a6ce-81de340f8b93", "name": "Update Source (Partial)", "request": { "name": "Update Source (Partial)", @@ -162329,7 +162329,7 @@ }, "response": [ { - "id": "700425a8-3e22-43cb-bdf5-2e560a76cd93", + "id": "2cb15dc3-0d0a-4190-a4a8-ee3942944e63", "name": "Edit the source description", "originalRequest": { "url": { @@ -162386,7 +162386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37858434-57ab-4564-b776-c467bc6f1050", + "id": "9c43f064-af91-45d7-9507-e1377f65e099", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -162443,7 +162443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6b2dab9-6417-473d-908a-6a7b396820c6", + "id": "93d9490e-5aea-4ca1-b972-c5717aad3328", "name": "Edit source features", "originalRequest": { "url": { @@ -162500,7 +162500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75f685f7-f6c9-417b-a6d8-896a1ae009ce", + "id": "a4807b23-7312-48b2-8b80-4737baf473f6", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -162557,7 +162557,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ceae1ba5-f20b-4940-91a5-3266615740da", + "id": "9f264c74-2714-4e3c-b370-ac13b1537161", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -162614,7 +162614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfd8e962-85e1-4546-af5a-37255e712fa2", + "id": "78b30166-a4f2-43e4-ba38-aafcfc95b481", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -162671,7 +162671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca5eb79f-53b3-471a-85de-67f6256c57e1", + "id": "6e132ec8-d52d-4d87-834c-07742aaf1ce7", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -162728,7 +162728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d6bddd9-c156-4c93-a338-cc2bdcefad4b", + "id": "f1abd4d9-1215-42d0-97dc-e24c2e1f953b", "name": "Edit source features", "originalRequest": { "url": { @@ -162785,7 +162785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd292a52-31a7-428b-b809-f21e4d106945", + "id": "a3365409-401e-4b8c-a4b3-a40658761cca", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -162842,7 +162842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e748a14-e9ea-4f67-a267-796dcdde7114", + "id": "896746cf-1ede-4d42-9dee-b952c499646b", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -162899,7 +162899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bfdb2d7-1cd2-4ece-b22b-6c9f70107ebf", + "id": "b394cc6f-9008-4b40-b304-973fd9e2f8a3", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -162956,7 +162956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13dc1c44-1806-4563-a2dd-7bfddd753438", + "id": "87a136ef-5cd1-4892-9a78-de721999ddc5", "name": "Edit source features", "originalRequest": { "url": { @@ -163013,7 +163013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3edcf82b-4ddb-4df8-af6f-ecbe67fbe4b1", + "id": "1d58f107-268b-4cea-8f5a-61f5968e9229", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -163070,7 +163070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76aa5cc0-6209-45ec-89bc-9212bed1219c", + "id": "e3dd1c8b-f2fe-4ce4-839b-db93d7840608", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -163127,7 +163127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36b41999-6ed6-4bd0-beb6-17012b1c5dad", + "id": "fca1029e-71f8-44ef-80d7-0a42f33bd978", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -163184,7 +163184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b01cac18-07bf-40c7-b646-e52b0cea6e0f", + "id": "2931e62b-b9d3-40a2-ac12-44915f98bce5", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -163241,7 +163241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "927ad664-1f38-48df-9ed9-41bce4c645a7", + "id": "27669b85-ae8c-40c9-aee8-9c290941d575", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -163298,7 +163298,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8508fa0f-6631-4961-9bf7-0eefcdb1b2f4", + "id": "b66fbbc5-322f-441b-964f-8fc8bab4dfdf", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -163355,7 +163355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e6ad868-c182-4f03-8f63-a54748bbe037", + "id": "c158a6f3-ff21-4e21-90d7-15803ceb546a", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -163412,7 +163412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4176dc82-c58c-4144-988f-9cb70ae3b379", + "id": "72c4fdf9-8f53-4b00-a764-c8e3b1a8dd01", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -163469,7 +163469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "025655c7-d509-4ed5-b6ad-ff69ba729fc5", + "id": "41990e28-a67d-4113-a34d-eef414fc4bf5", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -163526,7 +163526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "226f8982-a787-4f2d-a243-eec3bda924b6", + "id": "564dd03d-6d30-4354-b1a5-f29d70ca5eb1", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -163589,7 +163589,7 @@ } }, { - "id": "019dda80-ea63-44c5-a43f-ac97c9d811b6", + "id": "c09210ae-37b6-4a2c-a9f3-143a2183091d", "name": "Delete Source by ID", "request": { "name": "Delete Source by ID", @@ -163630,7 +163630,7 @@ }, "response": [ { - "id": "f8c743d2-a6f5-40a5-96af-978d0b7d0075", + "id": "6f707790-4b63-4576-9dd3-01004eeb6324", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -163674,7 +163674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7728f050-e5dd-47bf-bde8-098dfb659a28", + "id": "1a5c3d2a-aebf-4409-84a5-d5c8c1a9f6df", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163718,7 +163718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fcafab4-8974-4d37-a973-84e70084bc22", + "id": "8393b802-8301-4494-9308-fb923f5c43db", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163762,7 +163762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f3b287d-c865-48fd-90f8-96598d98d568", + "id": "d701141c-d5e1-496b-9738-c4b9a3c7e5f6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163806,7 +163806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56e3f9e8-afb2-49ae-ae96-520421461d69", + "id": "54e037e9-792c-4ea2-9143-a828f7086f90", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163850,7 +163850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f7a04a1-cc32-4e09-b88d-3570d621aa87", + "id": "a8901733-c743-4fc1-a173-0639c8d971d4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163894,7 +163894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf066cb2-0fa5-473f-9628-93172ef4c328", + "id": "3daaae78-95e1-4c3e-a1f0-0a058f485481", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163944,7 +163944,7 @@ } }, { - "id": "a635c375-270d-4205-8b03-67502dde97f3", + "id": "d8a4a745-8fea-4f68-a4d6-2a58bb2444ef", "name": "Attribute Sync Config", "request": { "name": "Attribute Sync Config", @@ -163986,7 +163986,7 @@ }, "response": [ { - "id": "9e3ca933-1fc6-49b5-9dd5-2264c08bd14e", + "id": "f5028043-8eb3-45d8-984c-10b31c79cae6", "name": "Attribute synchronization configuration for a source", "originalRequest": { "url": { @@ -164031,7 +164031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ac2df66-b503-4231-9285-1623bcf44fb8", + "id": "86490583-b209-49dc-91fd-d79b6359086f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164076,7 +164076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "feaa6308-8a3a-465b-b90d-0b8fb8ecb266", + "id": "e37ff1f2-fa3f-4466-a59e-fd24347313e4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164121,7 +164121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fbb31f7-f720-4292-ad7d-08780bbe90fd", + "id": "6a4f7a5c-7fc0-49c0-8e45-9f6fad5918d3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164166,7 +164166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a47d5d14-a51c-421f-9084-b3b0e24682f8", + "id": "54424e45-9ae6-4ee6-8cc9-f1953ef2c99a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164211,7 +164211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "720dd644-5c2c-4788-a348-a8de16bf8d00", + "id": "b717dcb3-2b30-4eed-aeb0-e0f334b3966f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164256,7 +164256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9edc327d-0499-4458-a102-e2654944c59b", + "id": "2b7e682b-32c4-4951-bab3-1b4ce9cc4d9f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164307,7 +164307,7 @@ } }, { - "id": "facdfcfc-a3ac-490e-98ac-e53c937a7afa", + "id": "b2186991-5609-4658-93ac-f164cfcd3d17", "name": "Update Attribute Sync Config", "request": { "name": "Update Attribute Sync Config", @@ -164362,7 +164362,7 @@ }, "response": [ { - "id": "676b3495-220d-41ba-9474-216e59ae4267", + "id": "39af737d-85ed-4ab0-a32f-7f4a75b85ef5", "name": "Updated attribute synchronization configuration for a source", "originalRequest": { "url": { @@ -164420,7 +164420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b02a870-9749-4677-885c-5b1693cb1795", + "id": "1142aeaf-3d72-480b-a0f6-1b112706d5c8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164478,7 +164478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "305714d4-0596-47ad-add8-e94710b3ce17", + "id": "13f4b655-3dfa-4c4a-aa71-4e05b6a7d195", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164536,7 +164536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3778db06-2a6e-469c-a530-5ed1b55c10ac", + "id": "7a3b2c2d-bff7-4d56-838f-da25bac54e0d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164594,7 +164594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05b4d389-d85d-4295-ad6c-fb16938c0688", + "id": "1f625b03-ac12-4de9-876d-4d2934ef9290", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164652,7 +164652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05ebd549-780b-4977-8f55-b8a2279d4ad5", + "id": "972d3903-b3c2-4a51-9817-c1ecc14ecf97", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164710,7 +164710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdb149ed-86ba-4991-b5e9-b0cec181fde3", + "id": "f3be672a-45c9-47d1-85a7-693cc5182aed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164774,7 +164774,7 @@ } }, { - "id": "8bddc015-ad87-4273-add7-bcc7075c4977", + "id": "06ec37a4-c138-4aed-8392-9e7d062a6a87", "name": "Check connection for source connector.", "request": { "name": "Check connection for source connector.", @@ -164817,7 +164817,7 @@ }, "response": [ { - "id": "286d298e-e756-4265-90ad-88e14e8bfc4d", + "id": "5e1baa35-e5d3-4ebf-8d15-6b8d9e86db9a", "name": "The result of checking connection to the source connector with response from it.", "originalRequest": { "url": { @@ -164863,7 +164863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ec9e302-be53-431c-9ddb-93591d2af8e8", + "id": "773ebaad-8338-4151-a392-e2209e41d6ca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164909,7 +164909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac9e5e5a-ca07-4704-b871-ddd0336737eb", + "id": "3b20bcac-cca8-433a-8296-323ff3b01078", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164955,7 +164955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee9c209e-b67b-4d95-bfbe-77cb803f0dce", + "id": "c3d81751-54e8-4739-b1ac-3648f8b8935e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165001,7 +165001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10b9f05e-6e41-41f2-820d-7153cac38645", + "id": "93563db3-8c44-45f1-98d0-50ef6cb358c0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165047,7 +165047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba7e3c02-ba4c-4cb3-a901-3cf61aa76890", + "id": "b1adaca7-dd39-4508-a778-c38d449cc983", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165093,7 +165093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77ac7d5e-49a6-4740-8911-0b178e7628b3", + "id": "10b5310b-41ea-40bf-9b60-66117d75310f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165145,7 +165145,7 @@ } }, { - "id": "ee889349-eeed-4a03-bb52-a2307612729a", + "id": "bb347080-9fed-45c1-9dbe-a55d4f413031", "name": "Peek source connector's resource objects", "request": { "name": "Peek source connector's resource objects", @@ -165201,7 +165201,7 @@ }, "response": [ { - "id": "93aa25e5-3831-48f5-96ab-69a9b37e91f5", + "id": "774a45f5-9b08-4ca6-ae91-bfdcd27e3995", "name": "List of resource objects that was fetched from the source connector.", "originalRequest": { "url": { @@ -165255,12 +165255,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\": \"ut pariatur occaecat Ut minim\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"aliqua\",\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\": \"Ut exercitation\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"eiusmod officia dolor aliquip\",\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\": \"nulla et\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"ea esse nostrud in magna\",\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\": \"pariatur id\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"ad proident id 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": "9f98ed93-d058-4b73-aa7f-bb39cbd4048d", + "id": "cbb73002-0059-433f-a105-24d37af24d9a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165319,7 +165319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dae6c72f-ca96-4bbd-9429-20a4aae9557d", + "id": "4c6667bb-bc15-42e5-a033-eab0a270652d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165378,7 +165378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7caf1438-9b04-4280-96b4-2f7f0ac43300", + "id": "1f1f4cb9-0f5c-4a43-b507-7e2a87f1d8ec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165437,7 +165437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "608ecd9b-3ead-4725-bd12-e81f74c8a9d1", + "id": "60bb8994-1c74-4835-89c6-7102e3022b36", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165496,7 +165496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bce26c8e-2332-4b4b-bb88-53078bb90b73", + "id": "9b5cfd79-2cd6-4249-840d-a539cef0e620", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165555,7 +165555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6600a963-0147-45c7-8327-71cae8559376", + "id": "9188b178-a2ca-47e1-9df1-322aef2a2481", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165620,7 +165620,7 @@ } }, { - "id": "f7bbafb5-8094-4336-b2f8-806a59f1c52d", + "id": "5df47235-b946-495b-9e3f-729b73b61b71", "name": "Ping cluster for source connector", "request": { "name": "Ping cluster for source connector", @@ -165663,7 +165663,7 @@ }, "response": [ { - "id": "dd7c40eb-339c-4fff-b162-b5b976fa875c", + "id": "45a2c3a6-af73-4a2f-a8c5-c816cc3af218", "name": "The result of pinging connection with the source connector.", "originalRequest": { "url": { @@ -165709,7 +165709,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b378a45c-d7b2-4cba-9c3b-d0a28270c130", + "id": "d0cf17b9-8bda-48b4-b2eb-78876d11b2b2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165755,7 +165755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00e39c97-6c25-4fc1-ab56-ce6c7147654b", + "id": "31bd4ae7-911a-43a5-86c8-2366e7c8886f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165801,7 +165801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bde7fdb3-3623-4bfb-ae81-94bf597f7e12", + "id": "17ca2fc3-9ed9-479c-be75-ce671433c7d1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165847,7 +165847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9861c524-629f-4647-8bdc-1346c5a80d22", + "id": "3d827c18-1ca9-4f3b-a225-5aa577b62589", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165893,7 +165893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4e8d088-8392-428e-9317-74b231542bd9", + "id": "014ae2e9-71f5-48d9-9116-55e75c9ca471", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165939,7 +165939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27423af6-a441-47a8-9e8f-ce403771f9ec", + "id": "5fb23d56-618e-406e-a4e3-d7647251e0f7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165991,7 +165991,7 @@ } }, { - "id": "1b7f8e07-7e16-4e5c-b5a7-31d90076b15a", + "id": "0eb4b48f-5c1b-4081-af23-e7fdbdc61e07", "name": "Test configuration for source connector", "request": { "name": "Test configuration for source connector", @@ -166034,7 +166034,7 @@ }, "response": [ { - "id": "a5d5b8d5-0eef-4ff4-98d7-53f85401e0a9", + "id": "95689db3-72ec-4ea4-972c-84f14eb681fc", "name": "The result of testing source connector configuration with response from it.", "originalRequest": { "url": { @@ -166080,7 +166080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c49f5450-b45a-4704-a6c5-7ba0230fe651", + "id": "896c519d-de20-41ff-b26e-a544a009ff00", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166126,7 +166126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ced91cb5-89ee-4044-94c7-b11e06b65421", + "id": "b3a4c201-54c6-4b0d-9c03-73e4e167e743", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166172,7 +166172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "420fee10-c1f1-469d-819b-7088603edfd8", + "id": "085e4647-79b7-4f45-bad5-db08f5d2e3b6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166218,7 +166218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cafd622-74ea-40a2-ba8c-4683c70aed6c", + "id": "f39cdc21-0e90-44bf-a39c-758c948f4902", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166264,7 +166264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85b300e0-27a3-46e9-9436-4877ed5d5930", + "id": "8ef755a1-4bcb-4e74-9cc9-be3addd1d548", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166310,7 +166310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3cdf90a-7cc2-4685-8786-3ffc19bd6d50", + "id": "2a3602d1-9157-43c9-b754-350a298f119c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166362,7 +166362,7 @@ } }, { - "id": "bbbbc49a-f8eb-4dcd-80f0-facbcfc855c0", + "id": "375a2160-67e6-4cb0-a726-63e77916f72e", "name": "Gets source config with language translations", "request": { "name": "Gets source config with language translations", @@ -166388,13 +166388,13 @@ "type": "text/plain" }, "key": "locale", - "value": "en" + "value": "zh-TW" } ], "variable": [ { "type": "any", - "value": "sed nisi sunt qui", + "value": "Lorem", "key": "id", "disabled": true, "description": { @@ -166415,7 +166415,7 @@ }, "response": [ { - "id": "a9c1a542-6f51-4550-89c0-ed5457a98ef0", + "id": "85b14106-410b-4d45-9d30-7f851ca651be", "name": "A Connector Detail object", "originalRequest": { "url": { @@ -166436,7 +166436,7 @@ "type": "text/plain" }, "key": "locale", - "value": "en" + "value": "zh-TW" } ], "variable": [] @@ -166466,12 +166466,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"JDBC\",\n \"sourceConfigXml\": \"
\\n\\t
\",\n \"sourceConfig\": \"enim eiusmod do\",\n \"directConnect\": true,\n \"fileUpload\": false,\n \"uploadedFiles\": \"elit in veniam\",\n \"connectorMetadata\": {\n \"supportedUI\": \"EXTJS\"\n }\n}", + "body": "{\n \"name\": \"JDBC\",\n \"sourceConfigXml\": \"
\\n\\t
\",\n \"sourceConfig\": \"proident minim dolore laborum\",\n \"directConnect\": true,\n \"fileUpload\": false,\n \"uploadedFiles\": \"proident velit aliqua\",\n \"connectorMetadata\": {\n \"supportedUI\": \"EXTJS\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "156b63ec-a9e3-4544-98f3-ee2d5818be5b", + "id": "6c7d6e4b-add0-4018-a52a-17d17aa91f77", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166492,7 +166492,7 @@ "type": "text/plain" }, "key": "locale", - "value": "en" + "value": "zh-TW" } ], "variable": [] @@ -166527,7 +166527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dfde3ed-3bc8-48c3-b253-3b044fa28bc9", + "id": "d64770a9-0401-4011-a49e-cf9af7e029bf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166548,7 +166548,7 @@ "type": "text/plain" }, "key": "locale", - "value": "en" + "value": "zh-TW" } ], "variable": [] @@ -166583,7 +166583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99ddcd75-7e05-4917-b341-0c5c30e5f143", + "id": "4495c04e-6307-4ed1-9021-9d9533453f60", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166604,7 +166604,7 @@ "type": "text/plain" }, "key": "locale", - "value": "en" + "value": "zh-TW" } ], "variable": [] @@ -166639,7 +166639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f2d6d43-a304-474a-86b6-a2361d494151", + "id": "b0e4a1a4-c977-4ba8-957d-b6ca2057783f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166660,7 +166660,7 @@ "type": "text/plain" }, "key": "locale", - "value": "en" + "value": "zh-TW" } ], "variable": [] @@ -166695,7 +166695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3353e44-653a-4855-98af-a1066eeb5da6", + "id": "b1b171f4-af06-472b-9a4c-1b9e1b2306db", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166716,7 +166716,7 @@ "type": "text/plain" }, "key": "locale", - "value": "en" + "value": "zh-TW" } ], "variable": [] @@ -166757,7 +166757,7 @@ } }, { - "id": "e4fa73fd-7eaf-452d-bd52-49393c379718", + "id": "16770a3a-aab3-4da3-85a1-6cb1c9627878", "name": "Native Change Detection Configuration", "request": { "name": "Native Change Detection Configuration", @@ -166803,7 +166803,7 @@ }, "response": [ { - "id": "941ea9ff-7beb-4a91-af53-c199f4fa61b1", + "id": "487649ba-2554-4c5a-b32e-721134f923c8", "name": "Native change detection configuration for a source", "originalRequest": { "url": { @@ -166848,7 +166848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "651dc5f0-be0a-49bd-9ffb-0d77c2313311", + "id": "c013be82-856a-4b66-9fd9-26cb3ecfd567", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166893,7 +166893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd47f6a9-b0e4-44ee-bc8f-65597ecac7d0", + "id": "9de71a8d-3543-485e-b6bd-820893d509f4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166938,7 +166938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ab15053-e3da-4120-80e0-fc89d6f6e858", + "id": "4d7f116a-5c36-4a9b-b8d8-9a362ea8def7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166983,7 +166983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef10fc76-29fb-4cf3-af07-b1122a20689f", + "id": "96eba0ca-625a-4ebc-8f1b-0b749924e6f7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -167028,7 +167028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fca9a85b-727d-486a-aa98-3bb19ba456eb", + "id": "7671d41a-5725-467e-9529-4a26df568fec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167073,7 +167073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec04814a-e979-4a80-abba-75a311c83848", + "id": "5672de06-613e-4787-8c16-638472363c1f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167124,7 +167124,7 @@ } }, { - "id": "be3af39f-4575-46d7-a78b-b006251de7eb", + "id": "9375ae27-599c-4aa3-a5c9-6c216879d3b7", "name": "Update Native Change Detection Configuration", "request": { "name": "Update Native Change Detection Configuration", @@ -167183,7 +167183,7 @@ }, "response": [ { - "id": "811029c7-e276-4090-a88e-ab48f2181f13", + "id": "ea006ec1-cd82-439b-896b-40a0dc126e8b", "name": "Updated native change detection configuration for a source", "originalRequest": { "url": { @@ -167241,7 +167241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25d47e1d-3e00-4884-b219-6d104553d540", + "id": "c58fcc92-42e1-41f6-b661-2906191c5715", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167299,7 +167299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2142de21-811b-4c91-86a7-81f9266bfa66", + "id": "577b8aed-1b38-471c-9abf-8530fc371ccf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167357,7 +167357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9a226bf-6b9c-4e8d-bbd5-dcced28cdb35", + "id": "3d11549d-fcd9-4787-b871-42b0bc9106ec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167415,7 +167415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26ec3de6-087d-4d33-9b86-b96e86218764", + "id": "4a13c8ed-4e70-4f9a-b11d-d48ea6cb96a3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -167473,7 +167473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8ca68f9-a3d2-40f6-a324-fa4ae5ab0717", + "id": "ee93e5ab-d2e7-47aa-8a3e-bbf30b56ef6d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167531,7 +167531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9441461e-465d-487a-b487-16d0142d945b", + "id": "98caf33a-68e7-4b27-9507-1b192af05ae6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167595,7 +167595,7 @@ } }, { - "id": "f9cb0c15-17c7-41ef-b58b-6a4b4c29eefe", + "id": "a3c94311-f82c-4711-94b2-9bead666e85e", "name": "Delete Native Change Detection Configuration", "request": { "name": "Delete Native Change Detection Configuration", @@ -167641,7 +167641,7 @@ }, "response": [ { - "id": "2024c462-ac40-4193-97a8-bd66dac4cce8", + "id": "47519090-062e-4c1a-8371-800a50400d0f", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -167676,7 +167676,7 @@ "_postman_previewlanguage": "text" }, { - "id": "cad90bbf-3992-4d6d-baad-99165cc1dc78", + "id": "1487ecb9-b93b-42cd-b171-fab2d00814b8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167721,7 +167721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87ecf742-17fc-4a37-907a-b893d754b33e", + "id": "e8775c08-a32e-4720-8d57-6e89d2aebc29", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167766,7 +167766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2599ea85-30d8-4b42-b15f-f09b7ef12d34", + "id": "768abf14-7901-46d5-8fbc-9bb47d90d58a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167811,7 +167811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "179a4200-501f-46e6-a6af-33823a01711d", + "id": "04270f80-30f7-4e04-bf8a-ddc6c60286d5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -167856,7 +167856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7f32e61-4958-4cc3-9a0f-5c6fe251dad9", + "id": "9cfcd405-d1ad-4597-a6b5-442253e3ab5a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167901,7 +167901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fbe5015-3bbd-4eee-aa08-cde9ec1c4572", + "id": "e9042397-fffd-4842-b2c3-1dd5f367af2b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167952,7 +167952,7 @@ } }, { - "id": "a8ff76a9-91ee-404c-8522-8bdbf166df22", + "id": "92ca7d2d-0915-4447-bcdc-5e3165afa7fd", "name": "Lists ProvisioningPolicies", "request": { "name": "Lists ProvisioningPolicies", @@ -167994,7 +167994,7 @@ }, "response": [ { - "id": "54d3f65c-ee63-4129-8d69-2ec02389bcb2", + "id": "4370416f-5ba5-4dd6-a0b3-d14968aabf32", "name": "List of ProvisioningPolicyDto objects", "originalRequest": { "url": { @@ -168039,7 +168039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "888c3e66-5ed9-4326-acef-ee443d02f0df", + "id": "3a51717d-945e-4806-a9f2-86580885a5b6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168084,7 +168084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45a7befb-9469-40d1-9e1c-52a7cc3f2f3b", + "id": "750c04dd-8759-43b7-9edb-45ddb64c0dce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168129,7 +168129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0f8d59b-4d18-4151-b9d5-d63d0845bead", + "id": "fa1441a6-9c92-4c43-a7ff-595b487f8c00", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168174,7 +168174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f9f5651-fa8e-47dc-b236-094f48588c57", + "id": "da0d6765-a8f2-4134-ad38-1ec363786278", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -168219,7 +168219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a872cd14-aeda-4895-931f-d413dd37e770", + "id": "47ad21e1-7799-47db-bec2-5b9b4b0a487f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168264,7 +168264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d876ea0f-4cb5-43f0-accf-a89dc7c6daee", + "id": "b4ff9b07-8b75-437c-bc6f-69451c945d5d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168315,7 +168315,7 @@ } }, { - "id": "c6b3734c-5cc2-4703-9ff8-95cb7752d03f", + "id": "1ffa6b32-49c1-4a2c-9041-834b23992152", "name": "Create Provisioning Policy", "request": { "name": "Create Provisioning Policy", @@ -168370,7 +168370,7 @@ }, "response": [ { - "id": "920b31eb-a6f0-41dd-917e-3b995d07b827", + "id": "6325adb4-2929-496a-831c-301071970c85", "name": "Created ProvisioningPolicyDto object", "originalRequest": { "url": { @@ -168428,7 +168428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5511b90-508b-40bd-b252-0efa042797b5", + "id": "3b3e2207-c4c3-4fcb-b274-d7933fe9ac5e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168486,7 +168486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f91b334-9686-439f-ac75-7e4f86462fa5", + "id": "8a19e6d3-b1ba-4b9e-b8d3-aa0e381bbc80", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168544,7 +168544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0848cc76-6e85-4479-af29-9d6f119f2529", + "id": "7b1d5695-1d7f-4f3f-a93e-078fc94c2a9f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168602,7 +168602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f69d31d-2790-4b62-b6ca-2a68ab01f03b", + "id": "455a5c57-4dd6-46ed-b5c5-0e60732ee434", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -168660,7 +168660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ecae3af-2d08-454a-80ea-4d432b9aed4f", + "id": "86e7a6f9-4170-400c-a8fc-cd95beb3c7ab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168718,7 +168718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f1735b7-9b26-44f0-adb8-c6ec21093793", + "id": "ada07251-1860-4323-a53c-96bb2331ae10", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168782,7 +168782,7 @@ } }, { - "id": "744cefc7-2a1b-4dd4-a181-cc77c45dae03", + "id": "7c0c1b82-edf7-4997-8af5-2476793e8337", "name": "Get Provisioning Policy by UsageType", "request": { "name": "Get Provisioning Policy by UsageType", @@ -168835,7 +168835,7 @@ }, "response": [ { - "id": "4d1446f7-e409-4d73-834b-cd19bcd503b6", + "id": "4206a06a-a591-4d24-8c73-22f623c2e8b1", "name": "The requested ProvisioningPolicyDto was successfully retrieved.", "originalRequest": { "url": { @@ -168881,7 +168881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad7a2e55-6131-4848-aeea-6e390e8c5204", + "id": "a92203a1-f0b5-4d7b-a5ea-d3c66f8c0c1b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168927,7 +168927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a8591ce-d2a8-4ffe-b40f-e032ec3485e5", + "id": "b35417fd-a0be-4d0e-9bff-6a27037107d4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168973,7 +168973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36c52c94-6314-4d39-8cda-a5373712c812", + "id": "1e2ada9f-93c7-49a3-b488-bb2183b7c929", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169019,7 +169019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e72970b2-86ca-456b-8d38-994e23dfeafe", + "id": "fb4fe57a-2c60-4af3-afce-eb920bf763fc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -169065,7 +169065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c55b6e8e-ae94-419a-89f3-be604fd442e4", + "id": "23306e53-c131-4bc2-96bd-8b50da12724d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169111,7 +169111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7d98875-c0a0-4965-aec3-1b88830a19ab", + "id": "4c34d657-9438-444f-83eb-1bed5528e415", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169163,7 +169163,7 @@ } }, { - "id": "bab8bc15-deff-4385-8315-df2bf5649a26", + "id": "c8e819db-ad0f-4c31-acd8-af0e08dc20f7", "name": "Update Provisioning Policy by UsageType", "request": { "name": "Update Provisioning Policy by UsageType", @@ -169229,7 +169229,7 @@ }, "response": [ { - "id": "b7d10853-8b08-4b15-9799-066726102857", + "id": "b2e8788c-989f-4974-82bf-f1d93b54e36e", "name": "The ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -169288,7 +169288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa87e384-04cb-496c-bc82-172dbc6975c2", + "id": "a333a6ae-840c-4090-a58f-49aad313206f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169347,7 +169347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4eb0979a-2951-43c7-9c63-3ba8c0fa435c", + "id": "477d0371-c495-4dd1-9760-f6a3ce97c0ba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169406,7 +169406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "024ea708-9b51-417e-88ee-1c81b1cf6a91", + "id": "0d0f8116-0c72-4d53-aa53-36c79d9294ba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169465,7 +169465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "466dca8d-097e-4c27-af42-543a2a91600c", + "id": "b0d6a2ca-d055-45ed-99ca-93420275bfef", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -169524,7 +169524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f3eca71-7c55-4979-ab10-5c581119ce30", + "id": "b4b1e28c-6d7a-4a89-83a6-18ebf7609199", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169583,7 +169583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bb88e53-c60b-4604-9efc-5a8b53fe9a75", + "id": "4426f759-4583-48b6-b71f-fb8ecf336845", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169648,7 +169648,7 @@ } }, { - "id": "3933113e-2d18-4c99-b8fa-b56acbdde098", + "id": "258a6cf4-b735-4e11-98bd-cb603f38b38c", "name": "Partial update of Provisioning Policy", "request": { "name": "Partial update of Provisioning Policy", @@ -169714,7 +169714,7 @@ }, "response": [ { - "id": "6298bc23-c730-428e-b53b-93932c45837c", + "id": "3a83662c-2d44-4305-895e-4877d551a674", "name": "The ProvisioningPolicyDto was successfully updated.", "originalRequest": { "url": { @@ -169773,7 +169773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f71a33b5-3b86-4834-b433-4f9f2f2f0840", + "id": "58d69755-57ae-45be-9ba1-68a5fc86d28b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169832,7 +169832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca385676-d783-4380-b4ab-25640f9c034f", + "id": "da3c74ef-7d09-43cb-9aa9-b91ec3c5fa59", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169891,7 +169891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2e4f9a9-0406-494d-bb2e-0f523b7391bb", + "id": "f471e443-b2d8-4f45-a216-457290c8c6a4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169950,7 +169950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d916dd3-0112-4bb1-b6eb-d501b9b3bb38", + "id": "b0296252-9722-47d8-b647-7301b29cf162", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -170009,7 +170009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7c529d2-b3de-4ac9-9ce5-f5d28837a9fe", + "id": "e9e0d787-c79a-4433-ac39-c6dd593d4e1b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170068,7 +170068,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cd59813-f890-439b-903c-0d482ea53448", + "id": "d54bfdeb-fa00-44a4-b6a4-1ff2bb8f0eb4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170133,7 +170133,7 @@ } }, { - "id": "dc2c614c-65ca-48d7-ace6-42446d0f6817", + "id": "8df12242-6a27-4894-ab31-885b62231cbd", "name": "Delete Provisioning Policy by UsageType", "request": { "name": "Delete Provisioning Policy by UsageType", @@ -170186,7 +170186,7 @@ }, "response": [ { - "id": "0b7e9bd7-daea-4353-9a8d-3cab1c1ed5df", + "id": "9be1741e-20d2-4504-bbf5-4e44e1e48cda", "name": "The ProvisioningPolicyDto was successfully deleted.", "originalRequest": { "url": { @@ -170222,7 +170222,7 @@ "_postman_previewlanguage": "text" }, { - "id": "80323657-f1b5-4029-a2b5-18c5282cc37c", + "id": "734d6050-2abf-4f63-9d1b-614ae8203f37", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170268,7 +170268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f509d912-d9ce-45f5-943a-d17296e1aaf9", + "id": "32ef8394-025c-46b6-b743-82c3e04f72ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170314,7 +170314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9d65006-3773-48aa-a0d3-cfb4c7fcbbd7", + "id": "2bf21cb6-fa4b-4d3d-9b24-b26eb97e8693", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170360,7 +170360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb242585-44da-4fcd-8fdb-bbaec793fbe4", + "id": "196255b6-7fa9-4f9b-b0e3-8737e7372b05", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -170406,7 +170406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfb4360b-43c7-42ac-af57-1b871bdb96ec", + "id": "f199d634-0c59-468c-8700-1b929a6295c0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170452,7 +170452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a26f63e8-1b07-4f23-a040-f97e63146ead", + "id": "197975ad-8143-46c6-8e10-70e1e5dea019", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170504,7 +170504,7 @@ } }, { - "id": "651c8660-9b0d-4b97-b27f-e0fd2f5d706c", + "id": "124bcb86-c5e3-4be2-90e1-572bb7db6efb", "name": "Bulk Update Provisioning Policies", "request": { "name": "Bulk Update Provisioning Policies", @@ -170560,7 +170560,7 @@ }, "response": [ { - "id": "c4a12be2-f839-46cf-ad7d-c5f9cca2ae5e", + "id": "3657b650-0e3e-4fe5-b355-5bc32679d1f0", "name": "A list of the ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -170619,7 +170619,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90796e26-dcb6-4ad0-90f7-567f68c4cf3f", + "id": "7bc5a23f-9b73-4040-89ac-e053beb68922", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170678,7 +170678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a1f73a7-9ff3-4d21-abf1-bf494bdf0459", + "id": "32d5190c-124d-439b-8104-5b83c1031917", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170737,7 +170737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c9e4110-f0c7-47a2-98ec-e7fd36bdb83d", + "id": "19dca8b7-5563-44c7-a66b-4aa1a0a6718d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170796,7 +170796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23c58930-f79b-4729-b0c3-9c4040f98154", + "id": "e907078a-0c2a-4191-a262-398c236ae448", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -170855,7 +170855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37dda291-40cb-4193-b4ad-0534653c3160", + "id": "6ff7845b-bec4-48d8-900d-b007383d98d5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170914,7 +170914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8ba75fb-78b9-4498-a80d-f8b07ff515e4", + "id": "9bdd4d03-4a39-4ccd-aae8-1bb653e0af14", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170979,7 +170979,7 @@ } }, { - "id": "911d4ea3-abd7-46cb-aec1-ac391312c962", + "id": "fd2292e5-90bc-4af7-9048-fe8c8ede6681", "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.", @@ -171028,7 +171028,7 @@ }, "response": [ { - "id": "8e911663-dcee-4850-8768-42dc0b060f74", + "id": "c9e49547-72b4-47e9-ba45-5f989bd6b911", "name": "The Schemas were successfully retrieved.", "originalRequest": { "url": { @@ -171083,7 +171083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57e5601b-46f1-4c85-860a-596bd0f593ed", + "id": "0f123b5a-5e52-4ea3-90c6-7c2162570c58", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171138,7 +171138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fdf30c2-9a3f-4b31-b3c1-f1e6dc82e572", + "id": "ae1c3994-b480-44fa-8d41-42af92d88cf7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171193,7 +171193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "834c5498-2df3-412e-97f0-d665c4d97704", + "id": "71405a46-26f9-4c70-a58a-37af8c9008a9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -171248,7 +171248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e321db41-cf36-4cd4-ab3b-1b410d626dfa", + "id": "402fc584-f0bf-45cc-ae24-03e443df8206", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171303,7 +171303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07a1a058-ab8c-4b7f-9115-271d6de20812", + "id": "0ffdfa92-890c-4875-81b1-e05ca7be51ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171364,7 +171364,7 @@ } }, { - "id": "21e20caa-5485-4e01-ae10-72c4337f224a", + "id": "1db0800a-6441-4889-b156-0f7afd608200", "name": "Creates a new Schema on the specified Source in IdentityNow.", "request": { "name": "Creates a new Schema on the specified Source in IdentityNow.", @@ -171416,7 +171416,7 @@ }, "response": [ { - "id": "2f5aa6b0-bf18-4d15-b7ba-5bc24668a715", + "id": "ba767531-62f8-40b7-a7db-50712486bf85", "name": "The Schema was successfully created on the specified Source.", "originalRequest": { "url": { @@ -171474,7 +171474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "298fb414-181b-480e-822f-e6de9b7fa127", + "id": "848fe787-ec15-48c4-a4ab-d02445624e95", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171532,7 +171532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab72fb97-f663-4770-8280-57341d12eef3", + "id": "df360f8c-eb41-40c4-817a-0df5c310db1a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171590,7 +171590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76e4e5c5-47df-48a0-bdfd-93ef7885f03a", + "id": "ddd7cd0d-39d0-44b9-91b3-5597b8a3c3d2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171648,7 +171648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b72c971-b93b-48f5-8871-27e394f5631c", + "id": "7f169ada-8a0a-4df1-915d-5d1265826825", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171706,7 +171706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5008238e-9f53-40fe-8039-85646c98adef", + "id": "775986f3-632e-406c-a34c-2ddbf75d4bc2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171770,7 +171770,7 @@ } }, { - "id": "0cae7698-3c56-45d1-bf2d-26ba71c0a472", + "id": "6b2f4221-6850-44d7-a240-43dd307a2c2e", "name": "Get Source Schema by ID", "request": { "name": "Get Source Schema by ID", @@ -171823,7 +171823,7 @@ }, "response": [ { - "id": "07468d07-a2c8-4d7a-a6ee-5ad5a5c5003a", + "id": "e39db895-1688-4b1b-864c-7748f13f7084", "name": "The requested Schema was successfully retrieved.", "originalRequest": { "url": { @@ -171869,7 +171869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5905b998-320e-46c7-8e7d-04c01c40db21", + "id": "990931b1-4309-4df5-b9bc-4be6d3a32d5d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171915,7 +171915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23ccc16f-71c0-4b49-b3fe-5e6656b10e0f", + "id": "0c9d6b50-00a2-4b61-9722-862a21fa7f71", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171961,7 +171961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af839fdb-2163-4ee3-adc5-793d8b6376ac", + "id": "0e16894c-3cd4-414d-b1b5-544ea7d8bd75", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172007,7 +172007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa985b12-1f88-4844-8534-788959627c52", + "id": "e099294a-7550-4974-b50a-c16f57459805", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -172053,7 +172053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb6cf176-f9a0-4a4c-98a2-225a6065afe9", + "id": "389e8ef2-6d2c-4278-85a1-461a82255916", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172099,7 +172099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "396b46a7-7d17-4951-b4e9-24344982b497", + "id": "6a1fb747-ff45-40aa-858f-57ee49e0c9b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172151,7 +172151,7 @@ } }, { - "id": "06e5ee6a-c7cf-446f-a620-759f24a9cd1a", + "id": "ed4c3080-511b-4b44-b929-309e0f20f592", "name": "Update Source Schema (Full)", "request": { "name": "Update Source Schema (Full)", @@ -172217,7 +172217,7 @@ }, "response": [ { - "id": "c937193d-f4bd-4a75-acc4-58621372edc6", + "id": "0b08d947-3d71-4534-bb1d-eea8fb43402b", "name": "The Schema was successfully replaced.", "originalRequest": { "url": { @@ -172276,7 +172276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f07a790e-ac27-4015-a026-3a6eac32d7bb", + "id": "78ef7a7c-ea1e-44f0-91e2-a6fa10eafd2d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172335,7 +172335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e4a0d80-bd98-4a17-981b-e592df064a32", + "id": "2ccc12cb-00f0-48a4-8295-295fb01432da", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172394,7 +172394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0f25a41-11ae-4bdc-b912-bcd4534bbf78", + "id": "bb979cd9-9422-4ae0-8650-1aa291925189", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172453,7 +172453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d09980f-1652-4858-a482-6302b537c070", + "id": "3587397d-d982-45cb-b7f5-d3cfa65a9a45", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -172512,7 +172512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cca8c5ab-7322-4a52-94f8-3bf96978b232", + "id": "bc058c10-25d9-4bb7-83aa-742a907523df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172571,7 +172571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b3aed0a-6ab5-4baa-9f79-e3824f39b20c", + "id": "a0d41cf2-5833-4b84-93b3-4e176e01cd96", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172636,7 +172636,7 @@ } }, { - "id": "b5556005-8d9e-4665-b691-af88b5f3fffd", + "id": "5f4b1c59-509f-4328-87ae-0e19eafa9716", "name": "Update Source Schema (Partial)", "request": { "name": "Update Source Schema (Partial)", @@ -172702,7 +172702,7 @@ }, "response": [ { - "id": "e7bdbf11-aa3c-42dc-bd7c-f42d231cb3bd", + "id": "8548c4d1-71ba-4f90-89df-92b3aac361c3", "name": "The Schema was successfully updated.", "originalRequest": { "url": { @@ -172761,7 +172761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "094a0e8b-b256-4bac-b53d-1be3fbb99fb5", + "id": "205ed3b9-d716-4628-8b19-11c462332bac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172820,7 +172820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce9ac294-6c7d-4b7a-b113-7bb2cd7a1840", + "id": "5ca7eddd-d8ba-46b3-b19f-b8b0be335028", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172879,7 +172879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c12b0530-05d7-4b24-bab1-3337731a00b2", + "id": "a64aabef-3e97-4b80-86d8-c3596594189e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172938,7 +172938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a95a47a-1a65-425b-9f30-0f530cab612b", + "id": "edc82e5c-32c9-43b0-ab77-8f50bcc41401", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -172997,7 +172997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2804f2cd-9abf-4b2e-9c6e-dbda4409db7b", + "id": "65c33ef8-cfba-4723-9821-bdcf38ce357b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173056,7 +173056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f019da7-37af-48e7-86a0-816e889188f9", + "id": "cd9a3b02-5618-409f-a97b-5296a70a1aab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173121,7 +173121,7 @@ } }, { - "id": "93cb3850-27fc-47d2-8c0c-8b746ec96fdb", + "id": "85edff85-d874-4f94-8a4c-e48eae7f0a68", "name": "Delete Source Schema by ID", "request": { "name": "Delete Source Schema by ID", @@ -173171,7 +173171,7 @@ }, "response": [ { - "id": "90c11dab-de78-4890-81fc-d016c1adaf1a", + "id": "3402b2f2-4619-4740-9584-baeb2012a14d", "name": "The Schema was successfully deleted.", "originalRequest": { "url": { @@ -173207,7 +173207,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2503b1db-c5f0-4554-a6e2-f89c9dfe6cb7", + "id": "0163fe8d-6304-4d10-8a54-c7a595a14abb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173253,7 +173253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccb2b9a1-b794-4ad2-89f1-0e456ff0f19d", + "id": "5ec37a1e-4372-495f-ad10-ce9ecdc4835a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173299,7 +173299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c98ede73-f2f3-48f5-8c35-f327bbc48fc8", + "id": "631698cd-d6ce-4bdc-8b5d-6e1c8ad3cc6f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173345,7 +173345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58d8894b-074d-4846-aa37-b97a6020a91e", + "id": "a661782f-a566-459f-abef-b75fad8802ae", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -173391,7 +173391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb18fd5c-c453-4633-8de0-54089afa81db", + "id": "5e4e123b-edc7-4cef-aa74-57bc71f516fb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173437,7 +173437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "290aca32-a5ba-4e46-9e5f-0be340cf5813", + "id": "24aa5647-81e5-4737-b44e-1beadc2baece", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173489,7 +173489,7 @@ } }, { - "id": "bea9e10d-1f46-4e7b-9f43-52c41a70f271", + "id": "d283f866-1fda-4227-9bb8-4350d7617e98", "name": "Downloads source accounts schema template", "request": { "name": "Downloads source accounts schema template", @@ -173529,7 +173529,7 @@ }, "response": [ { - "id": "5fe6f4a3-d981-490d-b2aa-e1a04b03ab85", + "id": "b3abff9b-26c3-4d40-b474-681650ff8b8a", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -173575,7 +173575,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8f3d4447-d886-4ff5-93d8-3a60433e0488", + "id": "f326f0ca-fa99-412a-ab89-760b1afe191e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173621,7 +173621,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3eb0cd53-c668-4347-9351-31185956bafd", + "id": "dd4d47a4-ee64-482f-b564-e28d6f215e40", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173667,7 +173667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e42beb9f-ee2e-480b-a12b-379789f17d30", + "id": "ea9bcb06-e768-494e-a260-030210550b94", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173713,7 +173713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21fd880d-9953-4905-a9eb-8a57d00c7472", + "id": "245b3c62-c901-44d0-9083-dae4e9e626ae", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -173759,7 +173759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e41492b-1f7e-473b-9570-10eaca19b3c6", + "id": "af1a2fd5-a7c1-43cf-983c-57d7e2e522d5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173805,7 +173805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b91a0b0-e072-4e5a-8822-1392f3a67710", + "id": "eb9118f0-c944-4b1d-9b72-2269ea2d4c83", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173857,7 +173857,7 @@ } }, { - "id": "68a5c67f-eabd-4e22-83cb-73393766e274", + "id": "cefb5703-10ad-4ae4-a0c1-1575fefcec5e", "name": "Uploads source accounts schema template", "request": { "name": "Uploads source accounts schema template", @@ -173909,7 +173909,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -173917,7 +173917,7 @@ }, "response": [ { - "id": "160b7311-322d-4f74-b994-595826a9a2cd", + "id": "82ffebd3-07cf-4cd8-a8dd-eac0dc32c525", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -173961,7 +173961,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -173980,7 +173980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d926f8df-04ca-4426-a0a4-9b349ed92eae", + "id": "3f166094-dcef-410b-a8c8-d8a2953bd3f4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174024,7 +174024,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -174043,7 +174043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15077851-85eb-4778-b83c-9ad0e3371667", + "id": "a178f12e-099c-4d19-b4b5-64ba2c166758", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174087,7 +174087,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -174106,7 +174106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0070e227-8ff1-4533-8aa2-c6509855b55c", + "id": "886505f3-bad8-4fe5-98c3-baf6a63ddff6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174150,7 +174150,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -174169,7 +174169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6777b204-8990-4cfc-adb9-9381ecb9909d", + "id": "59aadfce-fd4c-4229-9ecc-72a9a44b62cd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174213,7 +174213,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -174232,7 +174232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0996cadf-9d04-47f7-bef4-dfe51bd3d3aa", + "id": "42cbe8ac-1f46-4fc9-96ab-d26f042c5382", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174276,7 +174276,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -174301,7 +174301,7 @@ } }, { - "id": "937d0623-df1a-4915-a845-061169a5c692", + "id": "9e58d50b-fe09-473f-b7a4-c54407db13d7", "name": "Downloads source entitlements schema template", "request": { "name": "Downloads source entitlements schema template", @@ -174351,7 +174351,7 @@ }, "response": [ { - "id": "c5e28e46-bb04-4365-a0fb-955b8fe6d6be", + "id": "1e5e0354-6a5f-40f4-99bb-d4c3c9373ece", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -174407,7 +174407,7 @@ "_postman_previewlanguage": "text" }, { - "id": "dcbce188-fbc3-4643-9eb2-97cfd97118d4", + "id": "5d20c877-ec2d-41e3-aeb0-034aeb82b611", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174463,7 +174463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4caf2e5-043c-40ce-8dbc-adcc2fbd1230", + "id": "d374001c-3972-4678-bea0-f252c84c0492", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174519,7 +174519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "241662f3-bba0-4e41-bb0f-68be0a155413", + "id": "73c5ce3e-d2b1-48c8-8389-27d9910c8c93", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174575,7 +174575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4df2ce96-6751-4404-af1d-f5fb64a3bc64", + "id": "ad915017-34a7-4926-8976-61979e05c42a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -174631,7 +174631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1db1c047-ad14-45ba-8ca9-34e5220ab702", + "id": "a065074c-968c-45a3-a81e-653174a611f4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174687,7 +174687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1106ad51-5214-4a97-ac51-ce2b9771df19", + "id": "bd5cf6e0-22c7-4231-a6cf-cfec065a0a77", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174749,7 +174749,7 @@ } }, { - "id": "878a4b0c-46ff-4cc3-830f-aeff77294d1d", + "id": "57a3366c-f67f-4332-a802-744a51d7b85c", "name": "Uploads source entitlements schema template", "request": { "name": "Uploads source entitlements schema template", @@ -174811,7 +174811,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -174819,7 +174819,7 @@ }, "response": [ { - "id": "3881c171-19c5-4ab5-b5bc-8f9cf3518d53", + "id": "fdaeac30-72e2-4a58-8af5-70dff1757cd8", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -174873,7 +174873,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -174892,7 +174892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95e8c405-4d3f-4696-ac95-a6a6efdbc600", + "id": "ffb68966-9b1e-46ec-90f4-4e117b101475", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174946,7 +174946,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -174965,7 +174965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cb50e6f-10a7-45c2-92df-5ab680db26a0", + "id": "75abe94d-a4cd-42ad-82b2-8e7767867df1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175019,7 +175019,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -175038,7 +175038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7feef050-deba-4964-a289-3f40ddf57b50", + "id": "81a9d41c-82b4-4d33-b77f-e734dcd10aab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175092,7 +175092,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -175111,7 +175111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3c42abb-7779-4959-aec1-39d68639626d", + "id": "cd6c3232-13a5-4b5b-9219-975a3c5346f7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175165,7 +175165,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -175184,7 +175184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9d925cc-ba35-406c-bc43-dc74c38502ea", + "id": "d84b912a-12a8-412d-8bfc-0ecb20cb7b41", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175238,7 +175238,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -175263,7 +175263,7 @@ } }, { - "id": "e705694b-2be3-4a20-85b5-725e81299c32", + "id": "eb863d34-a7fd-49a6-a6de-4db19b19f25a", "name": "Upload connector file to source", "request": { "name": "Upload connector file to source", @@ -175314,7 +175314,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -175322,7 +175322,7 @@ }, "response": [ { - "id": "5a3d1d10-ab1c-4f2f-9c65-bcf399c772fe", + "id": "634518ef-dc67-44b1-bece-26be0b1f851e", "name": "Uploaded the file successfully and sent all post-upload events", "originalRequest": { "url": { @@ -175365,7 +175365,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -175384,7 +175384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7ecbd9c-3588-483d-a604-b2f940a0b6ca", + "id": "29be93ce-0151-489e-9460-57c02a8a7653", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -175427,7 +175427,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -175446,7 +175446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f227dbb-e55c-4762-a93b-c6bb793b4980", + "id": "84868bf8-3504-4de8-b55b-90c51e952353", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175489,7 +175489,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -175508,7 +175508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7061fb5-95dd-4e5e-883e-972f94efc764", + "id": "a8c06614-5dbf-4e1f-8217-2516e13c5f84", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175551,7 +175551,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -175570,7 +175570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4d1dad6-92a6-412e-8426-f94a3f150a29", + "id": "dccdca5e-8933-4fe9-be2a-02855039f29d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175613,7 +175613,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -175632,7 +175632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be6bdd71-b507-401a-8567-b60842336a43", + "id": "44ebc68c-7c0d-44a3-89f9-e9722d3234b0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175675,7 +175675,7 @@ "type": "text/plain" }, "key": "file", - "value": "commodo aliqua tempor culpa sit", + "value": "eu commodo", "type": "text" } ] @@ -175700,7 +175700,7 @@ } }, { - "id": "7d0341a7-7aaa-4846-ae0d-348b0c2c594e", + "id": "1631d000-478c-4c68-ae89-a33ecf9e525c", "name": "Synchronize single source attributes.", "request": { "name": "Synchronize single source attributes.", @@ -175721,7 +175721,7 @@ "variable": [ { "type": "any", - "value": "sed nisi sunt qui", + "value": "Lorem", "key": "id", "disabled": true, "description": { @@ -175742,7 +175742,7 @@ }, "response": [ { - "id": "11f945cd-c0e1-419e-9941-e0b1fd508d3e", + "id": "b5a8ca86-57b9-490c-af7b-5ff23fe5f661", "name": "A Source Sync job", "originalRequest": { "url": { @@ -175787,7 +175787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf77b3ad-ab62-477f-81af-2285790ea5e2", + "id": "549f4c4f-0fe7-40cc-9e6c-af74c2a31923", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -175832,7 +175832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21775597-871d-406c-aada-0d169b1dc557", + "id": "4ceab14c-4597-42e4-a3bb-a96e24bc0edc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175877,7 +175877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee3ce289-1b67-40fb-8a1a-7dec71184e51", + "id": "227d655f-df72-4cf8-8e54-d955bab4fc50", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175922,7 +175922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ba40358-f5f1-4379-9b2d-4dbdfb26bcbf", + "id": "20a21828-e057-449e-962d-2e5bc09361a4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -175967,7 +175967,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ecaadb0-5248-4e4c-a21b-2132cbf4f3a9", + "id": "edbdc052-1e7c-4442-80cf-dfa8cf75e61a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176012,7 +176012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fa39cc6-53cd-4381-92c0-eee3d1b9ed2c", + "id": "2008dc5f-dc50-4826-8e03-3e5e9ef5815a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176063,7 +176063,7 @@ } }, { - "id": "3e2903d2-e35a-4e50-8856-04b4d9cbb636", + "id": "967bc0a6-ae22-4d08-877e-8892ff382722", "name": "Get Source Entitlement Request Configuration", "request": { "name": "Get Source Entitlement Request Configuration", @@ -176099,7 +176099,7 @@ }, "response": [ { - "id": "778c2dcd-b8a1-416b-9770-7dcd2a4cb8cc", + "id": "1a61c542-bf06-4365-8816-59053f6a6c4a", "name": "Get default config", "originalRequest": { "url": { @@ -176144,7 +176144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49082385-ad3b-462b-8d5d-ebeab000f5ed", + "id": "f1231424-295e-46e0-8dee-f18f6060b66f", "name": "Get config with one approval", "originalRequest": { "url": { @@ -176189,7 +176189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdf056e7-f9fb-4350-a5b8-74e7a9be48be", + "id": "9dc37413-a9fd-4b26-b4e2-c9c6d00a2d7f", "name": "Get config with multiple approvals", "originalRequest": { "url": { @@ -176234,7 +176234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7f784aa-2fde-49bb-90ed-a1ef71ea9709", + "id": "28cf2e97-d782-4ec1-92a6-da9de3e2c0ba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176279,7 +176279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d841b18-8021-44fc-8484-57e531d3060b", + "id": "0f7aa83f-0c38-4e2b-9fb6-24b4aadbf398", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176324,7 +176324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfe7e090-3a74-4222-8948-e82e9961b687", + "id": "66b012ef-bbfc-4e03-8a07-943abf6ab034", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176369,7 +176369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "402e5cb9-7a4d-4eb5-b548-a3f86cc452fe", + "id": "fb1ea85a-4b2a-4b64-8ad1-6f1b380fa352", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176414,7 +176414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1033c22b-af2d-4096-8f73-56fb42bb95bf", + "id": "e962e90a-8e51-4a5c-95ed-292946a76b58", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176465,7 +176465,7 @@ } }, { - "id": "849ab6e3-43a2-493c-9649-8fe14cd00fa0", + "id": "a85d8c1a-dcb0-4329-8471-5541682f489d", "name": "Update Source Entitlement Request Configuration", "request": { "name": "Update Source Entitlement Request Configuration", @@ -176514,7 +176514,7 @@ }, "response": [ { - "id": "e529e5b8-fa76-41a3-9870-7e1838e906d8", + "id": "8e6eb8de-ca6d-40b7-b471-fdf1aa2fde12", "name": "Set config with no approvals", "originalRequest": { "url": { @@ -176572,7 +176572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65e9723f-7e5d-4b14-8950-91e79c594f2b", + "id": "bb082878-95f6-45a6-ad08-9a18f569a9e8", "name": "Set config with one approval", "originalRequest": { "url": { @@ -176630,7 +176630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae8deb9c-9f96-44a0-b353-3b9b4ad0e39a", + "id": "d57f9a52-dbd4-40db-a82a-b19ce81239ec", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -176688,7 +176688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bef9fb20-873f-4308-8c32-f0d4da4fa6ef", + "id": "0beb57f8-8d69-4c42-aeb2-2fd29337bf37", "name": "Set config with one approval", "originalRequest": { "url": { @@ -176746,7 +176746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba8d51f7-e4e3-4aba-944b-d107ab6d78cf", + "id": "5d988561-4883-4a59-8e99-b3233423f8db", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -176804,7 +176804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7785cccd-87d1-4b56-ad7d-3af3b7835d83", + "id": "7d993498-8895-4472-8c58-50fc83486a90", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -176862,7 +176862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "deb578fb-57a7-4a0c-a851-53bdc46bbe40", + "id": "3bb995a1-6baa-44d0-a6f7-4ffd3f4fc677", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -176920,7 +176920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea8f3c44-4e7e-4fe0-b4dc-af3a48af73ea", + "id": "a1ee5c66-7890-4ee7-bc99-d15be6054635", "name": "Set config with no approvals", "originalRequest": { "url": { @@ -176978,7 +176978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb9835e0-fee5-4782-b4cf-085f3bbc6bee", + "id": "8ca980f6-7464-4e71-baf0-13c58e4aa178", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -177048,7 +177048,7 @@ "description": "Import and export configuration for some objects between tenants.", "item": [ { - "id": "04909838-82e1-4d0e-aa82-2da98a275b42", + "id": "4101f596-8540-4b49-9d45-64b8ba3cdda7", "name": "Initiates configuration objects export job", "request": { "name": "Initiates configuration objects export job", @@ -177091,7 +177091,7 @@ }, "response": [ { - "id": "b434c665-3965-43e0-94c0-13c3918a18de", + "id": "e2233224-10e4-4f15-99ee-af6797581db9", "name": "Export all objects available", "originalRequest": { "url": { @@ -177148,7 +177148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "265423b0-b078-42c4-99af-d1454405abff", + "id": "ea90aae3-79cc-43d1-b8f5-95bbc50be29f", "name": "Export sources by ID", "originalRequest": { "url": { @@ -177205,7 +177205,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17131fc7-2c9a-44d6-aab5-3cdf3ed3e1f9", + "id": "fc21e4bb-c5f9-4ffa-81f6-c464b5956c0d", "name": "Export transforms by name", "originalRequest": { "url": { @@ -177262,7 +177262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ca503dd-ccb0-41f4-a926-58f92db04e7d", + "id": "89420791-4c74-4358-a59d-4e8d5dc3f750", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -177319,7 +177319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "543519a2-48a5-4767-bf78-a4b87e166365", + "id": "406d25b5-17f5-4782-b76d-3aa057f38a64", "name": "Export sources by ID", "originalRequest": { "url": { @@ -177376,7 +177376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1e21a7d-dad3-4af9-902a-845787f653c6", + "id": "30cab533-530a-444a-9818-004af2468ff9", "name": "Export transforms by name", "originalRequest": { "url": { @@ -177433,7 +177433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc44e16c-5199-4b29-9e84-3f563c9e1fd6", + "id": "4d2bf965-3071-47bf-986a-e828e0c1c165", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -177490,7 +177490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee181fda-a29e-4fda-9752-2e03d0492f3e", + "id": "ea067806-58bf-43c1-a34c-3860e84362e3", "name": "Export transforms by name", "originalRequest": { "url": { @@ -177547,7 +177547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2d857f8-fdb0-4f81-9341-cf1f2806563f", + "id": "28e19a52-a43c-460d-a693-42e78eaf6291", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -177604,7 +177604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "068797ee-49b2-437f-af1b-030b2beca44e", + "id": "262e23af-8c01-47a1-84cc-a780d425af50", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -177661,7 +177661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d6e469c-107d-41a1-9b50-b51a652cf5cb", + "id": "91b33d50-2b10-4df4-bdc7-3a35f1dc8a58", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -177718,7 +177718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37ff52e8-4245-4b32-a4f5-78ae0a8ae49b", + "id": "566cc95c-b77d-48c0-9cbb-36415e110ad7", "name": "Export all objects available", "originalRequest": { "url": { @@ -177775,7 +177775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c2a8d14-3ca3-4f38-b093-f6f002352b6e", + "id": "949beb40-0fbf-4571-82eb-b59ac7298c92", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -177838,7 +177838,7 @@ } }, { - "id": "a319e479-bb98-48f5-8b98-d04e6ace4e2e", + "id": "d24d93fc-1571-4e93-99bf-aba41fc0dc20", "name": "Get export job status", "request": { "name": "Get export job status", @@ -177880,7 +177880,7 @@ }, "response": [ { - "id": "38eb4e95-a545-486d-aae7-ed1e9ddc66fc", + "id": "5e639ce2-eb79-48e5-8a0a-b0461b9598a2", "name": "Export job status successfully returned.", "originalRequest": { "url": { @@ -177925,7 +177925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bdd3b09-39ef-42c2-beb5-de3267449e85", + "id": "152a586d-74f6-4cfb-9aba-62e5516988e6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -177970,7 +177970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "959a94d1-4b8c-424b-b249-925b4eb35328", + "id": "3f694069-9d52-47e8-828a-2e5bbf935de5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178015,7 +178015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df481504-a9f6-4640-bfa6-e6434609ccd4", + "id": "d12832e3-feba-45a9-b9ac-76db57d2a61d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -178060,7 +178060,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2258daf0-f6ce-4749-bba6-25b4a4dc0991", + "id": "86283918-daf1-4f68-99c9-177fe7108f1b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -178105,7 +178105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3b9ad5d-2607-4642-b7d4-9531b423cf5d", + "id": "aa61f5b3-f037-4fc6-b8bb-46d5bf49f74a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -178150,7 +178150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94dbc0fe-4b3b-44ab-98a8-e211ac35a234", + "id": "8a04bbff-5c40-45f0-ba54-55f579640419", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -178201,7 +178201,7 @@ } }, { - "id": "8e4004f9-5aa2-47bf-baa6-cde615ded697", + "id": "d77adbb5-420a-4926-8df9-aff63abc15d7", "name": "Download export job result.", "request": { "name": "Download export job result.", @@ -178244,7 +178244,7 @@ }, "response": [ { - "id": "5f05fb82-2923-488d-a9b6-f3fe8bbf9a22", + "id": "db7efa6c-b51d-49a9-95e5-fa042a5d7c20", "name": "Exported JSON objects.", "originalRequest": { "url": { @@ -178285,12 +178285,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 \"consequataa4\": 20960702.108352304,\n \"exercitationf\": -8385177.605367616\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"in__\": -26306304.26808928,\n \"sit_61\": true,\n \"ea31f\": true\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 \"laboris4\": 57577676,\n \"ete\": 45872664.68430418,\n \"Excepteur0c\": 83205742,\n \"Duis_e83\": true\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"voluptate6\": \"consectetur ad velit\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4774832f-457d-44e7-a2d2-3d1ce8cc84da", + "id": "bdba7c5e-ef29-44f4-a91d-62d10abf3e0f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -178336,7 +178336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38878433-ee07-4c70-891f-2f3682bc9898", + "id": "029c333b-acac-4a22-90f0-9cc4067ef883", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178382,7 +178382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "090e25d7-0c90-4afc-9c18-8ef97e2d9d9b", + "id": "7f910939-0fa5-4a2b-8986-1dd552ac06fd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -178428,7 +178428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8753c98f-c950-4be0-a806-6d6c0f92e907", + "id": "e29b9b49-6413-4cff-929d-3fc9607000ad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -178474,7 +178474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35fc9e6e-cf32-4868-87a9-e5103f9d99c8", + "id": "2f337dfd-6d45-4012-a46f-53e32686307e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -178520,7 +178520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee379434-c04c-4d92-b891-4f8c7e7ee604", + "id": "6bc84c70-15e3-4fc0-a3c9-b5ef357981c4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -178572,7 +178572,7 @@ } }, { - "id": "490326f1-9113-45a3-ad1a-572663921e79", + "id": "36edb667-3319-478e-9459-0a4658b60479", "name": "Initiates configuration objects import job", "request": { "name": "Initiates configuration objects import job", @@ -178621,7 +178621,7 @@ "type": "text/plain" }, "key": "data", - "value": "Ut", + "value": "consec", "type": "text" }, { @@ -178638,7 +178638,7 @@ }, "response": [ { - "id": "fc9772c9-a5f7-4da6-a5c3-8a707b511f21", + "id": "fd18059b-f257-4735-a42a-5d6258f38285", "name": "Import job accepted and queued for processing.", "originalRequest": { "url": { @@ -178690,7 +178690,7 @@ "type": "text/plain" }, "key": "data", - "value": "Ut", + "value": "consec", "type": "text" }, { @@ -178718,7 +178718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d73dafe-a6f7-4228-baf1-3d529b855aba", + "id": "c4dee30c-03ee-4587-ab9b-9b9fa0815c6a", "name": "Client Error - Returned if the request body is invalid.\n", "originalRequest": { "url": { @@ -178770,7 +178770,7 @@ "type": "text/plain" }, "key": "data", - "value": "Ut", + "value": "consec", "type": "text" }, { @@ -178798,7 +178798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb4a7c0c-f4c1-4f3c-8928-20942db91ba9", + "id": "2e435fad-133c-433d-a38f-0acb29153c69", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178850,7 +178850,7 @@ "type": "text/plain" }, "key": "data", - "value": "Ut", + "value": "consec", "type": "text" }, { @@ -178878,7 +178878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d62b598-74ae-4a88-a229-ec8d2b496e68", + "id": "0a7fd3e4-4b69-4c0d-9b42-a226ec4b3f0b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -178930,7 +178930,7 @@ "type": "text/plain" }, "key": "data", - "value": "Ut", + "value": "consec", "type": "text" }, { @@ -178958,7 +178958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb958f20-0d80-4cdc-8830-8dcba31f36ef", + "id": "f2357837-13d2-4f19-a4ed-a4abe1386c22", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -179010,7 +179010,7 @@ "type": "text/plain" }, "key": "data", - "value": "Ut", + "value": "consec", "type": "text" }, { @@ -179038,7 +179038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61ad2f0d-1d26-4eb0-897b-854d64ec712f", + "id": "73de9cb5-f001-49ac-93a7-235e825d77c7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179090,7 +179090,7 @@ "type": "text/plain" }, "key": "data", - "value": "Ut", + "value": "consec", "type": "text" }, { @@ -179118,7 +179118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5fc8867-1703-4ad9-acfe-cf466e08b112", + "id": "f4405f20-fa8b-4572-9a3c-58782d91b3b8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -179170,7 +179170,7 @@ "type": "text/plain" }, "key": "data", - "value": "Ut", + "value": "consec", "type": "text" }, { @@ -179204,7 +179204,7 @@ } }, { - "id": "1e489571-b9e4-43ba-8dce-fe9430d45ea0", + "id": "1456eea7-9c90-44c3-bb53-e43879b4e8a4", "name": "Get import job status", "request": { "name": "Get import job status", @@ -179246,7 +179246,7 @@ }, "response": [ { - "id": "46b15750-0bf0-4909-a3e4-d573a7b58ab1", + "id": "4d68c939-1c05-4ac4-afd6-501e852d5cb4", "name": "Import job status successfully returned.", "originalRequest": { "url": { @@ -179291,7 +179291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1dc40bf-cd5c-4125-9987-9a70408aefe4", + "id": "528a0b1c-e62c-4354-86f8-9741396f1999", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179336,7 +179336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f105a514-da70-43ac-b585-858b4a76a271", + "id": "ae1edad9-6367-425c-b52a-7dddc496cc5f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -179381,7 +179381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2297c310-f8dd-4473-b17e-ed08bcc24f48", + "id": "a506c0d7-4314-489f-91a5-a1722ef8fe68", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179426,7 +179426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b90a27ba-7b8c-4981-a909-c147dad9ee9b", + "id": "175cd42f-2409-4276-afca-d6a6d34a49f2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -179471,7 +179471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1b4355f-8f00-40cc-ba25-e14e6236ddbf", + "id": "d5b203e6-65da-4337-94f1-220bc49f8e73", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179516,7 +179516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1902506c-0260-4caa-9b82-af4a07c8e26a", + "id": "450c6fb8-65a7-49c1-9821-6819b259935c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -179567,7 +179567,7 @@ } }, { - "id": "4cba30e3-c694-4805-a7e0-21e5f965d9e8", + "id": "b03f15db-c873-4b42-aa9f-c1bc10639133", "name": "Download import job result", "request": { "name": "Download import job result", @@ -179610,7 +179610,7 @@ }, "response": [ { - "id": "f895961e-77c7-416d-8631-492f1ebd9a52", + "id": "196de1f2-9020-4289-91f1-663867cf498e", "name": "Import results JSON object, containing detailed results of the import operation.", "originalRequest": { "url": { @@ -179651,12 +179651,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": {\n \"ullamco_e9\": {\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_0\": {},\n \"laborisa8\": {},\n \"irure_c1\": {},\n \"elit_95f\": {},\n \"fugiat6\": {}\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_ff5\": {},\n \"anim8a\": {}\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 \"officia_1_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 \"qui_8\": {},\n \"Ut_5\": {}\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 \"Duisb\": {}\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 \"reprehenderit_1f\": {},\n \"anim_7_2\": {},\n \"consequatc1\": {}\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 \"occaecat1\": {\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 \"enim_c7\": {},\n \"ut_d\": {}\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 \"ea17\": {},\n \"qui_ae\": {}\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 \"culpa_16\": {},\n \"nisi351\": {},\n \"nulla_16b\": {}\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 \"ipsumaa\": {},\n \"dolorf1d\": {},\n \"veniam_969\": {}\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 \"fugiat_6\": {},\n \"pariature\": {}\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 \"amet1\": {},\n \"Excepteur7ec\": {}\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 \"tempor_a2_\": {\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 \"commodo_bc1\": {}\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 \"utd5b\": {}\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 \"in_3e\": {},\n \"eac35\": {}\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 \"ut3a2\": {},\n \"pariatur_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 \"nostruded\": {},\n \"dolore0\": {}\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 \"Lorem_027\": {}\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 \"magna_d9_\": {\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 \"cupidatat2\": {},\n \"aliqua_ae0\": {}\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 \"cillum_90d\": {},\n \"ine23\": {}\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 \"non0_\": {}\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 \"dolore1\": {},\n \"cillum_3\": {},\n \"quis_8a4\": {}\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 \"consectetur7aa\": {},\n \"cupidatat52\": {}\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_924\": {}\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 \"nulla59\": {\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 \"essef8c\": {},\n \"qui_3\": {},\n \"velit__\": {}\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 \"mollit_92\": {},\n \"culpae\": {}\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 \"proident_133\": {}\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 \"est2\": {},\n \"qui_7f\": {}\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 \"incididunt_b_\": {}\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 \"consectetur_32d\": {},\n \"minim_fc9\": {},\n \"eu_b4\": {}\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": "6b1c9b02-f4c0-4723-b015-7782c71c44dc", + "id": "c6d12d70-60c8-460b-993a-03f4ac0b9049", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179702,7 +179702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2a6d2a4-9c3e-4451-9295-227ea9f740cf", + "id": "39db008e-f85c-4b61-a45c-9bd8c421a108", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -179748,7 +179748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19017eb9-b356-48cc-8b12-4f59027284db", + "id": "a9552c57-b023-4d89-b515-62ed30bc363b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179794,7 +179794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "deff571e-c8e4-4289-b625-895348a8b6cc", + "id": "c0959f76-dbc9-4a0a-855b-b22d9ca28502", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -179840,7 +179840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c21f0834-2d1a-4e92-9581-692df1d6305c", + "id": "81f7f76d-0c49-4b62-99de-7c96c3cb92e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179886,7 +179886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cf0f98b-a372-4922-89a5-51546fd27327", + "id": "6b4871f6-8889-46a7-b8d1-2896a1bf8e48", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -179938,7 +179938,7 @@ } }, { - "id": "2def53fb-eea8-4769-ba26-29def05fb0e8", + "id": "6a302cfb-ad1a-43b5-bef0-3b3ff303b3e7", "name": "Get config object details", "request": { "name": "Get config object details", @@ -179968,7 +179968,7 @@ }, "response": [ { - "id": "bf9ba69e-28c6-4109-afcd-208398c1549c", + "id": "35672a02-5edf-4030-99d2-b1d22ed95181", "name": "Object configurations returned successfully.", "originalRequest": { "url": { @@ -180012,7 +180012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "809d66d2-1384-4577-9894-dc695b057358", + "id": "34e91f34-7adf-4f43-acd9-07dc1e987ae3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -180056,7 +180056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bc1c041-d158-439e-a445-6a1c6f872b82", + "id": "0763efc0-5fa9-49a6-aabd-544bb45ee67e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -180100,7 +180100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bed35169-0c04-42bc-8c23-eb645cc11c7d", + "id": "d3787694-b8ca-4d24-9d89-ab08bb5ca78f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -180144,7 +180144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81fbf08f-0e3e-48f4-98e2-b926fce91f88", + "id": "41e5c14c-27dd-49e9-80ca-66cc2c2a2759", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -180188,7 +180188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "361c5cf2-134a-49dd-8d71-ac038ca855e7", + "id": "459344ac-ff56-4dc2-b729-819cf011dceb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -180232,7 +180232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe626187-5f54-45bb-8f77-eabccf4454ca", + "id": "056a2865-9dce-4c22-beb9-e74ccf22ea90", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180288,7 +180288,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": "8e0425eb-b05e-4921-8b7e-aba40a590dde", + "id": "0fb44d03-28e9-42d1-bd6f-43a03c39ab95", "name": "List Tagged Objects", "request": { "name": "List Tagged Objects", @@ -180354,7 +180354,7 @@ }, "response": [ { - "id": "929420a7-4c25-4f8b-8dd3-1b1ac8100bae", + "id": "cc861754-90be-4f53-abad-afef2705a230", "name": "List of all tagged objects.", "originalRequest": { "url": { @@ -180434,7 +180434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1d3f18c-aa97-470e-934d-112c252a6876", + "id": "02d52a83-fd00-415e-8a41-1ba039172dd8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -180514,7 +180514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a4ad1f0-d6e6-4632-af69-cd3ef06317ac", + "id": "e4fd9c4d-1d5b-47c3-9e55-db47c4b89c50", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -180594,7 +180594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab63d72b-8118-4096-83b8-8bdd1a7da0d9", + "id": "e042c4fa-df07-4d44-adc3-29e91e999a6c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -180674,7 +180674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cb6bd1f-2b57-4ce5-88ed-cff81d5750d7", + "id": "063122ac-45f9-4b3c-959f-b220414d0964", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -180754,7 +180754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5a89a48-0d11-48c9-95f5-ff438d06a651", + "id": "dc3296d4-96d7-401d-9f89-c97e97a58421", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180840,7 +180840,7 @@ } }, { - "id": "190e7eb0-607b-46e8-ac34-284d6cdb5bd9", + "id": "8b212ee2-fa1f-4e6b-a14e-e9073429c3bf", "name": "Add Tag to Object", "request": { "name": "Add Tag to Object", @@ -180882,7 +180882,7 @@ }, "response": [ { - "id": "8f5e6452-7e60-443e-b822-bd0c78e25fd8", + "id": "617641f8-4b4c-49a5-acc3-7c8e81eae62a", "name": "Created.", "originalRequest": { "url": { @@ -180928,7 +180928,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5d260ced-8f0a-4013-9f11-a752a5bdc58b", + "id": "77fd4cce-a25c-47c6-9cf0-31955bd1a1c0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -180984,7 +180984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc709504-87e8-4373-9023-ce7c4dcb5bf5", + "id": "c8c31654-016b-4c88-b9e8-95260b2009ee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -181040,7 +181040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7919ae04-3698-4252-8b94-132858294f9a", + "id": "c1f4eb10-36e1-400d-a62e-f289d47c15f2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -181096,7 +181096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "785b5417-05c7-4eec-a469-6638248ec999", + "id": "d61f9a4f-318f-4c7d-9e9d-8a81202ef317", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -181152,7 +181152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d947171-4fbb-4c3b-a06c-14e6d4b55e13", + "id": "6a3100cf-f724-4632-a7ab-2977c53e9c3e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -181214,7 +181214,7 @@ } }, { - "id": "bdfaf350-d0f8-4382-a9ea-f24493943f78", + "id": "e8de9779-51c3-42ac-9223-26d60edb1a9a", "name": "List Tagged Objects by Type", "request": { "name": "List Tagged Objects by Type", @@ -181292,7 +181292,7 @@ }, "response": [ { - "id": "16b1baf6-f1ea-4cca-92a3-974d7ab721aa", + "id": "9fba52df-2fa7-494f-9345-75975d004d7f", "name": "List of all tagged objects for specified type.", "originalRequest": { "url": { @@ -181373,7 +181373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eecbd8ee-fa7d-4e4d-81bd-684167e9a155", + "id": "8301e791-fd62-4dba-8e01-da7f562beeac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -181454,7 +181454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8731586b-250e-47bc-9168-486ea1cbb175", + "id": "dfcc88f9-1fe6-4b0e-9f58-5afbabc77071", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -181535,7 +181535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ac3512b-3f9d-4b0a-8bb9-50bc26dab718", + "id": "773db2d5-afc6-4474-906d-fbea4f64d341", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -181616,7 +181616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbc9d1cf-bb16-41a6-af8f-0668a76deda5", + "id": "776076df-38ac-4098-9dca-932133c31ebd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -181697,7 +181697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f06e1879-cf48-4121-b326-ba1397a0119e", + "id": "14778187-55c5-4a7d-844f-390b9a6c8150", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -181784,7 +181784,7 @@ } }, { - "id": "8fa93419-77c9-4303-b4af-d6104ca22360", + "id": "85ac7a81-b145-4472-8c15-ffb22a7a1aca", "name": "Get Tagged Object", "request": { "name": "Get Tagged Object", @@ -181836,7 +181836,7 @@ }, "response": [ { - "id": "554453ab-47b7-428e-89b3-b4143e1f7a4d", + "id": "cc8cca5f-c018-47cb-8bcb-77b1b7bafb83", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -181881,7 +181881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce5325f3-2356-4334-8fcc-cf1f4a2390f6", + "id": "41c01c8d-2f10-489f-ac97-159cbf9fdee2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -181926,7 +181926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a6d365d-0948-429b-9f1e-8121d09e9a62", + "id": "60ef62e8-48f8-423d-af0a-8f4612840e68", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -181971,7 +181971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "139d9afa-4f6e-47b6-80a5-53d420e2b0d5", + "id": "d583d02a-e562-47ce-989e-730895528774", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182016,7 +182016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "551ffa7d-87c9-4d1f-ad04-360989e5e801", + "id": "27634505-6b02-490e-88ce-aeb18a8328cb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -182061,7 +182061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25541f72-3e8c-4ce7-bd4e-c357345bb433", + "id": "6b5d05de-9de1-463b-8be5-c1c9a04dc435", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -182112,7 +182112,7 @@ } }, { - "id": "c817da0d-85bc-4a21-95b9-3d53364545cd", + "id": "aa8180ad-d272-45f0-bbdf-3b7770c5547d", "name": "Update Tagged Object", "request": { "name": "Update Tagged Object", @@ -182177,7 +182177,7 @@ }, "response": [ { - "id": "7b74c36f-dea4-46f3-bf42-d1de6a74a98b", + "id": "9c493514-c866-48a5-b906-1e87c1294c66", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -182235,7 +182235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5340fec8-314f-4248-bea0-0df80936df3d", + "id": "078da770-1934-41c9-bfe8-4c8009d71e45", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182293,7 +182293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31061ad4-f5a7-40e2-b9ea-2b5c74d8c729", + "id": "136b9b26-a3a1-4f35-823b-f597c317dff2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -182351,7 +182351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47a9acf3-ff71-45dc-9829-0c40d766ef44", + "id": "ffcaa132-7e94-4c94-9963-7a0d40cbae10", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182409,7 +182409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a71325e0-8613-47e0-9db9-eb413e04f54d", + "id": "3c62f701-f2d8-44a2-9d4b-53cb7260c0ce", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -182467,7 +182467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ce8d117-f2d8-4540-9bd8-59bb43fe3852", + "id": "9f3e46e9-5fae-414c-939d-a569c8689796", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -182531,7 +182531,7 @@ } }, { - "id": "ec1aa1ff-dc7b-41d9-a33e-e920fec5b208", + "id": "19e080f8-3cb0-4cc8-9cff-1ad6f835f093", "name": "Delete Tagged Object", "request": { "name": "Delete Tagged Object", @@ -182583,7 +182583,7 @@ }, "response": [ { - "id": "0c295407-1437-4373-a4bd-bf6afae0efe6", + "id": "96e67062-59bd-455d-9649-ebf49dde15cc", "name": "No content.", "originalRequest": { "url": { @@ -182618,7 +182618,7 @@ "_postman_previewlanguage": "text" }, { - "id": "95ec5259-cb1a-4814-9811-285de4d0a180", + "id": "43aa5f2a-aa1d-434d-9742-2b807f6c57bd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182663,7 +182663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3010fe8-8db9-4d42-83ea-49fa4f6971cc", + "id": "e20ae805-698f-45ca-9581-95634a885eba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -182708,7 +182708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed86bc83-e9d8-4124-b31f-316a768cc78c", + "id": "90faafbf-ae67-4bda-9a93-155441080b29", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182753,7 +182753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f90cde5-acd1-403f-a4b2-23a713fe209d", + "id": "91520e86-0318-415a-a264-18fdd9bdbc7c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -182798,7 +182798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20f34404-b184-4959-a926-94e166ead89b", + "id": "1db3f691-90c6-4f7e-b39d-7005f98f17c5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -182849,7 +182849,7 @@ } }, { - "id": "d6132cc0-0840-4bbf-8509-f715819b8d7b", + "id": "ae3b4577-de49-4da8-8050-05fe1a06284a", "name": "Tag Multiple Objects", "request": { "name": "Tag Multiple Objects", @@ -182892,7 +182892,7 @@ }, "response": [ { - "id": "0edab133-90a9-40f1-afa2-e92b7193a82d", + "id": "f5a5d7a2-acc9-422b-83ef-57d77c10599e", "name": "Request succeeded.", "originalRequest": { "url": { @@ -182949,7 +182949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21cc5a8c-044b-458c-b7df-26dbc5b789e8", + "id": "beeffd01-293b-470d-a318-3d4a5e370c7a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -183006,7 +183006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af7af34b-113c-474c-89be-e6658ab1208a", + "id": "81db528e-0d36-4a97-b782-c4ffb108eeff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -183063,7 +183063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6b7e683-3655-4296-bc76-e86090887dc1", + "id": "a7c158f7-cce5-4f31-a69c-b60b6af77137", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183120,7 +183120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00af4dd6-bc34-4ff5-8543-198011e99204", + "id": "403569bf-4cb0-43ef-8308-f28f198735de", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -183177,7 +183177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df3c73e6-2e8a-4af1-86e2-12b7a6eac681", + "id": "4538e370-41d5-44ea-9203-f738e28bd641", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -183240,7 +183240,7 @@ } }, { - "id": "80d612a9-4790-4217-9bbf-b8ff9342ed80", + "id": "5fbc3a47-72a7-4f7b-aaeb-0bd00e5878b6", "name": "Remove Tags from Multiple Objects", "request": { "name": "Remove Tags from Multiple Objects", @@ -183283,7 +183283,7 @@ }, "response": [ { - "id": "5e35215c-7c10-4258-9f0b-8e8baeed3a6c", + "id": "30a8456f-5fa9-4ea5-8e56-39da30a91257", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -183330,7 +183330,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8057f06d-9368-43ca-9c0a-61560ce5a571", + "id": "99b0c6c6-b17e-4552-a263-e50acc79affe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -183387,7 +183387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d26974dc-4a58-4c78-9840-3c7e8ddb3806", + "id": "de238fe1-fc61-4cce-897a-02de3d523e7b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -183444,7 +183444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79871208-3562-4cd6-b7b9-df27f0c34691", + "id": "993b7399-d531-493e-870b-423412f9d176", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183501,7 +183501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fb0d70b-31fb-40da-bb91-49c9ea6b98c3", + "id": "0423e7d2-2205-4147-ae99-f43606590e3a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -183558,7 +183558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0df241e-8125-4de1-86a9-3174670a5589", + "id": "803bcfc5-df1a-404e-8cfc-eb682ae6f20d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -183627,7 +183627,7 @@ "description": "", "item": [ { - "id": "b193da3a-c4f8-4e7e-8051-41cad4cc230b", + "id": "db0c410f-9dbd-44f9-a15d-ce4c2d1ad36a", "name": "Get task status by ID.", "request": { "name": "Get task status by ID.", @@ -183668,7 +183668,7 @@ }, "response": [ { - "id": "c2b97a30-460e-42a9-9acb-49f10a0d6632", + "id": "0a24572e-6309-47ab-a8ba-0b3d3fd55f44", "name": "Responds with a TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -183712,7 +183712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "daf8f58c-192b-4e2a-b0cf-33cc7042d653", + "id": "cb3ce213-2ebc-40a4-9f67-7500890f1b91", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -183756,7 +183756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5de385d5-9253-4e6c-bdf5-1fb431484543", + "id": "9e61eec8-a605-452c-99de-d390a0f1c49e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -183800,7 +183800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95371004-cbe3-460b-8417-44c803e3b210", + "id": "1983c050-c152-4245-a523-9e84499aadfd", "name": "Forbidden, generally due to a lack of security rights", "originalRequest": { "url": { @@ -183834,7 +183834,7 @@ "_postman_previewlanguage": "text" }, { - "id": "83e7e4c5-20f6-4ee3-9e93-0a457dd84537", + "id": "7760a96b-ca45-482a-a995-54f1cff2eb7a", "name": "TaskStatus with the given id was not found.", "originalRequest": { "url": { @@ -183868,7 +183868,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0550f244-23af-4849-a91d-8059b21edd73", + "id": "cc7cb109-3437-41f8-937f-ea5456cb26fa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -183912,7 +183912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af731bd4-be47-4c35-a2b9-d77f59f72931", + "id": "10f742fc-db10-4e64-8efa-1452b1671ade", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -183962,7 +183962,7 @@ } }, { - "id": "63893bfd-ee74-4558-9fae-f3ea5b3ee931", + "id": "177ac5d3-849d-49ae-b0d7-590f2b8a4028", "name": "Update task status by ID", "request": { "name": "Update task status by ID", @@ -184016,7 +184016,7 @@ }, "response": [ { - "id": "8447472e-9e2e-44e7-9d93-ab99d0e65965", + "id": "e6812e22-f371-4214-8709-d1f58336cb29", "name": "Responds with the updated TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -184073,7 +184073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14333455-8e1d-4791-9662-01186a197097", + "id": "da1d5c2b-e4b9-476a-970a-a5b81d966240", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -184130,7 +184130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31f464e2-f215-4a76-a088-1059ab98dd3f", + "id": "187c3779-bf7f-4bef-b17b-e4626fc395c7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -184187,7 +184187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e94a026-a4c6-412d-8dea-7c2183113182", + "id": "dd6094d6-950f-41ab-aced-c36a7a6b75ba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -184244,7 +184244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07030168-3b0b-4e3a-a35e-2b30c9d06dcc", + "id": "1580eb59-da80-40b6-9925-0293f9bd124b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -184301,7 +184301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8e18915-387d-4b0e-9073-39e53efc2295", + "id": "d628de50-691d-44f4-b788-e0b3661e9e99", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -184358,7 +184358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30eb3151-f67c-4b7b-b50b-da63d9aa83d3", + "id": "f0bc1487-5b8e-409c-ae07-d33e37bb4282", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -184421,7 +184421,7 @@ } }, { - "id": "301eb0f8-bf96-4481-a8b3-32539c2b0fef", + "id": "3b444585-54c0-453a-8f72-ae390bcc7af6", "name": "Retrieve a task status list.", "request": { "name": "Retrieve a task status list.", @@ -184496,7 +184496,7 @@ }, "response": [ { - "id": "3854a1c6-aa8d-4876-9b5c-b7e0cdb26cb1", + "id": "41e1ce71-2ebd-49ec-863a-1499e8950daa", "name": "Responds with a TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -184585,7 +184585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10adad22-9ced-43de-994e-f9e6734dcce1", + "id": "ecd09e94-9b5f-432e-83f5-4a0aa40c5486", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -184674,7 +184674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93eb4257-f78d-46d3-a551-a5e31758955a", + "id": "aa4dc0cb-ee1a-4e90-813d-67fb475d4cc8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -184763,7 +184763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88a3dada-eb8e-4fec-935f-17963f82ce0d", + "id": "050f27b5-4ea6-4436-8063-83a2ecc80e11", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -184852,7 +184852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e37de86-eaff-4ecb-8545-19f97f91c422", + "id": "050732d0-bf81-4aa6-81e9-1df4917ca33d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -184941,7 +184941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6990526-fdd1-4184-acbb-bdfd4dda18a4", + "id": "6a236259-d169-4a3d-b68e-21878facdcbf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -185030,7 +185030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb0147d8-33f9-4b85-b56e-939f058afecf", + "id": "c1f5c531-8ce4-434d-92ec-2d52eb110053", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -185125,7 +185125,7 @@ } }, { - "id": "d2453df8-6adc-43dd-a3cd-ee4afccd163a", + "id": "ea6e8d74-c65d-41b1-bf77-131048e6ebbd", "name": "Retrieve a pending task list.", "request": { "name": "Retrieve a pending task list.", @@ -185183,7 +185183,7 @@ }, "response": [ { - "id": "ac97b0c0-a081-4bc0-a747-18fad0df32b9", + "id": "b5d1faf5-487c-467c-a8f0-b040f2508d6e", "name": "Responds with a list of TaskStatus for pending tasks.", "originalRequest": { "url": { @@ -185255,7 +185255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc455fdb-57f6-44aa-9836-23f9b7a076fc", + "id": "aad196a4-fb0a-4031-bff7-fc9caf41d0db", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -185317,7 +185317,7 @@ "_postman_previewlanguage": "text" }, { - "id": "af2b11f8-6e44-430f-8caa-47f1d6c0567a", + "id": "d496445b-3ffc-4b4f-ae04-4e57a33af76b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -185389,7 +185389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31752462-432d-459e-8e16-fc7e0be25ba6", + "id": "2eb99f88-0c9b-4153-8872-48d701f7a77c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -185467,7 +185467,7 @@ } }, { - "id": "611efe6f-121c-4af3-a9c9-63cad258192a", + "id": "efc83b4d-a1ef-4f1b-bf5f-de93af220366", "name": "Retrieve headers only for pending task list.", "request": { "name": "Retrieve headers only for pending task list.", @@ -185525,7 +185525,7 @@ }, "response": [ { - "id": "e77c0fea-4bc4-4f86-9276-0f907b3cc52d", + "id": "e7eb8657-5bfe-4c79-b440-473d89ac9282", "name": "Responds with headers for List of TaskStatus for pending tasks.", "originalRequest": { "url": { @@ -185587,7 +185587,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6a2defb1-504d-48ef-a438-d4f1cdb5a732", + "id": "bd37fb25-da9f-4d2c-840f-47879a7c48b1", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -185649,7 +185649,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ed0126f6-5f09-4755-913c-fb1b2e419eeb", + "id": "c169adab-d04b-429d-a2f7-b8c535ce2734", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -185721,7 +185721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d75f11a-104d-48b1-a492-0d2df0db9da5", + "id": "b511b85c-2a01-4790-be23-a85d5bda69ce", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -185805,7 +185805,7 @@ "description": "API for reading tenant details.", "item": [ { - "id": "b4ffa52f-f656-46cf-aca2-01182e4e155f", + "id": "af41161a-1bec-4241-85b3-1f076d28c6f4", "name": "Get Tenant Information.", "request": { "name": "Get Tenant Information.", @@ -185834,7 +185834,7 @@ }, "response": [ { - "id": "19f10481-5437-479e-b4e8-798d32315872", + "id": "c7d030f5-60f9-442a-b0fa-394109835660", "name": "Tenant Info", "originalRequest": { "url": { @@ -185877,7 +185877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4d34c3f-17e0-496e-b2c8-6ac14b0c5ff6", + "id": "d01e7202-886d-4790-964e-e8a8c6132a5d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -185920,7 +185920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21d4a350-221d-45a6-baf2-073f30a2f8d3", + "id": "afc511f2-5e45-42b9-af9b-7411011ca1f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -185963,7 +185963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f4a7cae-1eba-4b77-bd43-2ae6575d8210", + "id": "6e8b44c6-ae69-4015-a3b6-800ff98d5230", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -186006,7 +186006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc1a954c-1962-458f-86d0-aa6515c48a5f", + "id": "a238d664-a311-4102-a6d7-acccb7a1b2b4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -186049,7 +186049,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2199094f-5bff-4adc-bcf0-8a9700ade0ed", + "id": "f66217b4-b4bf-4bca-b5e6-ef08d0ab3354", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -186092,7 +186092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "713825c5-8f5d-48ea-98f0-3dcb843cf70c", + "id": "006b7bb8-6411-4f9f-8af5-41e722911904", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -186147,7 +186147,7 @@ "description": "Operations for creating, managing, and deleting transforms", "item": [ { - "id": "39451cfa-cae2-4c88-867a-741732e70b39", + "id": "87b73a3d-49e1-48cf-8593-6a3fbdf0e156", "name": "List transforms", "request": { "name": "List transforms", @@ -186222,7 +186222,7 @@ }, "response": [ { - "id": "40528de7-1e69-49f0-b593-a9345e5585d0", + "id": "5167be22-74fc-4a22-aa04-bda3f5fcc7d1", "name": "A list of transforms matching the given criteria.", "originalRequest": { "url": { @@ -186311,7 +186311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19467f59-d2a0-4fa4-a951-e2b9547e680e", + "id": "ea9476ca-3117-4483-890b-37e61a8c4a9a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -186400,7 +186400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07ebfe23-eff4-4bd3-8374-114a602babbb", + "id": "cd78dffa-6d3b-4cac-85dc-64476689cec2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -186489,7 +186489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2e2a550-8999-4d38-b10d-dcdefe01fb26", + "id": "df0b2264-89f0-4cd0-9c62-7cfa152426bd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -186578,7 +186578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b382b9c-f2ee-4f09-a2c6-b35f608790da", + "id": "a026894b-6695-4f48-92b3-3bebbb6b1790", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -186667,7 +186667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64c9d98a-b293-4956-a5db-f19ed47bbe68", + "id": "ea3d9822-ee88-4190-a862-8c7ad2b8439c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -186756,7 +186756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "265cb26d-6a01-47c8-bc1e-19ffb41487aa", + "id": "e00c6a90-0c9a-46bb-bbd3-e317738c2830", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -186851,7 +186851,7 @@ } }, { - "id": "ebb571b6-9333-4406-a5d9-5ba789fe3ca8", + "id": "5418cafa-d4a1-436a-a4f0-60305c8f89ad", "name": "Create transform", "request": { "name": "Create transform", @@ -186893,7 +186893,7 @@ }, "response": [ { - "id": "d8a30a1d-20d8-4797-a703-eeab658cb404", + "id": "cd43e7d2-c3c4-4852-a0e8-9513c2d11671", "name": "Indicates the transform was successfully created and returns its representation.", "originalRequest": { "url": { @@ -186949,7 +186949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc8af669-fb53-4bb5-96f3-1a2c4a5c2628", + "id": "fc12834e-65de-42b9-bd8b-083f4aefafa9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -187005,7 +187005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59cb8830-cf8c-48b9-8e98-9177d4a9518c", + "id": "d3a9b900-b6ee-46b3-b3d1-0d4be5521153", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -187061,7 +187061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df79ff78-4a36-44ce-9f66-f1ddd83708bd", + "id": "69e18ef3-94a6-4243-9fd6-9917bbcad4a1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -187117,7 +187117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0026d416-b959-4b01-99fd-982497e48c19", + "id": "ac8ead74-4cce-4331-8b37-126192434b32", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -187173,7 +187173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b983cc8-fa02-4f2f-b8c6-66415958848e", + "id": "1ae96e7d-db67-4bf7-baba-afbcb73eeae2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -187229,7 +187229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c63ec11d-cdb5-4750-b7ed-86659a636798", + "id": "34845d6f-dd98-426d-a4b6-0c3108f85d92", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -187291,7 +187291,7 @@ } }, { - "id": "0f666646-0469-4982-aad5-23ea3c875ac9", + "id": "997d8729-89bd-4c8a-a085-f8234f504ac7", "name": "Transform by ID", "request": { "name": "Transform by ID", @@ -187332,7 +187332,7 @@ }, "response": [ { - "id": "35890e36-b58b-4685-bf07-33a7abfc29a8", + "id": "1fc7ca7c-3329-437b-872b-612640333a23", "name": "Transform with the given ID", "originalRequest": { "url": { @@ -187376,7 +187376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cff35717-2e50-4865-a65d-7ce759aa38e4", + "id": "6d0d5666-53cc-4b0d-a812-8436912c9181", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -187420,7 +187420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67542f38-d661-45fb-8d6b-42125e59714c", + "id": "00763938-2eeb-4921-9e12-2fde0909534b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -187464,7 +187464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc9b1642-fde9-498b-ab41-1d645c41e0c3", + "id": "cc2fbe5f-ba92-4396-9e85-75d7b5fa5443", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -187508,7 +187508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e63e5eb1-5f26-43a2-bbf7-2ed4674c2a5b", + "id": "d5a77327-53f6-44cc-9112-2a7bb250c503", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -187552,7 +187552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec926337-1027-46ef-9f99-efe1ec6c517a", + "id": "5ef9ff8c-91f7-4ea0-bd04-fbfc79931fd2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -187596,7 +187596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4528024d-91a5-4053-a947-67eb4884c0af", + "id": "845b4fde-20ad-41f7-b4c6-bb1e0309004a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -187646,7 +187646,7 @@ } }, { - "id": "7982edcb-12d5-4db6-a157-94881843c1e9", + "id": "42c8159e-b023-46c3-a700-ff8c7b5fcc9c", "name": "Update a transform", "request": { "name": "Update a transform", @@ -187700,7 +187700,7 @@ }, "response": [ { - "id": "3a455ad5-fa89-49ba-b51d-109fd9e86538", + "id": "f4a05bcb-1014-4137-932b-8865696eb66b", "name": "Indicates the transform was successfully updated and returns its new representation.", "originalRequest": { "url": { @@ -187757,7 +187757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "754f4dda-99bc-441b-b916-b0dfed2d9855", + "id": "e4c341e0-3852-4018-93d6-5cdb8528e802", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -187814,7 +187814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7ca25c4-afdc-4b73-bb27-43310f7a702c", + "id": "5d99d5d9-f92e-4ff5-b682-a5c339642d6e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -187871,7 +187871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5545feaa-6f20-4914-886f-89940f288801", + "id": "cc6f1b85-93df-4733-abeb-905f7ba1149a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -187928,7 +187928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6c8c77d-83a1-43b2-8d29-f2651febebbd", + "id": "a8c71b80-f44a-42af-9651-ae3ac3a4d8d0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -187985,7 +187985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "137d8a5f-9342-42d2-bd0e-65c27524d626", + "id": "0a40c22d-5275-4521-8cad-76783c9c9291", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -188042,7 +188042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "997364c8-99f9-4c9c-9c93-a727ea8a82ef", + "id": "837f9de3-3919-4b9f-bd6e-660766b9512d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -188105,7 +188105,7 @@ } }, { - "id": "0e97fe7a-cbad-442b-a107-2829700c2023", + "id": "48095592-8603-4f29-b10a-e98385e21cf2", "name": "Delete a transform", "request": { "name": "Delete a transform", @@ -188146,7 +188146,7 @@ }, "response": [ { - "id": "055dec74-7844-43c5-b683-7b401a06c20f", + "id": "2a9a592a-2218-43a0-bebe-48e5951fc9d2", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -188180,7 +188180,7 @@ "_postman_previewlanguage": "text" }, { - "id": "53510423-840f-4e24-a97b-4d50b5a8e47d", + "id": "e55ea855-158e-425d-942a-e70d5e3bd440", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -188224,7 +188224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0feeea4-926b-45cc-8b2d-d82a5debfb5e", + "id": "4cb59090-9620-4269-9109-12ab203b4099", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -188268,7 +188268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3520669d-d50a-41db-811f-38c1c4e091e4", + "id": "9e388640-a590-4fc0-9213-09cf864ab7b5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -188312,7 +188312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1727a045-6467-41f7-b0ca-035002f357d3", + "id": "1a0d9f80-9145-4328-812a-f261ddecd26a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -188356,7 +188356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16c45c8b-654b-4c7d-ad0f-f2b1bc3b7796", + "id": "70212ccf-ba56-45ff-9051-7970ed7d8352", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -188400,7 +188400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "514eeb0c-7b81-4371-8eec-4fb07d67dfb7", + "id": "49789b26-2f7d-461d-87c2-cd1b41acbc69", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -188456,7 +188456,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": "8e0ccb56-c027-4623-b039-ea5503b9f327", + "id": "9e49cc92-b1c1-484b-b6ca-146e29699906", "name": "List Triggers", "request": { "name": "List Triggers", @@ -188531,7 +188531,7 @@ }, "response": [ { - "id": "acb35a62-8fd9-42f4-8b21-13c12264ac27", + "id": "c928f5f0-04f0-4b9c-8715-7f5aa99dc6e5", "name": "List of triggers.", "originalRequest": { "url": { @@ -188620,7 +188620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "488d2e08-f19f-42ca-98cd-7d771cf1c006", + "id": "702ccea5-e565-4e67-b693-aa6fc4e7150b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -188709,7 +188709,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c12e633d-f2c4-4adb-8ebb-bac045586b80", + "id": "a604beeb-e16e-4bb7-9c72-819dabac7621", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -188798,7 +188798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb67d263-25b4-45a8-9389-69693fb84b19", + "id": "21e872f0-c9a0-4d25-b767-326fdffb77e6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -188887,7 +188887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a39a222e-d3b6-4556-b305-9bad0d9e35e5", + "id": "d37e1bb5-6849-46e2-ad4d-f368a8c825f6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -188976,7 +188976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89b1387f-5a27-4380-aa44-9215a83ca7ee", + "id": "92c7a38e-e838-4e33-bbfe-30b532eeb6b8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -189071,7 +189071,7 @@ } }, { - "id": "c60da1a4-a0e6-4f45-ae45-e9b2a47debde", + "id": "266c879f-6cd7-4bf7-8e43-d77b6c065220", "name": "Create a Subscription", "request": { "name": "Create a Subscription", @@ -189113,7 +189113,7 @@ }, "response": [ { - "id": "dd66a64a-93e0-4c9a-8c7a-f349e90771bb", + "id": "83f05fd6-0d46-4122-a329-42eafaa98f17", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -189169,7 +189169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05cd1428-b923-40b5-8f09-a40028495e30", + "id": "03654790-f328-4f2b-af63-4fff199c33ac", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -189225,7 +189225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b79bb9f4-2d31-4c7e-9975-8d12eac8408e", + "id": "6ffbcca0-2d77-4dcb-9405-40b30033c9a8", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -189281,7 +189281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c81a83fd-481d-4014-a723-1fbc6b36120a", + "id": "0f9ae899-73cd-4929-a783-a1d64c8973ea", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -189337,7 +189337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efd2e038-510e-4818-ae60-d3799eb5d55a", + "id": "d6044aeb-0dee-4871-b9c3-2dba3660c1c4", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -189393,7 +189393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b4ce19f-a88e-4040-9c06-4dee180bcfe6", + "id": "324d5567-3ff2-4882-85d3-521c0bab69a5", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -189449,7 +189449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8499882-dc29-4532-821f-4454ac6a1e32", + "id": "7937aa21-6310-4003-bf66-cfee138fee7d", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -189505,7 +189505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd7217a5-ad56-4377-9231-2cb64cf764b1", + "id": "c2ce786e-b8a5-42fc-a0f5-db95be2ac6cc", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -189561,7 +189561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce527366-3f5e-4cf1-ba0e-28220fb93653", + "id": "78dd24a5-4876-4fa6-916f-f763215d06ca", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -189623,7 +189623,7 @@ } }, { - "id": "d2a3787d-50d0-4a6d-aa65-2cc618882ba3", + "id": "dc3695ae-edff-48cb-9455-d8be86933c11", "name": "List Subscriptions", "request": { "name": "List Subscriptions", @@ -189698,7 +189698,7 @@ }, "response": [ { - "id": "feb3c2b9-a511-470e-b6f0-571f48920a01", + "id": "f4ca8584-ec84-4044-930f-f5eb5ef5b44b", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -189787,7 +189787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c98c5ab1-cca3-46c1-aadd-70e9d6ef74b0", + "id": "afdc76a7-38d6-4f50-acf0-9933c2127afd", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -189876,7 +189876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b51e12ce-0caa-4515-adb3-608791cf3a50", + "id": "cfd8deb6-16d2-4c50-b228-33afe26cf715", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -189965,7 +189965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45b085da-0231-42a4-9b78-a524353b0814", + "id": "54a925ff-9db5-423a-8935-872372570dc2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -190054,7 +190054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6359ada-b252-4439-825a-2c25947f2683", + "id": "17d778ca-70fd-4368-b453-7f0f5f9aeffa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -190143,7 +190143,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7948d61-226f-44e4-9575-ec86b62c774a", + "id": "f8f586c6-6698-497a-8c2e-c3917ea7a256", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -190232,7 +190232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a26a785-4d6c-4c6c-b35c-1f0173915de3", + "id": "8cb48555-eda1-4742-9210-a878bb7a8804", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -190321,7 +190321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "091ad157-dbab-4f7c-94b7-1b029eaf5207", + "id": "321b7960-1c98-4773-a298-72bd7865cb36", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -190416,7 +190416,7 @@ } }, { - "id": "08980fc7-8c94-4f07-8a40-4b22527d4bfc", + "id": "e11c5d7a-506a-4224-9189-dc53695cd8ba", "name": "Update a Subscription", "request": { "name": "Update a Subscription", @@ -190470,7 +190470,7 @@ }, "response": [ { - "id": "57517c32-af69-4700-a786-0f7b16cf2f65", + "id": "90022bd6-2aaf-4c0e-9a46-ac044b19638d", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -190527,7 +190527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e0134c2-2fbb-4743-828a-a9a8d268ca8e", + "id": "bd2ef8a2-9ac1-4df0-a0f6-cd878121df94", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -190584,7 +190584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "583e4675-8ccd-415e-a481-f38805319115", + "id": "b167b30f-a1ef-41f8-aa43-b1466b4b9b8b", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -190641,7 +190641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27dd2aae-da41-4523-8707-dba19855746d", + "id": "8ffe4eaa-d50c-4b2b-8f71-cb3ce3adfbdc", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -190698,7 +190698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "701c0375-fd8f-43b8-89f7-d92f15a26bb9", + "id": "cae71e36-0ae9-4325-8a43-2334b589b1b2", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -190755,7 +190755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6bb1511-7708-4ce5-aabd-e514ce77f0bc", + "id": "33fc3bce-18b8-483a-8e49-0ee03a4deb11", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -190812,7 +190812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baa5a98e-daa9-47f6-80cd-05ce24d64393", + "id": "cbc98e2c-ccb9-44c4-8cdf-dc9876ac54ba", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -190869,7 +190869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae15d8fd-b463-46b2-9aeb-435bb86c0bfe", + "id": "5f1645c0-93d9-4677-8783-2bb414d99831", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -190926,7 +190926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08b708a8-76f9-4898-84df-c9a279bb86b8", + "id": "85063847-15ed-463a-81e5-a7199ab5b77a", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -190983,7 +190983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39409cb9-8fed-4f49-9f61-91deb7cd2084", + "id": "29a6f069-5188-4ad0-bb1e-b301af5a77c7", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -191046,7 +191046,7 @@ } }, { - "id": "f02c8c09-3b37-4735-8062-bb37a68b240c", + "id": "d5af253e-6ea7-4c6d-adfa-0a620b98a88d", "name": "Patch a Subscription", "request": { "name": "Patch a Subscription", @@ -191100,7 +191100,7 @@ }, "response": [ { - "id": "a5c4224a-ef91-4acc-be0b-0c55e0d69dbb", + "id": "134f8c7e-a52e-4dae-9fb2-37337b719369", "name": "Updated subscription.", "originalRequest": { "url": { @@ -191157,7 +191157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bead5c6c-5c39-45d1-8c40-1380d5d518bd", + "id": "5afbc8d0-4f4c-49e1-b1e4-4ce478d7d44f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191214,7 +191214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d19f1564-db30-45f2-855e-e73ad875c1db", + "id": "14111b99-fee1-4227-ae7f-58d6735c0ec1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -191271,7 +191271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8d899ab-4e43-47a2-8e44-d0644aa2fd2f", + "id": "e892ee5d-25a2-4b42-976c-bc91c4457164", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -191328,7 +191328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11852315-b1ba-47ff-b62b-3264ae3f7a87", + "id": "fb366b66-4d9e-4de6-be45-3f432e09c36c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -191385,7 +191385,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d374ca93-976e-4a0a-a5ce-7ec057ddb5c7", + "id": "b0138612-f7d9-444d-95db-3e269ca73ac1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -191442,7 +191442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab3fd09a-1cd0-49db-a721-536292b95fdd", + "id": "96325ee4-6124-4a54-b526-0089b479db20", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -191505,7 +191505,7 @@ } }, { - "id": "71a2e8e4-4362-4bc1-ad03-3157dc4b72ca", + "id": "91b77f3f-d50a-4883-8e01-49679e5f70fd", "name": "Delete a Subscription", "request": { "name": "Delete a Subscription", @@ -191546,7 +191546,7 @@ }, "response": [ { - "id": "b9553242-3475-41cb-90d7-0e480207e852", + "id": "0dad9f4f-3015-4c46-bfc0-c53b5774d7c0", "name": "Subscription is deleted successfully.", "originalRequest": { "url": { @@ -191580,7 +191580,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ecb525fc-7b60-4593-8cef-44be3cbad860", + "id": "c154a48f-4b9b-49c7-80fd-4b8fd7c72904", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191624,7 +191624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5022f10d-ba71-4151-85c1-caf9356b2ea4", + "id": "378f41b9-5693-4391-8be7-f8c4d22071c9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -191668,7 +191668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e111665-df15-411b-b633-d5db4868b5d0", + "id": "f0d0e253-a7e6-4ad3-9bee-5b6278eb4d2e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -191712,7 +191712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2aa931f1-046d-46df-8226-4592fb91efc3", + "id": "4495bead-90a0-4dc1-9ba0-135e0c17a09e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -191756,7 +191756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0bda075-8ce1-4b52-8a80-2955483a585c", + "id": "e4068b6c-c1b6-4ce3-a2db-4f16fc5fbd40", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -191800,7 +191800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24604b21-710c-466e-a41f-c8fffd9ac7c3", + "id": "51be65f5-8b84-498a-81a5-5e0d66048a9a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -191850,7 +191850,7 @@ } }, { - "id": "3abb92e7-7418-40cf-881f-eabae71d4239", + "id": "c4762f88-931a-44b2-a8f9-b8848025c885", "name": "Validate a Subscription Filter", "request": { "name": "Validate a Subscription Filter", @@ -191893,7 +191893,7 @@ }, "response": [ { - "id": "ee74fdac-241a-4068-9357-ebb131bc4959", + "id": "ff398030-0bf9-474b-be62-1c2d40df36c0", "name": "Boolean whether specified filter expression is valid against the input.", "originalRequest": { "url": { @@ -191950,7 +191950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbbe2957-6952-4d8e-9ad5-cc917fb96674", + "id": "7b0ecf3c-54d9-4173-9feb-ad7eb8cf2d8c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -192007,7 +192007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c1b0daa-af45-400c-b82f-e8a77b707492", + "id": "38e6d5e5-e842-441b-b8ca-52640f780256", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -192064,7 +192064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95e04809-570b-4ea6-9210-8d32f7ef5ea4", + "id": "96c364bd-7e43-4625-a944-787ba3380336", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -192121,7 +192121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4a7426c-2d9d-436e-9a90-54db301bb461", + "id": "e09f101c-5e23-48cc-a650-d093fcfb4856", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -192178,7 +192178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15b4e007-0764-4cfe-95f4-42333cab8ea7", + "id": "dbcc9b22-7485-45fe-b275-072ce26f4190", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -192241,7 +192241,7 @@ } }, { - "id": "a0683793-6ba1-4f65-8ff8-89a5f7e48bb7", + "id": "32eb2fb9-6653-4c88-be4d-9d2221c81949", "name": "List Latest Invocation Statuses", "request": { "name": "List Latest Invocation Statuses", @@ -192317,7 +192317,7 @@ }, "response": [ { - "id": "9dd933b1-5409-4bec-989e-3f0ec3f6d473", + "id": "bc2bd89f-789f-4846-b29d-fa5ee1283351", "name": "List of latest invocation statuses.", "originalRequest": { "url": { @@ -192407,7 +192407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fbfc858-20a9-4e71-935b-8b1dc9b96f54", + "id": "6a64e57e-be80-43e3-b765-dd506587788f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -192497,7 +192497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "257b4acc-2197-4f0a-95d3-d60b59edd7aa", + "id": "e42a692d-87d0-42c2-ab67-da02568dc0df", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -192587,7 +192587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2344ad89-5129-4af2-a476-410f86112e66", + "id": "1f2d3979-18ae-424c-8fee-772e494849d0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -192677,7 +192677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc916a56-13a2-4062-a296-cca823dd97ec", + "id": "508c9deb-4207-4a7a-b617-ce6f92b5bded", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -192767,7 +192767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48165c51-3dfe-4ced-a773-419f79944910", + "id": "af0b6b00-4a19-4a5c-80fb-384b17cd440e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -192863,7 +192863,7 @@ } }, { - "id": "1767e549-6de8-4b80-b24a-670478715c09", + "id": "eb305432-ea76-4a8e-bd56-801de7f9d09d", "name": "Complete Trigger Invocation", "request": { "name": "Complete Trigger Invocation", @@ -192918,7 +192918,7 @@ }, "response": [ { - "id": "ebf12add-0fad-49cd-b7c6-47549cd52392", + "id": "5e9c8250-e1b2-4b69-96b4-1c431588bdb0", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -192966,7 +192966,7 @@ "_postman_previewlanguage": "text" }, { - "id": "14b7ddef-d778-4608-8c0b-e2aea79b46a2", + "id": "83044bd3-c43d-4e66-9996-222f1dd4b25c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -193024,7 +193024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a12920a-ae9d-4729-8d72-ee1a887d6edf", + "id": "94cba2c1-1c60-404a-8141-db4efa1a8af4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -193082,7 +193082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e929804-869c-4110-899d-75e5dee87c89", + "id": "8845625f-2c84-4726-85d0-b399a3c29db4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -193140,7 +193140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff8651a8-11ee-43bd-a673-cf8991acc9f5", + "id": "0dd9fee9-dbcf-43f7-933e-704199e39699", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -193198,7 +193198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a47fa66e-f7c0-4f62-ad86-5b7e76a3791f", + "id": "086756b3-a6f0-4f80-84a6-4c325befc55d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -193262,7 +193262,7 @@ } }, { - "id": "e26a990b-9a8c-461c-abbe-73ab5d71f2eb", + "id": "ab3689f5-f984-4f12-bfa7-c748e715b757", "name": "Start a Test Invocation", "request": { "name": "Start a Test Invocation", @@ -193305,7 +193305,7 @@ }, "response": [ { - "id": "c87c2d56-4500-4129-8d80-73e4d32da786", + "id": "71f6e5ac-0fc8-48be-af2b-18842dec53e0", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -193362,7 +193362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43c7dd5c-718c-422d-bac6-951f10249a87", + "id": "834e630b-1afd-47ec-9da3-a67df6c6321c", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -193419,7 +193419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d5ab84f-fd99-4e58-8cdc-792e4b532314", + "id": "ab020f82-c548-4180-9950-84c36d5b08f1", "name": "Trigger invocation is skipped, because tenant has not subscribed to the specified trigger.", "originalRequest": { "url": { @@ -193466,7 +193466,7 @@ "_postman_previewlanguage": "text" }, { - "id": "982baa4f-c5ed-471f-a61b-a4a6bc93f75b", + "id": "2fbdb367-a9b2-48bb-9ffb-0829a9ad1fe2", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -193523,7 +193523,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ba385f1-1b53-4ad9-9629-f2ce6dc065a2", + "id": "e0f2e34f-ff5f-4364-bdb7-5533db8d7e30", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -193580,7 +193580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c491df6-7b6f-476e-a2f6-a86fffc91844", + "id": "1d15d0bc-6e99-4d4b-947f-ffeb8b157988", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -193637,7 +193637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54fbf5ba-a3cf-4871-b8ff-970d749a68fc", + "id": "b4c552ad-14d8-47aa-97ac-7c79dbe4beab", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -193694,7 +193694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "205fa2a2-c290-484f-a6c8-9853093e188b", + "id": "d3082cf3-a1aa-4d39-9985-4a37059f0474", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -193763,7 +193763,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": "a2acd2fd-fc38-4182-97d4-e5f10388c2bb", + "id": "259ee9f0-9b44-4600-8911-6b44afdb3f5d", "name": "List Work Items", "request": { "name": "List Work Items", @@ -193813,7 +193813,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -193829,7 +193829,7 @@ }, "response": [ { - "id": "2f399427-f637-4c7a-82a1-bc56b3fc9647", + "id": "f6f94d59-d810-4f60-80d8-d87a75276220", "name": "List of work items", "originalRequest": { "url": { @@ -193874,7 +193874,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -193909,7 +193909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "febe2533-4a28-4245-a4e9-329f55e96bed", + "id": "0b862ac6-c752-4fe4-ba47-e8cd9a1ebfd0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -193954,7 +193954,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -193989,7 +193989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45c5ea0a-b939-41ba-998b-df43731e7584", + "id": "17bfd9fb-3f05-4473-8989-b976f4164fd8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -194034,7 +194034,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -194069,7 +194069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40686867-50ce-48fe-ac71-7b7210dfc4ac", + "id": "f0c69111-c872-45d9-8b03-da4f84fc11e8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -194114,7 +194114,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -194155,7 +194155,7 @@ } }, { - "id": "ac3b6d65-917c-4c73-8cba-4cc232bf7a5c", + "id": "35dbde55-1183-42e6-8503-fa2c71432383", "name": "Completed Work Items", "request": { "name": "Completed Work Items", @@ -194179,7 +194179,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -194222,7 +194222,7 @@ }, "response": [ { - "id": "f19ed466-109d-4254-82d7-27ccc440cbb0", + "id": "0a6c480a-e9da-4e93-b5a5-f2789cf9a1a0", "name": "List of completed work items.", "originalRequest": { "url": { @@ -194241,7 +194241,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -194303,7 +194303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "395685e2-e5b9-4906-8b07-78fcfc0b239d", + "id": "7f54b8b2-a729-42a7-a821-3ba696b0725b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -194322,7 +194322,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -194384,7 +194384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57dcdb6f-a953-44c1-a300-c1bd0acd44a1", + "id": "d146cd6f-d2d7-462c-a3a5-52f57b526362", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -194403,7 +194403,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -194465,7 +194465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10bca6f9-0ed7-4e29-b70d-30f3f1494fcc", + "id": "f396fce9-bd95-4f49-8646-9ce3c624f94f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -194484,7 +194484,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" }, { "disabled": true, @@ -194552,7 +194552,7 @@ } }, { - "id": "eda1f8be-6e0a-4673-b11d-1392a2158124", + "id": "feb2d4d5-de6d-4683-b62a-d606627e965e", "name": "Count Work Items", "request": { "name": "Count Work Items", @@ -194576,7 +194576,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -194592,7 +194592,7 @@ }, "response": [ { - "id": "8cbbb629-8721-474a-8b9b-80bfda82d370", + "id": "26922b85-4e6a-4ebf-b6c4-36a4e2d4c538", "name": "List of work items", "originalRequest": { "url": { @@ -194611,7 +194611,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -194646,7 +194646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "352fc9a0-253e-47d5-9fa9-872c2225b03f", + "id": "63ecb19f-dcd0-4a3c-9caf-ae6bebd1350e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -194665,7 +194665,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -194700,7 +194700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8518f32-6583-44db-9ca4-e716942953de", + "id": "03b69c0d-f4e4-434e-a977-8c07f3321e8f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -194719,7 +194719,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -194754,7 +194754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c554611-a2e8-4022-af23-3e20f542095c", + "id": "33e14aa2-1134-439a-830e-c947d81be7eb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -194773,7 +194773,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -194814,7 +194814,7 @@ } }, { - "id": "f4a22d6c-4554-4841-abc8-448094d1df26", + "id": "6856e796-08b7-4082-84c9-ade35daaa231", "name": "Count Completed Work Items", "request": { "name": "Count Completed Work Items", @@ -194839,7 +194839,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -194855,7 +194855,7 @@ }, "response": [ { - "id": "0911fd80-fa45-4673-ae15-363ffdee45fa", + "id": "34baea21-9781-4bdb-8e3f-78d1c41dce00", "name": "List of work items", "originalRequest": { "url": { @@ -194875,7 +194875,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -194910,7 +194910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25a71498-7096-41cc-96c6-b5aa97a65472", + "id": "f7c8219c-2292-4ca3-a1f4-3c921b9d8f30", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -194930,7 +194930,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -194965,7 +194965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4aa1b48-f7e8-4e9e-8def-3e8ca8504649", + "id": "15140039-3acd-4391-92f8-fe4721d80f8d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -194985,7 +194985,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -195020,7 +195020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e11bd01-5605-4729-acf9-f1546bb2af34", + "id": "19fca3eb-6304-466c-8847-4f2de8905ea3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -195040,7 +195040,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -195081,7 +195081,7 @@ } }, { - "id": "a3b81f68-0a58-405f-8de8-2ce7f9800a65", + "id": "c132aad1-390d-4ea3-87b5-259f4e72a77c", "name": "Work Items Summary", "request": { "name": "Work Items Summary", @@ -195105,7 +195105,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -195121,7 +195121,7 @@ }, "response": [ { - "id": "c2b5e4d8-6c8a-49e6-8345-3869170c9266", + "id": "0b037cf6-72b5-4ebd-817f-517859458bb1", "name": "List of work items", "originalRequest": { "url": { @@ -195140,7 +195140,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -195175,7 +195175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "615a8f6c-cbd0-4ba7-97d3-be7bd07eaeba", + "id": "2389613c-8d51-4931-98dd-42ba130f2eb8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195194,7 +195194,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -195229,7 +195229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48350dcd-1ddc-435b-9576-e51c36d0361f", + "id": "77e3dcb8-9ce6-4cfc-bfb2-8bb6da9c6089", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195248,7 +195248,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -195283,7 +195283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "303d9ff7-aee0-46f2-80a5-b986e20de2a2", + "id": "01c93ed4-48b6-4758-bd90-d9b455f90ac3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -195302,7 +195302,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -195343,7 +195343,7 @@ } }, { - "id": "c73fcc3e-c55b-4b75-a336-fa9d455c4811", + "id": "11357fbb-f681-4144-9bc3-9a4687fb47d4", "name": "Get a Work Item", "request": { "name": "Get a Work Item", @@ -195367,13 +195367,13 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [ { "type": "any", - "value": "sed nisi sunt qui", + "value": "Lorem", "key": "id", "disabled": true, "description": { @@ -195394,7 +195394,7 @@ }, "response": [ { - "id": "1fe60cf7-c8a0-451a-a057-512eb99cc773", + "id": "94863245-8a22-41f1-b87d-a4e8874e662d", "name": "The work item with the given ID.", "originalRequest": { "url": { @@ -195413,7 +195413,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -195448,7 +195448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c5dc142-8998-4a2e-bcbc-e945a2aada1d", + "id": "c6e5dca9-9c9f-4502-a5d2-5255f18b9e69", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195467,7 +195467,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -195502,7 +195502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb555555-99a4-4bbd-9180-f6e19028b708", + "id": "87324137-18b0-4065-a34e-85862bc4fcc8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195521,7 +195521,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -195556,7 +195556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f63f8ba-65bf-4621-8716-0ce1e276826a", + "id": "29de6007-8f75-4e84-bf5d-f576868c429d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -195575,7 +195575,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "sed nisi sunt qui" + "value": "Lorem" } ], "variable": [] @@ -195616,7 +195616,7 @@ } }, { - "id": "f59a0af5-d9fd-47dd-8724-61370b26df61", + "id": "a1269e91-9a3b-4d34-baa6-99cb5d7a5046", "name": "Complete a Work Item", "request": { "name": "Complete a Work Item", @@ -195657,7 +195657,7 @@ }, "response": [ { - "id": "23f02e81-941d-4376-9ca0-61d01ae4935c", + "id": "230d310c-1744-4e28-bf32-7af139fdaedd", "name": "A WorkItems object", "originalRequest": { "url": { @@ -195701,7 +195701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e61b7bf-1b93-4c9e-b941-01bc7d1e730c", + "id": "2f9f223c-8e05-4791-8b00-42524911c7f9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195745,7 +195745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7734a8d0-b006-4633-87e3-4de934ecbe21", + "id": "9f95abc2-b513-486c-9ad1-480804ecd724", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195789,7 +195789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fe597af-6249-44b9-a670-e125aa7e2d47", + "id": "a9cd1531-7e12-418e-982d-502086f62d6c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -195839,7 +195839,7 @@ } }, { - "id": "33429571-1955-40bb-a7f4-e1361f408e86", + "id": "2a0905af-4f91-426f-a2c3-cf3a6b8e38ff", "name": "Forward a Work Item", "request": { "name": "Forward a Work Item", @@ -195894,7 +195894,7 @@ }, "response": [ { - "id": "546a4547-87c6-47e4-8689-e598eafd4905", + "id": "201ca6b0-76df-4b94-843f-292b0ef900a3", "name": "Success, but no data is returned.", "originalRequest": { "url": { @@ -195942,7 +195942,7 @@ "_postman_previewlanguage": "text" }, { - "id": "41c992a3-44ad-4a83-a315-f7cc066a0d35", + "id": "8491f7e8-9a49-4375-8f67-00e037033212", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -196000,7 +196000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6404d66a-4a79-4be5-b7e1-caaf8d0ff4ff", + "id": "111f1000-61ed-4e39-b901-bc7c89f33bc1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -196058,7 +196058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2159f3bc-1208-4fb8-b352-d87f2206d86f", + "id": "3eaf37c1-f865-483f-9348-9c01f11a0402", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -196116,7 +196116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03b86cd9-defa-477e-86e6-435e72514b76", + "id": "59a60121-d403-4cf4-ad09-3a62ccd7f474", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -196174,7 +196174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75d26c4e-21f7-462f-86df-fc395c69eb43", + "id": "72023962-73cf-41ea-b2c7-b1c4249f1bad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -196238,7 +196238,7 @@ } }, { - "id": "ab27d544-1c45-46a8-9ba0-d198ae0c9da3", + "id": "cef07104-358e-4273-8fe1-472675a073df", "name": "Approve an Approval Item", "request": { "name": "Approve an Approval Item", @@ -196291,7 +196291,7 @@ }, "response": [ { - "id": "ae6b654f-f33a-46f8-9b0c-eae41034ea36", + "id": "f8691b66-4a48-40f3-b5cb-c01cbe65e64f", "name": "A work items details object.", "originalRequest": { "url": { @@ -196337,7 +196337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d617ea31-d1a0-4dd5-af51-623c39ebae5d", + "id": "db11444c-873d-4c74-a2e0-4f8526fca8df", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -196383,7 +196383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ec1d0f4-c6f4-4871-b2e1-093b1139faea", + "id": "25cdcdf6-43c5-4b35-a95a-5df47363f697", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -196429,7 +196429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "622e58e0-7f93-4f92-b496-39d61b98e877", + "id": "fe0b7917-35c4-47d8-b6e7-3d5076958c4f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -196481,7 +196481,7 @@ } }, { - "id": "3de56e90-b639-45e5-bdfb-f34f46c991a9", + "id": "290a0904-01d2-4a2b-9d6b-39bd6e9ff3c5", "name": "Reject an Approval Item", "request": { "name": "Reject an Approval Item", @@ -196534,7 +196534,7 @@ }, "response": [ { - "id": "d28973de-6dd5-499b-97e4-2315be799761", + "id": "3dc421a1-bffa-48cd-b177-69bdc7a39284", "name": "A work items details object.", "originalRequest": { "url": { @@ -196580,7 +196580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a56dfb37-d72c-43f5-8dc9-cc183a5d53ca", + "id": "706b5991-a01a-4aeb-bf9b-d8660e84a572", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -196626,7 +196626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50520597-fbb7-425e-91df-b842f9181753", + "id": "4cab9ede-2bbe-46f1-b9e9-b1b98644c34c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -196672,7 +196672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73b63cd4-0570-4d46-a634-ffe96abb4c73", + "id": "551f5ec4-c93c-457b-a771-85d1ed35e295", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -196724,7 +196724,7 @@ } }, { - "id": "2e30f767-5e65-4be7-8c9a-c1e99c95cb1d", + "id": "1575b6ea-827a-47f7-8a16-0d3f59923872", "name": "Bulk approve Approval Items", "request": { "name": "Bulk approve Approval Items", @@ -196766,7 +196766,7 @@ }, "response": [ { - "id": "31751134-ee04-4e5f-9ab3-c20da5d0d1a5", + "id": "a8ed6ff4-9b78-4242-a89b-4678edf12264", "name": "A work items details object.", "originalRequest": { "url": { @@ -196811,7 +196811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdcca091-574b-4ac9-b406-32ce5f1d270c", + "id": "d26727d6-d409-460b-b7f7-6f5b61aa94c1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -196856,7 +196856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eeccce38-fe09-430f-b5b0-2f45ab54a5e9", + "id": "50fea50f-52cc-4cec-b54f-53b5fa993f40", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -196901,7 +196901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec05a00b-6509-441f-b03b-58bd75554f7d", + "id": "96c783a1-2cff-4f12-833a-3f544c99e8af", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -196952,7 +196952,7 @@ } }, { - "id": "b499e759-07f6-4d6b-b7a3-e37cd17d729b", + "id": "01ac17fd-cdda-4475-a242-af6132d5980a", "name": "Bulk reject Approval Items", "request": { "name": "Bulk reject Approval Items", @@ -196994,7 +196994,7 @@ }, "response": [ { - "id": "384823e4-9e62-4bb0-ba75-8ff076cc980a", + "id": "30452921-b154-40d7-9aa6-9f3ac35f48ef", "name": "A work items details object.", "originalRequest": { "url": { @@ -197039,7 +197039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baa70b37-6b2d-4bdd-af30-0dfbdea8395f", + "id": "b6238839-5ce3-4279-938b-d97cf25fadce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -197084,7 +197084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b856c5d6-52ba-4080-9e22-175030a229a7", + "id": "7e1643c8-3c7a-47ae-af8c-4673652bdedd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -197129,7 +197129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e9e0b8c-99c0-427c-90bd-1c6e2475c1ef", + "id": "57b3a487-b35a-4fd0-a397-3cf297efc649", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -197180,7 +197180,7 @@ } }, { - "id": "30225212-ba0d-4ab6-adf3-c2da58d857be", + "id": "5b525603-748e-4bd6-8bbc-f97554010fd4", "name": "Submit Account Selections", "request": { "name": "Submit Account Selections", @@ -197235,7 +197235,7 @@ }, "response": [ { - "id": "fcc68fcb-7b01-4f85-a88e-dee87cfe74a1", + "id": "ec3ce6d6-7e06-41ac-af8d-1dc957f7575e", "name": "A work items details object.", "originalRequest": { "url": { @@ -197293,7 +197293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76768658-8489-4c99-9770-04baae22dd4f", + "id": "58ab40e0-8a2e-4e0b-966b-2d629a3e2578", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -197351,7 +197351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac860916-2c0a-49e2-b591-1b2298cafbca", + "id": "1f6d7f21-e424-46b8-95b4-31b879ef3ca6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -197409,7 +197409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f41993c0-b7c4-4dff-95c6-b4cac2e240ec", + "id": "31e88064-e696-4bba-a027-0b9b5953904b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -197479,7 +197479,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": "698bad4d-f8b6-4974-bc23-16e8f9474604", + "id": "0eb93ee9-93fa-4cee-b012-7d67e0cd46a0", "name": "List Reassignment Config Types", "request": { "name": "List Reassignment Config Types", @@ -197509,7 +197509,7 @@ }, "response": [ { - "id": "737e56a6-5fb4-40c1-902e-3bda3b224d9a", + "id": "d7813c6f-b58b-4063-ad54-2b2fd3768ce6", "name": "List of Reassignment Configuration Types", "originalRequest": { "url": { @@ -197553,7 +197553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e71a03e3-5c72-4e3c-85b4-ae7a4faad967", + "id": "7b4bce7f-2445-4026-a134-91d02c614fa1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -197597,7 +197597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15734848-dce5-4f59-b900-9ccb1abc6a5c", + "id": "301228dd-8f4a-40f4-8cfa-f671c7d8cb93", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -197641,7 +197641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e80cce0-8891-4051-a5d3-ce6a6781db15", + "id": "d0eaeb0e-1468-4178-a3cd-1bdf2a4c15ca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -197685,7 +197685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a082d5d-3c8c-4bc2-8a36-228ac7199b0a", + "id": "6fd5adff-ef75-4cca-add5-345ce1f3ef5c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -197729,7 +197729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb25227e-7207-4442-b8e7-28dc38e6a895", + "id": "7cbc33b6-6399-4b2c-9a14-2dcfc3bd5e88", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -197779,7 +197779,7 @@ } }, { - "id": "495ee8b3-0996-4ff4-abad-93518048b9a3", + "id": "10906a00-06e6-472d-942f-ca7778a6da93", "name": "List Reassignment Configurations", "request": { "name": "List Reassignment Configurations", @@ -197808,7 +197808,7 @@ }, "response": [ { - "id": "fe79d299-a5da-4c2b-80e6-e702e584fa9f", + "id": "bd4addf1-0d0e-4c3d-9a9d-c1eb5791dae6", "name": "A list of Reassignment Configurations for an org", "originalRequest": { "url": { @@ -197851,7 +197851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10d726c0-913a-4bb5-8c3d-df618a3b6a22", + "id": "64f8a35f-7df4-4f66-a502-47b2bf41cd88", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -197894,7 +197894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dace92b9-b16b-41d2-a4f7-6a8ce6712190", + "id": "35b260b5-d465-40a7-ab88-a8f59ba55fa0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -197937,7 +197937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "add2df33-803f-42b1-a8af-7897944eead6", + "id": "86eaf6ec-87b4-44a3-aa46-5652a93d5256", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -197980,7 +197980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f9596e5-37f7-43da-be9b-1947677236be", + "id": "68dc86e8-8e69-416b-8480-128cfc0b2438", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -198023,7 +198023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "022030f7-6e47-4206-a272-479312ff2c33", + "id": "aaddccbd-3c73-4d28-95c7-ce2de8451dce", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -198066,7 +198066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc215448-8aa6-4782-914e-0914a2c6fab4", + "id": "ab7f1978-32ff-4f50-9340-8d2bf36bbc27", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -198115,7 +198115,7 @@ } }, { - "id": "d21eb589-7ae1-4e51-83ba-229b9a621da3", + "id": "eda687e3-de11-453d-b1ec-be19edf23235", "name": "Create a Reassignment Configuration", "request": { "name": "Create a Reassignment Configuration", @@ -198157,7 +198157,7 @@ }, "response": [ { - "id": "473f6d43-c2b7-4eb3-a93b-ca1a05ee9dc4", + "id": "5ce83ff9-accd-47bf-b9b8-62dec967eed1", "name": "The newly created Reassignment Configuration object", "originalRequest": { "url": { @@ -198213,7 +198213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8febed43-daae-4fcd-acf4-e71707bb323e", + "id": "3fd1fef7-9bfb-4619-97da-6c0c94d81900", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -198269,7 +198269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3b3df59-e58b-4ee9-acca-88d15f4aa498", + "id": "6d0b11f4-40a6-4d88-aa75-0761421076f5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -198325,7 +198325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60e324c2-3e5d-451b-8764-cde9ea8b655a", + "id": "cbef0f03-483c-4e4e-9e3c-1504bd4cfe59", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -198381,7 +198381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54b86f6f-207f-4a24-93ac-caa85f15ca22", + "id": "f2c01ba5-7001-44bc-86fb-87753d8a359a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -198437,7 +198437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1def476-fd64-489c-b16f-b552c23dee78", + "id": "e26d2286-22d0-4832-870d-d5bd6d13bcbf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -198499,7 +198499,7 @@ } }, { - "id": "2299697e-daf4-4f78-9206-25e7ed8f482f", + "id": "3adc4e97-e0b4-47e2-9f00-406ad494dabf", "name": "Get Reassignment Configuration", "request": { "name": "Get Reassignment Configuration", @@ -198540,7 +198540,7 @@ }, "response": [ { - "id": "636bbbe6-a37f-43e9-9172-3289c3bbae33", + "id": "ea23d6b2-5029-4068-afdf-3bd7125f54df", "name": "Reassignment Configuration for an identity", "originalRequest": { "url": { @@ -198584,7 +198584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "021aa7ac-0d55-4d5b-a3c8-e2b777fbc137", + "id": "aa0fcc08-0de4-400c-992f-cbb3418b9fa2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -198628,7 +198628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d92692b3-2a93-4d96-890b-9bd68dfad125", + "id": "cb0ffce5-1d9e-4fc3-84e5-45b364373155", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -198672,7 +198672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cadf319-7eeb-4fe3-848a-9f7f24050d09", + "id": "4fd2f06a-8108-4872-8a65-e1947da0c72e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -198716,7 +198716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d653207d-4bca-43c7-85af-1b6ab6c36655", + "id": "c0c5bbac-8a10-41bf-b8d4-e4a79efd3ca5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -198760,7 +198760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8dc21f4-f7ba-4dc5-84f0-ad2d977c7e97", + "id": "37166808-b513-4585-bdab-933d52803c1d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -198804,7 +198804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e257c1b-2e51-4142-80dc-4d53d61bb523", + "id": "e2280074-5787-4568-9d30-92f853eed7c6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -198854,7 +198854,7 @@ } }, { - "id": "656c549e-dc34-472f-a778-6ab89e222e63", + "id": "c2526eaa-967d-44f4-8d0a-35548a9cffbe", "name": "Update Reassignment Configuration", "request": { "name": "Update Reassignment Configuration", @@ -198908,7 +198908,7 @@ }, "response": [ { - "id": "2c9401ed-206c-4d86-9b47-d0b26bcdf973", + "id": "6265b2b3-b877-499b-a34f-aacf43ca0651", "name": "Reassignment Configuration updated", "originalRequest": { "url": { @@ -198965,7 +198965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bf90014-72a1-41e7-ae70-6ba26e453e86", + "id": "a59ebd3e-d4f0-498b-bb48-245e6cb5c8e5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -199022,7 +199022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "deb5a051-6c4f-449a-bb17-9a6828a21529", + "id": "23c5f494-d151-4fec-9750-ae0fc8c54326", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -199079,7 +199079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "776f9a42-5273-4215-bd10-75fa1b887a95", + "id": "4a3d1275-5bc0-45ea-8ef5-427620172fa7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -199136,7 +199136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "580c4774-7784-444b-a77c-c0638c7cf9df", + "id": "e52a3dad-9379-4dc0-b147-b82286db457f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -199193,7 +199193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "699a4c04-17d7-4038-98ff-b7b88436afeb", + "id": "eebd2e69-e5ab-4ee5-b1d6-e3d485b9a76d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -199256,7 +199256,7 @@ } }, { - "id": "87db2a2a-a92e-4f19-96b2-e48e17711375", + "id": "0610b725-c314-402c-b6de-ec9c63fae6f2", "name": "Delete Reassignment Configuration", "request": { "name": "Delete Reassignment Configuration", @@ -199297,7 +199297,7 @@ }, "response": [ { - "id": "5b1f0b84-0219-4702-82cc-a3b3d52d4244", + "id": "09aae4c7-96bf-4976-8f37-4d4359ea4c3f", "name": "Reassignment Configuration deleted", "originalRequest": { "url": { @@ -199331,7 +199331,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a0103b04-4ae8-4f15-9598-564080261803", + "id": "2a56297d-b8e5-499d-9939-e02eb87e05a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -199375,7 +199375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59cb3886-f026-4417-8857-8fc9d8b832cb", + "id": "3a5281c9-81cf-4b2a-8e81-ba1d6dfe067e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -199419,7 +199419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cae81b09-45b9-489c-9d71-2fa0149e5f9e", + "id": "12439758-8e4b-42b9-a7c5-e11e078b958b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -199463,7 +199463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28dfbf7f-12c4-46a1-a268-570d3c4ad1ed", + "id": "431e1178-ab2f-4173-894b-8696edbf6a3b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -199507,7 +199507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90847126-ecf5-4e54-a9d6-b2fb9799ab12", + "id": "cab2c599-4d6f-4e5b-9b7d-674431866888", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -199557,7 +199557,7 @@ } }, { - "id": "07626a56-1b54-4f7c-a4c4-6c7dc72ec80f", + "id": "97d84bc8-1455-4c5b-9e0e-67d8b5fc281b", "name": "Evaluate Reassignment Configuration", "request": { "name": "Evaluate Reassignment Configuration", @@ -199620,7 +199620,7 @@ }, "response": [ { - "id": "c01caef8-3554-4d93-a9df-18a21782baff", + "id": "fa90947c-5634-4f2f-9c0d-60c1cd1fb4d1", "name": "Evaluate response when no Reassignment Configuration is found", "originalRequest": { "url": { @@ -199676,7 +199676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e508e4f-3db4-4717-9dce-fc8618e39840", + "id": "411899a8-8bb1-483e-b4a2-121a5b1d161a", "name": "Evaluate response when a long Reassignment trail is found", "originalRequest": { "url": { @@ -199732,7 +199732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1683c42-5366-411f-947b-4bff97048c9c", + "id": "1372eb10-62a2-4afc-8fb4-38fde7117c92", "name": "Evaluate response when a self-review is found and manager or org admin escalation is applied", "originalRequest": { "url": { @@ -199788,7 +199788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb979639-47c2-47e0-a782-a0b63c06cdd0", + "id": "24fe2d32-6b92-4ac6-931f-3474446755eb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -199844,7 +199844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0df41df6-3737-4741-affa-d609a64b7a29", + "id": "6cf5aa34-a95c-4df8-8380-ac555b38006e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -199900,7 +199900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16b0e268-589c-4aec-b431-b04bd0275744", + "id": "13f6022e-2713-4d73-8461-115455009c82", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -199956,7 +199956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f05dbaac-b8cd-4e0d-b048-b39d6761d303", + "id": "2a9dbe45-4a79-461b-8265-5e1f720ab5ff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -200012,7 +200012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "beba0b3f-13bf-4293-a70a-3fae7e9c0efb", + "id": "f7ce88a2-3f24-47a8-94b6-6451226ae3ea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -200074,7 +200074,7 @@ } }, { - "id": "a94a7f79-2e41-4afa-897f-88183de81eb9", + "id": "8c5a030e-6938-4e34-b996-f4913ae00bed", "name": "Get Tenant-wide Reassignment Configuration settings", "request": { "name": "Get Tenant-wide Reassignment Configuration settings", @@ -200104,7 +200104,7 @@ }, "response": [ { - "id": "7d5f7c79-6f97-42f5-bfa7-07a8bd73706c", + "id": "5a5c07e7-be84-4723-b647-5def6e8b5f61", "name": "Tenant-wide Reassignment Configuration settings", "originalRequest": { "url": { @@ -200148,7 +200148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5542214e-bedd-4d6f-88af-3643c98a7a04", + "id": "ce7fe8f1-7663-475f-bdef-1b385f39c62d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -200192,7 +200192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dadd0ca-9e2a-4c7d-ad65-ce8106ed91e1", + "id": "0fca5d7c-6354-416b-ba49-db783fffd77f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -200236,7 +200236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8863ad5e-ff7d-42ca-a36b-7bdb27a1e335", + "id": "97327e15-3f82-4f92-864b-fb6e8c59a3b2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -200280,7 +200280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77321097-6e29-4dba-b196-fab0ae958149", + "id": "429d81e3-5b7f-43cf-a882-fb28739c2bdf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -200324,7 +200324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "426d7c01-9ce2-462e-bf7f-a0fdb60d8129", + "id": "9df6f065-486b-4090-ae32-f02c1d41a958", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -200368,7 +200368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00ef534f-6eb3-4f37-8672-6f0ff94a5099", + "id": "e7f681f5-1613-4e06-9182-9ee31fd2baae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -200418,7 +200418,7 @@ } }, { - "id": "443a4a49-e826-4d8f-8079-e9219fb0dc40", + "id": "cc24a791-5993-4ba5-bde2-2501de9b5e58", "name": "Update Tenant-wide Reassignment Configuration settings", "request": { "name": "Update Tenant-wide Reassignment Configuration settings", @@ -200461,7 +200461,7 @@ }, "response": [ { - "id": "200c8d2c-70ea-4468-9ecf-758fe53dbd2f", + "id": "484cb43d-9d5d-4aec-9a7d-dc0c70c1242a", "name": "Tenant-wide Reassignment Configuration settings", "originalRequest": { "url": { @@ -200518,7 +200518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d13bf96-9f6b-4197-a373-3b7aea9cc380", + "id": "e7e4f943-2019-4dad-bd98-c86f33770d6f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -200575,7 +200575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1d8e36e-b54d-4094-98cf-6b276c455eb8", + "id": "d37ac031-be65-489b-b6df-efc8b8daba83", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -200632,7 +200632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "074dc00a-0d53-4e40-92df-03176555b18b", + "id": "48fa3cbb-9868-4aac-b81d-188ae9ff61fa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -200689,7 +200689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "deefe28b-2350-4372-b367-9232e088cd93", + "id": "f37c0ab8-01d2-4b32-be15-2e25a97c12c7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -200746,7 +200746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42070654-dc59-4fd2-8938-a488dbf7c2e9", + "id": "1d0aa623-437f-40e7-933b-7f4c0eeb789b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -200815,7 +200815,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": "60010f88-a2e5-47c4-b362-46a5b3bf89fb", + "id": "00da9442-9072-4afb-a0d0-87c51911a7af", "name": "Create Workflow", "request": { "name": "Create Workflow", @@ -200857,7 +200857,7 @@ }, "response": [ { - "id": "5ff0d073-3f26-47db-87d1-126c67869767", + "id": "9ce575ab-95d5-4b32-af85-296c80f1de7b", "name": "Event Trigger", "originalRequest": { "url": { @@ -200913,7 +200913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a27814a4-06c6-4712-84db-0c7e6aae41b3", + "id": "14c6c27a-40bd-4e00-b691-16357be09fd3", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -200969,7 +200969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "067324ca-eeca-4ec9-8fba-732f3cab4d63", + "id": "fb51cdc0-9921-4649-88fc-f463ca996969", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -201025,7 +201025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b92eb1b3-47e4-43dd-93e8-f2c7134ed19b", + "id": "63f07d52-8465-482f-8044-d82868a99ffb", "name": "Event Trigger", "originalRequest": { "url": { @@ -201081,7 +201081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51705aa0-9f1d-413f-b67b-ab19957f1347", + "id": "74c887ab-4a99-4ef5-aa7b-01a7d85dbc65", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -201137,7 +201137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89f86c85-eeca-44de-a78e-dd023c2e2de7", + "id": "3325106d-2a62-49f0-8d33-d8aab516d8c9", "name": "Event Trigger", "originalRequest": { "url": { @@ -201193,7 +201193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49bfa2ab-755f-4439-b0d4-6f6be22521c1", + "id": "58c7f4cc-5f21-47f1-bdc4-fcecf4ec4733", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -201255,7 +201255,7 @@ } }, { - "id": "c8cd9e45-f231-4766-b0ba-ff60e561cc58", + "id": "0cd48a30-95b9-48eb-8220-221ba0061f7b", "name": "List Workflows", "request": { "name": "List Workflows", @@ -201284,7 +201284,7 @@ }, "response": [ { - "id": "c1cb5c21-6eaa-4ab2-806e-e4b0d81c1b53", + "id": "9f418e52-7917-4d0c-9a4a-50f35dcf134b", "name": "List of workflows", "originalRequest": { "url": { @@ -201327,7 +201327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45d82b9b-19aa-4e2b-ae76-22d89693db1a", + "id": "ea58fb72-67a4-4b3c-aac1-091b58fb8bf2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -201370,7 +201370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "689e5997-2b67-4259-a583-34e300ba2a41", + "id": "8ef8b1ba-8088-424d-af5b-2815a6dc32c7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -201413,7 +201413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7800dfae-645f-4db8-9257-0f6ef6b97fe0", + "id": "8852571a-a4e7-4a7e-a750-50d0a32024e3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -201456,7 +201456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e571dab-42ea-423b-bc52-2dadb6aeb9ac", + "id": "91f85549-5af0-4794-afba-bdf4034b1b66", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -201499,7 +201499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04faf94c-9231-4fe0-a852-b4f94eb2bb71", + "id": "10f50060-a8b2-4778-9c15-095ce7e3d196", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -201548,7 +201548,7 @@ } }, { - "id": "2766b859-4b98-4043-ade2-332c1810ae8d", + "id": "92f12a3f-1247-4965-b204-5a400bf71a70", "name": "Get Workflow By Id", "request": { "name": "Get Workflow By Id", @@ -201589,7 +201589,7 @@ }, "response": [ { - "id": "0a0232ab-2cdf-4342-83e5-d3362fdd6127", + "id": "1f7256cd-e394-499f-a871-71213dbb388b", "name": "The workflow object", "originalRequest": { "url": { @@ -201633,7 +201633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb3495b4-343b-4a36-96f9-f59cd84d7ae6", + "id": "aeb456cb-a0fe-49df-84ba-ac49cac6cb26", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -201677,7 +201677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82c26c58-2656-40e6-81f0-15f53016b21d", + "id": "fd89bd15-fc6d-4fd1-ba67-400ed503105b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -201721,7 +201721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "733bcc39-dfb3-49aa-b879-c8147e63b137", + "id": "45d7917f-ad4e-42b7-b9e3-d72b4533a2e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -201765,7 +201765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fc96c32-622f-4e8a-b169-5ff29ca10976", + "id": "abc65ebf-8359-4b05-b0a4-62f6d32bc8a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -201809,7 +201809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88093131-7bb6-43ce-93cf-e8c514a37c3f", + "id": "371fc540-227b-452c-87e6-de49605b0ba7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -201859,7 +201859,7 @@ } }, { - "id": "ba4a7cfd-00a3-484d-ac80-c8d4783a2f5d", + "id": "255c9afa-c29f-48b0-9fa1-ad992e8bc3ca", "name": "Update Workflow", "request": { "name": "Update Workflow", @@ -201913,7 +201913,7 @@ }, "response": [ { - "id": "168e66ef-2ca5-47c7-a8ae-02b0363f7461", + "id": "8c0de048-99d3-48a1-99e8-dc60da7abba6", "name": "The Workflow object", "originalRequest": { "url": { @@ -201970,7 +201970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20ba372d-1bd6-4597-bc15-03fdd3e86f1f", + "id": "cf72cb92-7383-41f6-98e1-73fad418aa2b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -202027,7 +202027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4e7c793-d8d4-4574-aeac-a1ea156d75f3", + "id": "dd682262-3188-4fd1-bae9-62fdbc4d6a7d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -202084,7 +202084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16fa4160-b344-4768-811a-38d2fa20ad7f", + "id": "63448ada-2c20-491d-9ed0-caf1e6cf1f38", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -202141,7 +202141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "109ef7ed-da82-43b3-8534-39710e9838a0", + "id": "57f4c799-2c8b-4c59-b12d-9ce9204eae4f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -202198,7 +202198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5a3ab8a-d074-4ab4-b601-dff25adbff54", + "id": "2064c516-810f-47db-a53f-3ced5815e233", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -202261,7 +202261,7 @@ } }, { - "id": "9523ec51-1fae-4678-92fb-5ae1d1d3d34d", + "id": "04d7d968-e0e7-4de8-80c7-d47c6561a640", "name": "Patch Workflow", "request": { "name": "Patch Workflow", @@ -202315,7 +202315,7 @@ }, "response": [ { - "id": "e0301220-fe1c-40cc-b824-be5923044274", + "id": "7d8cf1e5-e952-4f61-a86d-0b6f9526df50", "name": "The Workflow object", "originalRequest": { "url": { @@ -202372,7 +202372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ace248d9-afb3-4beb-8067-1984bf7b7d4c", + "id": "7a4e7601-55f5-4aed-a032-288b05378d4a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -202429,7 +202429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c761d7c-dd95-4866-acea-aac015c2c3da", + "id": "dcf7ae01-ebc5-45be-b1bf-d7449acdfaef", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -202486,7 +202486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "105376ff-12e4-4598-83e2-74f322edddef", + "id": "d3b8b556-4eda-46bf-ad2b-f4f49b815fbd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -202543,7 +202543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1163566e-77df-4e14-adf7-2b7dceaf75ef", + "id": "27e3074a-5365-4055-a480-96c2ac62a21b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -202600,7 +202600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4b87149-6ce5-4bf1-8c5e-2405920859c3", + "id": "76031ab8-de39-4409-94f9-058fdbd89b29", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -202663,7 +202663,7 @@ } }, { - "id": "89f48170-8172-48cf-8845-6c20f733993f", + "id": "84054c76-dd46-450a-8522-fd361118103a", "name": "Delete Workflow By Id", "request": { "name": "Delete Workflow By Id", @@ -202704,7 +202704,7 @@ }, "response": [ { - "id": "7699dbfb-4eeb-4982-a80f-a7cf2b1c62d0", + "id": "ae348dcb-f8bc-4284-874c-ea44a03751f4", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -202738,7 +202738,7 @@ "_postman_previewlanguage": "text" }, { - "id": "48cfe9b9-a7e9-4445-bb44-998fb0fbe8ef", + "id": "a2239019-b4b1-47a6-b533-9a1088837c61", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -202782,7 +202782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ca4e072-c312-4425-a708-54b65a6c2547", + "id": "48c039be-50de-45ef-a4fa-5348bb6de272", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -202826,7 +202826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0ae4023-d5e6-48c6-8750-8cfe94c8af2c", + "id": "5d512df5-fccc-4254-a20f-1e909ac1732a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -202870,7 +202870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "886eeb47-38d7-4bcc-9b91-0bc775565752", + "id": "9b847cf5-c50f-4686-ad95-240430ccad0f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -202914,7 +202914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ac1ff28-0b34-4457-930c-f18570ff6eb3", + "id": "adc37b38-95d7-4cbf-8941-ffd064abcbfe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -202964,7 +202964,7 @@ } }, { - "id": "556cb6f4-c02a-4993-802c-10e47998bcd3", + "id": "2a7da021-c67a-441d-b018-7d9e72a8d25e", "name": "Test Workflow By Id", "request": { "name": "Test Workflow By Id", @@ -203019,7 +203019,7 @@ }, "response": [ { - "id": "367c36e8-eb88-4e54-a30e-91393af29b61", + "id": "519b12d9-18f6-479b-9851-0b04f56526df", "name": "The Workflow object", "originalRequest": { "url": { @@ -203077,7 +203077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77b71cec-be2c-49c8-9795-6da6e937f5df", + "id": "464eb313-95a3-4cf1-80c5-cb1d2c3f409b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -203135,7 +203135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94a9a02f-c4f5-4a82-9cfd-37c275bc6160", + "id": "df64b478-49ed-4c8b-80bd-b78916d658f5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -203193,7 +203193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15f12f76-2c0c-4712-9bde-ccf7085788b4", + "id": "3d0a1bfd-e7ab-45e0-94a5-8ad6478f3e26", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -203251,7 +203251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae738bcb-05cf-4f9c-b424-4d5e0bf146e7", + "id": "10306c22-25a3-4d7b-acfb-aa7118fb9a3a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -203309,7 +203309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cef33ef-752f-405d-8121-5972583c69b1", + "id": "2c578e56-3a3d-46f4-8bd4-1760307e87eb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -203373,7 +203373,7 @@ } }, { - "id": "9c4641fe-0ae2-4609-b5ac-7566b423fc74", + "id": "3822a991-6c5e-4dcb-b28d-95eec4a3766e", "name": "List Workflow Executions", "request": { "name": "List Workflow Executions", @@ -203452,7 +203452,7 @@ }, "response": [ { - "id": "704e11d6-4e07-4f5a-8ae2-79865f5e6042", + "id": "a26508ee-e304-45e3-bd57-f1cba7b2fd20", "name": "List of workflow executions for the given workflow", "originalRequest": { "url": { @@ -203534,7 +203534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71aec984-10b3-4327-961d-666c0a3a6417", + "id": "b28ebb75-7c0c-4b08-9af2-f8fa6d9d1241", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -203616,7 +203616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21049e63-54e3-472b-9b7e-0db71e6d59f9", + "id": "43cf8bd0-0429-4eaa-8445-cde84e6f55b1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -203698,7 +203698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66d33e9a-d759-44c3-9f81-d83ff0483d9e", + "id": "7365a7e8-78fa-470d-bea9-688f7b94a9b2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -203780,7 +203780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8b320f3-6d32-4590-b2a1-6bfad2cffc05", + "id": "170c4274-a59b-4007-ae61-7b42b549fcc7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -203862,7 +203862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45228b4c-7cd4-4ac1-9e7c-2d278ebdf4ec", + "id": "562e4c52-4960-464d-a0da-bd3d4c4da258", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -203944,7 +203944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db475b50-fc66-4459-841f-6b8ce6fc866c", + "id": "719110aa-09b7-4d7c-8401-142a0e46f7ce", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -204032,7 +204032,7 @@ } }, { - "id": "79e08caf-8125-49a7-a2e1-97e5753724b7", + "id": "f9d16cfb-3dfe-4591-9739-d23262883104", "name": "Get a Workflow Execution", "request": { "name": "Get a Workflow Execution", @@ -204073,7 +204073,7 @@ }, "response": [ { - "id": "8060590c-580b-42f7-b0af-46ff09f879fc", + "id": "3675b4a0-c600-43e8-b038-74bb2d6a8b55", "name": "The workflow execution", "originalRequest": { "url": { @@ -204117,7 +204117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6e5d8e4-78ea-45fa-b7d6-b8d936ad0f15", + "id": "0b76d3b8-f0f4-44ba-a386-a28facde7042", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -204161,7 +204161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb59c883-2dff-470a-8580-3962cbe36425", + "id": "8d4488a8-1661-466f-8016-93761f5347d8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -204205,7 +204205,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e3e28d9-2c53-431a-abad-ceeec40b4243", + "id": "f54f0f1b-b209-4a4a-b6cf-9b3d60177d66", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -204249,7 +204249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87dbe3ac-b4d9-42fb-8175-1fa0ca59d4f0", + "id": "5cef14c1-e299-4fd7-95fe-e175f91e874d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -204293,7 +204293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbd0fe22-8051-4040-980f-cbf41ae6cdd1", + "id": "7b4410f5-8f22-4c45-b0ff-3f83785bb508", "name": "Too Many Requests - Returned in response to too many requests in 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": "7c977dd1-6e7c-4acb-8f80-ec340cee17bb", + "id": "2befd4b7-828d-4c17-9e50-e72af419febb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -204387,7 +204387,7 @@ } }, { - "id": "ec932dd3-50af-41f3-bb12-0c299e3227d9", + "id": "9110cba4-4f56-424a-a73b-4afb6255f69c", "name": "Get Workflow Execution History", "request": { "name": "Get Workflow Execution History", @@ -204429,7 +204429,7 @@ }, "response": [ { - "id": "ee40eabc-c51c-4566-8094-b96c94e82fae", + "id": "f8f2cdfa-6ced-470e-8c5d-01e3e5dbd377", "name": "List of workflow execution events for the given workflow execution", "originalRequest": { "url": { @@ -204474,7 +204474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6414e893-a341-4a29-888b-9a47c0c254b5", + "id": "61cad30f-438f-4da3-832f-cbf3f230bf52", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -204519,7 +204519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56e82781-6edd-4ab8-a10d-ce6ff129af71", + "id": "0f9928e4-963a-4ce5-a331-0288b39428d0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -204564,7 +204564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "358232de-2b3a-4c70-9ed9-87bc8e330b44", + "id": "a3ea2674-2747-4c66-88ad-e4cdb0588222", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -204609,7 +204609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b720693a-8785-4c8e-9ca8-66f15b3ab117", + "id": "63cf4540-c598-428e-85fd-aa52e055bccc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -204654,7 +204654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76acec77-e7cd-4b52-8f40-16c509a0df57", + "id": "e7fc910c-9143-4935-9e72-7fa5f25d4e82", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -204699,7 +204699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a756f06b-47fd-430e-94ba-030ee47fd5ec", + "id": "3d65eb0e-bfa9-4237-86a6-e2f162c48666", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -204750,7 +204750,7 @@ } }, { - "id": "cc814c91-494f-4632-b14a-bbe768c6fb0a", + "id": "ac89761e-1d44-4292-9799-2faf84236640", "name": "Cancel Workflow Execution by ID", "request": { "name": "Cancel Workflow Execution by ID", @@ -204792,7 +204792,7 @@ }, "response": [ { - "id": "2d4ad9db-ba93-4a76-9970-9f06a5e1c7e8", + "id": "b245ec32-b6cf-4ea1-a4f3-950642ce16db", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -204827,7 +204827,7 @@ "_postman_previewlanguage": "text" }, { - "id": "126a4870-bcfe-4134-83c9-6c153be9d238", + "id": "532f86b7-342a-44d2-8da6-80ffc670c71f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -204872,7 +204872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71f4156c-7722-4577-b623-4b630c69420c", + "id": "d1f34482-11db-4443-ae9f-29e9db728d3d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -204917,7 +204917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38dd2375-2e2a-402f-8f25-f60bd31f8969", + "id": "5d4d273f-c087-4685-b991-b09587ceef1c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -204962,7 +204962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0ade4ea-8484-4d1b-afb4-5dcdbe8f850d", + "id": "5395e985-2c56-45d0-899b-95739f70c38f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -205007,7 +205007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "708dda5a-e454-4a91-bf12-dda38ae903b1", + "id": "0e5328ae-d1fc-4e92-bc48-7f34f1aff4e0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -205052,7 +205052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d124f245-d6d9-4130-ba0d-f1369f8ab8eb", + "id": "33bb5768-6e43-4f4c-a274-b8aa148254af", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -205103,7 +205103,7 @@ } }, { - "id": "4fc261cf-d765-4cab-8c60-23db5f837ea0", + "id": "087dc35e-80dd-462d-911f-1f2aa63a76eb", "name": "List Complete Workflow Library", "request": { "name": "List Complete Workflow Library", @@ -205151,7 +205151,7 @@ }, "response": [ { - "id": "3b77ea3e-5e0f-485c-9db0-47217c39ceca", + "id": "637dc350-d8f1-416a-af93-755000c3aed0", "name": "List of workflow steps", "originalRequest": { "url": { @@ -205213,7 +205213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae3b5291-9dc2-4369-92af-a12469743f79", + "id": "169d5c23-4bdc-473a-8e82-5e72e004de3c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -205275,7 +205275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "688bc3a3-794f-44b6-aa44-f96dfdc02382", + "id": "81753aa0-f2ae-45b8-9b18-99b1b163ee37", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -205337,7 +205337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7fa4519-5b55-448c-96b8-b1e4656d4725", + "id": "0aa65b7d-b0e4-4563-8d52-470d3499cab1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -205399,7 +205399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a86695b2-9f0e-4d34-99bd-d0801a13cbb9", + "id": "bb2c5e32-caa5-4608-b5b6-1b1c8321f450", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -205461,7 +205461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a23cd4bc-8563-4c70-a328-ce036b369468", + "id": "53ccf07b-a5d3-4987-b635-09b276872b0c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -205529,7 +205529,7 @@ } }, { - "id": "2780f637-f0d3-47aa-9337-6f9442b42dd5", + "id": "88539eaf-da42-465a-89a6-822ddcd8fdf5", "name": "List Workflow Library Actions", "request": { "name": "List Workflow Library Actions", @@ -205587,7 +205587,7 @@ }, "response": [ { - "id": "5ac1a54d-9c50-4ff1-a4fe-5a8f62f40d0d", + "id": "8ec6e153-c8d8-4d1e-8917-f9632db28d94", "name": "List of workflow actions", "originalRequest": { "url": { @@ -205659,7 +205659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a63cc799-9c65-4476-ab2c-d2b0c2cbc947", + "id": "a4e016db-cde0-4c6a-804a-c3d46cf1ba75", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -205731,7 +205731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be764a75-e1c9-4889-86f7-7bad96831ca1", + "id": "3acca588-bddb-4308-83d5-320e07141e0d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -205803,7 +205803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5c4298b-1791-4fb7-9835-97ab15731d8b", + "id": "b059d92b-cb04-4b87-a677-46bbaa8047ba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -205875,7 +205875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e923a75a-3066-4fbc-8a19-e0665f5fc815", + "id": "05cdd3e7-c99c-4f54-9fbf-ef6c82eefcb5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -205947,7 +205947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be4912a9-f698-4281-a9eb-ab8a62452c22", + "id": "c08b043e-0b20-492a-80a7-027c7b0a68f4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -206025,7 +206025,7 @@ } }, { - "id": "b42804da-e214-4ef4-9b96-64e50a9dc4d0", + "id": "f3761daa-e26f-41c6-86f0-1a286a12200c", "name": "List Workflow Library Triggers", "request": { "name": "List Workflow Library Triggers", @@ -206083,7 +206083,7 @@ }, "response": [ { - "id": "693119e0-2580-4ad4-8d2d-e2ea870dcbd8", + "id": "3b6ea3e7-ca53-4235-8367-10273d2310b1", "name": "List of workflow triggers", "originalRequest": { "url": { @@ -206155,7 +206155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be6e5319-c4b0-49fd-9179-35784f17a42c", + "id": "70e3789e-d86c-4283-8044-07e9c503207d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -206227,7 +206227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef4448fc-b6d0-4b6a-a137-07fcef5c1045", + "id": "c1934784-f7dd-48f5-adfa-7f47f9e42bd7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -206299,7 +206299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac55c264-ba68-4ac2-958c-0cb6f3afcebe", + "id": "97ce5f60-0706-43e1-a2fa-9458a5ad38d5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -206371,7 +206371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef662185-c2c4-42e0-bf61-8c0c8e8daa34", + "id": "65ddbb87-6a75-49c4-bd58-101730bb8aab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -206443,7 +206443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1db84399-fb93-4d92-91bd-0b628192f986", + "id": "06d7d4cf-972a-4665-b452-3741948ead87", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -206521,7 +206521,7 @@ } }, { - "id": "b215932e-cbe0-4ecc-a734-a0672fdb0189", + "id": "37bd894a-c752-4554-b2c2-9e7b15db6c89", "name": "List Workflow Library Operators", "request": { "name": "List Workflow Library Operators", @@ -206551,7 +206551,7 @@ }, "response": [ { - "id": "0b35b8dd-3cbe-4fa7-8618-8b390d2df964", + "id": "568d928f-e3c0-4446-9c2f-e071fa8bb4c9", "name": "List of workflow operators", "originalRequest": { "url": { @@ -206595,7 +206595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "519c8615-6194-4885-8346-3a325403f73d", + "id": "97d289a7-0de7-4836-825f-9cc68f59f711", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -206639,7 +206639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d420196-4223-48f8-a215-528d4673adf8", + "id": "480b5cff-35fb-47d0-abed-d28986e6f756", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -206683,7 +206683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "950bc48d-99de-4f59-a46f-db14a82756aa", + "id": "2411b502-f91b-4eb0-830c-841be6ae7070", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -206727,7 +206727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb0c66e2-ea04-4a75-adca-5704fce5337e", + "id": "c3c38654-72e3-4a0e-a37e-3b8aec9c5769", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -206771,7 +206771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e40d10fa-475c-4aff-90f1-3bb92f331c4e", + "id": "a43900aa-3950-43c2-93a5-ec3a18334af3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -206821,7 +206821,7 @@ } }, { - "id": "1c8561a0-f8be-4310-8bc4-c562cfdbfd71", + "id": "69fdb224-88dd-42c1-ad5a-7f9a6bbf56a2", "name": "Generate External Trigger OAuth Client", "request": { "name": "Generate External Trigger OAuth Client", @@ -206864,7 +206864,7 @@ }, "response": [ { - "id": "4eb0eee3-d11c-4cef-847c-f3546896c2b4", + "id": "c15f1346-1386-424d-b5a5-1041beee336c", "name": "The OAuth Client object", "originalRequest": { "url": { @@ -206910,7 +206910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4512df0b-d34c-47cc-a58f-33350590763e", + "id": "7208a3bb-fabf-4d87-876b-e562c0a5c714", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -206956,7 +206956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfa828cc-70af-4878-8fd1-06784862c914", + "id": "c61b2f20-d44e-45be-99a3-49484b2d7cd3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -207002,7 +207002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "285b104f-80a7-4680-afbc-f6c60e03feef", + "id": "56906f88-b2cc-429e-993c-677fc424c542", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -207048,7 +207048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d967bb2-ed7b-44bb-9f4c-447c671e98f8", + "id": "d9cd71d8-979c-4e65-9a75-d832cee16b55", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -207094,7 +207094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04df01a4-25b2-4fdf-94f6-e76ed442a83b", + "id": "db1975b5-a62b-45fd-a642-e5d495c3fbfa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -207146,7 +207146,7 @@ } }, { - "id": "ea459a44-a103-4d70-a87b-cd4826b46d87", + "id": "23d23c17-737d-4196-abf1-eaf6fc26891a", "name": "Execute Workflow via External Trigger", "request": { "name": "Execute Workflow via External Trigger", @@ -207202,7 +207202,7 @@ }, "response": [ { - "id": "58735313-e99e-4328-b72d-71b23ab4a2d8", + "id": "be48fa31-282c-4cec-a9dd-5f54594930d0", "name": "The Workflow object", "originalRequest": { "url": { @@ -207261,7 +207261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f9ffabd-e1f7-4e7e-84d3-bf8fa76a72c2", + "id": "bb0b2f7f-7eb8-4c63-a317-0e32a9cc57b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -207320,7 +207320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2476b9f-e680-4cc7-a304-30a518904724", + "id": "dbe299c1-6c24-43c2-91b1-baf5fa5ec6d9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -207379,7 +207379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2406281-0100-4186-8eb2-f45774f1177c", + "id": "0e878d79-3e34-478e-9d04-e5bf6c19ea10", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -207438,7 +207438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4979dd80-2128-48be-894e-138cf536d7bb", + "id": "824b20f4-d44b-41a5-acb0-c1a737850460", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -207497,7 +207497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "295a7fa4-3d2a-4297-8253-5e0fa5dfae4b", + "id": "87599fd3-862f-4e59-b2fb-3e2c7033b1d9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -207562,7 +207562,7 @@ } }, { - "id": "582a5d74-b9be-44f6-bd04-00284837eebc", + "id": "29b1fb8f-4cab-47fc-a5ce-36ed6cfab108", "name": "Test Workflow via External Trigger", "request": { "name": "Test Workflow via External Trigger", @@ -207619,7 +207619,7 @@ }, "response": [ { - "id": "3ade3962-e709-4948-a66e-1896fbac52b6", + "id": "074c9901-7424-4397-ad1b-3d833f8483a7", "name": "Responds with the test input", "originalRequest": { "url": { @@ -207679,7 +207679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce3ddbc5-2ced-4570-a3d4-4c1a7cebfca8", + "id": "29d418d1-b6d8-4b4c-b4d7-174f3061ec5d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -207739,7 +207739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfe47b12-028b-453f-9373-5cf35e5aa1ff", + "id": "874b8efa-cf92-43a0-b2f3-a8c8136671cc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -207799,7 +207799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b14450b7-a8ec-4ae3-a2fc-a256e0c1f532", + "id": "719ec8fd-d7c6-4811-92ea-bcf073c09603", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -207859,7 +207859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c73c926-07bc-4c9b-ba15-c338ff2bbb6b", + "id": "ba6b9185-db2d-4a23-8dbc-fecf5fee9841", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -207919,7 +207919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5f1b8f5-37d9-4a26-9885-1eb43d7fc20a", + "id": "5bc36be5-1156-4ce5-a48d-a949e1ee2846", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -207986,12 +207986,2509 @@ } ] }, + { + "name": "Manual Discover Applications", + "description": "Use this API to manually upload application names to be correlated to an IDN connector.\n", + "item": [ + { + "id": "d97bab7d-1993-4296-a382-6d29be6c3355", + "name": "CSV Upload to discover applications", + "request": { + "name": "CSV Upload to discover applications", + "description": { + "content": "This API allows for the upload of a CSV file containing application data to be manually correlated to potential IDN connector(s).", + "type": "text/plain" + }, + "url": { + "path": [ + "manual-discover-applications" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "key": "Accept", + "value": "multipart/form-data" + } + ], + "method": "POST", + "body": { + "mode": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) ", + "type": "text/plain" + }, + "key": "csvFile", + "value": "incididunt adipisicing consequat", + "type": "text" + } + ] + } + }, + "response": [ + { + "id": "738f64ea-eeb3-4711-8807-dd2991523b8f", + "name": "The CSV has been successfully processed.", + "originalRequest": { + "url": { + "path": [ + "manual-discover-applications" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "key": "Accept", + "value": "multipart/form-data" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) ", + "type": "text/plain" + }, + "key": "csvFile", + "value": "incididunt adipisicing consequat", + "type": "text" + } + ] + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + } + ], + "body": "{\n \"file\": \"application_name,description\\n\\\"Sample App\\\",\\\"This is a sample description for Sample App.\\\"\\n\\\"Another App\\\",\\\"Description for Another App.\\\"\"\n}", + "cookie": [], + "_postman_previewlanguage": "text" + }, + { + "id": "13cf9dee-a0de-4c24-95bb-64cf16d78ba4", + "name": "Bad request - There was an error with the CSV format or validation failed (e.g., `application_name` missing). Error message should be provided in response.\n", + "originalRequest": { + "url": { + "path": [ + "manual-discover-applications" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "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": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) ", + "type": "text/plain" + }, + "key": "csvFile", + "value": "incididunt adipisicing consequat", + "type": "text" + } + ] + } + }, + "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": "2bbb5ad0-a619-4fc9-a069-f724f3d76fb2", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "manual-discover-applications" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "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": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) ", + "type": "text/plain" + }, + "key": "csvFile", + "value": "incididunt adipisicing consequat", + "type": "text" + } + ] + } + }, + "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": "47a62894-81e3-4de5-a91d-7ba5b97dad1d", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "manual-discover-applications" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "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": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) ", + "type": "text/plain" + }, + "key": "csvFile", + "value": "incididunt adipisicing consequat", + "type": "text" + } + ] + } + }, + "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": "c352846b-696e-448a-af93-ff6e03e278f9", + "name": "Too Many Requests - Returned in response to too many requests in 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": [ + "manual-discover-applications" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "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": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) ", + "type": "text/plain" + }, + "key": "csvFile", + "value": "incididunt adipisicing consequat", + "type": "text" + } + ] + } + }, + "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": "9fd594d6-49ca-4a62-bc4e-25b33c25501e", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "manual-discover-applications" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "multipart/form-data" + }, + { + "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": "formdata", + "formdata": [ + { + "description": { + "content": "(Required) ", + "type": "text/plain" + }, + "key": "csvFile", + "value": "incididunt adipisicing consequat", + "type": "text" + } + ] + } + }, + "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 + } + } + ] + }, + { + "name": "Manual Discover Applications Template", + "description": "Use this API to download the CSV template to send to the application discovery service.\n", + "item": [ + { + "id": "37ea8c51-ecff-4d02-a97d-40d229f98fb1", + "name": "CSV template download for discovery", + "request": { + "name": "CSV template download for discovery", + "description": { + "content": "Allows the user to download an example CSV file with two columns `application_name` and `domain`. The CSV file contains a single row with the values 'Example Application' and 'Example Description'.\n", + "type": "text/plain" + }, + "url": { + "path": [ + "manual-discover-applications-template" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "text/csv" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "b4a010ee-69e1-446b-89dd-4245efc66f42", + "name": "A CSV file download was successful.", + "originalRequest": { + "url": { + "path": [ + "manual-discover-applications-template" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "text/csv" + }, + { + "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": "text/csv" + } + ], + "body": "{\n \"application_name\": \"Example Application\",\n \"domain\": \"Example Description\"\n}", + "cookie": [], + "_postman_previewlanguage": "text" + }, + { + "id": "3ca7defd-c46d-49c1-a818-064f023ceed8", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "manual-discover-applications-template" + ], + "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": "36ae3ec1-bd69-41e1-9a67-004f393e52e5", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "manual-discover-applications-template" + ], + "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": "45117417-f8b6-4954-b81d-db8ae9999e63", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "manual-discover-applications-template" + ], + "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": "1a2bc918-2ffa-40b1-b13b-3f2659060ff0", + "name": "Too Many Requests - Returned in response to too many requests in 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": [ + "manual-discover-applications-template" + ], + "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": "3c599c91-fb99-40c8-9f83-26a08c8e5659", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "manual-discover-applications-template" + ], + "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 + } + } + ] + }, + { + "name": "Discovered Applications", + "description": "Use this API to retrieve all the available discovered apps for a given tenant id.\n", + "item": [ + { + "id": "ac3d732c-67c6-416e-a629-99fd538ff50e", + "name": "Retrieve discovered applications for tenant", + "request": { + "name": "Retrieve discovered applications for tenant", + "description": { + "content": "Fetches a list of applications that have been identified within the environment. This includes details such as application names, discovery dates, potential correlated saas_vendors and related suggested connectors.\n", + "type": "text/plain" + }, + "url": { + "path": [ + "discovered-applications" + ], + "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 \n \nFiltering is supported for the following fields and operators:\n\n**name**: *eq, sw, co*\n\n**description**: *eq, sw, co*\n", + "type": "text/plain" + }, + "key": "filter", + "value": "name eq \"Okta\" and description co \"Okta\"" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **name, description, discoveredAt, discoverySource**", + "type": "text/plain" + }, + "key": "sorters", + "value": "name" + } + ], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "6ff58d31-e6c8-4af5-b780-f3ca4d15f93a", + "name": "Successfully retrieved list of discovered applications.", + "originalRequest": { + "url": { + "path": [ + "discovered-applications" + ], + "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 \n \nFiltering is supported for the following fields and operators:\n\n**name**: *eq, sw, co*\n\n**description**: *eq, sw, co*\n", + "type": "text/plain" + }, + "key": "filter", + "value": "name eq \"Okta\" and description co \"Okta\"" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **name, description, discoveredAt, discoverySource**", + "type": "text/plain" + }, + "key": "sorters", + "value": "name" + } + ], + "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 {\n \"name\": \"ExampleApp\",\n \"discoverySource\": \"CSV\",\n \"discoveredVendor\": \"ExampleVendor\",\n \"description\": \"An application for managing examples.\",\n \"recommendedConnectors\": [\n \"ConnectorA\",\n \"ConnectorB\"\n ],\n \"discoveredTimestamp\": \"2023-01-01T12:00:00Z\"\n }\n ],\n [\n {\n \"name\": \"ExampleApp\",\n \"discoverySource\": \"CSV\",\n \"discoveredVendor\": \"ExampleVendor\",\n \"description\": \"An application for managing examples.\",\n \"recommendedConnectors\": [\n \"ConnectorA\",\n \"ConnectorB\"\n ],\n \"discoveredTimestamp\": \"2023-01-01T12:00:00Z\"\n }\n ]\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "68f0c263-98ae-4981-9d3f-b82b6db1e98b", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "discovered-applications" + ], + "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 \n \nFiltering is supported for the following fields and operators:\n\n**name**: *eq, sw, co*\n\n**description**: *eq, sw, co*\n", + "type": "text/plain" + }, + "key": "filter", + "value": "name eq \"Okta\" and description co \"Okta\"" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **name, description, discoveredAt, discoverySource**", + "type": "text/plain" + }, + "key": "sorters", + "value": "name" + } + ], + "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": "d7ffe216-37f2-457b-a698-34a886d3f6a7", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "discovered-applications" + ], + "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 \n \nFiltering is supported for the following fields and operators:\n\n**name**: *eq, sw, co*\n\n**description**: *eq, sw, co*\n", + "type": "text/plain" + }, + "key": "filter", + "value": "name eq \"Okta\" and description co \"Okta\"" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **name, description, discoveredAt, discoverySource**", + "type": "text/plain" + }, + "key": "sorters", + "value": "name" + } + ], + "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": "a53cea16-3fd9-41a6-b552-ce3842d97499", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "discovered-applications" + ], + "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 \n \nFiltering is supported for the following fields and operators:\n\n**name**: *eq, sw, co*\n\n**description**: *eq, sw, co*\n", + "type": "text/plain" + }, + "key": "filter", + "value": "name eq \"Okta\" and description co \"Okta\"" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **name, description, discoveredAt, discoverySource**", + "type": "text/plain" + }, + "key": "sorters", + "value": "name" + } + ], + "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": "b4413ff6-6476-48a4-8899-aaf8632d7f78", + "name": "Too Many Requests - Returned in response to too many requests in 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": [ + "discovered-applications" + ], + "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 \n \nFiltering is supported for the following fields and operators:\n\n**name**: *eq, sw, co*\n\n**description**: *eq, sw, co*\n", + "type": "text/plain" + }, + "key": "filter", + "value": "name eq \"Okta\" and description co \"Okta\"" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **name, description, discoveredAt, discoverySource**", + "type": "text/plain" + }, + "key": "sorters", + "value": "name" + } + ], + "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": "9aa5ae45-18e3-4714-8509-fca5044bf07d", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "discovered-applications" + ], + "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 \n \nFiltering is supported for the following fields and operators:\n\n**name**: *eq, sw, co*\n\n**description**: *eq, sw, co*\n", + "type": "text/plain" + }, + "key": "filter", + "value": "name eq \"Okta\" and description co \"Okta\"" + }, + { + "disabled": true, + "description": { + "content": "Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)\n\nSorting is supported for the following fields: **name, description, discoveredAt, discoverySource**", + "type": "text/plain" + }, + "key": "sorters", + "value": "name" + } + ], + "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 + } + } + ] + }, + { + "name": "Vendor Connector Mappings", + "description": "Use this API to manage mappings between various SaaS vendors and IdentityNow (IDN) connectors.\n", + "item": [ + { + "id": "f0b1a1c3-1eb4-4f08-842c-b85f18400fb3", + "name": "List vendor connector mappings", + "request": { + "name": "List vendor connector mappings", + "description": { + "content": "Retrieves a list of mappings between SaaS vendors and IDN connectors, detailing the connections established for correlation.\n", + "type": "text/plain" + }, + "url": { + "path": [ + "vendor-connector-mappings" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "GET", + "body": {} + }, + "response": [ + { + "id": "4d2ebad9-d9fd-40c7-ba08-b5005132af0a", + "name": "Successfully retrieved list.", + "originalRequest": { + "url": { + "path": [ + "vendor-connector-mappings" + ], + "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\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"vendor\": \"Example Vendor\",\n \"connector\": \"Example Connector\",\n \"createdAt\": \"2024-03-13T12:56:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"2024-03-14T12:56:19.391294Z\",\n \"Valid\": true\n },\n \"updatedBy\": {\n \"String\": \"user-67891\",\n \"Valid\": true\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\n }\n },\n {\n \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b5\",\n \"vendor\": \"Another Corporation\",\n \"connector\": \"Another Connector\",\n \"createdAt\": \"2024-04-13T11:46:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"updatedBy\": {\n \"String\": \"\",\n \"Valid\": false\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\n }\n }\n]", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "2382164f-a169-4931-9375-d054c380534a", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "vendor-connector-mappings" + ], + "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": "b0b80342-53f8-465c-b610-2e1001de1977", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "vendor-connector-mappings" + ], + "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": "f41ab803-4ff2-49b3-a02a-4407f59c6b05", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "vendor-connector-mappings" + ], + "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": "8eeb5390-8b5d-4975-8e78-7c823d9c47df", + "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", + "originalRequest": { + "url": { + "path": [ + "vendor-connector-mappings" + ], + "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": "Method Not Allowed", + "code": 405, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"errorName\": \"NotSupportedException\",\n \"errorMessage\": \"Cannot consume content type\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "82cd322c-85c0-42b0-a773-a472e7682212", + "name": "Too Many Requests - Returned in response to too many requests in 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": [ + "vendor-connector-mappings" + ], + "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": "939c9d45-5ef0-48b2-b090-caeec523df53", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "vendor-connector-mappings" + ], + "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": "d274b3a9-f2a5-4471-91cc-8f95332d728f", + "name": "Create a vendor connector mapping", + "request": { + "name": "Create a vendor connector mapping", + "description": { + "content": "Creates a new mapping between a SaaS vendor and an IDN connector to establish correlation paths.\n", + "type": "text/plain" + }, + "url": { + "path": [ + "vendor-connector-mappings" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"vendor\": \"Example vendor\",\n \"connector\": \"Example connector\",\n \"createdAt\": \"2024-03-13T12:56:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"2024-03-14T12:56:19.391294Z\",\n \"Valid\": true\n },\n \"updatedBy\": {\n \"String\": \"user-67891\",\n \"Valid\": true\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "response": [ + { + "id": "72095bd3-72b9-4803-8f03-85fd3187af48", + "name": "Successfully created a new vendor connector mapping.", + "originalRequest": { + "url": { + "path": [ + "vendor-connector-mappings" + ], + "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 \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"vendor\": \"Example vendor\",\n \"connector\": \"Example connector\",\n \"createdAt\": \"2024-03-13T12:56:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"2024-03-14T12:56:19.391294Z\",\n \"Valid\": true\n },\n \"updatedBy\": {\n \"String\": \"user-67891\",\n \"Valid\": true\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"vendor\": \"Example vendor\",\n \"connector\": \"Example connector\",\n \"createdAt\": \"2024-03-13T12:56:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"2024-03-14T12:56:19.391294Z\",\n \"Valid\": true\n },\n \"updatedBy\": {\n \"String\": \"user-67891\",\n \"Valid\": true\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\n }\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "9605eade-cd25-4a95-a1b8-92b9e6b82ce8", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "vendor-connector-mappings" + ], + "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 \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"vendor\": \"Example vendor\",\n \"connector\": \"Example connector\",\n \"createdAt\": \"2024-03-13T12:56:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"2024-03-14T12:56:19.391294Z\",\n \"Valid\": true\n },\n \"updatedBy\": {\n \"String\": \"user-67891\",\n \"Valid\": true\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\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": "72d09ef5-2acf-4bf2-b2dd-bf0b790eee60", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "vendor-connector-mappings" + ], + "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 \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"vendor\": \"Example vendor\",\n \"connector\": \"Example connector\",\n \"createdAt\": \"2024-03-13T12:56:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"2024-03-14T12:56:19.391294Z\",\n \"Valid\": true\n },\n \"updatedBy\": {\n \"String\": \"user-67891\",\n \"Valid\": true\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\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": "8fda1d07-d844-4c04-a93d-33da2c5965e5", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "vendor-connector-mappings" + ], + "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 \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"vendor\": \"Example vendor\",\n \"connector\": \"Example connector\",\n \"createdAt\": \"2024-03-13T12:56:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"2024-03-14T12:56:19.391294Z\",\n \"Valid\": true\n },\n \"updatedBy\": {\n \"String\": \"user-67891\",\n \"Valid\": true\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\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": "4873b583-de5a-4a80-8b1d-2ef5480d0393", + "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", + "originalRequest": { + "url": { + "path": [ + "vendor-connector-mappings" + ], + "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 \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"vendor\": \"Example vendor\",\n \"connector\": \"Example connector\",\n \"createdAt\": \"2024-03-13T12:56:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"2024-03-14T12:56:19.391294Z\",\n \"Valid\": true\n },\n \"updatedBy\": {\n \"String\": \"user-67891\",\n \"Valid\": true\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "Method Not Allowed", + "code": 405, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"errorName\": \"NotSupportedException\",\n \"errorMessage\": \"Cannot consume content type\",\n \"trackingId\": \"e7eab60924f64aa284175b9fa3309599\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "201a0c4c-07a4-4940-9b77-f651fcb8a445", + "name": "Too Many Requests - Returned in response to too many requests in 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": [ + "vendor-connector-mappings" + ], + "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 \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"vendor\": \"Example vendor\",\n \"connector\": \"Example connector\",\n \"createdAt\": \"2024-03-13T12:56:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"2024-03-14T12:56:19.391294Z\",\n \"Valid\": true\n },\n \"updatedBy\": {\n \"String\": \"user-67891\",\n \"Valid\": true\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\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": "a6c86c79-aeca-499e-b4d2-cfefec095056", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "vendor-connector-mappings" + ], + "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 \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"vendor\": \"Example vendor\",\n \"connector\": \"Example connector\",\n \"createdAt\": \"2024-03-13T12:56:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"2024-03-14T12:56:19.391294Z\",\n \"Valid\": true\n },\n \"updatedBy\": {\n \"String\": \"user-67891\",\n \"Valid\": true\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\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": "f0a28abb-0b5e-477c-bbc0-18536785afa8", + "name": "Delete a vendor connector mapping", + "request": { + "name": "Delete a vendor connector mapping", + "description": { + "content": "Soft deletes a mapping between a SaaS vendor and an IDN connector, removing the established correlation.\n", + "type": "text/plain" + }, + "url": { + "path": [ + "vendor-connector-mappings" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "DELETE", + "body": { + "mode": "raw", + "raw": "{\n \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"vendor\": \"Example vendor\",\n \"connector\": \"Example connector\",\n \"createdAt\": \"2024-03-13T12:56:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"2024-03-14T12:56:19.391294Z\",\n \"Valid\": true\n },\n \"updatedBy\": {\n \"String\": \"user-67891\",\n \"Valid\": true\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "response": [ + { + "id": "af877027-82f8-4441-b21e-b45c80ffa6cf", + "name": "Successfully deleted the specified vendor connector mapping.", + "originalRequest": { + "url": { + "path": [ + "vendor-connector-mappings" + ], + "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": "DELETE", + "body": { + "mode": "raw", + "raw": "{\n \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"vendor\": \"Example vendor\",\n \"connector\": \"Example connector\",\n \"createdAt\": \"2024-03-13T12:56:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"2024-03-14T12:56:19.391294Z\",\n \"Valid\": true\n },\n \"updatedBy\": {\n \"String\": \"user-67891\",\n \"Valid\": true\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"count\": 1\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "aa51e413-58de-4457-9e21-8b7d93ec933a", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "vendor-connector-mappings" + ], + "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": "DELETE", + "body": { + "mode": "raw", + "raw": "{\n \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"vendor\": \"Example vendor\",\n \"connector\": \"Example connector\",\n \"createdAt\": \"2024-03-13T12:56:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"2024-03-14T12:56:19.391294Z\",\n \"Valid\": true\n },\n \"updatedBy\": {\n \"String\": \"user-67891\",\n \"Valid\": true\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\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": "c6f565ec-e01e-4a07-a547-4896b1ea2b28", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "vendor-connector-mappings" + ], + "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": "DELETE", + "body": { + "mode": "raw", + "raw": "{\n \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"vendor\": \"Example vendor\",\n \"connector\": \"Example connector\",\n \"createdAt\": \"2024-03-13T12:56:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"2024-03-14T12:56:19.391294Z\",\n \"Valid\": true\n },\n \"updatedBy\": {\n \"String\": \"user-67891\",\n \"Valid\": true\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\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": "0cbe22fa-a7ac-4b71-8c03-4fc70f8c1328", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "vendor-connector-mappings" + ], + "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": "DELETE", + "body": { + "mode": "raw", + "raw": "{\n \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"vendor\": \"Example vendor\",\n \"connector\": \"Example connector\",\n \"createdAt\": \"2024-03-13T12:56:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"2024-03-14T12:56:19.391294Z\",\n \"Valid\": true\n },\n \"updatedBy\": {\n \"String\": \"user-67891\",\n \"Valid\": true\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\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": "fd6f2ab6-3e48-4824-b424-235dec31cbba", + "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "originalRequest": { + "url": { + "path": [ + "vendor-connector-mappings" + ], + "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": "DELETE", + "body": { + "mode": "raw", + "raw": "{\n \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"vendor\": \"Example vendor\",\n \"connector\": \"Example connector\",\n \"createdAt\": \"2024-03-13T12:56:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"2024-03-14T12:56:19.391294Z\",\n \"Valid\": true\n },\n \"updatedBy\": {\n \"String\": \"user-67891\",\n \"Valid\": true\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\n }\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "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": "0fe4a34d-9746-48d4-af1d-35fe5b7efa27", + "name": "Too Many Requests - Returned in response to too many requests in 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": [ + "vendor-connector-mappings" + ], + "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": "DELETE", + "body": { + "mode": "raw", + "raw": "{\n \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"vendor\": \"Example vendor\",\n \"connector\": \"Example connector\",\n \"createdAt\": \"2024-03-13T12:56:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"2024-03-14T12:56:19.391294Z\",\n \"Valid\": true\n },\n \"updatedBy\": {\n \"String\": \"user-67891\",\n \"Valid\": true\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\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": "5e6d1f22-8d69-44c3-a9f7-63037a7b7de2", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "vendor-connector-mappings" + ], + "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": "DELETE", + "body": { + "mode": "raw", + "raw": "{\n \"id\": \"78733556-9ea3-4f59-bf69-e5cd92b011b4\",\n \"vendor\": \"Example vendor\",\n \"connector\": \"Example connector\",\n \"createdAt\": \"2024-03-13T12:56:19.391294Z\",\n \"createdBy\": \"admin\",\n \"updatedAt\": {\n \"Time\": \"2024-03-14T12:56:19.391294Z\",\n \"Valid\": true\n },\n \"updatedBy\": {\n \"String\": \"user-67891\",\n \"Valid\": true\n },\n \"deletedAt\": {\n \"Time\": \"0001-01-01T00:00:00Z\",\n \"Valid\": false\n },\n \"deletedBy\": {\n \"String\": \"\",\n \"Valid\": false\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 + } + } + ] + }, { "name": "Icons", "description": "Use this API to implement functionality related to object icons (application icons for example). \nWith this functionality in place, administrators can set or remove an icon for specific object type for use throughout IdentityNow.\n", "item": [ { - "id": "44852619-9139-4656-b0da-7e64fd767fa9", + "id": "1041690a-fab7-44a2-82f6-0887fc28253e", "name": "Update an icon", "request": { "name": "Update an icon", @@ -208060,7 +210557,7 @@ }, "response": [ { - "id": "7af09153-7568-4c24-8cb3-910c0482cfe9", + "id": "7aa999e8-09fc-4061-9eff-78d83c2440c0", "name": "Icon updated", "originalRequest": { "url": { @@ -208122,7 +210619,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c73e159-c48e-4ed1-9ac2-74e3591a3486", + "id": "06dd4657-1e5f-4378-a1db-4a7a870083a0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -208184,7 +210681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ca16592-58a4-4fb9-b870-3bddba421902", + "id": "d1448adb-5026-4712-915f-8426a80bf905", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -208246,7 +210743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad686039-fc5f-45d2-a01c-939cc15fe75e", + "id": "859f4004-282f-4d51-a246-491cf56b45b4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -208308,7 +210805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59f9fdda-1952-4ce4-bd93-b5350a28352a", + "id": "fe85ee46-5db8-4ace-9a09-61e3f299358b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -208370,7 +210867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75eabd80-1fec-4644-a725-51f003423903", + "id": "d4e30b53-4f86-458e-86bb-776f27953503", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -208432,7 +210929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e10f89fa-137a-4aad-83d5-fa0d595ac6e2", + "id": "3de66d08-2002-4322-8f26-ddaa02627cd0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -208500,7 +210997,7 @@ } }, { - "id": "ea7f9845-f3fe-4ba3-8649-e7b7be49ae15", + "id": "3ee4482b-158c-45b3-a13f-9f80e9419ad9", "name": "Delete an icon", "request": { "name": "Delete an icon", @@ -208552,7 +211049,7 @@ }, "response": [ { - "id": "98e31e8e-3527-46f6-bd5e-c57de179a158", + "id": "80bc3c0b-a859-4d39-af6b-29af83b20b79", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -208587,7 +211084,7 @@ "_postman_previewlanguage": "text" }, { - "id": "20e5d83f-eb19-4575-8f7f-02e944c04b55", + "id": "a6546f8d-1e36-4006-95c6-c48138e89b22", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -208632,7 +211129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "600ddbf2-b83f-40b9-ae0b-dcace991d14f", + "id": "b4d400db-8bd1-40d2-a0de-6580d8c51c1b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -208677,7 +211174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e18a866-d857-4ba5-9e10-c6a2a065576c", + "id": "b969af3d-a69a-412c-ba3a-f2931567add3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -208722,7 +211219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97fe3ef7-8058-46b4-abd4-cc462ab9432c", + "id": "07a7e0e8-138f-4853-a4b7-38c779380196", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -208767,7 +211264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "151beb70-df67-4013-9f31-cad7e2527c16", + "id": "8396a21a-c1d6-4063-9b55-e50cda1df100", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -208812,7 +211309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3432e8ae-9990-484b-8dc7-0630982f4fd7", + "id": "4bb97c68-e601-4ee8-9cae-c57ec5eb606d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -208943,7 +211440,7 @@ } ], "info": { - "_postman_id": "97f10142-1420-4464-9b68-90ac17a7ede2", + "_postman_id": "53739bd7-e255-4318-a54b-246cc2910585", "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 b38719e..518a111 100644 --- a/postman/collections/sailpoint-api-nerm.json +++ b/postman/collections/sailpoint-api-nerm.json @@ -5,7 +5,7 @@ "description": "", "item": [ { - "id": "59b08c63-0bf4-4555-9954-bb5e0fc2ed46", + "id": "16b91a2b-fb6c-42d0-9874-80172e8ee0a4", "name": "Create a new user", "request": { "name": "Create a new user", @@ -48,7 +48,7 @@ }, "response": [ { - "id": "688b941a-1e6d-4279-84c9-c75bb0cf4a1f", + "id": "342296d1-b808-49b8-9871-3a260f3f42c1", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -99,12 +99,12 @@ "value": "application/json" } ], - "body": "{\n \"user\": {\n \"id\": \"urn:uuid:bbaeef58-6fed-49bb-c79a-b23b8cfd4038\",\n \"uid\": \"dolore in cupidatat enimvelit nu\",\n \"name\": \"veniam proident\",\n \"email\": \"BQON4XY2@NhSoyzQXnyV.ivo\",\n \"type\": \"NeprofileUser\",\n \"title\": \"laborum anim id magna\",\n \"status\": \"Disabled\",\n \"login\": \"culpa sunt veniam\",\n \"last_login\": \"1957-02-23T04:57:44.143Z\",\n \"cookies_accepted_at\": \"1960-05-23T22:16:48.721Z\",\n \"preferred_language\": \"dolor aliquip est dolor\"\n }\n}", + "body": "{\n \"user\": {\n \"id\": \"urn:uuid:268c6722-59d0-9bda-22f0-4fe58061d751\",\n \"uid\": \"proident dolore laboris pariatur\",\n \"name\": \"proident ut aliquip ex deserunt\",\n \"email\": \"jQCyGC@oqpYdwhjxdM.emjp\",\n \"type\": \"NeprofileUser\",\n \"title\": \"o\",\n \"status\": \"Disabled\",\n \"login\": \"c\",\n \"last_login\": \"1990-10-10T12:40:46.818Z\",\n \"cookies_accepted_at\": \"1944-08-09T10:49:35.866Z\",\n \"preferred_language\": \"irure laborum sed ex\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e05cc105-20a8-4b8d-b870-6f84042bef74", + "id": "32ad0b41-e554-4e69-90a0-c9498ab9b719", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -160,7 +160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11d87767-6a59-42a9-8c51-462d6ea09123", + "id": "a1661644-c232-4241-a3ab-0ccd6cf45b70", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -222,7 +222,7 @@ } }, { - "id": "1b3cb88d-bb53-4452-b934-0c90facbf90a", + "id": "9e5d4158-f9ed-484a-9018-056e1aa4c50c", "name": "Get users", "request": { "name": "Get users", @@ -272,7 +272,7 @@ "type": "text/plain" }, "key": "name", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -281,7 +281,7 @@ "type": "text/plain" }, "key": "login", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -290,7 +290,7 @@ "type": "text/plain" }, "key": "title", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -299,7 +299,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "Inactive" }, { "disabled": false, @@ -308,7 +308,7 @@ "type": "text/plain" }, "key": "email", - "value": "awv1EhahRCRSd4V@abgPaXfaFcbpwPzfphLVITcErzFl.vn" + "value": "7kJkdjKE@G.zzh" }, { "disabled": false, @@ -334,7 +334,7 @@ }, "response": [ { - "id": "fb144aab-e961-482a-b6fa-4e3a6f779826", + "id": "e0e7c9c3-47c7-44e3-b418-35f6b77c5c42", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -379,7 +379,7 @@ "type": "text/plain" }, "key": "name", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -388,7 +388,7 @@ "type": "text/plain" }, "key": "login", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -397,7 +397,7 @@ "type": "text/plain" }, "key": "title", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -406,7 +406,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "Inactive" }, { "disabled": false, @@ -415,7 +415,7 @@ "type": "text/plain" }, "key": "email", - "value": "awv1EhahRCRSd4V@abgPaXfaFcbpwPzfphLVITcErzFl.vn" + "value": "7kJkdjKE@G.zzh" }, { "disabled": false, @@ -454,12 +454,12 @@ "value": "application/json" } ], - "body": "{\n \"users\": [\n {\n \"id\": \"urn:uuid:21a65ebc-4ab5-388d-af66-d78491a3fead\",\n \"uid\": \"ut culpa et sed tempordolor fugi\",\n \"name\": \"ut\",\n \"email\": \"Z3ZpqN@JtqYVKEAEVLHarjXzkyUchXRQNRBbgy.um\",\n \"type\": \"NeprofileUser\",\n \"title\": \"sed amet\",\n \"status\": \"Disabled\",\n \"login\": \"sint dolor elit adipisicing dolor\",\n \"last_login\": \"1963-03-24T20:01:07.482Z\",\n \"cookies_accepted_at\": \"2018-03-17T04:50:14.963Z\",\n \"preferred_language\": \"officia\"\n },\n {\n \"id\": \"urn:uuid:6d20d160-dd50-34cb-e6f2-cbd1c0aa7e93\",\n \"uid\": \"ut esse veniam exqui commodo lab\",\n \"name\": \"dolore labore anim\",\n \"email\": \"WAkB4C31rg2@TVqrPZhuJPHCm.sg\",\n \"type\": \"NeprofileUser\",\n \"title\": \"sit cillum\",\n \"status\": \"Disabled\",\n \"login\": \"irur\",\n \"last_login\": \"1992-12-16T07:20:24.210Z\",\n \"cookies_accepted_at\": \"1989-10-23T21:52:43.126Z\",\n \"preferred_language\": \"dol\"\n }\n ],\n \"_metadata\": {\n \"limit\": 64400390,\n \"offset\": 41184902,\n \"total\": 58747426,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"users\": [\n {\n \"id\": \"5328c52c-6c7b-5820-0430-408d30fca6bd\",\n \"uid\": \"irure ipsum ametet dolor amet nu\",\n \"name\": \"occaecat\",\n \"email\": \"MmmJ351vavWH@DinKUyMYgTXbvfE.ienj\",\n \"type\": \"NeprofileUser\",\n \"title\": \"ut Excepteur ipsum dolor\",\n \"status\": \"Disabled\",\n \"login\": \"deserunt commodo incididunt laboris qui\",\n \"last_login\": \"1965-08-18T09:45:16.663Z\",\n \"cookies_accepted_at\": \"1951-11-10T09:22:57.290Z\",\n \"preferred_language\": \"dolor in\"\n },\n {\n \"id\": \"63ec32e7-5235-0d28-d440-dbba64b55650\",\n \"uid\": \"do anim inaliqua nostrud ipsum d\",\n \"name\": \"deserunt adipisicing commodo nostrud\",\n \"email\": \"AMKl5o6gz5dYsok@ZarHoUlEJCGqKUeHXNxgpMmOcRUjL.ghr\",\n \"type\": \"NeprofileUser\",\n \"title\": \"anim sunt in nostrud\",\n \"status\": \"Disabled\",\n \"login\": \"nisi ma\",\n \"last_login\": \"1948-05-14T18:52:25.174Z\",\n \"cookies_accepted_at\": \"1978-12-09T21:27:05.345Z\",\n \"preferred_language\": \"es\"\n }\n ],\n \"_metadata\": {\n \"limit\": -57419468,\n \"offset\": -34806431,\n \"total\": -12661758,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5d01bb1e-4ac4-498a-a4c8-7a78a9ee2974", + "id": "01685387-7285-45ed-a864-13dba821cdec", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -504,7 +504,7 @@ "type": "text/plain" }, "key": "name", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -513,7 +513,7 @@ "type": "text/plain" }, "key": "login", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -522,7 +522,7 @@ "type": "text/plain" }, "key": "title", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -531,7 +531,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "Inactive" }, { "disabled": false, @@ -540,7 +540,7 @@ "type": "text/plain" }, "key": "email", - "value": "awv1EhahRCRSd4V@abgPaXfaFcbpwPzfphLVITcErzFl.vn" + "value": "7kJkdjKE@G.zzh" }, { "disabled": false, @@ -584,7 +584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0503873f-fdf9-4e31-9e79-4c11ff2e61c8", + "id": "c6a8e1d6-46a6-4d29-bc83-6710f73c55cf", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -629,7 +629,7 @@ "type": "text/plain" }, "key": "name", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -638,7 +638,7 @@ "type": "text/plain" }, "key": "login", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -647,7 +647,7 @@ "type": "text/plain" }, "key": "title", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -656,7 +656,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "Inactive" }, { "disabled": false, @@ -665,7 +665,7 @@ "type": "text/plain" }, "key": "email", - "value": "awv1EhahRCRSd4V@abgPaXfaFcbpwPzfphLVITcErzFl.vn" + "value": "7kJkdjKE@G.zzh" }, { "disabled": false, @@ -715,7 +715,7 @@ } }, { - "id": "0f0ecb91-52e2-485b-a078-89dd8e542511", + "id": "c09178e0-da03-4983-97be-027cecb8c368", "name": "Create multiple new users", "request": { "name": "Create multiple new users", @@ -758,7 +758,7 @@ }, "response": [ { - "id": "814d945b-cdaa-4251-8cb2-ca88cb7d322f", + "id": "d3db74b1-2f55-41c1-b8e8-9568fba8a081", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -809,12 +809,12 @@ "value": "application/json" } ], - "body": "{\n \"users\": [\n {\n \"id\": \"urn:uuid:b7057a72-1e67-374e-26df-c7c5aa38de81\",\n \"uid\": \"ullamco elit aliqua laborum comm\",\n \"name\": \"id proident eu\",\n \"email\": \"EElwg@lsVmnXPVNmNUtNB.mz\",\n \"type\": \"NeprofileUser\",\n \"title\": \"non sunt occaecat\",\n \"status\": \"Active\",\n \"login\": \"eiusmod ea cupidatat elit aute\",\n \"last_login\": \"1999-08-13T10:32:21.481Z\",\n \"cookies_accepted_at\": \"2022-12-10T01:05:06.786Z\",\n \"preferred_language\": \"laboris aliquip magna sit anim\"\n },\n {\n \"id\": \"2f7acacb-ae5a-9d92-48e1-b8a2a14d714a\",\n \"uid\": \"est noninadipisicing dolore sint\",\n \"name\": \"cupidatat pariatur\",\n \"email\": \"KEOxy9@PxVwqLpdSmZkPlWHxGrCqg.mevc\",\n \"type\": \"NeprofileUser\",\n \"title\": \"amet veniam sit commodo sint\",\n \"status\": \"Disabled\",\n \"login\": \"dol\",\n \"last_login\": \"1972-05-27T05:16:46.453Z\",\n \"cookies_accepted_at\": \"1998-03-07T07:54:07.931Z\",\n \"preferred_language\": \"fu\"\n }\n ]\n}", + "body": "{\n \"users\": [\n {\n \"id\": \"5879f96d-bb7a-d22f-3fb4-2c75e82c795c\",\n \"uid\": \"enim officia aliquaest nisicommo\",\n \"name\": \"nisi consectetur aliqua labore\",\n \"email\": \"1mF@UPKPdAfLIPPEFnqcADFoRq.mxd\",\n \"type\": \"NeprofileUser\",\n \"title\": \"ali\",\n \"status\": \"Disabled\",\n \"login\": \"sun\",\n \"last_login\": \"2011-09-30T21:59:53.985Z\",\n \"cookies_accepted_at\": \"2000-03-11T23:47:31.290Z\",\n \"preferred_language\": \"veniam sit nulla\"\n },\n {\n \"id\": \"urn:uuid:8c0eaee5-50a7-b384-8701-25e2cb69dbb2\",\n \"uid\": \"ullamco ad commodosunt Excepteur\",\n \"name\": \"elit sunt veniam minim aliqua\",\n \"email\": \"esmvAQa@leNUeknlTeAsIbqug.byep\",\n \"type\": \"NeprofileUser\",\n \"title\": \"nostrud aute reprehenderit Ut\",\n \"status\": \"Active\",\n \"login\": \"laborum\",\n \"last_login\": \"2006-07-04T18:44:22.420Z\",\n \"cookies_accepted_at\": \"1979-02-24T03:45:56.117Z\",\n \"preferred_language\": \"eiusmod Excepteur pariatur Lorem\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3263aa6b-d1ac-427c-91b3-d2fa4b9e258a", + "id": "c242e99b-ddb2-4f83-9b10-b36b0c3c30ab", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -870,7 +870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b795d8dc-61e3-4092-ae16-090d5db06c08", + "id": "c1e9c135-a0a2-4fe7-97a9-ad8e3f64ebf0", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -932,7 +932,7 @@ } }, { - "id": "57ace05c-9725-4c15-a474-51af6bf6a46e", + "id": "0bfb10ab-77e1-4912-9c39-7cfa51653e3b", "name": "Update multiple users", "request": { "name": "Update multiple users", @@ -975,7 +975,7 @@ }, "response": [ { - "id": "5b4aaf49-b551-4bb6-829c-603a67428993", + "id": "37803432-9274-4ac7-bcd4-bbc5a62bedb5", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1026,12 +1026,12 @@ "value": "application/json" } ], - "body": "{\n \"users\": [\n {\n \"id\": \"urn:uuid:b7057a72-1e67-374e-26df-c7c5aa38de81\",\n \"uid\": \"ullamco elit aliqua laborum comm\",\n \"name\": \"id proident eu\",\n \"email\": \"EElwg@lsVmnXPVNmNUtNB.mz\",\n \"type\": \"NeprofileUser\",\n \"title\": \"non sunt occaecat\",\n \"status\": \"Active\",\n \"login\": \"eiusmod ea cupidatat elit aute\",\n \"last_login\": \"1999-08-13T10:32:21.481Z\",\n \"cookies_accepted_at\": \"2022-12-10T01:05:06.786Z\",\n \"preferred_language\": \"laboris aliquip magna sit anim\"\n },\n {\n \"id\": \"2f7acacb-ae5a-9d92-48e1-b8a2a14d714a\",\n \"uid\": \"est noninadipisicing dolore sint\",\n \"name\": \"cupidatat pariatur\",\n \"email\": \"KEOxy9@PxVwqLpdSmZkPlWHxGrCqg.mevc\",\n \"type\": \"NeprofileUser\",\n \"title\": \"amet veniam sit commodo sint\",\n \"status\": \"Disabled\",\n \"login\": \"dol\",\n \"last_login\": \"1972-05-27T05:16:46.453Z\",\n \"cookies_accepted_at\": \"1998-03-07T07:54:07.931Z\",\n \"preferred_language\": \"fu\"\n }\n ]\n}", + "body": "{\n \"users\": [\n {\n \"id\": \"5879f96d-bb7a-d22f-3fb4-2c75e82c795c\",\n \"uid\": \"enim officia aliquaest nisicommo\",\n \"name\": \"nisi consectetur aliqua labore\",\n \"email\": \"1mF@UPKPdAfLIPPEFnqcADFoRq.mxd\",\n \"type\": \"NeprofileUser\",\n \"title\": \"ali\",\n \"status\": \"Disabled\",\n \"login\": \"sun\",\n \"last_login\": \"2011-09-30T21:59:53.985Z\",\n \"cookies_accepted_at\": \"2000-03-11T23:47:31.290Z\",\n \"preferred_language\": \"veniam sit nulla\"\n },\n {\n \"id\": \"urn:uuid:8c0eaee5-50a7-b384-8701-25e2cb69dbb2\",\n \"uid\": \"ullamco ad commodosunt Excepteur\",\n \"name\": \"elit sunt veniam minim aliqua\",\n \"email\": \"esmvAQa@leNUeknlTeAsIbqug.byep\",\n \"type\": \"NeprofileUser\",\n \"title\": \"nostrud aute reprehenderit Ut\",\n \"status\": \"Active\",\n \"login\": \"laborum\",\n \"last_login\": \"2006-07-04T18:44:22.420Z\",\n \"cookies_accepted_at\": \"1979-02-24T03:45:56.117Z\",\n \"preferred_language\": \"eiusmod Excepteur pariatur Lorem\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fe66953b-eac1-4735-b408-c9c636067f13", + "id": "7ea73459-5526-40a9-bb4e-bd71f1ec4601", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1087,7 +1087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7eccc12-7031-415e-8854-ba2049712faa", + "id": "e1f9e62a-26a4-4fce-b165-7571d0118d24", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1149,7 +1149,7 @@ } }, { - "id": "cfb678cf-adf3-448d-897e-a975eadee333", + "id": "4ebab690-f855-475c-8cb5-73be043d6dae", "name": "Find user by id", "request": { "name": "Find user by id", @@ -1191,7 +1191,7 @@ }, "response": [ { - "id": "1594c739-22dd-4759-af75-1c67e0939644", + "id": "7569eca4-6ea4-4b27-806f-b55f18076d08", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1230,12 +1230,12 @@ "value": "application/json" } ], - "body": "{\n \"user\": {\n \"id\": \"urn:uuid:bbaeef58-6fed-49bb-c79a-b23b8cfd4038\",\n \"uid\": \"dolore in cupidatat enimvelit nu\",\n \"name\": \"veniam proident\",\n \"email\": \"BQON4XY2@NhSoyzQXnyV.ivo\",\n \"type\": \"NeprofileUser\",\n \"title\": \"laborum anim id magna\",\n \"status\": \"Disabled\",\n \"login\": \"culpa sunt veniam\",\n \"last_login\": \"1957-02-23T04:57:44.143Z\",\n \"cookies_accepted_at\": \"1960-05-23T22:16:48.721Z\",\n \"preferred_language\": \"dolor aliquip est dolor\"\n }\n}", + "body": "{\n \"user\": {\n \"id\": \"urn:uuid:268c6722-59d0-9bda-22f0-4fe58061d751\",\n \"uid\": \"proident dolore laboris pariatur\",\n \"name\": \"proident ut aliquip ex deserunt\",\n \"email\": \"jQCyGC@oqpYdwhjxdM.emjp\",\n \"type\": \"NeprofileUser\",\n \"title\": \"o\",\n \"status\": \"Disabled\",\n \"login\": \"c\",\n \"last_login\": \"1990-10-10T12:40:46.818Z\",\n \"cookies_accepted_at\": \"1944-08-09T10:49:35.866Z\",\n \"preferred_language\": \"irure laborum sed ex\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f8030839-8e34-402e-9f24-1317f39861f8", + "id": "436768a3-6da6-46fb-99fd-a7b9e904a0a9", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1279,7 +1279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c70c3af9-beea-403c-94b3-102918c64a64", + "id": "fd5d2969-39fd-4c1d-b273-6cde2833af89", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1329,7 +1329,7 @@ } }, { - "id": "d4897ad6-bf2f-43b3-b800-63f3313c2a0a", + "id": "fd5cb212-6633-4865-b6dc-a96b7929cdbb", "name": "Update a user by id", "request": { "name": "Update a user by id", @@ -1384,7 +1384,7 @@ }, "response": [ { - "id": "6c3df1b2-b4c7-4719-945a-f2f3a9d346f7", + "id": "e88549ca-50d1-4757-a76f-399bf5c805c2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1436,12 +1436,12 @@ "value": "application/json" } ], - "body": "{\n \"user\": {\n \"id\": \"urn:uuid:bbaeef58-6fed-49bb-c79a-b23b8cfd4038\",\n \"uid\": \"dolore in cupidatat enimvelit nu\",\n \"name\": \"veniam proident\",\n \"email\": \"BQON4XY2@NhSoyzQXnyV.ivo\",\n \"type\": \"NeprofileUser\",\n \"title\": \"laborum anim id magna\",\n \"status\": \"Disabled\",\n \"login\": \"culpa sunt veniam\",\n \"last_login\": \"1957-02-23T04:57:44.143Z\",\n \"cookies_accepted_at\": \"1960-05-23T22:16:48.721Z\",\n \"preferred_language\": \"dolor aliquip est dolor\"\n }\n}", + "body": "{\n \"user\": {\n \"id\": \"urn:uuid:268c6722-59d0-9bda-22f0-4fe58061d751\",\n \"uid\": \"proident dolore laboris pariatur\",\n \"name\": \"proident ut aliquip ex deserunt\",\n \"email\": \"jQCyGC@oqpYdwhjxdM.emjp\",\n \"type\": \"NeprofileUser\",\n \"title\": \"o\",\n \"status\": \"Disabled\",\n \"login\": \"c\",\n \"last_login\": \"1990-10-10T12:40:46.818Z\",\n \"cookies_accepted_at\": \"1944-08-09T10:49:35.866Z\",\n \"preferred_language\": \"irure laborum sed ex\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "23dad7c4-5a74-4717-b7ba-88eca6bc34b1", + "id": "e4dcb541-9599-4c7f-81ce-3204b3bd636c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1498,7 +1498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d39c18ed-c238-4afe-8aa3-72f096d3c8f2", + "id": "ea568b0a-261a-4bda-bdc9-9d521d3e0eeb", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1561,7 +1561,7 @@ } }, { - "id": "563cae98-14d8-4e0f-8381-48240f135664", + "id": "cc8f5c9d-4059-420f-a6c4-2ff2d2a0cb0d", "name": "Delete a user", "request": { "name": "Delete a user", @@ -1603,7 +1603,7 @@ }, "response": [ { - "id": "09861304-2d18-4e40-a9b6-0c1df7412d92", + "id": "5eca0ee2-2315-49c7-b929-dd2294ad2e95", "name": "Info about the operation", "originalRequest": { "url": { @@ -1647,7 +1647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da6c2f06-eb28-4664-8f80-83459e5c1a37", + "id": "1e42b4c1-9614-42a3-8e8a-c5d284d58880", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1691,7 +1691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0673949a-1457-4914-a536-a1795d42b7fa", + "id": "0f29ca0e-eb85-4357-9b81-5806b0d8a894", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1741,7 +1741,7 @@ } }, { - "id": "b2821d95-9329-4bde-a3be-31d2de21d68d", + "id": "49ec373a-89af-4c77-87b9-7acd982dd3af", "name": "Retrieves the URL of the user avatar", "request": { "name": "Retrieves the URL of the user avatar", @@ -1784,7 +1784,7 @@ }, "response": [ { - "id": "1038fbea-cff3-46b3-9623-7e98df00ac71", + "id": "86c9351c-a981-41c6-8f64-7cd6f5e1b212", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1824,12 +1824,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"in ipsum laborum cillum\"\n}", + "body": "{\n \"url\": \"ea pariatur\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a21789ad-1695-4ba1-8aea-aecba57f6abb", + "id": "c6e57eac-3767-4770-83cf-bca708359130", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1874,7 +1874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e40549cb-0dcd-4100-bc82-3532ac73a661", + "id": "ff4e536e-eece-412d-a17f-1c0fd9e7dcff", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1925,7 +1925,7 @@ } }, { - "id": "6702b3b4-bbff-493b-aed8-599d7e17fb39", + "id": "f661520c-b4f7-4e30-8e72-d52f3ed55457", "name": "Uploads a new user avatar", "request": { "name": "Uploads a new user avatar", @@ -1976,7 +1976,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut veniam", + "value": "commodo nostrud dolore nu", "type": "text" } ] @@ -1985,7 +1985,7 @@ }, "response": [ { - "id": "9571f52b-3e2e-4281-9c45-b04f54c9505c", + "id": "a366f94c-c0e5-49cd-9d44-2821a1885ecc", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -2028,7 +2028,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut veniam", + "value": "commodo nostrud dolore nu", "type": "text" } ] @@ -2042,12 +2042,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"in ipsum laborum cillum\"\n}", + "body": "{\n \"url\": \"ea pariatur\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "96228ef7-57cf-4e10-92b8-0b8f26b5515e", + "id": "b9feefb4-c668-4512-a9ae-82cb7ca91f88", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2090,7 +2090,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut veniam", + "value": "commodo nostrud dolore nu", "type": "text" } ] @@ -2109,7 +2109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "209d0a7f-347d-4095-bf87-4a339033676d", + "id": "936f8c97-b513-4ee6-92fe-bcd4b677c230", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -2152,7 +2152,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut veniam", + "value": "commodo nostrud dolore nu", "type": "text" } ] @@ -2183,7 +2183,7 @@ "description": "", "item": [ { - "id": "04bc08f6-45f7-4bb7-b0f6-06175933ce1e", + "id": "059a015e-67a9-4e8d-acf0-cd343c946410", "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:36591fc9-391c-16e0-088f-afd6d6e38ce3\",\n \"manager_id\": \"34c0554b-2580-02f8-0e67-a6f7fb2ab476\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f0fcbd63-e83f-3428-600f-2c43a71fe48e\",\n \"manager_id\": \"urn:uuid:fbfdf5cc-a585-72ff-6f81-4bd2ae2246ee\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2226,7 +2226,7 @@ }, "response": [ { - "id": "9b2eb9c9-3906-499d-b1f0-1cef761b74ac", + "id": "7adf9f31-9da0-4d00-bd59-1194bb7e1482", "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:36591fc9-391c-16e0-088f-afd6d6e38ce3\",\n \"manager_id\": \"34c0554b-2580-02f8-0e67-a6f7fb2ab476\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f0fcbd63-e83f-3428-600f-2c43a71fe48e\",\n \"manager_id\": \"urn:uuid:fbfdf5cc-a585-72ff-6f81-4bd2ae2246ee\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2277,12 +2277,12 @@ "value": "application/json" } ], - "body": "{\n \"user_manager\": {\n \"id\": \"6a1c6c55-e126-899c-03d2-5c78608b266b\",\n \"uid\": \"pariaturexercitation eiusmodDuis\",\n \"user_id\": \"89a32e47-d4a4-0ee1-8112-a06e4b79f8c7\",\n \"manager_id\": \"urn:uuid:f4c0c3f8-8f4f-3f05-a87f-74a4c9a8270c\"\n }\n}", + "body": "{\n \"user_manager\": {\n \"id\": \"3d07f9d3-6073-c6b5-92da-51346888c40c\",\n \"uid\": \"amet Duis dolore adipisicing nos\",\n \"user_id\": \"urn:uuid:6825bd24-f310-bec2-6bfa-be3061b5c7b2\",\n \"manager_id\": \"de8b349b-1642-3f92-ab85-8780b5862beb\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "89b857c6-04f0-4a8d-8d5b-ade1e76cdf4d", + "id": "cd528712-eb8e-49f6-b191-64a32086ef6f", "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:36591fc9-391c-16e0-088f-afd6d6e38ce3\",\n \"manager_id\": \"34c0554b-2580-02f8-0e67-a6f7fb2ab476\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f0fcbd63-e83f-3428-600f-2c43a71fe48e\",\n \"manager_id\": \"urn:uuid:fbfdf5cc-a585-72ff-6f81-4bd2ae2246ee\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2338,7 +2338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42899fec-5e01-4be1-9e60-bc5271d879cf", + "id": "fa1a36b3-6749-40a6-b5c5-6e62039f7324", "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:36591fc9-391c-16e0-088f-afd6d6e38ce3\",\n \"manager_id\": \"34c0554b-2580-02f8-0e67-a6f7fb2ab476\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f0fcbd63-e83f-3428-600f-2c43a71fe48e\",\n \"manager_id\": \"urn:uuid:fbfdf5cc-a585-72ff-6f81-4bd2ae2246ee\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2400,7 +2400,7 @@ } }, { - "id": "de426cd2-62e0-40aa-9224-bd2efc581cd5", + "id": "4f2ee6e1-669f-4c0a-a637-3c414992aa4a", "name": "Get user-manager relationships", "request": { "name": "Get user-manager relationships", @@ -2459,7 +2459,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -2485,7 +2485,7 @@ }, "response": [ { - "id": "bb51fa1e-add2-44aa-87aa-2faaa0ff3a3e", + "id": "27ef2c55-33b1-45ee-92da-c1afa39f296d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -2539,7 +2539,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -2578,12 +2578,12 @@ "value": "application/json" } ], - "body": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:6692d2fb-f95f-67ee-60dc-63aea5e2c0ed\",\n \"uid\": \"enim Ut id reprehenderit cupidat\",\n \"user_id\": \"urn:uuid:2eb9bc63-f25b-a596-eaa8-36ccdea6d7f5\",\n \"manager_id\": \"c0c9cddf-6e99-2727-3b50-6fcc36031666\"\n },\n {\n \"id\": \"4d96f1ad-4d16-09c9-b763-ae2efeba3cce\",\n \"uid\": \"fugiat inveniam elit fugiatsed l\",\n \"user_id\": \"e96425df-ff6d-db40-635f-54976aad741c\",\n \"manager_id\": \"e87ffad1-71d0-d5b4-dfbe-2be91d7f0602\"\n }\n ],\n \"_metadata\": {\n \"limit\": -39934998,\n \"offset\": -54738035,\n \"total\": -42540074,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"user_managers\": [\n {\n \"id\": \"943a7061-2914-d57f-ff7e-83edb23955e3\",\n \"uid\": \"irure idExcepteurcillum magna la\",\n \"user_id\": \"urn:uuid:3eec1c9c-f132-0c5e-bd9c-7f3caf5bd311\",\n \"manager_id\": \"4384a1a8-a8cc-3b9d-4229-5dd8e823faf1\"\n },\n {\n \"id\": \"9a663d0a-6b1e-0870-5477-b5c39f5e85b9\",\n \"uid\": \"consequat consectetur ut culpaDu\",\n \"user_id\": \"urn:uuid:7e1a71e5-46a7-d8b8-3c25-0a6055d3cf61\",\n \"manager_id\": \"2bc94b9e-61af-5975-23dd-38fbdffeef21\"\n }\n ],\n \"_metadata\": {\n \"limit\": -86506271,\n \"offset\": -50774238,\n \"total\": -77014095,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8d98a7b0-b987-449d-a2df-5ba8aa4e7976", + "id": "5c011114-6a08-45e9-ab06-5cc56ef39d4c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2637,7 +2637,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -2681,7 +2681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f109e727-8ede-46d6-b08c-fe3d4e86425d", + "id": "099f18d8-05c4-457a-8bd3-c86900867b05", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -2735,7 +2735,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -2785,7 +2785,7 @@ } }, { - "id": "e98b396e-80f1-489a-8776-a9418e988c69", + "id": "27753fe0-c0c9-49ab-b0ce-a16fedc8f0dd", "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\": \"34880fc9-43eb-6ec3-21af-347017c65cff\",\n \"manager_id\": \"urn:uuid:ecd96542-272c-efd2-e59f-a200fc86cb3f\"\n },\n {\n \"user_id\": \"76dc3034-b9ab-87d6-9433-9e55fe60ad50\",\n \"manager_id\": \"urn:uuid:f094711f-4ecd-2fbb-bb64-6957e90833a6\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"urn:uuid:2869c0cb-e6e0-2887-15dd-e55b293120d7\",\n \"manager_id\": \"urn:uuid:418ebd14-284d-fbb9-fc13-781845ee30fe\"\n },\n {\n \"user_id\": \"urn:uuid:264e6405-1310-a2f3-8cd4-6f3309213101\",\n \"manager_id\": \"urn:uuid:b12df9eb-bacd-977d-ae0a-5086fac71be9\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2828,7 +2828,7 @@ }, "response": [ { - "id": "548e69e0-d1df-429b-a50d-a736e427caa2", + "id": "9cad585f-6f50-48ef-afe7-74f6e620c2d0", "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\": \"34880fc9-43eb-6ec3-21af-347017c65cff\",\n \"manager_id\": \"urn:uuid:ecd96542-272c-efd2-e59f-a200fc86cb3f\"\n },\n {\n \"user_id\": \"76dc3034-b9ab-87d6-9433-9e55fe60ad50\",\n \"manager_id\": \"urn:uuid:f094711f-4ecd-2fbb-bb64-6957e90833a6\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"urn:uuid:2869c0cb-e6e0-2887-15dd-e55b293120d7\",\n \"manager_id\": \"urn:uuid:418ebd14-284d-fbb9-fc13-781845ee30fe\"\n },\n {\n \"user_id\": \"urn:uuid:264e6405-1310-a2f3-8cd4-6f3309213101\",\n \"manager_id\": \"urn:uuid:b12df9eb-bacd-977d-ae0a-5086fac71be9\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2884,7 +2884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0658fb7-a3c1-466e-b56a-c554806baa38", + "id": "f032a9a7-e871-4446-9d33-01e940a87ca2", "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\": \"34880fc9-43eb-6ec3-21af-347017c65cff\",\n \"manager_id\": \"urn:uuid:ecd96542-272c-efd2-e59f-a200fc86cb3f\"\n },\n {\n \"user_id\": \"76dc3034-b9ab-87d6-9433-9e55fe60ad50\",\n \"manager_id\": \"urn:uuid:f094711f-4ecd-2fbb-bb64-6957e90833a6\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"urn:uuid:2869c0cb-e6e0-2887-15dd-e55b293120d7\",\n \"manager_id\": \"urn:uuid:418ebd14-284d-fbb9-fc13-781845ee30fe\"\n },\n {\n \"user_id\": \"urn:uuid:264e6405-1310-a2f3-8cd4-6f3309213101\",\n \"manager_id\": \"urn:uuid:b12df9eb-bacd-977d-ae0a-5086fac71be9\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2940,7 +2940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcc9f861-1663-48a9-9e75-9997ee9d1efb", + "id": "c020a134-9349-4c5c-8ad3-827c2214a961", "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\": \"34880fc9-43eb-6ec3-21af-347017c65cff\",\n \"manager_id\": \"urn:uuid:ecd96542-272c-efd2-e59f-a200fc86cb3f\"\n },\n {\n \"user_id\": \"76dc3034-b9ab-87d6-9433-9e55fe60ad50\",\n \"manager_id\": \"urn:uuid:f094711f-4ecd-2fbb-bb64-6957e90833a6\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"urn:uuid:2869c0cb-e6e0-2887-15dd-e55b293120d7\",\n \"manager_id\": \"urn:uuid:418ebd14-284d-fbb9-fc13-781845ee30fe\"\n },\n {\n \"user_id\": \"urn:uuid:264e6405-1310-a2f3-8cd4-6f3309213101\",\n \"manager_id\": \"urn:uuid:b12df9eb-bacd-977d-ae0a-5086fac71be9\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3002,7 +3002,7 @@ } }, { - "id": "2c96a70d-9e98-4a74-928a-8bdf1eb4b4b3", + "id": "281def79-45d7-44d8-aeb8-c335ec638d99", "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\": \"d9c765f1-99f0-ba0c-fe12-e5ee5c2b7085\",\n \"user_id\": \"urn:uuid:61872f29-730c-bac9-701f-0a4a36ccf009\",\n \"manager_id\": \"urn:uuid:3845e929-0394-a679-6374-024740da88e9\"\n },\n {\n \"id\": \"c58dc237-3b65-67f1-1a32-867363f541b5\",\n \"user_id\": \"fb1c7450-e888-352d-5f7c-1f9b00a9fbda\",\n \"manager_id\": \"55a45651-3e11-5bc4-2cda-82c185b69a60\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"4ea21426-4fa1-30fb-b749-1ebce9e680ef\",\n \"user_id\": \"4bd6e07e-6306-c601-7d63-a8880ea3ec06\",\n \"manager_id\": \"urn:uuid:73108006-0193-b3f2-e182-dc92c7f5d9cb\"\n },\n {\n \"id\": \"urn:uuid:1cfe66ad-aa61-c210-9fd3-0b9d7acbb081\",\n \"user_id\": \"e1b846d4-221c-ca50-49e6-c6b6361978c1\",\n \"manager_id\": \"b31343fb-8d04-ea57-4941-ec95c1ec721c\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3045,7 +3045,7 @@ }, "response": [ { - "id": "e12ff816-4b48-4e7c-ba5f-67fd048c4b50", + "id": "ac84aef2-48a0-4820-b04d-f72c2312a5d2", "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\": \"d9c765f1-99f0-ba0c-fe12-e5ee5c2b7085\",\n \"user_id\": \"urn:uuid:61872f29-730c-bac9-701f-0a4a36ccf009\",\n \"manager_id\": \"urn:uuid:3845e929-0394-a679-6374-024740da88e9\"\n },\n {\n \"id\": \"c58dc237-3b65-67f1-1a32-867363f541b5\",\n \"user_id\": \"fb1c7450-e888-352d-5f7c-1f9b00a9fbda\",\n \"manager_id\": \"55a45651-3e11-5bc4-2cda-82c185b69a60\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"4ea21426-4fa1-30fb-b749-1ebce9e680ef\",\n \"user_id\": \"4bd6e07e-6306-c601-7d63-a8880ea3ec06\",\n \"manager_id\": \"urn:uuid:73108006-0193-b3f2-e182-dc92c7f5d9cb\"\n },\n {\n \"id\": \"urn:uuid:1cfe66ad-aa61-c210-9fd3-0b9d7acbb081\",\n \"user_id\": \"e1b846d4-221c-ca50-49e6-c6b6361978c1\",\n \"manager_id\": \"b31343fb-8d04-ea57-4941-ec95c1ec721c\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3101,7 +3101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d537860-30be-4843-a35d-d71a10739850", + "id": "8bb6e2a0-900d-46d5-8e6e-76afc3d219ed", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3135,7 +3135,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"id\": \"d9c765f1-99f0-ba0c-fe12-e5ee5c2b7085\",\n \"user_id\": \"urn:uuid:61872f29-730c-bac9-701f-0a4a36ccf009\",\n \"manager_id\": \"urn:uuid:3845e929-0394-a679-6374-024740da88e9\"\n },\n {\n \"id\": \"c58dc237-3b65-67f1-1a32-867363f541b5\",\n \"user_id\": \"fb1c7450-e888-352d-5f7c-1f9b00a9fbda\",\n \"manager_id\": \"55a45651-3e11-5bc4-2cda-82c185b69a60\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"4ea21426-4fa1-30fb-b749-1ebce9e680ef\",\n \"user_id\": \"4bd6e07e-6306-c601-7d63-a8880ea3ec06\",\n \"manager_id\": \"urn:uuid:73108006-0193-b3f2-e182-dc92c7f5d9cb\"\n },\n {\n \"id\": \"urn:uuid:1cfe66ad-aa61-c210-9fd3-0b9d7acbb081\",\n \"user_id\": \"e1b846d4-221c-ca50-49e6-c6b6361978c1\",\n \"manager_id\": \"b31343fb-8d04-ea57-4941-ec95c1ec721c\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3157,7 +3157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1100acc0-9bbd-46a3-921c-bdcbb9e5064d", + "id": "6724fdf4-917a-477e-9b42-8e9495958cee", "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\": \"d9c765f1-99f0-ba0c-fe12-e5ee5c2b7085\",\n \"user_id\": \"urn:uuid:61872f29-730c-bac9-701f-0a4a36ccf009\",\n \"manager_id\": \"urn:uuid:3845e929-0394-a679-6374-024740da88e9\"\n },\n {\n \"id\": \"c58dc237-3b65-67f1-1a32-867363f541b5\",\n \"user_id\": \"fb1c7450-e888-352d-5f7c-1f9b00a9fbda\",\n \"manager_id\": \"55a45651-3e11-5bc4-2cda-82c185b69a60\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"4ea21426-4fa1-30fb-b749-1ebce9e680ef\",\n \"user_id\": \"4bd6e07e-6306-c601-7d63-a8880ea3ec06\",\n \"manager_id\": \"urn:uuid:73108006-0193-b3f2-e182-dc92c7f5d9cb\"\n },\n {\n \"id\": \"urn:uuid:1cfe66ad-aa61-c210-9fd3-0b9d7acbb081\",\n \"user_id\": \"e1b846d4-221c-ca50-49e6-c6b6361978c1\",\n \"manager_id\": \"b31343fb-8d04-ea57-4941-ec95c1ec721c\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3219,7 +3219,7 @@ } }, { - "id": "1e249391-f743-4a74-8796-adbc4bd86f13", + "id": "1bf63feb-32d6-4720-b584-cd52cc357f97", "name": "Find user-manager relationship by id", "request": { "name": "Find user-manager relationship by id", @@ -3261,7 +3261,7 @@ }, "response": [ { - "id": "fee6c0d3-e8d4-4de2-bbab-1a51b91e93dc", + "id": "35995b95-0ccf-4efe-b735-c0cfa393b662", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3300,12 +3300,12 @@ "value": "application/json" } ], - "body": "{\n \"user_manager\": {\n \"id\": \"6a1c6c55-e126-899c-03d2-5c78608b266b\",\n \"uid\": \"pariaturexercitation eiusmodDuis\",\n \"user_id\": \"89a32e47-d4a4-0ee1-8112-a06e4b79f8c7\",\n \"manager_id\": \"urn:uuid:f4c0c3f8-8f4f-3f05-a87f-74a4c9a8270c\"\n }\n}", + "body": "{\n \"user_manager\": {\n \"id\": \"3d07f9d3-6073-c6b5-92da-51346888c40c\",\n \"uid\": \"amet Duis dolore adipisicing nos\",\n \"user_id\": \"urn:uuid:6825bd24-f310-bec2-6bfa-be3061b5c7b2\",\n \"manager_id\": \"de8b349b-1642-3f92-ab85-8780b5862beb\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "df23b2fd-fb22-4037-a835-19d41ca43739", + "id": "cfcfd73e-4212-4e0d-8773-5587df923aa1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3349,7 +3349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "620e849b-e62d-47ac-9d73-e8f3d8919078", + "id": "e77f2e20-6475-46fe-a451-11e2407afc7f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -3399,7 +3399,7 @@ } }, { - "id": "67fd0c99-4ed0-460b-9a0a-29ce6ca26d7d", + "id": "fa4ddd1c-8875-4f12-8ab2-430cf668618a", "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:36591fc9-391c-16e0-088f-afd6d6e38ce3\",\n \"manager_id\": \"34c0554b-2580-02f8-0e67-a6f7fb2ab476\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f0fcbd63-e83f-3428-600f-2c43a71fe48e\",\n \"manager_id\": \"urn:uuid:fbfdf5cc-a585-72ff-6f81-4bd2ae2246ee\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3454,7 +3454,7 @@ }, "response": [ { - "id": "62caa462-58ae-4f8d-a5a9-d9291f95c11b", + "id": "3ddf6e14-bf0d-42a7-82bb-5aa974f74851", "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:36591fc9-391c-16e0-088f-afd6d6e38ce3\",\n \"manager_id\": \"34c0554b-2580-02f8-0e67-a6f7fb2ab476\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f0fcbd63-e83f-3428-600f-2c43a71fe48e\",\n \"manager_id\": \"urn:uuid:fbfdf5cc-a585-72ff-6f81-4bd2ae2246ee\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3506,12 +3506,12 @@ "value": "application/json" } ], - "body": "{\n \"user_manager\": {\n \"id\": \"6a1c6c55-e126-899c-03d2-5c78608b266b\",\n \"uid\": \"pariaturexercitation eiusmodDuis\",\n \"user_id\": \"89a32e47-d4a4-0ee1-8112-a06e4b79f8c7\",\n \"manager_id\": \"urn:uuid:f4c0c3f8-8f4f-3f05-a87f-74a4c9a8270c\"\n }\n}", + "body": "{\n \"user_manager\": {\n \"id\": \"3d07f9d3-6073-c6b5-92da-51346888c40c\",\n \"uid\": \"amet Duis dolore adipisicing nos\",\n \"user_id\": \"urn:uuid:6825bd24-f310-bec2-6bfa-be3061b5c7b2\",\n \"manager_id\": \"de8b349b-1642-3f92-ab85-8780b5862beb\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ab66e093-152b-4e1f-91de-ef6ae2c1c758", + "id": "b6dbc469-2141-4a27-8dfc-867351bce723", "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:36591fc9-391c-16e0-088f-afd6d6e38ce3\",\n \"manager_id\": \"34c0554b-2580-02f8-0e67-a6f7fb2ab476\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f0fcbd63-e83f-3428-600f-2c43a71fe48e\",\n \"manager_id\": \"urn:uuid:fbfdf5cc-a585-72ff-6f81-4bd2ae2246ee\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3568,7 +3568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "376389ba-a106-4288-8300-45f2bc7ecf0d", + "id": "94706d5e-0e28-48cf-ad5b-beb64995affb", "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:36591fc9-391c-16e0-088f-afd6d6e38ce3\",\n \"manager_id\": \"34c0554b-2580-02f8-0e67-a6f7fb2ab476\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f0fcbd63-e83f-3428-600f-2c43a71fe48e\",\n \"manager_id\": \"urn:uuid:fbfdf5cc-a585-72ff-6f81-4bd2ae2246ee\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3637,7 +3637,7 @@ "description": "", "item": [ { - "id": "13633b88-8574-46bd-8754-cd7c3b1808a2", + "id": "e6403df1-3aa4-46e5-bd48-f69938490d04", "name": "Get roles", "request": { "name": "Get roles", @@ -3704,7 +3704,7 @@ }, "response": [ { - "id": "e5815aca-4ef6-47e0-a704-f7135545178f", + "id": "7034f4a2-b2b4-4826-a11f-de641727afaf", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3779,12 +3779,12 @@ "value": "application/json" } ], - "body": "{\n \"roles\": [\n {\n \"id\": \"73e2202e-97a7-6313-bc7a-234b66a24370\",\n \"uid\": \"incididunt Duis minim ex enimocc\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"b9738ca4-d364-85eb-ffec-69e3ee5880cb\",\n \"uid\": \"anim mollit dolor exercitationid\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ],\n \"_metadata\": {\n \"limit\": -91196757,\n \"offset\": -86381659,\n \"total\": -44235472,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"roles\": [\n {\n \"id\": \"urn:uuid:38f130b9-cd3e-7369-5b88-1f6b6dc4af05\",\n \"uid\": \"elit aliqua consectetur voluptat\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"urn:uuid:6794c8fa-b1fa-123b-4c66-5db5f7efe0f5\",\n \"uid\": \"dolor adipisicing aliqua idrepre\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ],\n \"_metadata\": {\n \"limit\": 59943837,\n \"offset\": 32265433,\n \"total\": 36179389,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "15c05015-0e03-4f42-8fea-115e0260643a", + "id": "ea2d053c-3c0e-4426-8c70-81b38037ccc0", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3864,7 +3864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f430866-9f85-49ff-a8ef-649ec8e47bd1", + "id": "a1e779fd-d577-46d2-8ad1-dabdb882f597", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -3950,7 +3950,7 @@ } }, { - "id": "c8a4ec46-9432-4912-a058-8d02e8a99666", + "id": "609f81ea-f111-4339-94e4-a4dce3cea003", "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\": \"consectetur ad magna ipsumanim q\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"dolor proident laboris eiusmodea\",\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\": \"proident fugiatin in minim aliqu\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"aute velitconsequateu proident L\",\n \"type\": \"NeprofileRole\",\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": "b3f36568-2ba2-416c-ba63-23c7791124f0", + "id": "2ef70c6c-9866-4f96-9249-1d92d2d313d8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4027,7 +4027,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"uid\": \"consectetur ad magna ipsumanim q\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"dolor proident laboris eiusmodea\",\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\": \"proident fugiatin in minim aliqu\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"aute velitconsequateu proident L\",\n \"type\": \"NeprofileRole\",\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\": \"a38b5116-1579-5074-d18a-9cace938fbfc\",\n \"uid\": \"adeumagna consectetur exercitati\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"urn:uuid:5ba395b5-347c-c82f-05dc-04a1731a4976\",\n \"uid\": \"consequat qui officia sint cupid\",\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:984bd4f5-2963-e5d0-369a-de8a2440a239\",\n \"uid\": \"minimmagna ad ut doloreutvelit f\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"088a1452-b17e-8aeb-12af-38b9b27cbdc4\",\n \"uid\": \"tempor consequat ipsumaliqua ut \",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8c055d9f-3e5c-4fd9-8548-6fa2c8102aa8", + "id": "1a5ad13c-281b-4dd9-97ed-fe9fc6961466", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4083,7 +4083,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"uid\": \"consectetur ad magna ipsumanim q\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"dolor proident laboris eiusmodea\",\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\": \"proident fugiatin in minim aliqu\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"aute velitconsequateu proident L\",\n \"type\": \"NeprofileRole\",\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": "af1ec80a-d31f-4c5a-a5d7-cc3042df527b", + "id": "1ae9972a-e662-4be8-9acf-4d8b429b5a7b", "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\": \"consectetur ad magna ipsumanim q\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"dolor proident laboris eiusmodea\",\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\": \"proident fugiatin in minim aliqu\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"aute velitconsequateu proident L\",\n \"type\": \"NeprofileRole\",\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": "2fe39531-c12d-4880-84e7-2dca70ccc922", + "id": "7f58e146-b999-49bc-9460-2981eb96948d", "name": "Update multiple roles", "request": { "name": "Update multiple roles", @@ -4210,7 +4210,7 @@ }, "response": [ { - "id": "117957f3-611f-4380-b486-f04e71268bd0", + "id": "a68427d9-0494-42b0-8900-ac3e9504691c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4261,12 +4261,12 @@ "value": "application/json" } ], - "body": "{\n \"roles\": [\n {\n \"id\": \"a38b5116-1579-5074-d18a-9cace938fbfc\",\n \"uid\": \"adeumagna consectetur exercitati\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"urn:uuid:5ba395b5-347c-c82f-05dc-04a1731a4976\",\n \"uid\": \"consequat qui officia sint cupid\",\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:984bd4f5-2963-e5d0-369a-de8a2440a239\",\n \"uid\": \"minimmagna ad ut doloreutvelit f\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"088a1452-b17e-8aeb-12af-38b9b27cbdc4\",\n \"uid\": \"tempor consequat ipsumaliqua ut \",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "339e0b6a-3ca4-42ac-acfc-7553df42138a", + "id": "6e06f45f-d780-4baf-99d2-a81eaacb2d4e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4322,7 +4322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92abf851-d1b0-40e5-924d-869b75e903c5", + "id": "3e1d9578-2221-4f8c-bc86-4c25b4ee65d4", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4384,7 +4384,7 @@ } }, { - "id": "f261144d-e733-443e-bafe-f641c8496496", + "id": "a744b4c6-4e34-48d4-81ab-25ad5ad9748f", "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\": \"dolorcupidatatin nullafugiat sin\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"consectetur officia irureut irur\",\n \"type\": \"NeprofileRole\",\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": "d5dc11a3-76be-4e3f-80fd-d80112271fc6", + "id": "ca1ce424-2201-4bb9-b8ee-95fe91ca197b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4461,7 +4461,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"dolorcupidatatin nullafugiat sin\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"consectetur officia irureut irur\",\n \"type\": \"NeprofileRole\",\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\": \"3149c0e0-576d-31da-0ea7-9a095d679ad2\",\n \"uid\": \"non quis aute pariaturirure mini\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "body": "{\n \"role\": {\n \"id\": \"urn:uuid:63ae4cf6-591b-3e23-ee3d-4a8853aa293a\",\n \"uid\": \"deserunt sunt amet inUt Duis eaq\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a49c9ce6-cb52-44bf-af3a-814c146db4c4", + "id": "d3477a28-16dd-4aa0-900a-affc70bcc1ab", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4517,7 +4517,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"dolorcupidatatin nullafugiat sin\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"consectetur officia irureut irur\",\n \"type\": \"NeprofileRole\",\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": "f64a3113-0834-44e2-b939-d00aea5002f1", + "id": "6674bf8c-5e33-4b2f-9de8-3957a7f83aa0", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4573,7 +4573,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"dolorcupidatatin nullafugiat sin\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"consectetur officia irureut irur\",\n \"type\": \"NeprofileRole\",\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": "4ff3d5e3-1282-4681-b302-2681e501bfcd", + "id": "800be916-be32-485b-97fc-e0a2dec9200e", "name": "Find role by id", "request": { "name": "Find role by id", @@ -4643,7 +4643,7 @@ }, "response": [ { - "id": "a65d7656-6096-431f-84e7-e9a72e374ed8", + "id": "5f2cf4af-7bc2-400f-af46-f83f1ccc8319", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4682,12 +4682,12 @@ "value": "application/json" } ], - "body": "{\n \"role\": {\n \"id\": \"3149c0e0-576d-31da-0ea7-9a095d679ad2\",\n \"uid\": \"non quis aute pariaturirure mini\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "body": "{\n \"role\": {\n \"id\": \"urn:uuid:63ae4cf6-591b-3e23-ee3d-4a8853aa293a\",\n \"uid\": \"deserunt sunt amet inUt Duis eaq\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ad2316fc-b3a3-48bd-9d7f-92c191462351", + "id": "7e09a2f5-cb5a-4f45-8ae3-89e0387d91bb", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4731,7 +4731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4b97bdc-4848-495d-b5a6-34226001db57", + "id": "cd94b066-9f76-4542-834e-c984f8a253a9", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4781,7 +4781,7 @@ } }, { - "id": "0fe49863-8c95-4861-8a48-e583f7cc9572", + "id": "110e2a57-314e-4aef-b63b-ec91197a7981", "name": "Update an existing role", "request": { "name": "Update an existing role", @@ -4836,7 +4836,7 @@ }, "response": [ { - "id": "96b911fd-0ed1-4529-aec2-592c7a0aeb9d", + "id": "4629a1d4-c791-4355-b5da-1a027a7e3f9a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4888,12 +4888,12 @@ "value": "application/json" } ], - "body": "{\n \"role\": {\n \"id\": \"3149c0e0-576d-31da-0ea7-9a095d679ad2\",\n \"uid\": \"non quis aute pariaturirure mini\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "body": "{\n \"role\": {\n \"id\": \"urn:uuid:63ae4cf6-591b-3e23-ee3d-4a8853aa293a\",\n \"uid\": \"deserunt sunt amet inUt Duis eaq\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b272567e-b99a-4be2-9f6b-1c736aa9d8ec", + "id": "b7549b26-ca19-4ef7-a90c-6f4a78187a8e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4950,7 +4950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c96aa8d-4e50-48af-b4f3-eeb26f76fa1a", + "id": "a9ae1aec-f29c-4939-a9f0-78d15f85f8e5", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5019,7 +5019,7 @@ "description": "", "item": [ { - "id": "7f2a4a2e-122a-445d-8ca7-9b3cd7c2f856", + "id": "345a22ab-c340-4864-8b14-c9dc9cc37608", "name": "Create a permission", "request": { "name": "Create a permission", @@ -5062,7 +5062,7 @@ }, "response": [ { - "id": "0e4ccfd7-b3eb-4a6f-b3e5-47d89a27d025", + "id": "8f4972c6-9e18-4396-9649-4e4ece09e58b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -5118,7 +5118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6a62236-7495-425e-a0cc-1bbb34206cb4", + "id": "67f440f3-ccdc-4119-ae0c-fccbb65b1bc5", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5174,7 +5174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d16d68c7-ca97-47a8-9069-a0b1f033212f", + "id": "62c5245e-b4b2-4c16-b1a8-55a900a73f61", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5242,7 +5242,7 @@ "description": "", "item": [ { - "id": "e4d05516-95e5-49c6-a244-8576f265cbd9", + "id": "2fbdec7d-095f-4984-9353-766c41667070", "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:ab950fce-90fa-9356-6b92-d494cba90533\",\n \"role_id\": \"ef759b29-eefb-1f9d-c322-ae54543a16d7\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"58d95e88-8fb3-3682-35dc-ea9c62105738\",\n \"role_id\": \"252776c5-608a-47a5-512c-5cd4848eb5fe\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5285,7 +5285,7 @@ }, "response": [ { - "id": "cd5efeae-2dbf-4446-9748-6213851082b8", + "id": "cca1a0b2-6bd1-4441-95ae-cb2ad70112a8", "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:ab950fce-90fa-9356-6b92-d494cba90533\",\n \"role_id\": \"ef759b29-eefb-1f9d-c322-ae54543a16d7\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"58d95e88-8fb3-3682-35dc-ea9c62105738\",\n \"role_id\": \"252776c5-608a-47a5-512c-5cd4848eb5fe\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5336,12 +5336,12 @@ "value": "application/json" } ], - "body": "{\n \"user_role\": {\n \"id\": \"2e5c7f55-3373-36d6-e034-322c9ce6d765\",\n \"uid\": \"dolor officia nonipsum veniamlab\",\n \"user_id\": \"ad727d2e-e6d6-a1db-2828-6569d7b8273c\",\n \"role_id\": \"urn:uuid:99585e0d-7212-19aa-f647-080b40a7c199\"\n }\n}", + "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:082829f7-7690-20db-1008-a493a8fd8e05\",\n \"uid\": \"aliquip animpariaturirurecillum \",\n \"user_id\": \"5b78f3a9-f478-751e-84c4-d84aa505b52b\",\n \"role_id\": \"urn:uuid:c1af0fff-c54d-e33f-c408-cec6a7056882\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f5c84cec-dc6e-41ca-a744-ef0bd58eee94", + "id": "2f00d532-a496-4d15-acf0-1e2d50cfd134", "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:ab950fce-90fa-9356-6b92-d494cba90533\",\n \"role_id\": \"ef759b29-eefb-1f9d-c322-ae54543a16d7\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"58d95e88-8fb3-3682-35dc-ea9c62105738\",\n \"role_id\": \"252776c5-608a-47a5-512c-5cd4848eb5fe\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5397,7 +5397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab882a4d-a57f-4b3e-9dde-3ff29d555935", + "id": "a7fa05f0-5f63-4dba-b3ad-b6ec6a272567", "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:ab950fce-90fa-9356-6b92-d494cba90533\",\n \"role_id\": \"ef759b29-eefb-1f9d-c322-ae54543a16d7\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"58d95e88-8fb3-3682-35dc-ea9c62105738\",\n \"role_id\": \"252776c5-608a-47a5-512c-5cd4848eb5fe\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5459,7 +5459,7 @@ } }, { - "id": "9035b271-a6c4-49f8-b345-22f7ab1e8b82", + "id": "98e88113-89e2-4564-869f-691f8f6844dd", "name": "Get user role pairings", "request": { "name": "Get user role pairings", @@ -5518,7 +5518,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -5544,7 +5544,7 @@ }, "response": [ { - "id": "25142aa7-a8a9-4ad1-8839-591b6e922edd", + "id": "76a68f47-c1de-4e82-bbf0-6775a70ffdc3", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -5598,7 +5598,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -5637,12 +5637,12 @@ "value": "application/json" } ], - "body": "{\n \"user_roles\": [\n {\n \"id\": \"1c5cabbb-420b-ee94-5b48-648e650c0c58\",\n \"uid\": \"do est dolor auteadipisicing vel\",\n \"user_id\": \"urn:uuid:a45380f3-d88a-b2ec-c77b-a02ae7ebb4a0\",\n \"role_id\": \"urn:uuid:ceeb4e42-5d43-e9be-e9fc-6147b0e42ba5\"\n },\n {\n \"id\": \"urn:uuid:5c14ebec-b6b5-3f7f-a025-95547fd769f2\",\n \"uid\": \"Lorem mollit voluptateofficia ve\",\n \"user_id\": \"urn:uuid:4aba1bef-b2d2-132b-6342-49f911358cc4\",\n \"role_id\": \"urn:uuid:48ed3578-d6f2-caa7-1e99-aa399fad86c5\"\n }\n ],\n \"_metadata\": {\n \"limit\": 92226510,\n \"offset\": 30913162,\n \"total\": -1201702,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"user_roles\": [\n {\n \"id\": \"c8996d90-01ae-e3b4-5fef-f943e656ebe8\",\n \"uid\": \"irure in aliquaofficia qui conse\",\n \"user_id\": \"00eeb94e-34ac-d339-6fa0-3a8491bb7e7f\",\n \"role_id\": \"347d116e-a6a0-4c6b-9f74-3ca52b022d19\"\n },\n {\n \"id\": \"d7ea2455-be5a-29ab-4245-6a5fb8bccd63\",\n \"uid\": \"consequat suntmagnaqui consequat\",\n \"user_id\": \"urn:uuid:d8a8929c-ddcd-c747-fd16-2ec56f165d1e\",\n \"role_id\": \"787675a9-5e3e-ed8e-d385-424c9cb1c48a\"\n }\n ],\n \"_metadata\": {\n \"limit\": 25714936,\n \"offset\": -13319698,\n \"total\": -35077393,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "41a22510-3237-46d4-b8c0-4fa5da74a1b5", + "id": "efcbad1f-cbfc-43de-b75b-1a85fbb301c2", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5696,7 +5696,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -5740,7 +5740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ceeef44a-726b-4fd5-88aa-8e946e4bd528", + "id": "3c0dd992-1aea-49ca-b074-63e527dd6cb3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5794,7 +5794,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -5844,7 +5844,7 @@ } }, { - "id": "f81dd866-fcc3-45b2-997e-b89ecacf2fdd", + "id": "29ba13f9-ca1c-4201-892e-62540dd6e6dd", "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:9dca5b7d-0e37-3c13-aa5b-8de1767f9a03\",\n \"role_id\": \"3469bf59-bfe3-5f7a-02bb-affd0867891a\"\n },\n {\n \"user_id\": \"urn:uuid:c5a984fd-f815-4580-be13-2ac4f0a38eaa\",\n \"role_id\": \"urn:uuid:631f4ef4-5106-d669-cebf-6cbf22525948\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:f4fbaa16-6254-07fd-cea1-3fccf2af7892\",\n \"role_id\": \"211caaf1-d531-58d4-b4f9-23793f8734d5\"\n },\n {\n \"user_id\": \"aa6cb339-4536-d904-bdb4-d92f5727aec8\",\n \"role_id\": \"urn:uuid:b6d5a72d-8448-1c29-1bb4-a5864f92ba5c\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -5887,7 +5887,7 @@ }, "response": [ { - "id": "63d5107d-5c34-4231-a306-600c869d1a17", + "id": "8c6a74f8-2a8a-4e80-9518-baa7a2eee85e", "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:9dca5b7d-0e37-3c13-aa5b-8de1767f9a03\",\n \"role_id\": \"3469bf59-bfe3-5f7a-02bb-affd0867891a\"\n },\n {\n \"user_id\": \"urn:uuid:c5a984fd-f815-4580-be13-2ac4f0a38eaa\",\n \"role_id\": \"urn:uuid:631f4ef4-5106-d669-cebf-6cbf22525948\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:f4fbaa16-6254-07fd-cea1-3fccf2af7892\",\n \"role_id\": \"211caaf1-d531-58d4-b4f9-23793f8734d5\"\n },\n {\n \"user_id\": \"aa6cb339-4536-d904-bdb4-d92f5727aec8\",\n \"role_id\": \"urn:uuid:b6d5a72d-8448-1c29-1bb4-a5864f92ba5c\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -5938,12 +5938,12 @@ "value": "application/json" } ], - "body": "{\n \"user_roles\": [\n {\n \"id\": \"d521186c-cd8c-a0ea-d72f-767a82ffaba2\",\n \"uid\": \"velit commodo adullamcoin nisite\",\n \"user_id\": \"34be2493-7822-28cb-6d99-010f302cca05\",\n \"role_id\": \"urn:uuid:c3ad9dbd-22a5-85cf-05dd-4f5d0462a269\"\n },\n {\n \"id\": \"urn:uuid:10eb70ca-e536-055e-e4e4-d7784016e9b1\",\n \"uid\": \"sed pariatur magna etanim labore\",\n \"user_id\": \"urn:uuid:5758a385-aee9-235e-a12e-25ae01eeddac\",\n \"role_id\": \"urn:uuid:c82e4936-9f86-5ca8-0501-2d0a76684832\"\n }\n ]\n}", + "body": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:7e3026a1-d533-3a2d-0857-2d1fbd942da4\",\n \"uid\": \"enim exercitation ut ea veniamni\",\n \"user_id\": \"590e0050-c53d-0541-39e8-491f796f8da8\",\n \"role_id\": \"urn:uuid:bc956fef-2800-f062-f3f7-bceb3f8abfc7\"\n },\n {\n \"id\": \"e239aa3c-f57b-32d1-00d6-2fae5fe1986b\",\n \"uid\": \"amet easint deserunt pariatur Ut\",\n \"user_id\": \"urn:uuid:cabfbda9-4ee5-f257-39c5-0bc36858c0f6\",\n \"role_id\": \"urn:uuid:d9a35b84-8fb5-6716-714c-7262552e0e19\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e4573be-69d1-42c9-94e4-3028f581fdcd", + "id": "f8356b05-9b6f-41ea-aaf0-2781adedd479", "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:9dca5b7d-0e37-3c13-aa5b-8de1767f9a03\",\n \"role_id\": \"3469bf59-bfe3-5f7a-02bb-affd0867891a\"\n },\n {\n \"user_id\": \"urn:uuid:c5a984fd-f815-4580-be13-2ac4f0a38eaa\",\n \"role_id\": \"urn:uuid:631f4ef4-5106-d669-cebf-6cbf22525948\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:f4fbaa16-6254-07fd-cea1-3fccf2af7892\",\n \"role_id\": \"211caaf1-d531-58d4-b4f9-23793f8734d5\"\n },\n {\n \"user_id\": \"aa6cb339-4536-d904-bdb4-d92f5727aec8\",\n \"role_id\": \"urn:uuid:b6d5a72d-8448-1c29-1bb4-a5864f92ba5c\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -5999,7 +5999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0ef8e53-5f1b-4666-b275-10c1e7f970f9", + "id": "bb857978-87c4-4083-adbe-d59857391939", "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:9dca5b7d-0e37-3c13-aa5b-8de1767f9a03\",\n \"role_id\": \"3469bf59-bfe3-5f7a-02bb-affd0867891a\"\n },\n {\n \"user_id\": \"urn:uuid:c5a984fd-f815-4580-be13-2ac4f0a38eaa\",\n \"role_id\": \"urn:uuid:631f4ef4-5106-d669-cebf-6cbf22525948\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:f4fbaa16-6254-07fd-cea1-3fccf2af7892\",\n \"role_id\": \"211caaf1-d531-58d4-b4f9-23793f8734d5\"\n },\n {\n \"user_id\": \"aa6cb339-4536-d904-bdb4-d92f5727aec8\",\n \"role_id\": \"urn:uuid:b6d5a72d-8448-1c29-1bb4-a5864f92ba5c\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6061,7 +6061,7 @@ } }, { - "id": "391e0d74-b38d-4297-bdd2-455797c64d13", + "id": "3e106fc5-ac07-4ab0-a1cf-b2a409d9e3f7", "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\": \"5ced6470-a8bc-7b0c-3e17-41988770a36d\",\n \"user_id\": \"urn:uuid:6633cbcb-1736-7930-035a-ccbe5a6ae77c\",\n \"role_id\": \"8874628b-dac4-7b14-3081-a616044b07ff\"\n },\n {\n \"id\": \"876b7209-25ba-f89a-5819-9affb2986072\",\n \"user_id\": \"urn:uuid:2ff8381b-a674-f193-d05d-a9fb8346c813\",\n \"role_id\": \"378883ef-5d04-c5a0-250f-c8b858db0884\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"b4745783-d0b5-4ef0-7d3b-5000cd649114\",\n \"user_id\": \"7f13d1ac-2907-1ae3-4a6d-35fd1a9e203f\",\n \"role_id\": \"70b183e5-efcd-f095-019d-beaee34e6b97\"\n },\n {\n \"id\": \"3b4d8731-e2fc-a90b-11fb-8fcefef0bc79\",\n \"user_id\": \"urn:uuid:fe191e7f-f2c1-93b6-64fa-87dc72e7d7c4\",\n \"role_id\": \"urn:uuid:b4cdfe32-02ad-529f-4d1b-3513a62bd76c\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6104,7 +6104,7 @@ }, "response": [ { - "id": "a0b3bec9-25b0-47cf-af67-53c6420488d1", + "id": "cb6d903c-12c6-48bf-a6b7-abf651e53249", "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\": \"5ced6470-a8bc-7b0c-3e17-41988770a36d\",\n \"user_id\": \"urn:uuid:6633cbcb-1736-7930-035a-ccbe5a6ae77c\",\n \"role_id\": \"8874628b-dac4-7b14-3081-a616044b07ff\"\n },\n {\n \"id\": \"876b7209-25ba-f89a-5819-9affb2986072\",\n \"user_id\": \"urn:uuid:2ff8381b-a674-f193-d05d-a9fb8346c813\",\n \"role_id\": \"378883ef-5d04-c5a0-250f-c8b858db0884\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"b4745783-d0b5-4ef0-7d3b-5000cd649114\",\n \"user_id\": \"7f13d1ac-2907-1ae3-4a6d-35fd1a9e203f\",\n \"role_id\": \"70b183e5-efcd-f095-019d-beaee34e6b97\"\n },\n {\n \"id\": \"3b4d8731-e2fc-a90b-11fb-8fcefef0bc79\",\n \"user_id\": \"urn:uuid:fe191e7f-f2c1-93b6-64fa-87dc72e7d7c4\",\n \"role_id\": \"urn:uuid:b4cdfe32-02ad-529f-4d1b-3513a62bd76c\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6155,12 +6155,12 @@ "value": "application/json" } ], - "body": "{\n \"user_roles\": [\n {\n \"id\": \"d521186c-cd8c-a0ea-d72f-767a82ffaba2\",\n \"uid\": \"velit commodo adullamcoin nisite\",\n \"user_id\": \"34be2493-7822-28cb-6d99-010f302cca05\",\n \"role_id\": \"urn:uuid:c3ad9dbd-22a5-85cf-05dd-4f5d0462a269\"\n },\n {\n \"id\": \"urn:uuid:10eb70ca-e536-055e-e4e4-d7784016e9b1\",\n \"uid\": \"sed pariatur magna etanim labore\",\n \"user_id\": \"urn:uuid:5758a385-aee9-235e-a12e-25ae01eeddac\",\n \"role_id\": \"urn:uuid:c82e4936-9f86-5ca8-0501-2d0a76684832\"\n }\n ]\n}", + "body": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:7e3026a1-d533-3a2d-0857-2d1fbd942da4\",\n \"uid\": \"enim exercitation ut ea veniamni\",\n \"user_id\": \"590e0050-c53d-0541-39e8-491f796f8da8\",\n \"role_id\": \"urn:uuid:bc956fef-2800-f062-f3f7-bceb3f8abfc7\"\n },\n {\n \"id\": \"e239aa3c-f57b-32d1-00d6-2fae5fe1986b\",\n \"uid\": \"amet easint deserunt pariatur Ut\",\n \"user_id\": \"urn:uuid:cabfbda9-4ee5-f257-39c5-0bc36858c0f6\",\n \"role_id\": \"urn:uuid:d9a35b84-8fb5-6716-714c-7262552e0e19\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "72cc74d9-ad75-4114-b881-bd7fa1dcd5f5", + "id": "b7319250-043b-4c84-8fec-90266f8776d3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6194,7 +6194,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"id\": \"5ced6470-a8bc-7b0c-3e17-41988770a36d\",\n \"user_id\": \"urn:uuid:6633cbcb-1736-7930-035a-ccbe5a6ae77c\",\n \"role_id\": \"8874628b-dac4-7b14-3081-a616044b07ff\"\n },\n {\n \"id\": \"876b7209-25ba-f89a-5819-9affb2986072\",\n \"user_id\": \"urn:uuid:2ff8381b-a674-f193-d05d-a9fb8346c813\",\n \"role_id\": \"378883ef-5d04-c5a0-250f-c8b858db0884\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"b4745783-d0b5-4ef0-7d3b-5000cd649114\",\n \"user_id\": \"7f13d1ac-2907-1ae3-4a6d-35fd1a9e203f\",\n \"role_id\": \"70b183e5-efcd-f095-019d-beaee34e6b97\"\n },\n {\n \"id\": \"3b4d8731-e2fc-a90b-11fb-8fcefef0bc79\",\n \"user_id\": \"urn:uuid:fe191e7f-f2c1-93b6-64fa-87dc72e7d7c4\",\n \"role_id\": \"urn:uuid:b4cdfe32-02ad-529f-4d1b-3513a62bd76c\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6216,7 +6216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22db8d9f-1a9c-433c-b53f-c99cbdb0ba2a", + "id": "9f522cdd-22e1-4d4b-8733-c328a0ea14fb", "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\": \"5ced6470-a8bc-7b0c-3e17-41988770a36d\",\n \"user_id\": \"urn:uuid:6633cbcb-1736-7930-035a-ccbe5a6ae77c\",\n \"role_id\": \"8874628b-dac4-7b14-3081-a616044b07ff\"\n },\n {\n \"id\": \"876b7209-25ba-f89a-5819-9affb2986072\",\n \"user_id\": \"urn:uuid:2ff8381b-a674-f193-d05d-a9fb8346c813\",\n \"role_id\": \"378883ef-5d04-c5a0-250f-c8b858db0884\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"b4745783-d0b5-4ef0-7d3b-5000cd649114\",\n \"user_id\": \"7f13d1ac-2907-1ae3-4a6d-35fd1a9e203f\",\n \"role_id\": \"70b183e5-efcd-f095-019d-beaee34e6b97\"\n },\n {\n \"id\": \"3b4d8731-e2fc-a90b-11fb-8fcefef0bc79\",\n \"user_id\": \"urn:uuid:fe191e7f-f2c1-93b6-64fa-87dc72e7d7c4\",\n \"role_id\": \"urn:uuid:b4cdfe32-02ad-529f-4d1b-3513a62bd76c\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6278,7 +6278,7 @@ } }, { - "id": "9004ca93-2ccc-448a-a493-fddebdf88de0", + "id": "01fbd6ab-4cdc-479e-b3ec-1fa1cd803ced", "name": "Find user role pairing by id", "request": { "name": "Find user role pairing by id", @@ -6320,7 +6320,7 @@ }, "response": [ { - "id": "e1957254-8ba9-415b-9b8d-baf194c97964", + "id": "4f57221c-f897-4ef8-b61b-72f1e46d7c20", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -6359,12 +6359,12 @@ "value": "application/json" } ], - "body": "{\n \"user_role\": {\n \"id\": \"2e5c7f55-3373-36d6-e034-322c9ce6d765\",\n \"uid\": \"dolor officia nonipsum veniamlab\",\n \"user_id\": \"ad727d2e-e6d6-a1db-2828-6569d7b8273c\",\n \"role_id\": \"urn:uuid:99585e0d-7212-19aa-f647-080b40a7c199\"\n }\n}", + "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:082829f7-7690-20db-1008-a493a8fd8e05\",\n \"uid\": \"aliquip animpariaturirurecillum \",\n \"user_id\": \"5b78f3a9-f478-751e-84c4-d84aa505b52b\",\n \"role_id\": \"urn:uuid:c1af0fff-c54d-e33f-c408-cec6a7056882\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "237b956b-214a-4a60-8c68-6453dfba689a", + "id": "4e17b6b1-a530-4be4-adbb-4783bc24d659", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6408,7 +6408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94bd8f47-a759-45e9-ab2c-4819cf7623f0", + "id": "b6de2d09-ddb2-451f-8bcf-cdf8e8924c1f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6458,7 +6458,7 @@ } }, { - "id": "3643aff7-b820-4709-994c-fb77109563c5", + "id": "e4669cdb-c1e0-4642-af00-52cd90258771", "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:ab950fce-90fa-9356-6b92-d494cba90533\",\n \"role_id\": \"ef759b29-eefb-1f9d-c322-ae54543a16d7\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"58d95e88-8fb3-3682-35dc-ea9c62105738\",\n \"role_id\": \"252776c5-608a-47a5-512c-5cd4848eb5fe\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6513,7 +6513,7 @@ }, "response": [ { - "id": "eda8028d-f8c4-4b68-a340-5edf9dccd9b1", + "id": "fc017f88-bc75-4df4-add3-ca5fd027deab", "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:ab950fce-90fa-9356-6b92-d494cba90533\",\n \"role_id\": \"ef759b29-eefb-1f9d-c322-ae54543a16d7\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"58d95e88-8fb3-3682-35dc-ea9c62105738\",\n \"role_id\": \"252776c5-608a-47a5-512c-5cd4848eb5fe\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6565,12 +6565,12 @@ "value": "application/json" } ], - "body": "{\n \"user_role\": {\n \"id\": \"2e5c7f55-3373-36d6-e034-322c9ce6d765\",\n \"uid\": \"dolor officia nonipsum veniamlab\",\n \"user_id\": \"ad727d2e-e6d6-a1db-2828-6569d7b8273c\",\n \"role_id\": \"urn:uuid:99585e0d-7212-19aa-f647-080b40a7c199\"\n }\n}", + "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:082829f7-7690-20db-1008-a493a8fd8e05\",\n \"uid\": \"aliquip animpariaturirurecillum \",\n \"user_id\": \"5b78f3a9-f478-751e-84c4-d84aa505b52b\",\n \"role_id\": \"urn:uuid:c1af0fff-c54d-e33f-c408-cec6a7056882\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "012d0ad1-6faf-4c9a-a750-909ec4ddaea8", + "id": "eb1ac271-36a6-4eaa-b2d1-2d650d07e33d", "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:ab950fce-90fa-9356-6b92-d494cba90533\",\n \"role_id\": \"ef759b29-eefb-1f9d-c322-ae54543a16d7\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"58d95e88-8fb3-3682-35dc-ea9c62105738\",\n \"role_id\": \"252776c5-608a-47a5-512c-5cd4848eb5fe\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6627,7 +6627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f398e0c-2ba6-42d2-91d5-a39b19825be3", + "id": "cf82a651-7b95-47ed-9b6b-4aaaf14a51ac", "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:ab950fce-90fa-9356-6b92-d494cba90533\",\n \"role_id\": \"ef759b29-eefb-1f9d-c322-ae54543a16d7\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"58d95e88-8fb3-3682-35dc-ea9c62105738\",\n \"role_id\": \"252776c5-608a-47a5-512c-5cd4848eb5fe\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6690,7 +6690,7 @@ } }, { - "id": "843b223a-040a-4af3-aa84-bb2c589aa4a0", + "id": "878a592a-1d37-42a0-9a15-097732a10f87", "name": "Delete a user role assignment", "request": { "name": "Delete a user role assignment", @@ -6732,7 +6732,7 @@ }, "response": [ { - "id": "c81e65a3-09c0-493f-a3b9-c0c164b806b7", + "id": "71608379-f2d9-4f67-b2a2-fc090dd419b7", "name": "User role was destroyed", "originalRequest": { "url": { @@ -6776,7 +6776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfb69be0-6374-4ccb-a761-efd3cf4c29f4", + "id": "979e3870-53ea-46af-ab64-32e3eeb3cec1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6820,7 +6820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a65b88fa-bc7f-4475-8097-8dac61459f30", + "id": "be431577-7928-48ee-a917-fe1e7d7eee1e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6876,7 +6876,7 @@ "description": "", "item": [ { - "id": "938c1134-4eea-400a-9b1e-91034b1ab5f5", + "id": "123ec410-4724-4def-8d44-20368a7dd99a", "name": "Get attribute data in bulk", "request": { "name": "Get attribute data in bulk", @@ -6961,7 +6961,7 @@ }, "response": [ { - "id": "9aa7984a-1554-414a-a66e-76436a80bf77", + "id": "033acae6-6ade-49ba-8559-c1b8d4cfdbc1", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7054,12 +7054,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attributes\": [\n {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"magna in do minim adin eiusmoddo\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2001-12-19T12:57:52.052Z\",\n \"created_at\": \"1978-05-01T22:24:22.319Z\",\n \"updated_at\": \"2005-05-01T16:11:35.448Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"id aliquipaliqua nostrud culpa v\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1995-05-07T12:24:45.734Z\",\n \"created_at\": \"1984-10-13T12:12:47.782Z\",\n \"updated_at\": \"1980-03-02T04:22:27.782Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"2019-07-25T07:05:19.677Z\",\n \"tmp_updated_at\": \"2000-12-26T13:46:11.690Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n },\n {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"cillum pariaturpariatur reprehen\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1958-07-22T14:17:46.692Z\",\n \"created_at\": \"2000-10-07T20:37:38.270Z\",\n \"updated_at\": \"1992-04-10T16:33:13.867Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"nulla enimamet adipisicing nulla\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1986-08-23T14:37:18.350Z\",\n \"created_at\": \"1952-10-25T07:09:54.537Z\",\n \"updated_at\": \"1951-11-29T09:17:21.886Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1950-02-18T11:33:12.189Z\",\n \"tmp_updated_at\": \"1998-12-16T18:01:14.552Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n }\n ],\n \"_metadata\": {\n \"limit\": 63854824,\n \"offset\": 64566856,\n \"total\": -20859551,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"ne_attributes\": [\n {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"doUt sint ut exercitation LoremE\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2006-04-26T16:16:59.865Z\",\n \"created_at\": \"1965-01-24T02:40:22.573Z\",\n \"updated_at\": \"2003-02-01T16:35:48.362Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"elit anim dolore dolordolordolor\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1980-10-11T01:12:41.513Z\",\n \"created_at\": \"1950-10-14T07:09:50.373Z\",\n \"updated_at\": \"1956-03-04T01:17:57.078Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"2011-10-13T18:50:59.301Z\",\n \"tmp_updated_at\": \"1959-02-10T15:08:51.208Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n },\n {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"aliquip sunt magnaealaborumlabor\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1987-11-14T22:35:40.527Z\",\n \"created_at\": \"1963-05-06T18:13:10.744Z\",\n \"updated_at\": \"2001-10-10T07:43:09.239Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"aliqua id amet veniam ipsumest i\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2020-08-25T23:14:37.444Z\",\n \"created_at\": \"1945-07-05T14:08:17.300Z\",\n \"updated_at\": \"2012-09-10T12:59:31.848Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1951-02-14T11:37:47.218Z\",\n \"tmp_updated_at\": \"2023-04-02T09:52:06.346Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n }\n ],\n \"_metadata\": {\n \"limit\": -98647841,\n \"offset\": 98239698,\n \"total\": -1937930,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4230c2a4-6be4-4013-8aaa-1850292d8dcd", + "id": "919eaf64-5ca8-4c11-beaa-def88cab5391", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7157,7 +7157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95404dc8-642b-47fd-8be2-1f697675257f", + "id": "6052a80e-0a54-4b16-b6c2-0f2a9aaad024", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7261,7 +7261,7 @@ } }, { - "id": "f88ed26c-263c-46ea-a302-252f44cc8545", + "id": "859d3916-009e-4da5-abb5-1876bc3391c7", "name": "Create an attribute", "request": { "name": "Create an attribute", @@ -7292,7 +7292,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"quis proident Duisreprehenderit \",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"amet elit non ipsumlaboresit ali\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2006-05-27T22:57:42.749Z\",\n \"created_at\": \"1994-07-03T05:57:05.608Z\",\n \"updated_at\": \"1958-01-25T10:23:36.108Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1961-05-31T12:19:17.668Z\",\n \"tmp_updated_at\": \"2009-12-29T00:38:19.610Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"non deserunt laborum ea incididu\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"ex ut euest occaecat ullamco Dui\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1987-04-06T18:37:42.483Z\",\n \"created_at\": \"1989-08-31T02:48:57.984Z\",\n \"updated_at\": \"1990-11-29T20:38:34.509Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"2002-05-07T09:33:36.795Z\",\n \"tmp_updated_at\": \"1989-04-12T01:04:41.387Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7304,7 +7304,7 @@ }, "response": [ { - "id": "8d5fb184-6472-44c5-b50c-c8a97f21d663", + "id": "7bd2fca6-5d45-4fe1-bacc-91ed0b55d41d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7338,7 +7338,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"quis proident Duisreprehenderit \",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"amet elit non ipsumlaboresit ali\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2006-05-27T22:57:42.749Z\",\n \"created_at\": \"1994-07-03T05:57:05.608Z\",\n \"updated_at\": \"1958-01-25T10:23:36.108Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1961-05-31T12:19:17.668Z\",\n \"tmp_updated_at\": \"2009-12-29T00:38:19.610Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"non deserunt laborum ea incididu\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"ex ut euest occaecat ullamco Dui\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1987-04-06T18:37:42.483Z\",\n \"created_at\": \"1989-08-31T02:48:57.984Z\",\n \"updated_at\": \"1990-11-29T20:38:34.509Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"2002-05-07T09:33:36.795Z\",\n \"tmp_updated_at\": \"1989-04-12T01:04:41.387Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7355,12 +7355,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"ullamco laboris nisiproident lab\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2011-07-27T14:13:28.438Z\",\n \"created_at\": \"1990-06-26T15:36:24.655Z\",\n \"updated_at\": \"1964-05-04T01:52:04.841Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"culpa anim in consequatid do lab\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2008-01-11T07:02:53.680Z\",\n \"created_at\": \"1994-06-01T23:27:41.072Z\",\n \"updated_at\": \"1972-04-16T18:46:12.050Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"2016-06-27T00:29:44.997Z\",\n \"tmp_updated_at\": \"1988-07-10T00:19:23.860Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n }\n}", + "body": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"aute labore dolorelaboris sunt c\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1961-06-11T05:58:36.152Z\",\n \"created_at\": \"1998-02-05T17:43:20.251Z\",\n \"updated_at\": \"1973-10-30T00:13:56.074Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"consequat adipisicing adUt culpa\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2001-12-02T22:43:59.127Z\",\n \"created_at\": \"1949-08-07T10:41:40.908Z\",\n \"updated_at\": \"2005-12-03T19:17:59.636Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1991-03-23T01:17:54.962Z\",\n \"tmp_updated_at\": \"1959-04-26T00:12:46.021Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ab80de83-a6e0-4d85-92bf-a65747d42572", + "id": "559c2010-d6f0-4951-90f5-8198c733f5c8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7394,7 +7394,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"quis proident Duisreprehenderit \",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"amet elit non ipsumlaboresit ali\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2006-05-27T22:57:42.749Z\",\n \"created_at\": \"1994-07-03T05:57:05.608Z\",\n \"updated_at\": \"1958-01-25T10:23:36.108Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1961-05-31T12:19:17.668Z\",\n \"tmp_updated_at\": \"2009-12-29T00:38:19.610Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"non deserunt laborum ea incididu\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"ex ut euest occaecat ullamco Dui\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1987-04-06T18:37:42.483Z\",\n \"created_at\": \"1989-08-31T02:48:57.984Z\",\n \"updated_at\": \"1990-11-29T20:38:34.509Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"2002-05-07T09:33:36.795Z\",\n \"tmp_updated_at\": \"1989-04-12T01:04:41.387Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7416,7 +7416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6bc4724-84cb-4b29-829d-bb12a218db08", + "id": "964a2b3a-545e-44dd-b9c9-1aec5e09b8cb", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7450,7 +7450,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"quis proident Duisreprehenderit \",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"amet elit non ipsumlaboresit ali\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2006-05-27T22:57:42.749Z\",\n \"created_at\": \"1994-07-03T05:57:05.608Z\",\n \"updated_at\": \"1958-01-25T10:23:36.108Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1961-05-31T12:19:17.668Z\",\n \"tmp_updated_at\": \"2009-12-29T00:38:19.610Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"non deserunt laborum ea incididu\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"ex ut euest occaecat ullamco Dui\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1987-04-06T18:37:42.483Z\",\n \"created_at\": \"1989-08-31T02:48:57.984Z\",\n \"updated_at\": \"1990-11-29T20:38:34.509Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"2002-05-07T09:33:36.795Z\",\n \"tmp_updated_at\": \"1989-04-12T01:04:41.387Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7478,7 +7478,7 @@ } }, { - "id": "f66b51c2-946d-42ec-adec-b03a268c23d7", + "id": "48d8b3d1-edf3-4c60-b497-581cda312c46", "name": "Find attribute data by id", "request": { "name": "Find attribute data by id", @@ -7520,7 +7520,7 @@ }, "response": [ { - "id": "3d73e869-14e2-4245-a453-42f55173922e", + "id": "cdb93c0a-e8fd-42df-a33b-cb1e97cabd3d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7559,12 +7559,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"ullamco laboris nisiproident lab\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2011-07-27T14:13:28.438Z\",\n \"created_at\": \"1990-06-26T15:36:24.655Z\",\n \"updated_at\": \"1964-05-04T01:52:04.841Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"culpa anim in consequatid do lab\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2008-01-11T07:02:53.680Z\",\n \"created_at\": \"1994-06-01T23:27:41.072Z\",\n \"updated_at\": \"1972-04-16T18:46:12.050Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"2016-06-27T00:29:44.997Z\",\n \"tmp_updated_at\": \"1988-07-10T00:19:23.860Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n }\n}", + "body": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"aute labore dolorelaboris sunt c\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1961-06-11T05:58:36.152Z\",\n \"created_at\": \"1998-02-05T17:43:20.251Z\",\n \"updated_at\": \"1973-10-30T00:13:56.074Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"consequat adipisicing adUt culpa\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2001-12-02T22:43:59.127Z\",\n \"created_at\": \"1949-08-07T10:41:40.908Z\",\n \"updated_at\": \"2005-12-03T19:17:59.636Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1991-03-23T01:17:54.962Z\",\n \"tmp_updated_at\": \"1959-04-26T00:12:46.021Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "62d11bf6-2a33-469f-9798-40cc44bb7a41", + "id": "184ff573-fbbe-4e6c-b857-06625a2f69fe", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7608,7 +7608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6bf32e3-c60c-4aec-97b1-35ef3ca51fc9", + "id": "581b11ff-654e-4854-8e3c-472fce81ba55", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7658,7 +7658,7 @@ } }, { - "id": "0ec7ddca-c754-4d3d-957d-fa4470cde2c0", + "id": "f6629c22-bf7f-4ba0-931d-963fe59b7d46", "name": "Update attribute data by id", "request": { "name": "Update attribute data by id", @@ -7701,7 +7701,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"quis proident Duisreprehenderit \",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"amet elit non ipsumlaboresit ali\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2006-05-27T22:57:42.749Z\",\n \"created_at\": \"1994-07-03T05:57:05.608Z\",\n \"updated_at\": \"1958-01-25T10:23:36.108Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1961-05-31T12:19:17.668Z\",\n \"tmp_updated_at\": \"2009-12-29T00:38:19.610Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"non deserunt laborum ea incididu\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"ex ut euest occaecat ullamco Dui\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1987-04-06T18:37:42.483Z\",\n \"created_at\": \"1989-08-31T02:48:57.984Z\",\n \"updated_at\": \"1990-11-29T20:38:34.509Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"2002-05-07T09:33:36.795Z\",\n \"tmp_updated_at\": \"1989-04-12T01:04:41.387Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7713,7 +7713,7 @@ }, "response": [ { - "id": "b5fddecf-eb91-483b-9254-5f321fff6b5f", + "id": "246f46fc-22aa-4371-a4e5-ad8c04e08f72", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7748,7 +7748,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"quis proident Duisreprehenderit \",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"amet elit non ipsumlaboresit ali\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2006-05-27T22:57:42.749Z\",\n \"created_at\": \"1994-07-03T05:57:05.608Z\",\n \"updated_at\": \"1958-01-25T10:23:36.108Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1961-05-31T12:19:17.668Z\",\n \"tmp_updated_at\": \"2009-12-29T00:38:19.610Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"non deserunt laborum ea incididu\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"ex ut euest occaecat ullamco Dui\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1987-04-06T18:37:42.483Z\",\n \"created_at\": \"1989-08-31T02:48:57.984Z\",\n \"updated_at\": \"1990-11-29T20:38:34.509Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"2002-05-07T09:33:36.795Z\",\n \"tmp_updated_at\": \"1989-04-12T01:04:41.387Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7765,12 +7765,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"ullamco laboris nisiproident lab\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2011-07-27T14:13:28.438Z\",\n \"created_at\": \"1990-06-26T15:36:24.655Z\",\n \"updated_at\": \"1964-05-04T01:52:04.841Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"culpa anim in consequatid do lab\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2008-01-11T07:02:53.680Z\",\n \"created_at\": \"1994-06-01T23:27:41.072Z\",\n \"updated_at\": \"1972-04-16T18:46:12.050Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"2016-06-27T00:29:44.997Z\",\n \"tmp_updated_at\": \"1988-07-10T00:19:23.860Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n }\n}", + "body": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"aute labore dolorelaboris sunt c\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1961-06-11T05:58:36.152Z\",\n \"created_at\": \"1998-02-05T17:43:20.251Z\",\n \"updated_at\": \"1973-10-30T00:13:56.074Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"consequat adipisicing adUt culpa\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2001-12-02T22:43:59.127Z\",\n \"created_at\": \"1949-08-07T10:41:40.908Z\",\n \"updated_at\": \"2005-12-03T19:17:59.636Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1991-03-23T01:17:54.962Z\",\n \"tmp_updated_at\": \"1959-04-26T00:12:46.021Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e90b950-90df-4857-b3a9-299072ad872e", + "id": "9de65fd3-3385-4b28-877c-91a6f53861ef", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7805,7 +7805,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"quis proident Duisreprehenderit \",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"amet elit non ipsumlaboresit ali\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2006-05-27T22:57:42.749Z\",\n \"created_at\": \"1994-07-03T05:57:05.608Z\",\n \"updated_at\": \"1958-01-25T10:23:36.108Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1961-05-31T12:19:17.668Z\",\n \"tmp_updated_at\": \"2009-12-29T00:38:19.610Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"non deserunt laborum ea incididu\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"ex ut euest occaecat ullamco Dui\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1987-04-06T18:37:42.483Z\",\n \"created_at\": \"1989-08-31T02:48:57.984Z\",\n \"updated_at\": \"1990-11-29T20:38:34.509Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"2002-05-07T09:33:36.795Z\",\n \"tmp_updated_at\": \"1989-04-12T01:04:41.387Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7827,7 +7827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "955a5dad-f833-49b6-8dd1-f4362d3183cf", + "id": "f28ee717-ecf8-406c-9947-a14a48550497", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7862,7 +7862,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"quis proident Duisreprehenderit \",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"amet elit non ipsumlaboresit ali\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2006-05-27T22:57:42.749Z\",\n \"created_at\": \"1994-07-03T05:57:05.608Z\",\n \"updated_at\": \"1958-01-25T10:23:36.108Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1961-05-31T12:19:17.668Z\",\n \"tmp_updated_at\": \"2009-12-29T00:38:19.610Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"non deserunt laborum ea incididu\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"ex ut euest occaecat ullamco Dui\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1987-04-06T18:37:42.483Z\",\n \"created_at\": \"1989-08-31T02:48:57.984Z\",\n \"updated_at\": \"1990-11-29T20:38:34.509Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"2002-05-07T09:33:36.795Z\",\n \"tmp_updated_at\": \"1989-04-12T01:04:41.387Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7896,7 +7896,7 @@ "description": "", "item": [ { - "id": "e8782faf-ca40-4b29-a880-d0cb5cfeec11", + "id": "226f481b-1432-4502-88fd-4a92bed0f119", "name": "Add a value to an option based attribute", "request": { "name": "Add a value to an option based attribute", @@ -7927,7 +7927,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"319de3b0-64e9-a6c1-e1c7-636833c51e7d\",\n \"option\": \"eu ex eiusmod culpa\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:9e19d3de-9f42-d6b1-6665-81ea9aeb7eaa\",\n \"option\": \"velit in elit\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7939,7 +7939,7 @@ }, "response": [ { - "id": "41152efe-f1a3-4d6f-8e37-5f16d3695daf", + "id": "15c84976-7a9c-48fc-8d3d-73a0de873711", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7973,7 +7973,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"319de3b0-64e9-a6c1-e1c7-636833c51e7d\",\n \"option\": \"eu ex eiusmod culpa\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:9e19d3de-9f42-d6b1-6665-81ea9aeb7eaa\",\n \"option\": \"velit in elit\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7990,12 +7990,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_option\": {\n \"id\": \"2d2e7932-4c7e-927d-c65f-e5a4e6dbe5b9\",\n \"uid\": \"sed eu elit nostrudid in magnaEx\",\n \"ne_attribute_id\": \"29364806-f732-4147-ecec-5c7264c53c7c\",\n \"option\": \"velit fugiat\"\n }\n}", + "body": "{\n \"ne_attribute_option\": {\n \"id\": \"26071de3-e4b6-4d0f-8995-bee492216fd7\",\n \"uid\": \"occaecat sint elit consecteturpa\",\n \"ne_attribute_id\": \"urn:uuid:227b4fac-66dc-5444-5c3a-97972004351e\",\n \"option\": \"ut\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e4e58757-fbb6-4512-b460-85a22608eb85", + "id": "8379d0f9-4f6d-4ece-823c-8411161ab75f", "name": "Invalid input", "originalRequest": { "url": { @@ -8025,7 +8025,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"319de3b0-64e9-a6c1-e1c7-636833c51e7d\",\n \"option\": \"eu ex eiusmod culpa\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:9e19d3de-9f42-d6b1-6665-81ea9aeb7eaa\",\n \"option\": \"velit in elit\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8047,7 +8047,7 @@ } }, { - "id": "8ce61865-23a3-4e33-8829-12db74276435", + "id": "a1aed497-22de-4d98-837a-ce0369e6716e", "name": "Get option based attribute values", "request": { "name": "Get option based attribute values", @@ -8123,7 +8123,7 @@ }, "response": [ { - "id": "87c33dd4-7f11-4d06-8683-06c52050b139", + "id": "57c05049-2854-4f84-8552-9c7723ea7fb4", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8207,12 +8207,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"12263885-4635-7299-3fa1-ba77864682f2\",\n \"uid\": \"cupidatat incididunttempordeseru\",\n \"ne_attribute_id\": \"9e608a8b-ba1c-46ed-5aa9-4d0077309f92\",\n \"option\": \"ut cillum velit eiusmod\"\n },\n {\n \"id\": \"d46d9e24-8282-8e14-b683-37ec6fb48422\",\n \"uid\": \"Utdolor Lorem velit exercitation\",\n \"ne_attribute_id\": \"325b280b-f9db-0ee2-c23c-b2e026a2052b\",\n \"option\": \"proident incididunt quis\"\n }\n ],\n \"_metadata\": {\n \"limit\": 99556599,\n \"offset\": -83511897,\n \"total\": -73610238,\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:ceca1db5-9e59-0407-5e13-ea140812216b\",\n \"uid\": \"amet elit consequatullamco do si\",\n \"ne_attribute_id\": \"1a028675-7f2c-f5d8-4618-2d093f7add88\",\n \"option\": \"do sint\"\n },\n {\n \"id\": \"urn:uuid:a5cfa5fa-87ed-018f-2fc3-81fa6b4f9922\",\n \"uid\": \"consectetur deserunt indolore no\",\n \"ne_attribute_id\": \"urn:uuid:569c7444-4903-48bb-9991-5c7e30a8c443\",\n \"option\": \"anim occaecat eu\"\n }\n ],\n \"_metadata\": {\n \"limit\": 2787990,\n \"offset\": -57143095,\n \"total\": 3639608,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a5930a20-e551-427d-a808-815e3adb1fa8", + "id": "e8afb7da-c0ed-4150-9ab9-726902b9713f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8301,7 +8301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf24a6f0-0719-4d7a-be1e-00b4b390a9fc", + "id": "3cbf2d99-64a1-4b7d-8fe0-dcb0ce14ae92", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8396,7 +8396,7 @@ } }, { - "id": "1408ba42-4d92-4814-82d3-6f2406a7d93f", + "id": "7ac8e16f-8b36-4c64-ba01-0428e6fc0fec", "name": "Create multiple new option based attribute values", "request": { "name": "Create multiple new option based attribute values", @@ -8427,7 +8427,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"dbf62c3f-0591-0744-4718-dde6bb950c55\",\n \"option\": \"ut consectetur conseq\"\n },\n {\n \"ne_attribute_id\": \"6f14c117-c2c0-c014-839e-162788e443ab\",\n \"option\": \"cillum\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"da8d4f63-6d3a-43db-1081-2eb7e1d8e364\",\n \"option\": \"ullamco in in pariatur\"\n },\n {\n \"ne_attribute_id\": \"urn:uuid:e7ac5057-36f6-a8aa-c4f4-6e6c541a76d7\",\n \"option\": \"sunt \"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8439,7 +8439,7 @@ }, "response": [ { - "id": "1597ddb2-e42d-48dc-b36c-de953288e345", + "id": "5e818e15-17b4-4de7-b7a1-84749ea6dd91", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8473,7 +8473,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"dbf62c3f-0591-0744-4718-dde6bb950c55\",\n \"option\": \"ut consectetur conseq\"\n },\n {\n \"ne_attribute_id\": \"6f14c117-c2c0-c014-839e-162788e443ab\",\n \"option\": \"cillum\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"da8d4f63-6d3a-43db-1081-2eb7e1d8e364\",\n \"option\": \"ullamco in in pariatur\"\n },\n {\n \"ne_attribute_id\": \"urn:uuid:e7ac5057-36f6-a8aa-c4f4-6e6c541a76d7\",\n \"option\": \"sunt \"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8490,12 +8490,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:c4f13e2f-bc37-f9c9-9384-d61acddf5539\",\n \"uid\": \"elit enimesse elit inaliqua sint\",\n \"ne_attribute_id\": \"0ff0f0f6-3bca-0321-e372-401268c6f7bb\",\n \"option\": \"id consequat \"\n },\n {\n \"id\": \"c29f1f5a-afaa-7e0b-643c-d43018951d37\",\n \"uid\": \"utlaboreexercitation laboris eli\",\n \"ne_attribute_id\": \"2c8198ef-023e-2080-6edd-71b2e9a61524\",\n \"option\": \"deserunt nulla Duis\"\n }\n ]\n}", + "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:df2dc60e-9aef-d8c8-a3f7-0cd7f0a3bd07\",\n \"uid\": \"officia ut nulla consecteturmoll\",\n \"ne_attribute_id\": \"urn:uuid:3d2e5eba-f61e-88b6-3447-6e8ce8f06371\",\n \"option\": \"pariatur Ut dolor\"\n },\n {\n \"id\": \"urn:uuid:bd91792a-9069-1d2c-0877-59debc55129b\",\n \"uid\": \"anim ipsum incididunt Lorem exDu\",\n \"ne_attribute_id\": \"urn:uuid:580a6956-461c-6f3c-789c-c10e5db739f3\",\n \"option\": \"Lorem do ut dolor\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ed5c85bb-aa0f-4136-8a63-d6622289c9c2", + "id": "d7d51404-b544-4677-b39f-8802d791ab08", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8529,7 +8529,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"dbf62c3f-0591-0744-4718-dde6bb950c55\",\n \"option\": \"ut consectetur conseq\"\n },\n {\n \"ne_attribute_id\": \"6f14c117-c2c0-c014-839e-162788e443ab\",\n \"option\": \"cillum\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"da8d4f63-6d3a-43db-1081-2eb7e1d8e364\",\n \"option\": \"ullamco in in pariatur\"\n },\n {\n \"ne_attribute_id\": \"urn:uuid:e7ac5057-36f6-a8aa-c4f4-6e6c541a76d7\",\n \"option\": \"sunt \"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8551,7 +8551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e7f1512-df50-406c-a5c3-3740d3abe1c8", + "id": "78fbc6ee-cb5e-413a-9b3b-2c1471aeff7f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8585,7 +8585,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"dbf62c3f-0591-0744-4718-dde6bb950c55\",\n \"option\": \"ut consectetur conseq\"\n },\n {\n \"ne_attribute_id\": \"6f14c117-c2c0-c014-839e-162788e443ab\",\n \"option\": \"cillum\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"da8d4f63-6d3a-43db-1081-2eb7e1d8e364\",\n \"option\": \"ullamco in in pariatur\"\n },\n {\n \"ne_attribute_id\": \"urn:uuid:e7ac5057-36f6-a8aa-c4f4-6e6c541a76d7\",\n \"option\": \"sunt \"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8613,7 +8613,7 @@ } }, { - "id": "4c18f45a-3a8f-4b0b-a519-aa62ad2aa803", + "id": "6fa3952f-f7e2-4fd4-b7c8-28802e8bfb2e", "name": "Update multiple option based attribute values", "request": { "name": "Update multiple option based attribute values", @@ -8644,7 +8644,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"cd342f1e-03a8-94af-fb42-9a8f61d42634\",\n \"ne_attribute_id\": \"ac556a7d-2951-0f74-3bb2-e3d3fd2adc3e\",\n \"option\": \"dolore laborum\"\n },\n {\n \"id\": \"1c986079-092d-8ecb-8c37-f60790d211c4\",\n \"ne_attribute_id\": \"urn:uuid:772e2a2a-e6cf-32be-430d-166cf30c0c8b\",\n \"option\": \"commodo do mollit ad dolore\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:d8e57fe0-4878-eb95-9a8d-0456b8330659\",\n \"ne_attribute_id\": \"urn:uuid:69a44c8a-8128-1854-f42a-d072e9b7b564\",\n \"option\": \"volupta\"\n },\n {\n \"id\": \"urn:uuid:9c2237b8-e6c0-9dda-3416-4e1ac25e649e\",\n \"ne_attribute_id\": \"1a82a5bc-df7b-4da2-4bf6-c21461d75c79\",\n \"option\": \"sint voluptate pariatur ea\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8656,7 +8656,7 @@ }, "response": [ { - "id": "d2f6017a-100b-4a64-8235-99a760ca7111", + "id": "75f5d9a5-9bec-4658-9c06-0d079abcc0ab", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8690,7 +8690,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"cd342f1e-03a8-94af-fb42-9a8f61d42634\",\n \"ne_attribute_id\": \"ac556a7d-2951-0f74-3bb2-e3d3fd2adc3e\",\n \"option\": \"dolore laborum\"\n },\n {\n \"id\": \"1c986079-092d-8ecb-8c37-f60790d211c4\",\n \"ne_attribute_id\": \"urn:uuid:772e2a2a-e6cf-32be-430d-166cf30c0c8b\",\n \"option\": \"commodo do mollit ad dolore\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:d8e57fe0-4878-eb95-9a8d-0456b8330659\",\n \"ne_attribute_id\": \"urn:uuid:69a44c8a-8128-1854-f42a-d072e9b7b564\",\n \"option\": \"volupta\"\n },\n {\n \"id\": \"urn:uuid:9c2237b8-e6c0-9dda-3416-4e1ac25e649e\",\n \"ne_attribute_id\": \"1a82a5bc-df7b-4da2-4bf6-c21461d75c79\",\n \"option\": \"sint voluptate pariatur ea\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8707,12 +8707,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:c4f13e2f-bc37-f9c9-9384-d61acddf5539\",\n \"uid\": \"elit enimesse elit inaliqua sint\",\n \"ne_attribute_id\": \"0ff0f0f6-3bca-0321-e372-401268c6f7bb\",\n \"option\": \"id consequat \"\n },\n {\n \"id\": \"c29f1f5a-afaa-7e0b-643c-d43018951d37\",\n \"uid\": \"utlaboreexercitation laboris eli\",\n \"ne_attribute_id\": \"2c8198ef-023e-2080-6edd-71b2e9a61524\",\n \"option\": \"deserunt nulla Duis\"\n }\n ]\n}", + "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:df2dc60e-9aef-d8c8-a3f7-0cd7f0a3bd07\",\n \"uid\": \"officia ut nulla consecteturmoll\",\n \"ne_attribute_id\": \"urn:uuid:3d2e5eba-f61e-88b6-3447-6e8ce8f06371\",\n \"option\": \"pariatur Ut dolor\"\n },\n {\n \"id\": \"urn:uuid:bd91792a-9069-1d2c-0877-59debc55129b\",\n \"uid\": \"anim ipsum incididunt Lorem exDu\",\n \"ne_attribute_id\": \"urn:uuid:580a6956-461c-6f3c-789c-c10e5db739f3\",\n \"option\": \"Lorem do ut dolor\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "84a35726-80c8-4367-a88d-af7551ce7872", + "id": "ad9aa49e-0216-40e6-bb2b-9e02cc8b4698", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8746,7 +8746,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"cd342f1e-03a8-94af-fb42-9a8f61d42634\",\n \"ne_attribute_id\": \"ac556a7d-2951-0f74-3bb2-e3d3fd2adc3e\",\n \"option\": \"dolore laborum\"\n },\n {\n \"id\": \"1c986079-092d-8ecb-8c37-f60790d211c4\",\n \"ne_attribute_id\": \"urn:uuid:772e2a2a-e6cf-32be-430d-166cf30c0c8b\",\n \"option\": \"commodo do mollit ad dolore\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:d8e57fe0-4878-eb95-9a8d-0456b8330659\",\n \"ne_attribute_id\": \"urn:uuid:69a44c8a-8128-1854-f42a-d072e9b7b564\",\n \"option\": \"volupta\"\n },\n {\n \"id\": \"urn:uuid:9c2237b8-e6c0-9dda-3416-4e1ac25e649e\",\n \"ne_attribute_id\": \"1a82a5bc-df7b-4da2-4bf6-c21461d75c79\",\n \"option\": \"sint voluptate pariatur ea\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8768,7 +8768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f74877b4-ebe9-45e3-b253-d67aa725d77c", + "id": "12e2173f-9f88-413b-8e65-57e73b21354f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8802,7 +8802,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"cd342f1e-03a8-94af-fb42-9a8f61d42634\",\n \"ne_attribute_id\": \"ac556a7d-2951-0f74-3bb2-e3d3fd2adc3e\",\n \"option\": \"dolore laborum\"\n },\n {\n \"id\": \"1c986079-092d-8ecb-8c37-f60790d211c4\",\n \"ne_attribute_id\": \"urn:uuid:772e2a2a-e6cf-32be-430d-166cf30c0c8b\",\n \"option\": \"commodo do mollit ad dolore\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:d8e57fe0-4878-eb95-9a8d-0456b8330659\",\n \"ne_attribute_id\": \"urn:uuid:69a44c8a-8128-1854-f42a-d072e9b7b564\",\n \"option\": \"volupta\"\n },\n {\n \"id\": \"urn:uuid:9c2237b8-e6c0-9dda-3416-4e1ac25e649e\",\n \"ne_attribute_id\": \"1a82a5bc-df7b-4da2-4bf6-c21461d75c79\",\n \"option\": \"sint voluptate pariatur ea\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8830,7 +8830,7 @@ } }, { - "id": "fb4382b3-e5fd-4deb-b31b-78abcf3e42f5", + "id": "f2eb1940-5209-4cdb-ba73-e4496c302d64", "name": "Find option based attribute value by id", "request": { "name": "Find option based attribute value by id", @@ -8872,7 +8872,7 @@ }, "response": [ { - "id": "9303ab38-1587-42b6-b36a-d1486fe7fecd", + "id": "6e6a4328-0ef6-4f9f-b9d2-4d18bfae2491", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8911,12 +8911,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_option\": {\n \"id\": \"2d2e7932-4c7e-927d-c65f-e5a4e6dbe5b9\",\n \"uid\": \"sed eu elit nostrudid in magnaEx\",\n \"ne_attribute_id\": \"29364806-f732-4147-ecec-5c7264c53c7c\",\n \"option\": \"velit fugiat\"\n }\n}", + "body": "{\n \"ne_attribute_option\": {\n \"id\": \"26071de3-e4b6-4d0f-8995-bee492216fd7\",\n \"uid\": \"occaecat sint elit consecteturpa\",\n \"ne_attribute_id\": \"urn:uuid:227b4fac-66dc-5444-5c3a-97972004351e\",\n \"option\": \"ut\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "de750c7c-2731-45ca-bd96-9bff62899d6f", + "id": "47b8b633-ed00-4637-987b-b75ec6f29163", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8960,7 +8960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3501475-a2d3-4119-a317-22d6debd8ab4", + "id": "bbbb18e6-0652-4d63-bd11-e04179ed1095", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9010,7 +9010,7 @@ } }, { - "id": "31c95922-c98e-4a86-847b-31f7ff211d82", + "id": "82aa5a3e-aeda-4c3f-8caa-21941afece06", "name": "Update a option based attribute value by id", "request": { "name": "Update a option based attribute value by id", @@ -9053,7 +9053,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"319de3b0-64e9-a6c1-e1c7-636833c51e7d\",\n \"option\": \"eu ex eiusmod culpa\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:9e19d3de-9f42-d6b1-6665-81ea9aeb7eaa\",\n \"option\": \"velit in elit\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9065,7 +9065,7 @@ }, "response": [ { - "id": "5c152b54-6572-4101-8ff8-5334bb992e6d", + "id": "7e6eedfd-94f2-44b4-858a-9ced2a9647af", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9100,7 +9100,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"319de3b0-64e9-a6c1-e1c7-636833c51e7d\",\n \"option\": \"eu ex eiusmod culpa\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:9e19d3de-9f42-d6b1-6665-81ea9aeb7eaa\",\n \"option\": \"velit in elit\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9117,12 +9117,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_option\": {\n \"id\": \"2d2e7932-4c7e-927d-c65f-e5a4e6dbe5b9\",\n \"uid\": \"sed eu elit nostrudid in magnaEx\",\n \"ne_attribute_id\": \"29364806-f732-4147-ecec-5c7264c53c7c\",\n \"option\": \"velit fugiat\"\n }\n}", + "body": "{\n \"ne_attribute_option\": {\n \"id\": \"26071de3-e4b6-4d0f-8995-bee492216fd7\",\n \"uid\": \"occaecat sint elit consecteturpa\",\n \"ne_attribute_id\": \"urn:uuid:227b4fac-66dc-5444-5c3a-97972004351e\",\n \"option\": \"ut\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1db612f8-d5c3-45b1-80f8-4a90a0506f8b", + "id": "e36c75cb-608b-4890-869b-cee4c5f5c0e1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9157,7 +9157,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"319de3b0-64e9-a6c1-e1c7-636833c51e7d\",\n \"option\": \"eu ex eiusmod culpa\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:9e19d3de-9f42-d6b1-6665-81ea9aeb7eaa\",\n \"option\": \"velit in elit\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9179,7 +9179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c788927c-0d3b-4476-ab95-8e1305f3359c", + "id": "04d35e42-8c3a-4c15-b26c-ad00e83c3c81", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9214,7 +9214,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"319de3b0-64e9-a6c1-e1c7-636833c51e7d\",\n \"option\": \"eu ex eiusmod culpa\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:9e19d3de-9f42-d6b1-6665-81ea9aeb7eaa\",\n \"option\": \"velit in elit\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9242,7 +9242,7 @@ } }, { - "id": "91258af9-8eef-4c98-bdcb-8ca782fa17af", + "id": "aa82c08a-c1d7-40e1-b557-0127a9d54095", "name": "Delete a option based attribute value by id", "request": { "name": "Delete a option based attribute value by id", @@ -9284,7 +9284,7 @@ }, "response": [ { - "id": "c700164c-793a-426a-8243-6e3b2941517c", + "id": "4356755e-3b98-48c6-96a2-236820aa3069", "name": "Confirmation of a deleted object", "originalRequest": { "url": { @@ -9328,7 +9328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7753280b-0170-424b-8e79-85f25c7f49b7", + "id": "db65030b-5dc5-4c65-8108-450c9d563e2f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9372,7 +9372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5643927-101c-4264-b1ee-36f30b268779", + "id": "d496c9e4-8387-49c4-8ae5-0b292d63b227", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9428,7 +9428,7 @@ "description": "", "item": [ { - "id": "bcdfc6b7-a8ea-4c1d-85d4-75a08e7479bf", + "id": "8b2d38c4-cecb-48c6-be36-68fcc7b50d5d", "name": "Create a profile page", "request": { "name": "Create a profile page", @@ -9472,7 +9472,7 @@ }, "response": [ { - "id": "fe2fb2e1-bbd9-4d06-9509-5e5132dfa6b8", + "id": "103f2e5d-d3cd-4d95-8336-ed1305d87b78", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9529,7 +9529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63f4c8a5-a89e-4845-925d-4df4e6987daa", + "id": "e0f1422d-520c-4378-aa88-872c25a22f8b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9586,7 +9586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d6876db-fd32-46ea-a277-275b19b76599", + "id": "1b3978c7-6594-49e0-b7fc-e1a4a07b04ea", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9649,7 +9649,7 @@ } }, { - "id": "b57d3725-2a67-4654-aa2f-a9057b21b51d", + "id": "2c5eca83-bf71-429f-95e9-e16a9e1a40d7", "name": "Create a workflow page", "request": { "name": "Create a workflow page", @@ -9693,7 +9693,7 @@ }, "response": [ { - "id": "e238d18a-18f3-4e8b-aa34-10636a3f6555", + "id": "fb2804fc-fd40-4059-b4a5-0f61cabd5372", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9750,7 +9750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0372c55e-5336-47f2-a9f3-5e8afd3515cd", + "id": "d08e7e80-49b3-41f7-9212-b5a2be461967", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9807,7 +9807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "729cc841-bce2-444c-a8e5-4c9520f8fb14", + "id": "b987b004-7f26-437a-8635-eeca2c01e0bb", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9876,7 +9876,7 @@ "description": "", "item": [ { - "id": "6a04318a-1ab1-44a9-ba55-1fc225e7ab48", + "id": "bae8e7af-644a-46c3-861b-8b37d31d5f7a", "name": "Create a profile type", "request": { "name": "Create a profile type", @@ -9907,7 +9907,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\": \"esseveniam reprehenderit sitsint\",\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\": \"nulla estest nostrud amettempor \",\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\": \"laborumesse consequat doloreculp\",\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\": \"veniam incididunt ullamcoveniam \",\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\": \"sed in esse estincididunt utExce\",\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\": \"elit incididunt incupidatat temp\",\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\": \"velit occaecat exercitationametc\",\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 nisi inlabore sint velit\",\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", @@ -9919,7 +9919,7 @@ }, "response": [ { - "id": "2b7c7a37-798c-4941-980e-a094e50a7e28", + "id": "8eee2c75-9463-4290-81ec-444ffafd0460", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9953,7 +9953,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\": \"esseveniam reprehenderit sitsint\",\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\": \"nulla estest nostrud amettempor \",\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\": \"laborumesse consequat doloreculp\",\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\": \"veniam incididunt ullamcoveniam \",\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\": \"sed in esse estincididunt utExce\",\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\": \"elit incididunt incupidatat temp\",\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\": \"velit occaecat exercitationametc\",\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 nisi inlabore sint velit\",\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", @@ -9970,12 +9970,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut cupidatatdolore cupidatat dol\",\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\": \"commodo cupidatat exut adipisici\",\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\": \"non aliquip in esse nulladolor t\",\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\": \"magnaminim sintdo laboris noneu \",\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\": \"commodo eiusmod laboris incididu\",\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\": \"non tempor magna utesseculpa ven\",\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\": \"quis veniamelit mollit aliquaid \",\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\": \"etad Lorem enim quicillum mollit\",\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\": \"consequat dolore esse quiconsect\",\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 reprehenderit et eiusmod\",\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": "c1d98e93-ac36-4703-8baf-0aa792d0b8fb", + "id": "060af12b-8d96-49df-9377-1f8ec7bf5192", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10009,7 +10009,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\": \"esseveniam reprehenderit sitsint\",\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\": \"nulla estest nostrud amettempor \",\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\": \"laborumesse consequat doloreculp\",\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\": \"veniam incididunt ullamcoveniam \",\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\": \"sed in esse estincididunt utExce\",\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\": \"elit incididunt incupidatat temp\",\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\": \"velit occaecat exercitationametc\",\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 nisi inlabore sint velit\",\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", @@ -10031,7 +10031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41bf8b1b-ee96-4489-a97b-d62fcc53dd8d", + "id": "8f4fdc1a-1c33-4d68-b134-3d0c3491b266", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10065,7 +10065,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\": \"esseveniam reprehenderit sitsint\",\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\": \"nulla estest nostrud amettempor \",\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\": \"laborumesse consequat doloreculp\",\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\": \"veniam incididunt ullamcoveniam \",\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\": \"sed in esse estincididunt utExce\",\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\": \"elit incididunt incupidatat temp\",\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\": \"velit occaecat exercitationametc\",\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 nisi inlabore sint velit\",\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", @@ -10093,7 +10093,7 @@ } }, { - "id": "a9fd311d-9811-4b70-b415-4cf6f0d02d69", + "id": "4da0b3b1-c9f4-44ef-908d-5fb6bddf3908", "name": "Get profile types", "request": { "name": "Get profile types", @@ -10143,7 +10143,7 @@ "type": "text/plain" }, "key": "name", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -10178,7 +10178,7 @@ }, "response": [ { - "id": "ba42468c-5ce6-42e7-95a5-c35126efffab", + "id": "a218d72f-3f90-41c4-8953-f6023b586412", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10223,7 +10223,7 @@ "type": "text/plain" }, "key": "name", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -10271,12 +10271,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_types\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ullamco voluptate minim elitipsu\",\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\": \"ut dolore indolore non dolorinci\",\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\": \"nonelit eu et aliquip incididunt\",\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\": \"amet iruredo aliqua eu animproid\",\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\": \"elit nulla id aliquaex consectet\",\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\": \"velit non Duis sintculpa non eiu\",\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\": \"nostrud aliqua consecteturcupida\",\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\": \"ut sed fugiat laboreoccaecat dod\",\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\": \"quidolore ullamco ipsum nulla pr\",\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\": \"velitreprehenderit elit idullamc\",\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\": 20235369,\n \"offset\": 8892305,\n \"total\": 72454441,\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\": \"et minim inaliqua tempor deserun\",\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\": \"elit aliqualaboris velit 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\": \"dolor autemollitcupidatat nostru\",\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\": \"laboris et ut consecteturqui pro\",\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 pariatur veniamdolor 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 },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"magna consectetur Loremanim veni\",\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\": \"dolore sit veniaminenim ut amet \",\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\": \"elit qui aliqua ea nonreprehende\",\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\": \"est cillumpariatur dolor proiden\",\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\": \"Duis dolor irureamet adipisicing\",\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\": -16299032,\n \"offset\": -88010685,\n \"total\": -5302255,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b587e489-36d0-48d4-a3d3-c1c32169cc4c", + "id": "33500528-da03-4bf6-86d4-234aad03d19e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10321,7 +10321,7 @@ "type": "text/plain" }, "key": "name", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -10374,7 +10374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ea688f1-bca8-4a0b-9902-fef78bd7ab01", + "id": "09721a06-8ca9-4889-b1c5-dccf52abb2b9", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10419,7 +10419,7 @@ "type": "text/plain" }, "key": "name", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -10478,7 +10478,7 @@ } }, { - "id": "78d1917c-bdac-41ba-b705-d4f6dcbba5e9", + "id": "65245528-cdc6-40f0-9126-262c0cbbe9be", "name": "Find profile type by id", "request": { "name": "Find profile type by id", @@ -10520,7 +10520,7 @@ }, "response": [ { - "id": "acf25aa1-8212-465a-8288-8742f60f2d26", + "id": "0fede24e-2084-4629-84c1-b15384a0929a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10559,12 +10559,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut cupidatatdolore cupidatat dol\",\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\": \"commodo cupidatat exut adipisici\",\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\": \"non aliquip in esse nulladolor t\",\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\": \"magnaminim sintdo laboris noneu \",\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\": \"commodo eiusmod laboris incididu\",\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\": \"non tempor magna utesseculpa ven\",\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\": \"quis veniamelit mollit aliquaid \",\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\": \"etad Lorem enim quicillum mollit\",\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\": \"consequat dolore esse quiconsect\",\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 reprehenderit et eiusmod\",\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": "ac03566c-e6a7-4ce0-9f8d-3404773aafae", + "id": "1da51be3-1d47-4975-9d43-d9f0f7e583c1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10608,7 +10608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee2fc06e-107e-4ed1-a34b-bdd8ba02659b", + "id": "5b986a52-41ce-4e62-8e9d-7159a320f2b4", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10658,7 +10658,7 @@ } }, { - "id": "b75f523b-bea3-4e75-b644-caec4a4a53fd", + "id": "05c8ee69-0e03-4580-80e5-242736f60aaa", "name": "Update a profile type by id", "request": { "name": "Update a profile type by id", @@ -10701,7 +10701,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\": \"id ex incididuntaliquip ea proid\",\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\": \"quis consequateiusmod animsit ni\",\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\": \"consectetur veniamfugiat seddolo\",\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 ipsumadipisicing 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 }\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\": \"labore irure incididuntveniam oc\",\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\": \"anim cillum incupidatat reprehen\",\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\": \"veniam proidentoccaecat pariatur\",\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\": \"esse quiminim occaecat magna ips\",\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", @@ -10713,7 +10713,7 @@ }, "response": [ { - "id": "71e05782-c919-4e0e-a251-3c0f350ff33a", + "id": "2b5ffe5b-ab3c-4766-b815-c46a78ef0b86", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10748,7 +10748,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\": \"id ex incididuntaliquip ea proid\",\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\": \"quis consequateiusmod animsit ni\",\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\": \"consectetur veniamfugiat seddolo\",\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 ipsumadipisicing 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 }\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\": \"labore irure incididuntveniam oc\",\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\": \"anim cillum incupidatat reprehen\",\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\": \"veniam proidentoccaecat pariatur\",\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\": \"esse quiminim occaecat magna ips\",\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", @@ -10765,12 +10765,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut cupidatatdolore cupidatat dol\",\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\": \"commodo cupidatat exut adipisici\",\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\": \"non aliquip in esse nulladolor t\",\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\": \"magnaminim sintdo laboris noneu \",\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\": \"commodo eiusmod laboris incididu\",\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\": \"non tempor magna utesseculpa ven\",\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\": \"quis veniamelit mollit aliquaid \",\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\": \"etad Lorem enim quicillum mollit\",\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\": \"consequat dolore esse quiconsect\",\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 reprehenderit et eiusmod\",\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": "52b1ada5-0fdc-4400-bc0b-7bf8a5162e53", + "id": "0067890a-7b40-4627-9bf3-427660d33982", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10805,7 +10805,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\": \"id ex incididuntaliquip ea proid\",\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\": \"quis consequateiusmod animsit ni\",\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\": \"consectetur veniamfugiat seddolo\",\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 ipsumadipisicing 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 }\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\": \"labore irure incididuntveniam oc\",\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\": \"anim cillum incupidatat reprehen\",\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\": \"veniam proidentoccaecat pariatur\",\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\": \"esse quiminim occaecat magna ips\",\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", @@ -10827,7 +10827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da94d1ea-5795-4554-903d-ef64c54581bf", + "id": "9c1b3560-25ec-4c9d-88e8-300583f02133", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10862,7 +10862,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\": \"id ex incididuntaliquip ea proid\",\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\": \"quis consequateiusmod animsit ni\",\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\": \"consectetur veniamfugiat seddolo\",\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 ipsumadipisicing 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 }\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\": \"labore irure incididuntveniam oc\",\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\": \"anim cillum incupidatat reprehen\",\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\": \"veniam proidentoccaecat pariatur\",\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\": \"esse quiminim occaecat magna ips\",\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", @@ -10890,7 +10890,7 @@ } }, { - "id": "f755e7b6-bc86-4c35-a8fc-b64e85dca6fb", + "id": "38965444-e981-4fcc-b00a-5d1c218babe2", "name": "Delete profile type", "request": { "name": "Delete profile type", @@ -10932,7 +10932,7 @@ }, "response": [ { - "id": "6bfd9d5d-3ae0-4396-9ae4-bfc8a4d61485", + "id": "a1e502e8-befa-4ab7-8e0f-1b34016ed3d0", "name": "Info about the operation", "originalRequest": { "url": { @@ -10976,7 +10976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd3f1765-ff74-4fc0-831b-21023024bf40", + "id": "e25b0573-ee34-4659-bfc6-dccd43f0ef2a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11020,7 +11020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddecf865-e220-4a9c-83eb-d7f5ad6fc967", + "id": "b50551fd-d869-4a63-a787-70da27154e82", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11076,7 +11076,7 @@ "description": "", "item": [ { - "id": "3188014a-7542-477c-a167-b0a59092cf15", + "id": "06d7275f-bed9-46d4-8f04-5481950b114c", "name": "profile_types/ne_attributes synced status", "request": { "name": "profile_types/ne_attributes synced status", @@ -11174,7 +11174,7 @@ }, "response": [ { - "id": "12f1bde0-2f15-47ca-b878-1d3106bbc30e", + "id": "1066f1ca-23bb-4622-aae1-49fd2d3f022a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11260,12 +11260,12 @@ "value": "application/json" } ], - "body": "{\n \"form\": {\n \"count\": 5,\n \"records\": [\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"culpa occaecatDuis quiadipisicin\",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n },\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"amet adipisicingut in quislabori\",\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 inqui sed consectetur dosed\",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n },\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"dolor laboris quimagna Ut dolor \",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9ae3e56a-0c73-4480-bc2e-875ff49014e3", + "id": "c4315df2-d110-421b-8486-2bc6d6d75558", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11356,7 +11356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4342a47-942c-4f11-a28e-09af78cf3029", + "id": "7cdc5cb1-7236-4206-83a6-1b0687fb8f94", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11453,7 +11453,7 @@ } }, { - "id": "b9a3a5cc-d858-4089-9881-2d1b6ebe4baa", + "id": "2aff8601-6d22-40c3-af7d-c9aaa8d71fb9", "name": "Create a synced attribute", "request": { "name": "Create a synced attribute", @@ -11503,7 +11503,7 @@ }, "response": [ { - "id": "3c2ac5e8-55f7-4146-8ba6-db3d6d8f7c62", + "id": "59a809e7-1d3f-4116-a047-ba7d38770fd9", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11561,7 +11561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36cd3c4f-62a8-4d82-8ab1-251ffecf2319", + "id": "9d1f88bb-a2f9-4282-a33f-2c798fb13647", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11619,7 +11619,7 @@ "_postman_previewlanguage": "json" }, { - "id": "587e681d-acf1-4dcd-abf5-03098205a903", + "id": "152196dc-af61-423c-a002-0cabfb4a91e8", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11683,7 +11683,7 @@ } }, { - "id": "17b09b61-ad45-41b8-abf6-b962a2ab4b91", + "id": "a17244b7-a5ac-4e05-a97a-168f227d7544", "name": "Delete synced attribute", "request": { "name": "Delete synced attribute", @@ -11737,7 +11737,7 @@ }, "response": [ { - "id": "c5b4167d-4bf1-4bd4-8a9d-c8e8f8617c00", + "id": "e8c64425-ae32-4da3-b8bc-8252ac561a1d", "name": "Info about the operation", "originalRequest": { "url": { @@ -11783,7 +11783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e0c7493-0483-4cd5-ac13-686db2f044fb", + "id": "b3586e8c-68e2-4efe-8b8c-c022c80b13c9", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11829,7 +11829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d9e2f37-3780-4069-ba5f-0539ff94be7e", + "id": "a9137737-b4ad-438c-b5a7-570a632ed79a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11887,7 +11887,7 @@ "description": "", "item": [ { - "id": "b5e7ec8e-8b07-477c-87fc-b8e41af8dcfc", + "id": "6af29a03-7631-473e-959b-781957f2580b", "name": "Create a profile type role", "request": { "name": "Create a profile type role", @@ -11930,7 +11930,7 @@ }, "response": [ { - "id": "f84542a5-550f-4e42-b172-737eac30f86a", + "id": "54104658-1ac6-481a-ad19-66a5ece6873a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11986,7 +11986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd250499-d31a-4c38-be18-e1a033d11864", + "id": "b6892254-99a0-4665-b659-1c41aec5dbe2", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12042,7 +12042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28800ab2-28d3-4a3f-85f3-9ec866f9ce47", + "id": "1a5dd38f-d363-475a-9850-36dc0a59a27a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12110,7 +12110,7 @@ "description": "", "item": [ { - "id": "c91b7b33-5cf3-49f1-9e2f-353f17fb8718", + "id": "93769696-75fd-4b6f-9939-1dcfe9646b7f", "name": "Create a profile", "request": { "name": "Create a profile", @@ -12141,7 +12141,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"Lorem eiusmod enim\",\n \"profile_type_id\": \"0362dd5f-9ee8-d5d2-a745-9cc3e12c3b9e\",\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}", + "raw": "{\n \"profile\": {\n \"name\": \"Duis\",\n \"profile_type_id\": \"15df1124-e211-c90d-248e-887277e73789\",\n \"status\": \"Terminated\",\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", @@ -12153,7 +12153,7 @@ }, "response": [ { - "id": "c208c0f0-4059-44f7-98a9-6e88ce515c8f", + "id": "9f221346-6a39-4bdf-8d5b-067981764753", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12187,7 +12187,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"Lorem eiusmod enim\",\n \"profile_type_id\": \"0362dd5f-9ee8-d5d2-a745-9cc3e12c3b9e\",\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}", + "raw": "{\n \"profile\": {\n \"name\": \"Duis\",\n \"profile_type_id\": \"15df1124-e211-c90d-248e-887277e73789\",\n \"status\": \"Terminated\",\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", @@ -12204,12 +12204,12 @@ "value": "application/json" } ], - "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"irureexercitation velit in sedal\",\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\": \"veniam mollitanimcommodo in volu\",\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": "a041dace-a355-4cc7-a6c5-341f24827c4d", + "id": "b950c644-df07-42aa-8baf-179587b63482", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12243,7 +12243,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"Lorem eiusmod enim\",\n \"profile_type_id\": \"0362dd5f-9ee8-d5d2-a745-9cc3e12c3b9e\",\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}", + "raw": "{\n \"profile\": {\n \"name\": \"Duis\",\n \"profile_type_id\": \"15df1124-e211-c90d-248e-887277e73789\",\n \"status\": \"Terminated\",\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", @@ -12265,7 +12265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61fec8ff-9e3c-41d7-b343-4031eeb68e57", + "id": "9c47deb8-df63-4d26-8e23-ae7c1294f2ca", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12299,7 +12299,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"Lorem eiusmod enim\",\n \"profile_type_id\": \"0362dd5f-9ee8-d5d2-a745-9cc3e12c3b9e\",\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}", + "raw": "{\n \"profile\": {\n \"name\": \"Duis\",\n \"profile_type_id\": \"15df1124-e211-c90d-248e-887277e73789\",\n \"status\": \"Terminated\",\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", @@ -12327,7 +12327,7 @@ } }, { - "id": "c6d6f111-b3d7-4c62-aa73-b27ff9a3740c", + "id": "c666335d-65d3-4605-8dba-1c62e18785a6", "name": "Get profiles", "request": { "name": "Get profiles", @@ -12386,7 +12386,7 @@ "type": "text/plain" }, "key": "name", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -12395,7 +12395,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -12404,7 +12404,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "Inactive" }, { "disabled": false, @@ -12430,7 +12430,7 @@ }, "response": [ { - "id": "16214c1d-7bb0-4187-b41f-32150b01cd0f", + "id": "4a29b583-4b55-40ec-ba37-b00202148602", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12484,7 +12484,7 @@ "type": "text/plain" }, "key": "name", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -12493,7 +12493,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -12502,7 +12502,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "Inactive" }, { "disabled": false, @@ -12541,12 +12541,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in ullamco cupidatat sint commod\",\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\": \"reprehenderit sintdeserunt est f\",\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\": -43481237,\n \"offset\": 3886207,\n \"total\": -77239298,\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\": \"proident labore commodo cupidata\",\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\": \"dolor inamet labore veniamoffici\",\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\": 77452133,\n \"offset\": -19174553,\n \"total\": 4002876,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2703bab2-9c30-438d-b1c6-c335409133a1", + "id": "03d2157f-af9a-4540-b360-0ac91610ee9a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12600,7 +12600,7 @@ "type": "text/plain" }, "key": "name", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -12609,7 +12609,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -12618,7 +12618,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "Inactive" }, { "disabled": false, @@ -12662,7 +12662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38fb389a-b4c3-4b9f-893b-1e6218536e7d", + "id": "f48e6115-d136-4d97-b1a3-3e188a80dd6d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12716,7 +12716,7 @@ "type": "text/plain" }, "key": "name", - "value": "nostrud Lorem" + "value": "nulla sit esse" }, { "disabled": false, @@ -12725,7 +12725,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -12734,7 +12734,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "Inactive" }, { "disabled": false, @@ -12784,7 +12784,7 @@ } }, { - "id": "4e28ea1b-2a63-4e2d-bb87-c802ffcc15a8", + "id": "ba863854-30f8-41f5-9c39-1038e3db5011", "name": "Create multiple profiles", "request": { "name": "Create multiple profiles", @@ -12815,7 +12815,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"exercit\",\n \"profile_type_id\": \"urn:uuid:f6574662-b6f9-c10a-d4bc-197a063100eb\",\n \"status\": \"Active\",\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\": \"cupidatat\",\n \"profile_type_id\": \"urn:uuid:2268dd1b-3ddd-b33f-d662-625d432048e2\",\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 \"name\": \"anim est\",\n \"profile_type_id\": \"7746d868-0d8d-c88f-0115-2531a06c27f8\",\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\": \"aliqua Duis nisi\",\n \"profile_type_id\": \"6b2603b6-1553-1059-3472-de75f1b4ad6d\",\n \"status\": \"Terminated\",\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", @@ -12827,7 +12827,7 @@ }, "response": [ { - "id": "052595f3-362a-4e8c-a4e6-b981da4df141", + "id": "1dedb126-3eb4-4cea-be69-d278abf76a61", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12861,7 +12861,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"exercit\",\n \"profile_type_id\": \"urn:uuid:f6574662-b6f9-c10a-d4bc-197a063100eb\",\n \"status\": \"Active\",\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\": \"cupidatat\",\n \"profile_type_id\": \"urn:uuid:2268dd1b-3ddd-b33f-d662-625d432048e2\",\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 \"name\": \"anim est\",\n \"profile_type_id\": \"7746d868-0d8d-c88f-0115-2531a06c27f8\",\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\": \"aliqua Duis nisi\",\n \"profile_type_id\": \"6b2603b6-1553-1059-3472-de75f1b4ad6d\",\n \"status\": \"Terminated\",\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", @@ -12878,12 +12878,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut incupidatat ipsumcupidatat ci\",\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\": \"pariatur dolor exercitationlabor\",\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\": \"do nullaquis sedsunt consectetur\",\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\": \"irure nostrud fugiat autelaborum\",\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": "5888e771-620f-47eb-8871-390a994373c1", + "id": "378197df-c3e7-4004-8363-5b648ca6ae69", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12917,7 +12917,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"exercit\",\n \"profile_type_id\": \"urn:uuid:f6574662-b6f9-c10a-d4bc-197a063100eb\",\n \"status\": \"Active\",\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\": \"cupidatat\",\n \"profile_type_id\": \"urn:uuid:2268dd1b-3ddd-b33f-d662-625d432048e2\",\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 \"name\": \"anim est\",\n \"profile_type_id\": \"7746d868-0d8d-c88f-0115-2531a06c27f8\",\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\": \"aliqua Duis nisi\",\n \"profile_type_id\": \"6b2603b6-1553-1059-3472-de75f1b4ad6d\",\n \"status\": \"Terminated\",\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", @@ -12939,7 +12939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21542c46-6787-4e17-a41d-b8ca7edb38f6", + "id": "1c670a09-025a-4c49-9ae4-ff1ba584b2ce", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12973,7 +12973,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"exercit\",\n \"profile_type_id\": \"urn:uuid:f6574662-b6f9-c10a-d4bc-197a063100eb\",\n \"status\": \"Active\",\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\": \"cupidatat\",\n \"profile_type_id\": \"urn:uuid:2268dd1b-3ddd-b33f-d662-625d432048e2\",\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 \"name\": \"anim est\",\n \"profile_type_id\": \"7746d868-0d8d-c88f-0115-2531a06c27f8\",\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\": \"aliqua Duis nisi\",\n \"profile_type_id\": \"6b2603b6-1553-1059-3472-de75f1b4ad6d\",\n \"status\": \"Terminated\",\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", @@ -13001,7 +13001,7 @@ } }, { - "id": "df6b20d6-d8e8-4f58-9d9d-52b0a6155859", + "id": "b42106dc-2dc9-48d2-a5c6-42e6b5c17a25", "name": "Update multiple profiles", "request": { "name": "Update multiple profiles", @@ -13032,7 +13032,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"f69bf4f8-f066-8d5b-963f-fb2db8e0b376\",\n \"name\": \"aliquip labore in\",\n \"profile_type_id\": \"7780df98-022e-beff-bc09-a6f94bb43a1c\",\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 \"id\": \"428c8641-cb99-c494-0f4b-bfa5f8745052\",\n \"name\": \"est in ad\",\n \"profile_type_id\": \"urn:uuid:cf699d4e-14ec-fc6e-bd8f-ff740d3bc6cf\",\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 ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:2caa5910-f991-97dd-6b15-bbb093ab2725\",\n \"name\": \"Lorem ullamco nostrud\",\n \"profile_type_id\": \"urn:uuid:d73f874c-558c-7b28-0649-3b6671ad3757\",\n \"status\": \"Inactive\",\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\": \"ddaca01b-36f9-61ec-0833-587a0b1d4579\",\n \"name\": \"et commodo ex esse\",\n \"profile_type_id\": \"6c2593a8-2c2c-5da2-0d44-090ec8d5479f\",\n \"status\": \"Active\",\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}", "options": { "raw": { "headerFamily": "json", @@ -13044,7 +13044,7 @@ }, "response": [ { - "id": "c3084ff6-b86d-409f-b4fd-82f045de968e", + "id": "d25f7e61-532b-4287-b412-67862ad0996a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13078,7 +13078,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"f69bf4f8-f066-8d5b-963f-fb2db8e0b376\",\n \"name\": \"aliquip labore in\",\n \"profile_type_id\": \"7780df98-022e-beff-bc09-a6f94bb43a1c\",\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 \"id\": \"428c8641-cb99-c494-0f4b-bfa5f8745052\",\n \"name\": \"est in ad\",\n \"profile_type_id\": \"urn:uuid:cf699d4e-14ec-fc6e-bd8f-ff740d3bc6cf\",\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 ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:2caa5910-f991-97dd-6b15-bbb093ab2725\",\n \"name\": \"Lorem ullamco nostrud\",\n \"profile_type_id\": \"urn:uuid:d73f874c-558c-7b28-0649-3b6671ad3757\",\n \"status\": \"Inactive\",\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\": \"ddaca01b-36f9-61ec-0833-587a0b1d4579\",\n \"name\": \"et commodo ex esse\",\n \"profile_type_id\": \"6c2593a8-2c2c-5da2-0d44-090ec8d5479f\",\n \"status\": \"Active\",\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}", "options": { "raw": { "headerFamily": "json", @@ -13095,12 +13095,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut incupidatat ipsumcupidatat ci\",\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\": \"pariatur dolor exercitationlabor\",\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\": \"do nullaquis sedsunt consectetur\",\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\": \"irure nostrud fugiat autelaborum\",\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": "e1c330a8-94be-41f0-a763-51255660afa3", + "id": "e087c57d-7085-4926-b2c5-986ddcf5b351", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13134,7 +13134,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"f69bf4f8-f066-8d5b-963f-fb2db8e0b376\",\n \"name\": \"aliquip labore in\",\n \"profile_type_id\": \"7780df98-022e-beff-bc09-a6f94bb43a1c\",\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 \"id\": \"428c8641-cb99-c494-0f4b-bfa5f8745052\",\n \"name\": \"est in ad\",\n \"profile_type_id\": \"urn:uuid:cf699d4e-14ec-fc6e-bd8f-ff740d3bc6cf\",\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 ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:2caa5910-f991-97dd-6b15-bbb093ab2725\",\n \"name\": \"Lorem ullamco nostrud\",\n \"profile_type_id\": \"urn:uuid:d73f874c-558c-7b28-0649-3b6671ad3757\",\n \"status\": \"Inactive\",\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\": \"ddaca01b-36f9-61ec-0833-587a0b1d4579\",\n \"name\": \"et commodo ex esse\",\n \"profile_type_id\": \"6c2593a8-2c2c-5da2-0d44-090ec8d5479f\",\n \"status\": \"Active\",\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}", "options": { "raw": { "headerFamily": "json", @@ -13156,7 +13156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "660ae3ca-36aa-4184-bc3a-abe3324e9269", + "id": "33194e52-1a39-43be-ae65-771b26ad89e1", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13190,7 +13190,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"f69bf4f8-f066-8d5b-963f-fb2db8e0b376\",\n \"name\": \"aliquip labore in\",\n \"profile_type_id\": \"7780df98-022e-beff-bc09-a6f94bb43a1c\",\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 \"id\": \"428c8641-cb99-c494-0f4b-bfa5f8745052\",\n \"name\": \"est in ad\",\n \"profile_type_id\": \"urn:uuid:cf699d4e-14ec-fc6e-bd8f-ff740d3bc6cf\",\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 ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:2caa5910-f991-97dd-6b15-bbb093ab2725\",\n \"name\": \"Lorem ullamco nostrud\",\n \"profile_type_id\": \"urn:uuid:d73f874c-558c-7b28-0649-3b6671ad3757\",\n \"status\": \"Inactive\",\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\": \"ddaca01b-36f9-61ec-0833-587a0b1d4579\",\n \"name\": \"et commodo ex esse\",\n \"profile_type_id\": \"6c2593a8-2c2c-5da2-0d44-090ec8d5479f\",\n \"status\": \"Active\",\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}", "options": { "raw": { "headerFamily": "json", @@ -13218,7 +13218,7 @@ } }, { - "id": "e84da930-d132-4c11-886c-f42c7494d233", + "id": "a6019c9b-fe83-4df9-bc6f-013a9a087b45", "name": "Delete multiple profiles", "request": { "name": "Delete multiple profiles", @@ -13249,7 +13249,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"e3cc270b-6623-62d8-b527-2eec4931a31d\"\n },\n {\n \"id\": \"a6652822-7ebe-4059-7401-07acf863a21f\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:66c8d693-ec53-6188-5d92-f570bff1d6ec\"\n },\n {\n \"id\": \"urn:uuid:edab1515-6c97-8409-35df-37436e0eb3a0\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -13261,7 +13261,7 @@ }, "response": [ { - "id": "a60f2e73-af51-4d17-b2cf-8bb709a6bacf", + "id": "25df26b1-505b-4018-af5d-1cb1c1b9bcbe", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13295,7 +13295,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"e3cc270b-6623-62d8-b527-2eec4931a31d\"\n },\n {\n \"id\": \"a6652822-7ebe-4059-7401-07acf863a21f\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:66c8d693-ec53-6188-5d92-f570bff1d6ec\"\n },\n {\n \"id\": \"urn:uuid:edab1515-6c97-8409-35df-37436e0eb3a0\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -13312,12 +13312,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut incupidatat ipsumcupidatat ci\",\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\": \"pariatur dolor exercitationlabor\",\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\": \"do nullaquis sedsunt consectetur\",\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\": \"irure nostrud fugiat autelaborum\",\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": "ddf2a6f1-7146-4fd3-b2bc-dbb4901bcf22", + "id": "c726e6e6-584a-4994-95ee-e628ab9dc150", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13351,7 +13351,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"e3cc270b-6623-62d8-b527-2eec4931a31d\"\n },\n {\n \"id\": \"a6652822-7ebe-4059-7401-07acf863a21f\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:66c8d693-ec53-6188-5d92-f570bff1d6ec\"\n },\n {\n \"id\": \"urn:uuid:edab1515-6c97-8409-35df-37436e0eb3a0\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -13373,7 +13373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f1e74e7-4449-43db-8095-262a567a5eff", + "id": "c35702c0-eee1-4f78-b606-33ad888e8eee", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13407,7 +13407,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"e3cc270b-6623-62d8-b527-2eec4931a31d\"\n },\n {\n \"id\": \"a6652822-7ebe-4059-7401-07acf863a21f\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:66c8d693-ec53-6188-5d92-f570bff1d6ec\"\n },\n {\n \"id\": \"urn:uuid:edab1515-6c97-8409-35df-37436e0eb3a0\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -13435,7 +13435,7 @@ } }, { - "id": "addcc2aa-9169-4ac1-8649-49185a610e8e", + "id": "a5478a5c-ac12-4501-a231-f34e167c0139", "name": "Find profile by id", "request": { "name": "Find profile by id", @@ -13477,7 +13477,7 @@ }, "response": [ { - "id": "6938e2a7-090b-4fa1-b34e-e7bac3c67f6e", + "id": "a0e81a1c-f8f3-435c-be2f-9ee29bbbf455", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13516,12 +13516,12 @@ "value": "application/json" } ], - "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"irureexercitation velit in sedal\",\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\": \"veniam mollitanimcommodo in volu\",\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": "aaa0b7e5-222b-4e73-9a48-6aaed85419cd", + "id": "2cdf5283-ccab-4078-b8be-e1356c0fe40c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13565,7 +13565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14d6add9-f196-44b7-abc8-c4cbdfb0eefd", + "id": "79c68de3-93d6-422e-9476-2354fdca71dd", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13615,7 +13615,7 @@ } }, { - "id": "2c091911-525a-4ba2-9f4c-cc76fa703e8e", + "id": "67f5ffd3-c463-4d73-ae4b-8412005d9b83", "name": "Update a profile by id", "request": { "name": "Update a profile by id", @@ -13658,7 +13658,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"tempor exercita\",\n \"profile_type_id\": \"urn:uuid:b701f1e6-aad5-82a9-cb27-a350e6841b9b\",\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}", + "raw": "{\n \"profile\": {\n \"name\": \"dolor sit\",\n \"profile_type_id\": \"9eacd6df-b761-5ba4-3a70-7f524c4750be\",\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}", "options": { "raw": { "headerFamily": "json", @@ -13670,7 +13670,7 @@ }, "response": [ { - "id": "e5b30b49-ed1c-457e-898a-397417397a80", + "id": "65bcf643-ccc8-49a9-8451-f287e545b3a4", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13705,7 +13705,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"tempor exercita\",\n \"profile_type_id\": \"urn:uuid:b701f1e6-aad5-82a9-cb27-a350e6841b9b\",\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}", + "raw": "{\n \"profile\": {\n \"name\": \"dolor sit\",\n \"profile_type_id\": \"9eacd6df-b761-5ba4-3a70-7f524c4750be\",\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}", "options": { "raw": { "headerFamily": "json", @@ -13722,12 +13722,12 @@ "value": "application/json" } ], - "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"irureexercitation velit in sedal\",\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\": \"veniam mollitanimcommodo in volu\",\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": "79f44496-be35-4361-ab9d-dc62dbc60fff", + "id": "1bfe2096-41f9-4b95-9892-2cc64ba49b82", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13762,7 +13762,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"tempor exercita\",\n \"profile_type_id\": \"urn:uuid:b701f1e6-aad5-82a9-cb27-a350e6841b9b\",\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}", + "raw": "{\n \"profile\": {\n \"name\": \"dolor sit\",\n \"profile_type_id\": \"9eacd6df-b761-5ba4-3a70-7f524c4750be\",\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}", "options": { "raw": { "headerFamily": "json", @@ -13784,7 +13784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddc8946e-238f-4d99-90d2-dbeebec9ebd2", + "id": "4bae4e39-6768-4817-8a41-1b2b9567ee8f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13819,7 +13819,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"tempor exercita\",\n \"profile_type_id\": \"urn:uuid:b701f1e6-aad5-82a9-cb27-a350e6841b9b\",\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}", + "raw": "{\n \"profile\": {\n \"name\": \"dolor sit\",\n \"profile_type_id\": \"9eacd6df-b761-5ba4-3a70-7f524c4750be\",\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}", "options": { "raw": { "headerFamily": "json", @@ -13847,7 +13847,7 @@ } }, { - "id": "e30c0371-f0e3-4c9b-9cf0-a5b4971850e7", + "id": "3c7c01b5-b774-4cde-bf28-2b64b80d7c09", "name": "Delete a single profile", "request": { "name": "Delete a single profile", @@ -13889,7 +13889,7 @@ }, "response": [ { - "id": "6ee165a5-7f60-4f0e-9b77-e1ae86cd008c", + "id": "57237ec0-7beb-48a5-a309-d4834e2d8039", "name": "The Profile was successfully deleted.", "originalRequest": { "url": { @@ -13923,7 +13923,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4c1ebc96-d96b-400c-9a71-3b3a0419143b", + "id": "cb1ce9d4-311d-4058-9595-058cd0a8859e", "name": "Error deleting Profile", "originalRequest": { "url": { @@ -13962,12 +13962,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": \"occaecat\"\n}", + "body": "{\n \"error\": \"dolore exercitation \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4bf4acd8-d440-49ea-9c08-4652d904e619", + "id": "e3ff70a8-9703-4016-9a5d-fb6fd018403b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14017,7 +14017,7 @@ } }, { - "id": "32f400f2-2e29-4a3a-800f-fd6d5dab4d95", + "id": "8ec1c577-38f6-43d3-a8bf-16dae0fdba1f", "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", @@ -14071,7 +14071,7 @@ }, "response": [ { - "id": "49bca7e8-152b-47d5-b76b-c1db36832464", + "id": "57b45516-cc24-4185-b99c-5d3c56828ba8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14112,12 +14112,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"in ipsum laborum cillum\"\n}", + "body": "{\n \"url\": \"ea pariatur\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ff98600a-1da5-471f-9725-7bfee7bea429", + "id": "3b3f3672-2f57-4f6b-aa5e-6d9c6303c273", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14163,7 +14163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a24f273-2db6-4604-966a-d054bdd11829", + "id": "63374b40-8d88-4c55-bdbf-933f0558a765", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14215,7 +14215,7 @@ } }, { - "id": "d8cb39c6-584b-481a-a475-475ffe7c9df9", + "id": "8a776d75-c4f2-418f-b35e-3dea7d2f32a0", "name": "Uploads a new attachment attribute value to a profile", "request": { "name": "Uploads a new attachment attribute value to a profile", @@ -14277,7 +14277,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut veniam", + "value": "commodo nostrud dolore nu", "type": "text" } ] @@ -14286,7 +14286,7 @@ }, "response": [ { - "id": "5b6758f7-b2a5-487e-b2e5-83facdd1e8f9", + "id": "31e23831-b33d-4b6f-80b7-148afa4e62fb", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14330,7 +14330,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut veniam", + "value": "commodo nostrud dolore nu", "type": "text" } ] @@ -14344,12 +14344,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"in ipsum laborum cillum\"\n}", + "body": "{\n \"url\": \"ea pariatur\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d905c71c-6b93-4697-af9c-01bc11034fac", + "id": "ab84bd2e-1e20-4567-aec0-410cf911d0ba", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14393,7 +14393,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut veniam", + "value": "commodo nostrud dolore nu", "type": "text" } ] @@ -14412,7 +14412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39fca648-8449-4126-bed7-75da97b7fb86", + "id": "de661c00-1b2e-4a27-9478-3b52c4f5c915", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14456,7 +14456,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut veniam", + "value": "commodo nostrud dolore nu", "type": "text" } ] @@ -14481,7 +14481,7 @@ } }, { - "id": "475ff68c-2a03-4488-a4ed-8b1e33c4937e", + "id": "0ff39aed-cc38-4f88-93b1-e28ece38bb49", "name": "Retrieves the URL of the profile avatar", "request": { "name": "Retrieves the URL of the profile avatar", @@ -14524,7 +14524,7 @@ }, "response": [ { - "id": "ce267957-aa69-4730-9f2c-635eff2a6d6f", + "id": "2aed9cd4-6b56-42c3-b8a6-e30b51640656", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14564,12 +14564,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"in ipsum laborum cillum\"\n}", + "body": "{\n \"url\": \"ea pariatur\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "575a551d-0636-4531-8b7f-1c793966df68", + "id": "bdc0a89d-b747-44c6-89f1-1f7ca6acdf0a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14614,7 +14614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8684582-95d1-490a-a99f-f9185da30930", + "id": "d41517a3-4aa7-4d21-8c95-88ad7f35b5ab", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14665,7 +14665,7 @@ } }, { - "id": "c26e9882-558b-4cc6-9ff6-d61ea8adb211", + "id": "686ce054-87bf-4be7-95c0-e359a243d42e", "name": "Uploads a new profile avatar", "request": { "name": "Uploads a new profile avatar", @@ -14716,7 +14716,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut veniam", + "value": "commodo nostrud dolore nu", "type": "text" } ] @@ -14725,7 +14725,7 @@ }, "response": [ { - "id": "09c10da3-487b-438b-ac79-fb4461ab0dd8", + "id": "4216f710-8669-4563-9be1-5e68be6c1bb7", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14768,7 +14768,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut veniam", + "value": "commodo nostrud dolore nu", "type": "text" } ] @@ -14782,12 +14782,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"in ipsum laborum cillum\"\n}", + "body": "{\n \"url\": \"ea pariatur\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d3ea7a4d-e476-4bc3-9865-983d2b7c675d", + "id": "a5ddfa77-63a8-426a-8231-21298c853053", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14830,7 +14830,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut veniam", + "value": "commodo nostrud dolore nu", "type": "text" } ] @@ -14849,7 +14849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2199a2e3-e396-4131-ae4e-df2be6eb105e", + "id": "64434907-d26e-4f51-95cf-504fa506a462", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14892,7 +14892,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut veniam", + "value": "commodo nostrud dolore nu", "type": "text" } ] @@ -14923,7 +14923,7 @@ "description": "", "item": [ { - "id": "025ec9b0-a888-4de7-88e9-9f42b3edc039", + "id": "05bb27f1-ff90-493a-ad3d-3e42ce189829", "name": "Get risk score data in bulk", "request": { "name": "Get risk score data in bulk", @@ -14973,7 +14973,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -14982,7 +14982,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "WorkflowSession" + "value": "Profile" }, { "disabled": false, @@ -14991,7 +14991,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -15000,7 +15000,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -15009,7 +15009,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -15035,7 +15035,7 @@ }, "response": [ { - "id": "20b0aa5b-3c20-435e-91e3-fab1b8d67012", + "id": "79fee8c4-2615-4a71-90bd-96b68f6cfd8d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15080,7 +15080,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -15089,7 +15089,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "WorkflowSession" + "value": "Profile" }, { "disabled": false, @@ -15098,7 +15098,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -15107,7 +15107,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -15116,7 +15116,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -15155,12 +15155,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_scores\": [\n {\n \"id\": \"urn:uuid:a3c179ae-0ba3-b7df-bc88-a63f5161bb16\",\n \"uid\": \"adipisicing Lorem aliquip Except\",\n \"object_id\": \"8da87b88-a719-1f06-2981-25dca60f0400\",\n \"object_type\": \"Profile\",\n \"overall_score\": 50679482.53,\n \"overall_risk_level_id\": \"urn:uuid:c3e3cde1-dbb4-ac89-5d5f-523a1ea3b833\",\n \"impact_score\": 148369253.75,\n \"impact_risk_level_id\": \"45081af8-d02a-482a-c053-aa9097097632\",\n \"probability_score\": 175810464.71,\n \"probability_risk_level_id\": \"2b2d37c7-33f3-86f7-f5ec-4e7adab45ba2\"\n },\n {\n \"id\": \"urn:uuid:20f79a5b-173c-1154-427e-48c1a6f08fe3\",\n \"uid\": \"consequatofficia anim veniam con\",\n \"object_id\": \"5f1149a1-22d2-c141-c298-c2fb42a75d50\",\n \"object_type\": \"Profile\",\n \"overall_score\": 196725284.56,\n \"overall_risk_level_id\": \"urn:uuid:10b8656e-69f6-a848-8ba6-8e5ebf4e8e9e\",\n \"impact_score\": 113908583.22,\n \"impact_risk_level_id\": \"urn:uuid:1375d418-0979-977d-24d4-412d2e1c5561\",\n \"probability_score\": 166740199.37,\n \"probability_risk_level_id\": \"urn:uuid:97c5a7f6-fe74-892e-afa7-5bd86af6cc9c\"\n }\n ],\n \"_metadata\": {\n \"limit\": 92613422,\n \"offset\": -23482938,\n \"total\": 66183871,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"risk_scores\": [\n {\n \"id\": \"urn:uuid:22d71153-0b40-eb3a-0bcc-739e1ff96f4f\",\n \"uid\": \"ipsum fugiat quiseiusmod adipisi\",\n \"object_id\": \"7a24a651-8896-3235-3349-5a4a288dc372\",\n \"object_type\": \"WorkflowSession\",\n \"overall_score\": 151319998.18,\n \"overall_risk_level_id\": \"urn:uuid:a13d0bd1-d50a-b71c-c5ef-e82184e0ad3e\",\n \"impact_score\": 43617266.4,\n \"impact_risk_level_id\": \"1b101a77-4582-d299-9fcc-a0b034db620e\",\n \"probability_score\": 129824509.19,\n \"probability_risk_level_id\": \"bbed3593-e921-1c76-c140-60482d245311\"\n },\n {\n \"id\": \"urn:uuid:ce9b5636-367d-0d2d-c1d4-b6121d2c5df8\",\n \"uid\": \"et officiaexercitation laboreven\",\n \"object_id\": \"urn:uuid:de446a79-86d3-780e-2620-a5c2dbfba4a0\",\n \"object_type\": \"Profile\",\n \"overall_score\": 133341263.2,\n \"overall_risk_level_id\": \"ace88b96-c519-bef2-503b-5a1caa03f074\",\n \"impact_score\": 165970059.55,\n \"impact_risk_level_id\": \"8006a265-43d6-0640-5350-a9cd97d8d21a\",\n \"probability_score\": 36688816.7,\n \"probability_risk_level_id\": \"urn:uuid:8334fd7b-e829-2298-a7c5-1825ee9c92b3\"\n }\n ],\n \"_metadata\": {\n \"limit\": -70818045,\n \"offset\": -96158376,\n \"total\": -74020145,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4be9a31e-4c51-4730-ae6b-59460d0934bc", + "id": "0d8005ef-bc96-4df5-bb75-09b4ffc336fa", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15205,7 +15205,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -15214,7 +15214,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "WorkflowSession" + "value": "Profile" }, { "disabled": false, @@ -15223,7 +15223,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -15232,7 +15232,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -15241,7 +15241,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -15285,7 +15285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c59e546f-cc99-4e46-bd9c-ce1cae241f5f", + "id": "1e2683e3-4d6f-48c2-be7d-afa57ccdec9e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15330,7 +15330,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -15339,7 +15339,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "WorkflowSession" + "value": "Profile" }, { "disabled": false, @@ -15348,7 +15348,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -15357,7 +15357,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -15366,7 +15366,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -15416,7 +15416,7 @@ } }, { - "id": "0888a7fe-4aa7-453e-a414-0e9fe2f626e3", + "id": "8d0f73da-c821-4ce6-8432-a8a86a537fe7", "name": "Find risk score data by id", "request": { "name": "Find risk score data by id", @@ -15458,7 +15458,7 @@ }, "response": [ { - "id": "c12d8794-4c66-4b71-bf15-1539cbd86601", + "id": "bde61ca5-92a1-4099-ae99-9a7d02b03fec", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15497,12 +15497,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_score\": {\n \"id\": \"urn:uuid:bf9cdcae-a6be-d7b6-37c6-8a5abb178c5c\",\n \"uid\": \"ullamco sintmagna occaecat dolor\",\n \"object_id\": \"41651e6b-cd27-adc3-2899-59e38115fb12\",\n \"object_type\": \"Profile\",\n \"overall_score\": 22152368.04,\n \"overall_risk_level_id\": \"urn:uuid:016e55a4-f4e8-f8c0-d073-871076bce61d\",\n \"impact_score\": 107050557.48,\n \"impact_risk_level_id\": \"urn:uuid:82e6a113-3fab-1196-4055-f5da033d19e7\",\n \"probability_score\": 37551335.74,\n \"probability_risk_level_id\": \"urn:uuid:2b47fc7b-0e76-f303-cb92-6cbeb62b88ee\"\n }\n}", + "body": "{\n \"risk_score\": {\n \"id\": \"15f992e4-7b8a-dc2b-ef13-fe829ec1d098\",\n \"uid\": \"sed sunt id cupidatatnostrud tem\",\n \"object_id\": \"ef0bbdaf-21bc-2704-8292-6505f3d22c97\",\n \"object_type\": \"Profile\",\n \"overall_score\": 94150872.17,\n \"overall_risk_level_id\": \"urn:uuid:045e62bd-fb2b-1125-3551-e7d595279fb9\",\n \"impact_score\": 137176737.21,\n \"impact_risk_level_id\": \"urn:uuid:88166be1-2a09-4f41-3bc2-3071a8023a9f\",\n \"probability_score\": 187219298.92000002,\n \"probability_risk_level_id\": \"e5ee0876-d1dc-80cd-b5c2-eb26d7003c45\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "35576843-c5be-48d1-a553-f4c3f339df47", + "id": "4c0ab3ed-eee3-4bc9-b20a-5ec7764fb6d6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15546,7 +15546,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d23e2465-3c7a-4d68-a7b2-7cff681e421c", + "id": "383c1ddb-7d79-4291-a0f3-ec68dde16887", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15602,7 +15602,7 @@ "description": "", "item": [ { - "id": "08057965-df90-49e6-835b-f9667f6b71cd", + "id": "18aee1a0-a2c5-4e94-9911-cfeef1e6c3e2", "name": "Get risk level data in bulk", "request": { "name": "Get risk level data in bulk", @@ -15678,7 +15678,7 @@ }, "response": [ { - "id": "f29d7d58-1a90-4519-bc9e-33007f5f868c", + "id": "2379220d-dc6f-4425-9230-82095166a390", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15762,12 +15762,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_levels\": [\n {\n \"id\": \"1bd983e6-13ea-cd7f-c441-f57d611551a4\",\n \"uid\": \"Excepteur incididunt magna do su\",\n \"label\": \"pariatur\",\n \"points\": 186811748.91,\n \"order\": 32894213\n },\n {\n \"id\": \"25910996-89b2-9584-aebe-319acc8d80d1\",\n \"uid\": \"voluptateirure do pariatur offic\",\n \"label\": \"id nostrud Ut sit\",\n \"points\": 108782658.73,\n \"order\": 87124953\n }\n ],\n \"_metadata\": {\n \"limit\": 81537253,\n \"offset\": 8560158,\n \"total\": 39750247,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"risk_levels\": [\n {\n \"id\": \"5eb49848-b265-cc3e-be7f-ce061d2771e2\",\n \"uid\": \"ut inconsectetur minim dolorulla\",\n \"label\": \"magna laboris id\",\n \"points\": 43818075.92,\n \"order\": 13581425\n },\n {\n \"id\": \"b13566c8-b283-d871-6389-678897539210\",\n \"uid\": \"eiusmodnostrud sint officiadolor\",\n \"label\": \"Lorem ut sit esse\",\n \"points\": 38543386.32,\n \"order\": 81930083\n }\n ],\n \"_metadata\": {\n \"limit\": 31753579,\n \"offset\": -40662079,\n \"total\": -24812494,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f25ad608-30a5-4dd7-88a7-b1d3e428f940", + "id": "ee779853-7cae-4768-87fd-3be62e0f09f6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15856,7 +15856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a41e28a7-8488-41bf-ac5e-477db41aa068", + "id": "f38a1a6e-9f8e-4768-9a42-c9f42d9861e1", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15951,7 +15951,7 @@ } }, { - "id": "6b64c36b-0c2a-4fb4-bef1-e62fbb34b81c", + "id": "b69477cc-1b6c-475d-9202-f807b9e4f3a0", "name": "Find risk level data by id", "request": { "name": "Find risk level data by id", @@ -15993,7 +15993,7 @@ }, "response": [ { - "id": "de16b3e9-4c24-4f96-9ee6-aed8295dfd0c", + "id": "3d29d5fc-ce5d-44f8-8e37-efbba808e85c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16032,12 +16032,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_level\": {\n \"id\": \"027a8393-3d38-bb7e-23d6-a55c42042eb5\",\n \"uid\": \"deserunt consequat pariatur veni\",\n \"label\": \"veniam reprehenderit enim tempor in\",\n \"points\": 137770868.28,\n \"order\": 52100575\n }\n}", + "body": "{\n \"risk_level\": {\n \"id\": \"urn:uuid:372e72b5-e118-6637-fa32-e0f263156258\",\n \"uid\": \"ut uteiusmod consecteturnulla in\",\n \"label\": \"in ea qui irure laborum\",\n \"points\": 21691151.86,\n \"order\": 49217510\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "41a44dee-ee47-4912-9c28-05e54cb9f8e6", + "id": "bbf6fd84-80e5-459a-b446-030058fc790a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16081,7 +16081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2563e064-8075-4d28-a969-9101c5fb0d2a", + "id": "81bdbb11-c5cf-4bc1-8867-a8747d609505", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -16137,7 +16137,7 @@ "description": "", "item": [ { - "id": "24186d12-cd03-4ffb-be79-803f6d702c3b", + "id": "3b0df58f-855a-4adb-b8bb-97054cc4e121", "name": "Create a user-profile contributor relationship", "request": { "name": "Create a user-profile contributor relationship", @@ -16168,7 +16168,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"65cf0df6-17d5-030c-465e-e2568b26d426\",\n \"profile_id\": \"cf36cf4f-0ca1-c191-c838-3008702f7ae1\",\n \"ne_attribute_id\": \"9a1c78dc-8ceb-6212-bab1-6356d5ee6c86\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:c581ecf5-46d4-1833-119f-8c0ccb2dd1b1\",\n \"profile_id\": \"urn:uuid:e470d9d0-d9a0-df67-15b5-123d96a93a00\",\n \"ne_attribute_id\": \"urn:uuid:977cd20d-65fb-8695-d569-9b39cfd7d0ce\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -16180,7 +16180,7 @@ }, "response": [ { - "id": "879f9abd-c800-41f9-9971-5dabcad7bdde", + "id": "115eece6-a9d8-48be-89ce-bccebcb1d171", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16214,7 +16214,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"65cf0df6-17d5-030c-465e-e2568b26d426\",\n \"profile_id\": \"cf36cf4f-0ca1-c191-c838-3008702f7ae1\",\n \"ne_attribute_id\": \"9a1c78dc-8ceb-6212-bab1-6356d5ee6c86\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:c581ecf5-46d4-1833-119f-8c0ccb2dd1b1\",\n \"profile_id\": \"urn:uuid:e470d9d0-d9a0-df67-15b5-123d96a93a00\",\n \"ne_attribute_id\": \"urn:uuid:977cd20d-65fb-8695-d569-9b39cfd7d0ce\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -16231,12 +16231,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profile\": {\n \"id\": \"urn:uuid:8b69ef27-7316-9d5d-724b-547e367ffe12\",\n \"uid\": \"esse do enim nullaullamco dolor \",\n \"user_id\": \"urn:uuid:8668b052-b856-bad7-f312-b03eff2cab11\",\n \"profile_id\": \"303e6f41-21ed-7b63-8e8d-d2c27c36876c\",\n \"ne_attribute_id\": \"2d2e36bb-22dd-e1d9-20aa-46e3fc25d5f0\",\n \"relationship_type\": \"owner\"\n }\n}", + "body": "{\n \"user_profile\": {\n \"id\": \"78240d00-fe35-fc4a-97d8-13aa67597b3a\",\n \"uid\": \"sint laboris consecteturofficia \",\n \"user_id\": \"2149664d-b0cb-2e21-9319-e6805da1fe6d\",\n \"profile_id\": \"urn:uuid:9ab2799e-1ec2-9d82-fa3a-1df4eeda18c2\",\n \"ne_attribute_id\": \"2bc78a73-0f81-afbd-999a-b7112aff6657\",\n \"relationship_type\": \"contributor\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "29a295a6-db10-4b4c-bb15-6d73d8bfdeae", + "id": "0fdff6bb-fcf8-441b-88cf-c343decf32f9", "name": "Invalid input", "originalRequest": { "url": { @@ -16266,7 +16266,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"65cf0df6-17d5-030c-465e-e2568b26d426\",\n \"profile_id\": \"cf36cf4f-0ca1-c191-c838-3008702f7ae1\",\n \"ne_attribute_id\": \"9a1c78dc-8ceb-6212-bab1-6356d5ee6c86\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:c581ecf5-46d4-1833-119f-8c0ccb2dd1b1\",\n \"profile_id\": \"urn:uuid:e470d9d0-d9a0-df67-15b5-123d96a93a00\",\n \"ne_attribute_id\": \"urn:uuid:977cd20d-65fb-8695-d569-9b39cfd7d0ce\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -16288,7 +16288,7 @@ } }, { - "id": "41b670ff-2df5-4af8-87ad-b562f4ed3d2d", + "id": "11444a7e-6a93-4c8a-87aa-158e0c0b2eb4", "name": "Get user-profile contributor relationships", "request": { "name": "Get user-profile contributor relationships", @@ -16391,7 +16391,7 @@ }, "response": [ { - "id": "da2cb8ea-84c1-48b8-89a5-28b4d8d1f31b", + "id": "5ee179dd-2606-41fc-998a-76bbb8a916ae", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16502,12 +16502,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:1961e4db-f7af-5233-79c5-5ae4d49c3afe\",\n \"uid\": \"amet eaculpa dolor minimlabore e\",\n \"user_id\": \"urn:uuid:92fb33b8-4e37-17ed-bd12-fe2371fed767\",\n \"profile_id\": \"e115a7ff-7174-fb54-37e7-fd1807f28de0\",\n \"ne_attribute_id\": \"d3985d13-3104-4c0a-7296-b3def85ca9e0\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"1b9eeaf9-3c81-0323-2aa0-59dc3691f9c9\",\n \"uid\": \"in veniamut culpa voluptatein do\",\n \"user_id\": \"23388070-9b7b-b01a-22f0-aa9bf5d92270\",\n \"profile_id\": \"a222e724-0a00-6c24-c9c9-ff6e190b401a\",\n \"ne_attribute_id\": \"urn:uuid:9591eb64-cd4f-dade-ab0e-e22a61207804\",\n \"relationship_type\": \"contributor\"\n }\n ],\n \"_metadata\": {\n \"limit\": 81881414,\n \"offset\": -28775730,\n \"total\": -84469031,\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:7228cc69-9aa4-fbdb-ca69-6dff4d12fda8\",\n \"uid\": \"labore doloredolor labore dolord\",\n \"user_id\": \"urn:uuid:6be18a25-d970-4eb2-e0fd-f9e3bd6909ba\",\n \"profile_id\": \"urn:uuid:ce743cff-7a95-62f1-a2f3-4a7169f9df9c\",\n \"ne_attribute_id\": \"urn:uuid:a1ba0d29-05ff-2efb-7214-437c3151e04a\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"urn:uuid:69785a3e-5b5c-e3f8-c9b1-202f726ced12\",\n \"uid\": \"elitanim dolor dolore nostrudiru\",\n \"user_id\": \"b532521c-ca40-41a5-cf6e-3a4d0f150d0d\",\n \"profile_id\": \"urn:uuid:b36fa8ec-9f42-6d9c-c95f-125fd5a7eccb\",\n \"ne_attribute_id\": \"urn:uuid:1f4c2608-15b8-2764-1e7a-844e62132f2b\",\n \"relationship_type\": \"contributor\"\n }\n ],\n \"_metadata\": {\n \"limit\": 95292115,\n \"offset\": 93461243,\n \"total\": -28080360,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4e314062-9bbd-458a-8fa8-73af21246963", + "id": "45aecedf-8216-4931-86d0-a172b8d6e8f8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16623,7 +16623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a2dfa90-6b47-49c6-b4c9-44dba2e938a0", + "id": "21e752c4-37b9-4b74-bd10-38649cb0971e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -16745,7 +16745,7 @@ } }, { - "id": "d15c98bf-125d-4c1e-aceb-1e0b5674f12c", + "id": "8c494d8e-2dfb-4cab-bee2-376ced518ad7", "name": "Create multiple user-profile contributor relationships", "request": { "name": "Create multiple user-profile contributor relationships", @@ -16776,7 +16776,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:c75e9ae3-c708-0e56-f0a2-6b7840a570ef\",\n \"profile_id\": \"3520338f-18bd-185d-71a3-de8f788d25d4\",\n \"ne_attribute_id\": \"8da91937-8c6f-3fa6-301a-91bcd16608cc\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"116dff96-394d-9a0b-1647-559037a1f646\",\n \"profile_id\": \"urn:uuid:39e0d463-bfe3-b635-3cf0-f65aed10f293\",\n \"ne_attribute_id\": \"e69dc2d9-75df-e3a4-5dc5-d4374e5d6abc\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:81661968-8b9a-da7a-e603-8aebd7e46e1f\",\n \"profile_id\": \"urn:uuid:83213468-9644-3d9a-7d88-2c40708af104\",\n \"ne_attribute_id\": \"urn:uuid:6f2aee72-4fe9-0bcb-8a06-6378d513e0ed\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"335a2cbc-477f-4612-7fa1-0159d70b0f5e\",\n \"profile_id\": \"9f925ec4-afac-346d-6f07-2195baff1848\",\n \"ne_attribute_id\": \"urn:uuid:53e54d67-2907-8a42-5ff7-646cb26ff04e\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16788,7 +16788,7 @@ }, "response": [ { - "id": "504b7acc-7011-4f0c-9e31-83d4325125b6", + "id": "f7b6653f-8c08-4164-a9c2-7133ec7c9bf9", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16822,7 +16822,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:c75e9ae3-c708-0e56-f0a2-6b7840a570ef\",\n \"profile_id\": \"3520338f-18bd-185d-71a3-de8f788d25d4\",\n \"ne_attribute_id\": \"8da91937-8c6f-3fa6-301a-91bcd16608cc\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"116dff96-394d-9a0b-1647-559037a1f646\",\n \"profile_id\": \"urn:uuid:39e0d463-bfe3-b635-3cf0-f65aed10f293\",\n \"ne_attribute_id\": \"e69dc2d9-75df-e3a4-5dc5-d4374e5d6abc\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:81661968-8b9a-da7a-e603-8aebd7e46e1f\",\n \"profile_id\": \"urn:uuid:83213468-9644-3d9a-7d88-2c40708af104\",\n \"ne_attribute_id\": \"urn:uuid:6f2aee72-4fe9-0bcb-8a06-6378d513e0ed\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"335a2cbc-477f-4612-7fa1-0159d70b0f5e\",\n \"profile_id\": \"9f925ec4-afac-346d-6f07-2195baff1848\",\n \"ne_attribute_id\": \"urn:uuid:53e54d67-2907-8a42-5ff7-646cb26ff04e\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16839,12 +16839,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"876753ab-d704-7c6a-e2ab-493cb54db2c1\",\n \"uid\": \"irure commodo adipisicingex ulla\",\n \"user_id\": \"urn:uuid:dbbef313-e6dc-39ef-094e-1337a706a919\",\n \"profile_id\": \"1ed7b423-afca-30a3-cc7c-c6a91da2dca7\",\n \"ne_attribute_id\": \"a52ae2ca-a64c-41ee-c810-ac7c0153cab9\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"3b41b9b4-d918-cd56-f865-555897430918\",\n \"uid\": \"cupidatat Ut veniamnon anim dolo\",\n \"user_id\": \"urn:uuid:6300c6ad-e27a-7de6-d365-2f11e8592ea0\",\n \"profile_id\": \"urn:uuid:4f6d35d4-1b0a-f88e-52e2-763117bf48a3\",\n \"ne_attribute_id\": \"urn:uuid:8ee8a80c-8883-0a05-99ab-007744ce5e25\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"7022d946-dc15-b216-7f12-d9f70cd94fdd\",\n \"uid\": \"in aute ad qui cillumcommodo nos\",\n \"user_id\": \"urn:uuid:10505193-ca32-f699-a376-9779a69f6fe8\",\n \"profile_id\": \"urn:uuid:ee9a4565-882a-6f96-22a1-a57bfffbd60f\",\n \"ne_attribute_id\": \"864c65cb-7059-ce33-320f-4d3ed76fb6a9\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:c7cded71-b644-60b3-85b8-63e88efe0bb1\",\n \"uid\": \"magna dolor Duis elit proidentid\",\n \"user_id\": \"66d78944-57cc-099e-6d08-d9ea43b32196\",\n \"profile_id\": \"74446026-cc30-1df6-6e6a-3ac3f6321bfa\",\n \"ne_attribute_id\": \"urn:uuid:b8f6aa92-818e-efdb-d9c7-65253a204e62\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5715c8cc-343c-48ab-8cbc-9ecc503ff02a", + "id": "a1fa17d6-206b-46ce-9efb-9aa1c704a333", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16878,7 +16878,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:c75e9ae3-c708-0e56-f0a2-6b7840a570ef\",\n \"profile_id\": \"3520338f-18bd-185d-71a3-de8f788d25d4\",\n \"ne_attribute_id\": \"8da91937-8c6f-3fa6-301a-91bcd16608cc\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"116dff96-394d-9a0b-1647-559037a1f646\",\n \"profile_id\": \"urn:uuid:39e0d463-bfe3-b635-3cf0-f65aed10f293\",\n \"ne_attribute_id\": \"e69dc2d9-75df-e3a4-5dc5-d4374e5d6abc\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:81661968-8b9a-da7a-e603-8aebd7e46e1f\",\n \"profile_id\": \"urn:uuid:83213468-9644-3d9a-7d88-2c40708af104\",\n \"ne_attribute_id\": \"urn:uuid:6f2aee72-4fe9-0bcb-8a06-6378d513e0ed\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"335a2cbc-477f-4612-7fa1-0159d70b0f5e\",\n \"profile_id\": \"9f925ec4-afac-346d-6f07-2195baff1848\",\n \"ne_attribute_id\": \"urn:uuid:53e54d67-2907-8a42-5ff7-646cb26ff04e\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16900,7 +16900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce311342-1999-4817-84c1-f52a8c17482e", + "id": "d6b4777b-78e2-4cfe-94fd-8598bd9dc283", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -16934,7 +16934,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:c75e9ae3-c708-0e56-f0a2-6b7840a570ef\",\n \"profile_id\": \"3520338f-18bd-185d-71a3-de8f788d25d4\",\n \"ne_attribute_id\": \"8da91937-8c6f-3fa6-301a-91bcd16608cc\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"116dff96-394d-9a0b-1647-559037a1f646\",\n \"profile_id\": \"urn:uuid:39e0d463-bfe3-b635-3cf0-f65aed10f293\",\n \"ne_attribute_id\": \"e69dc2d9-75df-e3a4-5dc5-d4374e5d6abc\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:81661968-8b9a-da7a-e603-8aebd7e46e1f\",\n \"profile_id\": \"urn:uuid:83213468-9644-3d9a-7d88-2c40708af104\",\n \"ne_attribute_id\": \"urn:uuid:6f2aee72-4fe9-0bcb-8a06-6378d513e0ed\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"335a2cbc-477f-4612-7fa1-0159d70b0f5e\",\n \"profile_id\": \"9f925ec4-afac-346d-6f07-2195baff1848\",\n \"ne_attribute_id\": \"urn:uuid:53e54d67-2907-8a42-5ff7-646cb26ff04e\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16962,7 +16962,7 @@ } }, { - "id": "36b38241-7f49-44db-a726-3007efbcb256", + "id": "d6f53832-8bd7-4af4-941c-ac585593ee7a", "name": "Update multiple user-profile contributor relationships", "request": { "name": "Update multiple user-profile contributor relationships", @@ -16993,7 +16993,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"7e00d73c-dd3c-3605-492f-6b7c97c44a22\",\n \"user_id\": \"ad74a57d-c1b2-bcb1-4186-5cf3e4aeb0c0\",\n \"profile_id\": \"70a9bb65-e3be-89f3-2aa6-73d47c78a1df\",\n \"ne_attribute_id\": \"urn:uuid:8c2d8a82-7b97-2b5a-56dc-45da94348243\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:722dde44-bdb8-33bc-d372-afd7474ccf5e\",\n \"user_id\": \"5a109b3b-ce13-9c32-d317-cda410819658\",\n \"profile_id\": \"urn:uuid:41bde8f6-724d-81d7-9c0e-f74d93ce4b93\",\n \"ne_attribute_id\": \"07eaca8b-1c17-e5b0-6fbb-7547947601e2\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:edcb8ec8-c393-0a2f-ef20-cce4db45a06f\",\n \"user_id\": \"urn:uuid:553f26b2-ab91-eec4-971e-ffb2112b4e5c\",\n \"profile_id\": \"bb322ef6-2ff5-1ef9-aca2-47c9df9aec4f\",\n \"ne_attribute_id\": \"urn:uuid:613ba1c5-b978-709b-5326-5a6cee78f669\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"39aef22f-2b8b-1306-0bea-c85a8e1697cf\",\n \"user_id\": \"7c9b7674-6d28-c612-6145-4796a6a1320a\",\n \"profile_id\": \"urn:uuid:2837fac1-d993-487b-6601-67c9a4a3396d\",\n \"ne_attribute_id\": \"9f724477-5724-6c57-3673-45fd8ff73803\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17005,7 +17005,7 @@ }, "response": [ { - "id": "33819e61-121c-4158-98bf-62dc255f2093", + "id": "f97aa1fe-ece7-4cf9-82d4-243fb09e247e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17039,7 +17039,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"7e00d73c-dd3c-3605-492f-6b7c97c44a22\",\n \"user_id\": \"ad74a57d-c1b2-bcb1-4186-5cf3e4aeb0c0\",\n \"profile_id\": \"70a9bb65-e3be-89f3-2aa6-73d47c78a1df\",\n \"ne_attribute_id\": \"urn:uuid:8c2d8a82-7b97-2b5a-56dc-45da94348243\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:722dde44-bdb8-33bc-d372-afd7474ccf5e\",\n \"user_id\": \"5a109b3b-ce13-9c32-d317-cda410819658\",\n \"profile_id\": \"urn:uuid:41bde8f6-724d-81d7-9c0e-f74d93ce4b93\",\n \"ne_attribute_id\": \"07eaca8b-1c17-e5b0-6fbb-7547947601e2\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:edcb8ec8-c393-0a2f-ef20-cce4db45a06f\",\n \"user_id\": \"urn:uuid:553f26b2-ab91-eec4-971e-ffb2112b4e5c\",\n \"profile_id\": \"bb322ef6-2ff5-1ef9-aca2-47c9df9aec4f\",\n \"ne_attribute_id\": \"urn:uuid:613ba1c5-b978-709b-5326-5a6cee78f669\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"39aef22f-2b8b-1306-0bea-c85a8e1697cf\",\n \"user_id\": \"7c9b7674-6d28-c612-6145-4796a6a1320a\",\n \"profile_id\": \"urn:uuid:2837fac1-d993-487b-6601-67c9a4a3396d\",\n \"ne_attribute_id\": \"9f724477-5724-6c57-3673-45fd8ff73803\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17056,12 +17056,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"876753ab-d704-7c6a-e2ab-493cb54db2c1\",\n \"uid\": \"irure commodo adipisicingex ulla\",\n \"user_id\": \"urn:uuid:dbbef313-e6dc-39ef-094e-1337a706a919\",\n \"profile_id\": \"1ed7b423-afca-30a3-cc7c-c6a91da2dca7\",\n \"ne_attribute_id\": \"a52ae2ca-a64c-41ee-c810-ac7c0153cab9\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"3b41b9b4-d918-cd56-f865-555897430918\",\n \"uid\": \"cupidatat Ut veniamnon anim dolo\",\n \"user_id\": \"urn:uuid:6300c6ad-e27a-7de6-d365-2f11e8592ea0\",\n \"profile_id\": \"urn:uuid:4f6d35d4-1b0a-f88e-52e2-763117bf48a3\",\n \"ne_attribute_id\": \"urn:uuid:8ee8a80c-8883-0a05-99ab-007744ce5e25\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"7022d946-dc15-b216-7f12-d9f70cd94fdd\",\n \"uid\": \"in aute ad qui cillumcommodo nos\",\n \"user_id\": \"urn:uuid:10505193-ca32-f699-a376-9779a69f6fe8\",\n \"profile_id\": \"urn:uuid:ee9a4565-882a-6f96-22a1-a57bfffbd60f\",\n \"ne_attribute_id\": \"864c65cb-7059-ce33-320f-4d3ed76fb6a9\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:c7cded71-b644-60b3-85b8-63e88efe0bb1\",\n \"uid\": \"magna dolor Duis elit proidentid\",\n \"user_id\": \"66d78944-57cc-099e-6d08-d9ea43b32196\",\n \"profile_id\": \"74446026-cc30-1df6-6e6a-3ac3f6321bfa\",\n \"ne_attribute_id\": \"urn:uuid:b8f6aa92-818e-efdb-d9c7-65253a204e62\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ec077c97-b0f3-49a0-b342-bce7dedbb09c", + "id": "7117b174-7ee8-44e7-bd03-55f5168e1116", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17095,7 +17095,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"7e00d73c-dd3c-3605-492f-6b7c97c44a22\",\n \"user_id\": \"ad74a57d-c1b2-bcb1-4186-5cf3e4aeb0c0\",\n \"profile_id\": \"70a9bb65-e3be-89f3-2aa6-73d47c78a1df\",\n \"ne_attribute_id\": \"urn:uuid:8c2d8a82-7b97-2b5a-56dc-45da94348243\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:722dde44-bdb8-33bc-d372-afd7474ccf5e\",\n \"user_id\": \"5a109b3b-ce13-9c32-d317-cda410819658\",\n \"profile_id\": \"urn:uuid:41bde8f6-724d-81d7-9c0e-f74d93ce4b93\",\n \"ne_attribute_id\": \"07eaca8b-1c17-e5b0-6fbb-7547947601e2\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:edcb8ec8-c393-0a2f-ef20-cce4db45a06f\",\n \"user_id\": \"urn:uuid:553f26b2-ab91-eec4-971e-ffb2112b4e5c\",\n \"profile_id\": \"bb322ef6-2ff5-1ef9-aca2-47c9df9aec4f\",\n \"ne_attribute_id\": \"urn:uuid:613ba1c5-b978-709b-5326-5a6cee78f669\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"39aef22f-2b8b-1306-0bea-c85a8e1697cf\",\n \"user_id\": \"7c9b7674-6d28-c612-6145-4796a6a1320a\",\n \"profile_id\": \"urn:uuid:2837fac1-d993-487b-6601-67c9a4a3396d\",\n \"ne_attribute_id\": \"9f724477-5724-6c57-3673-45fd8ff73803\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17117,7 +17117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfa32b65-0922-48e6-9c29-7903edf66136", + "id": "98f3c7d4-db22-4dd6-8f9a-797f1b283d3e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17151,7 +17151,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"7e00d73c-dd3c-3605-492f-6b7c97c44a22\",\n \"user_id\": \"ad74a57d-c1b2-bcb1-4186-5cf3e4aeb0c0\",\n \"profile_id\": \"70a9bb65-e3be-89f3-2aa6-73d47c78a1df\",\n \"ne_attribute_id\": \"urn:uuid:8c2d8a82-7b97-2b5a-56dc-45da94348243\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:722dde44-bdb8-33bc-d372-afd7474ccf5e\",\n \"user_id\": \"5a109b3b-ce13-9c32-d317-cda410819658\",\n \"profile_id\": \"urn:uuid:41bde8f6-724d-81d7-9c0e-f74d93ce4b93\",\n \"ne_attribute_id\": \"07eaca8b-1c17-e5b0-6fbb-7547947601e2\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:edcb8ec8-c393-0a2f-ef20-cce4db45a06f\",\n \"user_id\": \"urn:uuid:553f26b2-ab91-eec4-971e-ffb2112b4e5c\",\n \"profile_id\": \"bb322ef6-2ff5-1ef9-aca2-47c9df9aec4f\",\n \"ne_attribute_id\": \"urn:uuid:613ba1c5-b978-709b-5326-5a6cee78f669\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"39aef22f-2b8b-1306-0bea-c85a8e1697cf\",\n \"user_id\": \"7c9b7674-6d28-c612-6145-4796a6a1320a\",\n \"profile_id\": \"urn:uuid:2837fac1-d993-487b-6601-67c9a4a3396d\",\n \"ne_attribute_id\": \"9f724477-5724-6c57-3673-45fd8ff73803\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17179,7 +17179,7 @@ } }, { - "id": "4a38e28e-69d5-408c-9d86-027102e38412", + "id": "989b50ed-90e1-49a8-8eef-7413f150fe29", "name": "Delete multiple user-profile contributor relationships", "request": { "name": "Delete multiple user-profile contributor relationships", @@ -17210,7 +17210,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:f22457ea-ce6f-0372-13c1-30f2ad259dac\"\n },\n {\n \"id\": \"4536f49e-abb0-dea4-8df6-5da4becb847b\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:3ad9db39-bd11-12db-ee43-afe51334ee04\"\n },\n {\n \"id\": \"efa6dab6-d117-5d1a-25aa-e955d8b58b88\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17222,7 +17222,7 @@ }, "response": [ { - "id": "44a82439-49e7-4985-8e75-54fcd878733a", + "id": "0f444517-a04e-417b-b39a-7d87e20ac78d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17256,7 +17256,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:f22457ea-ce6f-0372-13c1-30f2ad259dac\"\n },\n {\n \"id\": \"4536f49e-abb0-dea4-8df6-5da4becb847b\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:3ad9db39-bd11-12db-ee43-afe51334ee04\"\n },\n {\n \"id\": \"efa6dab6-d117-5d1a-25aa-e955d8b58b88\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17273,12 +17273,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"876753ab-d704-7c6a-e2ab-493cb54db2c1\",\n \"uid\": \"irure commodo adipisicingex ulla\",\n \"user_id\": \"urn:uuid:dbbef313-e6dc-39ef-094e-1337a706a919\",\n \"profile_id\": \"1ed7b423-afca-30a3-cc7c-c6a91da2dca7\",\n \"ne_attribute_id\": \"a52ae2ca-a64c-41ee-c810-ac7c0153cab9\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"3b41b9b4-d918-cd56-f865-555897430918\",\n \"uid\": \"cupidatat Ut veniamnon anim dolo\",\n \"user_id\": \"urn:uuid:6300c6ad-e27a-7de6-d365-2f11e8592ea0\",\n \"profile_id\": \"urn:uuid:4f6d35d4-1b0a-f88e-52e2-763117bf48a3\",\n \"ne_attribute_id\": \"urn:uuid:8ee8a80c-8883-0a05-99ab-007744ce5e25\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"7022d946-dc15-b216-7f12-d9f70cd94fdd\",\n \"uid\": \"in aute ad qui cillumcommodo nos\",\n \"user_id\": \"urn:uuid:10505193-ca32-f699-a376-9779a69f6fe8\",\n \"profile_id\": \"urn:uuid:ee9a4565-882a-6f96-22a1-a57bfffbd60f\",\n \"ne_attribute_id\": \"864c65cb-7059-ce33-320f-4d3ed76fb6a9\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:c7cded71-b644-60b3-85b8-63e88efe0bb1\",\n \"uid\": \"magna dolor Duis elit proidentid\",\n \"user_id\": \"66d78944-57cc-099e-6d08-d9ea43b32196\",\n \"profile_id\": \"74446026-cc30-1df6-6e6a-3ac3f6321bfa\",\n \"ne_attribute_id\": \"urn:uuid:b8f6aa92-818e-efdb-d9c7-65253a204e62\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "401ba15c-fa91-48c1-bf5c-89f6bb93ca32", + "id": "44ae8bd2-b48c-47dc-8232-7c3f3e618c1b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17312,7 +17312,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:f22457ea-ce6f-0372-13c1-30f2ad259dac\"\n },\n {\n \"id\": \"4536f49e-abb0-dea4-8df6-5da4becb847b\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:3ad9db39-bd11-12db-ee43-afe51334ee04\"\n },\n {\n \"id\": \"efa6dab6-d117-5d1a-25aa-e955d8b58b88\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17334,7 +17334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45987ca3-2660-40aa-807b-96f186cff490", + "id": "a1884c88-d927-49e7-a22a-5eff1b1a9b8c", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17368,7 +17368,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:f22457ea-ce6f-0372-13c1-30f2ad259dac\"\n },\n {\n \"id\": \"4536f49e-abb0-dea4-8df6-5da4becb847b\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:3ad9db39-bd11-12db-ee43-afe51334ee04\"\n },\n {\n \"id\": \"efa6dab6-d117-5d1a-25aa-e955d8b58b88\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17396,7 +17396,7 @@ } }, { - "id": "2600569f-7342-47ba-b5af-1b1b0725daff", + "id": "bcab6ce5-6ef3-48e5-adc1-5be9448c7ec1", "name": "Find user-profile contributor relationship by id", "request": { "name": "Find user-profile contributor relationship by id", @@ -17438,7 +17438,7 @@ }, "response": [ { - "id": "b9a9e578-6e20-43cd-8c0a-5fe69ba5bb3a", + "id": "34e29f0c-1c01-4b6a-888c-5bdb454ab8f9", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17477,12 +17477,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profile\": {\n \"id\": \"urn:uuid:8b69ef27-7316-9d5d-724b-547e367ffe12\",\n \"uid\": \"esse do enim nullaullamco dolor \",\n \"user_id\": \"urn:uuid:8668b052-b856-bad7-f312-b03eff2cab11\",\n \"profile_id\": \"303e6f41-21ed-7b63-8e8d-d2c27c36876c\",\n \"ne_attribute_id\": \"2d2e36bb-22dd-e1d9-20aa-46e3fc25d5f0\",\n \"relationship_type\": \"owner\"\n }\n}", + "body": "{\n \"user_profile\": {\n \"id\": \"78240d00-fe35-fc4a-97d8-13aa67597b3a\",\n \"uid\": \"sint laboris consecteturofficia \",\n \"user_id\": \"2149664d-b0cb-2e21-9319-e6805da1fe6d\",\n \"profile_id\": \"urn:uuid:9ab2799e-1ec2-9d82-fa3a-1df4eeda18c2\",\n \"ne_attribute_id\": \"2bc78a73-0f81-afbd-999a-b7112aff6657\",\n \"relationship_type\": \"contributor\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "04648d37-eddd-4c73-aae4-e30b380e2cc9", + "id": "ed6ccd76-90fc-4b93-bf41-2175df468ed4", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17526,7 +17526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba67c025-e16e-4017-ae50-3bcae938c304", + "id": "1b845189-e02d-4a2c-9701-f57eb30e6aaf", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17576,7 +17576,7 @@ } }, { - "id": "d2f117de-5f43-417a-8e5d-a7b43cb12480", + "id": "d1b597c6-1a9b-4ddb-8123-7eef8ed3079a", "name": "Update a user-profile contributor relationship by id", "request": { "name": "Update a user-profile contributor relationship by id", @@ -17619,7 +17619,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"65cf0df6-17d5-030c-465e-e2568b26d426\",\n \"profile_id\": \"cf36cf4f-0ca1-c191-c838-3008702f7ae1\",\n \"ne_attribute_id\": \"9a1c78dc-8ceb-6212-bab1-6356d5ee6c86\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:c581ecf5-46d4-1833-119f-8c0ccb2dd1b1\",\n \"profile_id\": \"urn:uuid:e470d9d0-d9a0-df67-15b5-123d96a93a00\",\n \"ne_attribute_id\": \"urn:uuid:977cd20d-65fb-8695-d569-9b39cfd7d0ce\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17631,7 +17631,7 @@ }, "response": [ { - "id": "ba84f0c8-691a-4abe-8211-3128cf7f7737", + "id": "314dadfb-a66e-445e-bae2-347c84324de3", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17666,7 +17666,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"65cf0df6-17d5-030c-465e-e2568b26d426\",\n \"profile_id\": \"cf36cf4f-0ca1-c191-c838-3008702f7ae1\",\n \"ne_attribute_id\": \"9a1c78dc-8ceb-6212-bab1-6356d5ee6c86\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:c581ecf5-46d4-1833-119f-8c0ccb2dd1b1\",\n \"profile_id\": \"urn:uuid:e470d9d0-d9a0-df67-15b5-123d96a93a00\",\n \"ne_attribute_id\": \"urn:uuid:977cd20d-65fb-8695-d569-9b39cfd7d0ce\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17683,12 +17683,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profile\": {\n \"id\": \"urn:uuid:8b69ef27-7316-9d5d-724b-547e367ffe12\",\n \"uid\": \"esse do enim nullaullamco dolor \",\n \"user_id\": \"urn:uuid:8668b052-b856-bad7-f312-b03eff2cab11\",\n \"profile_id\": \"303e6f41-21ed-7b63-8e8d-d2c27c36876c\",\n \"ne_attribute_id\": \"2d2e36bb-22dd-e1d9-20aa-46e3fc25d5f0\",\n \"relationship_type\": \"owner\"\n }\n}", + "body": "{\n \"user_profile\": {\n \"id\": \"78240d00-fe35-fc4a-97d8-13aa67597b3a\",\n \"uid\": \"sint laboris consecteturofficia \",\n \"user_id\": \"2149664d-b0cb-2e21-9319-e6805da1fe6d\",\n \"profile_id\": \"urn:uuid:9ab2799e-1ec2-9d82-fa3a-1df4eeda18c2\",\n \"ne_attribute_id\": \"2bc78a73-0f81-afbd-999a-b7112aff6657\",\n \"relationship_type\": \"contributor\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5630d37b-ac65-41c3-98fe-66db78e36988", + "id": "f52e9579-d762-4026-b06c-7390bb9ef4bc", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17723,7 +17723,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"65cf0df6-17d5-030c-465e-e2568b26d426\",\n \"profile_id\": \"cf36cf4f-0ca1-c191-c838-3008702f7ae1\",\n \"ne_attribute_id\": \"9a1c78dc-8ceb-6212-bab1-6356d5ee6c86\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:c581ecf5-46d4-1833-119f-8c0ccb2dd1b1\",\n \"profile_id\": \"urn:uuid:e470d9d0-d9a0-df67-15b5-123d96a93a00\",\n \"ne_attribute_id\": \"urn:uuid:977cd20d-65fb-8695-d569-9b39cfd7d0ce\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17745,7 +17745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b30fdeeb-06cf-4641-a076-82ad571f5c8b", + "id": "00d2aa76-8b4b-4845-8319-2b4b46ac5518", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17780,7 +17780,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"65cf0df6-17d5-030c-465e-e2568b26d426\",\n \"profile_id\": \"cf36cf4f-0ca1-c191-c838-3008702f7ae1\",\n \"ne_attribute_id\": \"9a1c78dc-8ceb-6212-bab1-6356d5ee6c86\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:c581ecf5-46d4-1833-119f-8c0ccb2dd1b1\",\n \"profile_id\": \"urn:uuid:e470d9d0-d9a0-df67-15b5-123d96a93a00\",\n \"ne_attribute_id\": \"urn:uuid:977cd20d-65fb-8695-d569-9b39cfd7d0ce\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17808,7 +17808,7 @@ } }, { - "id": "7130e3f6-eb3f-4c6c-86b3-a6f31e6396fd", + "id": "cca76a4b-8f11-4436-b397-e14a6030da14", "name": "Delete a user profile assignment", "request": { "name": "Delete a user profile assignment", @@ -17850,7 +17850,7 @@ }, "response": [ { - "id": "44074d8a-c3d3-4498-ad01-d0e0c472be67", + "id": "f63d256b-4a08-4547-bb31-27d135bd92fc", "name": "User profile was destroyed", "originalRequest": { "url": { @@ -17894,7 +17894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70d84c5e-9f69-4f1f-820a-c253b894336d", + "id": "5aa4909c-1399-4cf5-9bd0-d4795d105b1c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17938,7 +17938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b63f5790-3d2a-4875-825f-c54cf7e9dd8c", + "id": "49a0cd5a-c21a-4539-9186-cf58f555e053", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17994,7 +17994,7 @@ "description": "", "item": [ { - "id": "5126f6a1-f027-4263-a0b0-c83c639806a5", + "id": "dda37d67-fb12-4c6d-9f8a-94b6350c8f4a", "name": "Create a role-profile contributor relationship", "request": { "name": "Create a role-profile contributor relationship", @@ -18025,7 +18025,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:2e108e60-ad7d-f6e5-def4-cf2fc71c71eb\",\n \"profile_id\": \"urn:uuid:9a009aa1-e7bf-129e-1b6b-23a99c570b00\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:206d4bed-131e-7a28-aabe-f13bef384c29\",\n \"profile_id\": \"85b2cf51-7e1a-394a-b637-587e1533da06\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18037,7 +18037,7 @@ }, "response": [ { - "id": "8a0bc038-5795-4adc-b43c-c43bd57943e9", + "id": "a275dd22-bfdb-4616-8fcc-a2ab46cde68e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18071,7 +18071,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:2e108e60-ad7d-f6e5-def4-cf2fc71c71eb\",\n \"profile_id\": \"urn:uuid:9a009aa1-e7bf-129e-1b6b-23a99c570b00\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:206d4bed-131e-7a28-aabe-f13bef384c29\",\n \"profile_id\": \"85b2cf51-7e1a-394a-b637-587e1533da06\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18088,12 +18088,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profile\": {\n \"id\": \"cd9554a7-bea5-acb5-2e82-dbf62c565aab\",\n \"uid\": \"eiusmod Loremconsecteturfugiat n\",\n \"role_id\": \"urn:uuid:47d69ca2-500f-b0d2-3492-252c609aec63\",\n \"profile_id\": \"urn:uuid:4a04f790-6b31-1ed5-a0de-6c5357a39bf3\"\n }\n}", + "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:bc3b60f2-2118-953a-92f8-42284eaa8f54\",\n \"uid\": \"consectetur cillumirure enim ull\",\n \"role_id\": \"3c88a219-2c04-d078-e68d-1b1b11336baf\",\n \"profile_id\": \"5f53b3e4-a1c3-e335-9941-80729c01938e\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0fb6a3b4-833d-4ed4-a493-479f23c5b5be", + "id": "4e5e42d9-979a-4088-91bc-065683cc10f1", "name": "Invalid input", "originalRequest": { "url": { @@ -18123,7 +18123,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:2e108e60-ad7d-f6e5-def4-cf2fc71c71eb\",\n \"profile_id\": \"urn:uuid:9a009aa1-e7bf-129e-1b6b-23a99c570b00\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:206d4bed-131e-7a28-aabe-f13bef384c29\",\n \"profile_id\": \"85b2cf51-7e1a-394a-b637-587e1533da06\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18145,7 +18145,7 @@ } }, { - "id": "5252e745-2078-41f5-9308-7dae0ad27f41", + "id": "f60af910-40b3-488c-8b73-398ac82475ec", "name": "Get role-profile contributor relationships", "request": { "name": "Get role-profile contributor relationships", @@ -18195,7 +18195,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -18230,7 +18230,7 @@ }, "response": [ { - "id": "42b46cb1-3f9e-4f6f-b341-30e8a3438a58", + "id": "5e61d0fb-0891-4560-b0ac-8dd02066863b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18275,7 +18275,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -18323,12 +18323,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:66801687-59bc-5a2e-1ca5-9a70268563c2\",\n \"uid\": \"in sed velit sintqui mollit nost\",\n \"role_id\": \"urn:uuid:c289b293-a79c-6acb-b5c7-cd2072b61a23\",\n \"profile_id\": \"urn:uuid:19c7e929-e3e5-60f2-d17e-cce83d27f455\"\n },\n {\n \"id\": \"urn:uuid:1efef58a-d7ae-9316-6d5a-9e49ca635579\",\n \"uid\": \"minim suntlabore cillum commodo \",\n \"role_id\": \"1d990a79-e94c-b5fe-79ba-8bc465fed4b0\",\n \"profile_id\": \"90142898-810e-ec27-000f-ff5059e6c95d\"\n }\n ],\n \"_metadata\": {\n \"limit\": -62721491,\n \"offset\": 92092796,\n \"total\": 60460794,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"role_profiles\": [\n {\n \"id\": \"6fab040f-e5a1-8ec2-6575-b81e0cddb3a7\",\n \"uid\": \"commodo adipisicing aliquaadipis\",\n \"role_id\": \"9a321860-c977-8258-76a0-32c9d13e34e9\",\n \"profile_id\": \"e5e750d3-45d2-2495-9ccf-0d9891c0a797\"\n },\n {\n \"id\": \"urn:uuid:1df8b841-a94c-3352-06f1-7cb3b465a540\",\n \"uid\": \"laborum qui aliquip voluptatecom\",\n \"role_id\": \"6ce87161-f703-610c-8ebb-d348b6d7bba7\",\n \"profile_id\": \"urn:uuid:caf2a04f-a396-405c-efa5-9492ccba8588\"\n }\n ],\n \"_metadata\": {\n \"limit\": -52853052,\n \"offset\": -61763689,\n \"total\": 45029343,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "82ce9cf1-9237-4b87-b9e3-8f5a62f92d2e", + "id": "bb651e38-7a60-41c3-98fa-46db17a8503e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18373,7 +18373,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -18426,7 +18426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "165ef233-8994-466d-abb2-4a9c306d60fc", + "id": "73e35449-5e50-4c4b-b05b-9396fd9a0976", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18471,7 +18471,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -18530,7 +18530,7 @@ } }, { - "id": "55d84987-e808-4881-83c2-bb755deb221c", + "id": "24f877bc-5cda-47ef-96a4-52d502ff0daa", "name": "Create multiple role-profile contributor relationships", "request": { "name": "Create multiple role-profile contributor relationships", @@ -18561,7 +18561,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"849c3de9-5f7b-6341-1d66-476307b1b436\",\n \"profile_id\": \"c0725049-2681-8d2e-07bd-da8cd7e91855\"\n },\n {\n \"role_id\": \"f4bbd190-828d-fe2f-3485-ff668893a482\",\n \"profile_id\": \"urn:uuid:8d4ba6fb-86a8-76d4-ae10-2b03bfebb1b7\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"a10778a5-736c-03e8-b782-521c1fa471db\",\n \"profile_id\": \"a4b1c924-e782-f33e-6cc8-a87e17ba1c4d\"\n },\n {\n \"role_id\": \"urn:uuid:271408ff-48e7-a3d8-f538-e56c88ffef90\",\n \"profile_id\": \"273557e3-587e-917e-b4f5-504515e714bc\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18573,7 +18573,7 @@ }, "response": [ { - "id": "5facaded-5af2-459e-bbda-151caa3feb54", + "id": "e28739b2-ad7d-47cb-a299-1972899d1b5b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18607,7 +18607,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"849c3de9-5f7b-6341-1d66-476307b1b436\",\n \"profile_id\": \"c0725049-2681-8d2e-07bd-da8cd7e91855\"\n },\n {\n \"role_id\": \"f4bbd190-828d-fe2f-3485-ff668893a482\",\n \"profile_id\": \"urn:uuid:8d4ba6fb-86a8-76d4-ae10-2b03bfebb1b7\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"a10778a5-736c-03e8-b782-521c1fa471db\",\n \"profile_id\": \"a4b1c924-e782-f33e-6cc8-a87e17ba1c4d\"\n },\n {\n \"role_id\": \"urn:uuid:271408ff-48e7-a3d8-f538-e56c88ffef90\",\n \"profile_id\": \"273557e3-587e-917e-b4f5-504515e714bc\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18624,12 +18624,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profiles\": [\n {\n \"id\": \"dfc33f79-aacd-75a3-778d-6e01f6e20457\",\n \"uid\": \"amet adipisicing ipsum Excepteur\",\n \"role_id\": \"urn:uuid:77ddb54b-fc0b-0d83-8ad4-50e585557495\",\n \"profile_id\": \"85c266ba-93f6-c439-272d-71bcda02f612\"\n },\n {\n \"id\": \"9855d182-8f6e-af5f-6c0a-2c4e563e27f1\",\n \"uid\": \"Duis officiapariatur eiusmodin m\",\n \"role_id\": \"urn:uuid:f229fa42-ec2c-3ede-b33a-efe5b4ac84de\",\n \"profile_id\": \"d6cec45a-824f-5931-9262-03743f57105e\"\n }\n ]\n}", + "body": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:18634fcf-62fc-45cf-2c5d-74e9be178171\",\n \"uid\": \"esse commodo mollitea nisi repre\",\n \"role_id\": \"urn:uuid:2a6e4f0b-002f-e12c-a1a9-352b3be1341f\",\n \"profile_id\": \"667707c7-9093-f074-e235-b1c027ec1a07\"\n },\n {\n \"id\": \"79bc869e-2382-4ae7-b27d-cdc5ec4215b2\",\n \"uid\": \"est id do nulla doloreaute ullam\",\n \"role_id\": \"63042b12-a6e7-8fc5-03e9-76a7747fd07e\",\n \"profile_id\": \"urn:uuid:fa88ecb8-e892-6c6e-01bb-a97216a042d0\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7a8000d7-4567-44f8-94a7-aee10afd9b8d", + "id": "0e1acd16-949a-407f-99bf-1aee4a156b3e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18663,7 +18663,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"849c3de9-5f7b-6341-1d66-476307b1b436\",\n \"profile_id\": \"c0725049-2681-8d2e-07bd-da8cd7e91855\"\n },\n {\n \"role_id\": \"f4bbd190-828d-fe2f-3485-ff668893a482\",\n \"profile_id\": \"urn:uuid:8d4ba6fb-86a8-76d4-ae10-2b03bfebb1b7\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"a10778a5-736c-03e8-b782-521c1fa471db\",\n \"profile_id\": \"a4b1c924-e782-f33e-6cc8-a87e17ba1c4d\"\n },\n {\n \"role_id\": \"urn:uuid:271408ff-48e7-a3d8-f538-e56c88ffef90\",\n \"profile_id\": \"273557e3-587e-917e-b4f5-504515e714bc\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18685,7 +18685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b2d496e-9ac7-4220-acb8-273caec6dc6e", + "id": "6992dd82-dd79-497b-8ea4-041469bf5145", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18719,7 +18719,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"849c3de9-5f7b-6341-1d66-476307b1b436\",\n \"profile_id\": \"c0725049-2681-8d2e-07bd-da8cd7e91855\"\n },\n {\n \"role_id\": \"f4bbd190-828d-fe2f-3485-ff668893a482\",\n \"profile_id\": \"urn:uuid:8d4ba6fb-86a8-76d4-ae10-2b03bfebb1b7\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"a10778a5-736c-03e8-b782-521c1fa471db\",\n \"profile_id\": \"a4b1c924-e782-f33e-6cc8-a87e17ba1c4d\"\n },\n {\n \"role_id\": \"urn:uuid:271408ff-48e7-a3d8-f538-e56c88ffef90\",\n \"profile_id\": \"273557e3-587e-917e-b4f5-504515e714bc\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18747,7 +18747,7 @@ } }, { - "id": "23b43a84-2270-42a2-a24c-eb8565f6718a", + "id": "3892362e-ed48-4c16-a8ae-d141164f2c8c", "name": "Update multiple role-profile contributor relationships", "request": { "name": "Update multiple role-profile contributor relationships", @@ -18778,7 +18778,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"dd024469-6ed3-5f48-f0e8-7bbfb15c2aff\",\n \"role_id\": \"1808ebd2-c66b-1fab-0e63-019806a537e9\",\n \"profile_id\": \"urn:uuid:87895118-bc6c-7906-ac9d-c333006af0eb\"\n },\n {\n \"id\": \"urn:uuid:0fc09af4-0f70-54d7-69c0-279cd643f1df\",\n \"role_id\": \"urn:uuid:87a0fb1b-1d56-680e-b804-10e4725ece92\",\n \"profile_id\": \"urn:uuid:09182f45-4b1c-62ac-556a-e8b530ba1b12\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:5328a88f-b22d-3302-94f7-170524dfe1e6\",\n \"role_id\": \"urn:uuid:f74f0043-cdf0-7377-f0bb-3549235b10e7\",\n \"profile_id\": \"urn:uuid:1391ea3d-be5c-7bca-b15a-50bd63c9842f\"\n },\n {\n \"id\": \"urn:uuid:ddf80798-ca31-d17a-63cd-3f3d0bacfbc1\",\n \"role_id\": \"urn:uuid:3f131aa8-e5b1-cd05-8378-5bca6dfbd05c\",\n \"profile_id\": \"urn:uuid:a8fddeef-a649-d897-5b04-32443f1356fa\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18790,7 +18790,7 @@ }, "response": [ { - "id": "945a0362-ee19-4ffe-a96a-313603820f04", + "id": "493d80f7-998b-49f8-bf42-59ef71531c06", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18824,7 +18824,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"dd024469-6ed3-5f48-f0e8-7bbfb15c2aff\",\n \"role_id\": \"1808ebd2-c66b-1fab-0e63-019806a537e9\",\n \"profile_id\": \"urn:uuid:87895118-bc6c-7906-ac9d-c333006af0eb\"\n },\n {\n \"id\": \"urn:uuid:0fc09af4-0f70-54d7-69c0-279cd643f1df\",\n \"role_id\": \"urn:uuid:87a0fb1b-1d56-680e-b804-10e4725ece92\",\n \"profile_id\": \"urn:uuid:09182f45-4b1c-62ac-556a-e8b530ba1b12\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:5328a88f-b22d-3302-94f7-170524dfe1e6\",\n \"role_id\": \"urn:uuid:f74f0043-cdf0-7377-f0bb-3549235b10e7\",\n \"profile_id\": \"urn:uuid:1391ea3d-be5c-7bca-b15a-50bd63c9842f\"\n },\n {\n \"id\": \"urn:uuid:ddf80798-ca31-d17a-63cd-3f3d0bacfbc1\",\n \"role_id\": \"urn:uuid:3f131aa8-e5b1-cd05-8378-5bca6dfbd05c\",\n \"profile_id\": \"urn:uuid:a8fddeef-a649-d897-5b04-32443f1356fa\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18841,12 +18841,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profiles\": [\n {\n \"id\": \"dfc33f79-aacd-75a3-778d-6e01f6e20457\",\n \"uid\": \"amet adipisicing ipsum Excepteur\",\n \"role_id\": \"urn:uuid:77ddb54b-fc0b-0d83-8ad4-50e585557495\",\n \"profile_id\": \"85c266ba-93f6-c439-272d-71bcda02f612\"\n },\n {\n \"id\": \"9855d182-8f6e-af5f-6c0a-2c4e563e27f1\",\n \"uid\": \"Duis officiapariatur eiusmodin m\",\n \"role_id\": \"urn:uuid:f229fa42-ec2c-3ede-b33a-efe5b4ac84de\",\n \"profile_id\": \"d6cec45a-824f-5931-9262-03743f57105e\"\n }\n ]\n}", + "body": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:18634fcf-62fc-45cf-2c5d-74e9be178171\",\n \"uid\": \"esse commodo mollitea nisi repre\",\n \"role_id\": \"urn:uuid:2a6e4f0b-002f-e12c-a1a9-352b3be1341f\",\n \"profile_id\": \"667707c7-9093-f074-e235-b1c027ec1a07\"\n },\n {\n \"id\": \"79bc869e-2382-4ae7-b27d-cdc5ec4215b2\",\n \"uid\": \"est id do nulla doloreaute ullam\",\n \"role_id\": \"63042b12-a6e7-8fc5-03e9-76a7747fd07e\",\n \"profile_id\": \"urn:uuid:fa88ecb8-e892-6c6e-01bb-a97216a042d0\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b16df1bf-60ee-463d-9a0d-3bdc92211a9c", + "id": "d6e6982d-c606-4218-90a3-815606dd7812", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18880,7 +18880,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"dd024469-6ed3-5f48-f0e8-7bbfb15c2aff\",\n \"role_id\": \"1808ebd2-c66b-1fab-0e63-019806a537e9\",\n \"profile_id\": \"urn:uuid:87895118-bc6c-7906-ac9d-c333006af0eb\"\n },\n {\n \"id\": \"urn:uuid:0fc09af4-0f70-54d7-69c0-279cd643f1df\",\n \"role_id\": \"urn:uuid:87a0fb1b-1d56-680e-b804-10e4725ece92\",\n \"profile_id\": \"urn:uuid:09182f45-4b1c-62ac-556a-e8b530ba1b12\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:5328a88f-b22d-3302-94f7-170524dfe1e6\",\n \"role_id\": \"urn:uuid:f74f0043-cdf0-7377-f0bb-3549235b10e7\",\n \"profile_id\": \"urn:uuid:1391ea3d-be5c-7bca-b15a-50bd63c9842f\"\n },\n {\n \"id\": \"urn:uuid:ddf80798-ca31-d17a-63cd-3f3d0bacfbc1\",\n \"role_id\": \"urn:uuid:3f131aa8-e5b1-cd05-8378-5bca6dfbd05c\",\n \"profile_id\": \"urn:uuid:a8fddeef-a649-d897-5b04-32443f1356fa\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18902,7 +18902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c41d96f-bdb8-4e30-aeba-d871b5b155f8", + "id": "e9a971a7-d1b5-46c9-a1f3-a65e3aafde7a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18936,7 +18936,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"dd024469-6ed3-5f48-f0e8-7bbfb15c2aff\",\n \"role_id\": \"1808ebd2-c66b-1fab-0e63-019806a537e9\",\n \"profile_id\": \"urn:uuid:87895118-bc6c-7906-ac9d-c333006af0eb\"\n },\n {\n \"id\": \"urn:uuid:0fc09af4-0f70-54d7-69c0-279cd643f1df\",\n \"role_id\": \"urn:uuid:87a0fb1b-1d56-680e-b804-10e4725ece92\",\n \"profile_id\": \"urn:uuid:09182f45-4b1c-62ac-556a-e8b530ba1b12\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:5328a88f-b22d-3302-94f7-170524dfe1e6\",\n \"role_id\": \"urn:uuid:f74f0043-cdf0-7377-f0bb-3549235b10e7\",\n \"profile_id\": \"urn:uuid:1391ea3d-be5c-7bca-b15a-50bd63c9842f\"\n },\n {\n \"id\": \"urn:uuid:ddf80798-ca31-d17a-63cd-3f3d0bacfbc1\",\n \"role_id\": \"urn:uuid:3f131aa8-e5b1-cd05-8378-5bca6dfbd05c\",\n \"profile_id\": \"urn:uuid:a8fddeef-a649-d897-5b04-32443f1356fa\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18964,7 +18964,7 @@ } }, { - "id": "68afcd86-adce-4aa3-a94e-fc4bce64e35b", + "id": "aa42773d-7ff9-4882-9bb0-3c4f842297c0", "name": "Find role-profile contributor relationship by id", "request": { "name": "Find role-profile contributor relationship by id", @@ -19006,7 +19006,7 @@ }, "response": [ { - "id": "523345c8-2b77-4c46-aee6-65223c942284", + "id": "c36e4b21-6d4e-42a1-b129-67d4c5b3d4f2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19045,12 +19045,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profile\": {\n \"id\": \"cd9554a7-bea5-acb5-2e82-dbf62c565aab\",\n \"uid\": \"eiusmod Loremconsecteturfugiat n\",\n \"role_id\": \"urn:uuid:47d69ca2-500f-b0d2-3492-252c609aec63\",\n \"profile_id\": \"urn:uuid:4a04f790-6b31-1ed5-a0de-6c5357a39bf3\"\n }\n}", + "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:bc3b60f2-2118-953a-92f8-42284eaa8f54\",\n \"uid\": \"consectetur cillumirure enim ull\",\n \"role_id\": \"3c88a219-2c04-d078-e68d-1b1b11336baf\",\n \"profile_id\": \"5f53b3e4-a1c3-e335-9941-80729c01938e\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "62a52daa-134f-4eb3-93d9-86442bd36427", + "id": "6f7dceed-05fe-40ad-b26c-1ef1f6d9ecda", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19094,7 +19094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8154bd83-ebee-462e-8229-73db0365510b", + "id": "bfd69bdb-a5c1-4d52-afa7-3a227ef9d249", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19144,7 +19144,7 @@ } }, { - "id": "887d689c-320b-451a-bff3-e61f9e02accd", + "id": "9adc91b3-6e17-4cec-818d-7b95e5d84acf", "name": "Update a role-profile contributor relationship by id", "request": { "name": "Update a role-profile contributor relationship by id", @@ -19187,7 +19187,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:2e108e60-ad7d-f6e5-def4-cf2fc71c71eb\",\n \"profile_id\": \"urn:uuid:9a009aa1-e7bf-129e-1b6b-23a99c570b00\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:206d4bed-131e-7a28-aabe-f13bef384c29\",\n \"profile_id\": \"85b2cf51-7e1a-394a-b637-587e1533da06\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19199,7 +19199,7 @@ }, "response": [ { - "id": "bf010ba3-e2a6-43ac-b84b-6d4096693d6c", + "id": "6766e484-823a-4745-b25e-edcda8b49168", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19234,7 +19234,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:2e108e60-ad7d-f6e5-def4-cf2fc71c71eb\",\n \"profile_id\": \"urn:uuid:9a009aa1-e7bf-129e-1b6b-23a99c570b00\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:206d4bed-131e-7a28-aabe-f13bef384c29\",\n \"profile_id\": \"85b2cf51-7e1a-394a-b637-587e1533da06\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19251,12 +19251,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profile\": {\n \"id\": \"cd9554a7-bea5-acb5-2e82-dbf62c565aab\",\n \"uid\": \"eiusmod Loremconsecteturfugiat n\",\n \"role_id\": \"urn:uuid:47d69ca2-500f-b0d2-3492-252c609aec63\",\n \"profile_id\": \"urn:uuid:4a04f790-6b31-1ed5-a0de-6c5357a39bf3\"\n }\n}", + "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:bc3b60f2-2118-953a-92f8-42284eaa8f54\",\n \"uid\": \"consectetur cillumirure enim ull\",\n \"role_id\": \"3c88a219-2c04-d078-e68d-1b1b11336baf\",\n \"profile_id\": \"5f53b3e4-a1c3-e335-9941-80729c01938e\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "999f996e-0c8e-42e8-8a0b-e9fbda9f80fc", + "id": "93391c17-91b8-4c9d-a9d8-f6694f9fa6b0", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19291,7 +19291,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:2e108e60-ad7d-f6e5-def4-cf2fc71c71eb\",\n \"profile_id\": \"urn:uuid:9a009aa1-e7bf-129e-1b6b-23a99c570b00\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:206d4bed-131e-7a28-aabe-f13bef384c29\",\n \"profile_id\": \"85b2cf51-7e1a-394a-b637-587e1533da06\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19313,7 +19313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c352340e-0b92-456f-9c46-e2f9eb2cece4", + "id": "e65de8f5-1a22-4cef-8f94-2772b082c9ee", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19348,7 +19348,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:2e108e60-ad7d-f6e5-def4-cf2fc71c71eb\",\n \"profile_id\": \"urn:uuid:9a009aa1-e7bf-129e-1b6b-23a99c570b00\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:206d4bed-131e-7a28-aabe-f13bef384c29\",\n \"profile_id\": \"85b2cf51-7e1a-394a-b637-587e1533da06\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19376,7 +19376,7 @@ } }, { - "id": "205ef867-8526-4d5f-a196-6cae072977af", + "id": "89131659-ad09-4a59-b8cd-38cc43b0fd1c", "name": "Delete a role profile assignment", "request": { "name": "Delete a role profile assignment", @@ -19418,7 +19418,7 @@ }, "response": [ { - "id": "ba41b1a0-0c80-4f00-ac8e-f58755a1d70a", + "id": "df98f220-7377-43c8-bb8f-70947302775b", "name": "Role profile was destroyed", "originalRequest": { "url": { @@ -19462,7 +19462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92c1b900-8f19-4f7d-bd16-b8278c804a83", + "id": "1cc601d7-8f25-4e1f-8f69-1e855c9fb5e1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19506,7 +19506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "167c08f2-65ae-4bb1-aa0b-a43bac991862", + "id": "f6025b36-78ef-41b3-934e-63130e6b2249", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19562,7 +19562,7 @@ "description": "", "item": [ { - "id": "f7aac7b4-3729-450c-bcfc-cdefd57fa80d", + "id": "c7f5183a-2cdb-4a6f-be7c-58df61aeccfc", "name": "Create a create workflow", "request": { "name": "Create a create workflow", @@ -19606,7 +19606,7 @@ }, "response": [ { - "id": "8354c34f-8a79-4b5b-b709-63d55bbcd0a0", + "id": "3f1c53e8-ad88-4935-b362-e3d96719122a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19658,12 +19658,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"a384f89c-6275-3e93-4b45-77709a135300\",\n \"uid\": \"ut commodo laborelaboris ullamco\",\n \"workflow_id\": \"urn:uuid:329acafa-1346-6b94-6016-e45d164c0201\",\n \"requester_id\": \"urn:uuid:f40adb8c-ebc6-215f-12c0-a12052a6618e\",\n \"requester_type\": \"User\",\n \"profile_id\": \"7bf972c7-025d-f56b-6fe6-02e017f179c6\",\n \"profile_ids\": [\n \"3b24a087-3dd8-d649-53b9-3c568c648df2\",\n \"urn:uuid:b0539bbd-b39d-3227-d8b8-e3e934f349a6\"\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\": \"08359525-3a19-8c43-4d3e-ce15a09d02d5\",\n \"uid\": \"sint doofficia cillumeiusmod rep\",\n \"workflow_id\": \"urn:uuid:3e5554be-5bcf-bfd3-fd7e-504f1f94089b\",\n \"requester_id\": \"urn:uuid:f3ae4c1e-adc9-af41-e1e8-6e5b06eeb6c1\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"3205c521-6353-b473-0a70-0a4f61fc19e7\",\n \"profile_ids\": [\n \"5b4fffd6-97e5-2838-4ab8-72c19743c6b5\",\n \"urn:uuid:19101e98-640c-25cf-ea7b-c1e12d9c4b46\"\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": "aa1d7058-9af0-48bf-9f5f-c852a75bb8ee", + "id": "9d1e1fd7-4752-4255-989d-4bcd4f22e716", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19720,7 +19720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56c10484-0f82-4567-b4e7-ce13bb53368e", + "id": "dd287b22-dde9-47d6-ad53-4edd4580db66", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19783,7 +19783,7 @@ } }, { - "id": "a0381abf-5fe9-43fc-a19e-6a61e4f66647", + "id": "e98700a3-5ef3-443f-9151-a85a052c6cdf", "name": "Create an update workflow", "request": { "name": "Create an update workflow", @@ -19827,7 +19827,7 @@ }, "response": [ { - "id": "a321232f-81b1-46ed-8c89-339c521e439e", + "id": "b93e4f3a-e69c-4f5b-98cb-3c71af64b884", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19879,12 +19879,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"a384f89c-6275-3e93-4b45-77709a135300\",\n \"uid\": \"ut commodo laborelaboris ullamco\",\n \"workflow_id\": \"urn:uuid:329acafa-1346-6b94-6016-e45d164c0201\",\n \"requester_id\": \"urn:uuid:f40adb8c-ebc6-215f-12c0-a12052a6618e\",\n \"requester_type\": \"User\",\n \"profile_id\": \"7bf972c7-025d-f56b-6fe6-02e017f179c6\",\n \"profile_ids\": [\n \"3b24a087-3dd8-d649-53b9-3c568c648df2\",\n \"urn:uuid:b0539bbd-b39d-3227-d8b8-e3e934f349a6\"\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\": \"08359525-3a19-8c43-4d3e-ce15a09d02d5\",\n \"uid\": \"sint doofficia cillumeiusmod rep\",\n \"workflow_id\": \"urn:uuid:3e5554be-5bcf-bfd3-fd7e-504f1f94089b\",\n \"requester_id\": \"urn:uuid:f3ae4c1e-adc9-af41-e1e8-6e5b06eeb6c1\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"3205c521-6353-b473-0a70-0a4f61fc19e7\",\n \"profile_ids\": [\n \"5b4fffd6-97e5-2838-4ab8-72c19743c6b5\",\n \"urn:uuid:19101e98-640c-25cf-ea7b-c1e12d9c4b46\"\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": "7d080486-0e68-4275-bfff-4eefa81d1e93", + "id": "0e09cd11-c870-4c6c-9d3d-d8742e2a0a4f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19941,7 +19941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8070779-edb3-4f9b-9d53-dbc9504ca92b", + "id": "456eef79-d0c3-4769-95c5-b23fc7c01721", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20004,7 +20004,7 @@ } }, { - "id": "a17eb03b-6cfc-4307-93bf-50110049c553", + "id": "2abfe751-232e-485b-892e-4bc7ecc57c70", "name": "Create a batch workflow", "request": { "name": "Create a batch workflow", @@ -20036,7 +20036,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\": \"true\"\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", @@ -20048,7 +20048,7 @@ }, "response": [ { - "id": "36a1498c-f73d-437b-a127-ad7e111903cc", + "id": "6a32e629-7293-4628-88b1-f971514a5925", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20083,7 +20083,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\": \"true\"\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", @@ -20100,12 +20100,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"a384f89c-6275-3e93-4b45-77709a135300\",\n \"uid\": \"ut commodo laborelaboris ullamco\",\n \"workflow_id\": \"urn:uuid:329acafa-1346-6b94-6016-e45d164c0201\",\n \"requester_id\": \"urn:uuid:f40adb8c-ebc6-215f-12c0-a12052a6618e\",\n \"requester_type\": \"User\",\n \"profile_id\": \"7bf972c7-025d-f56b-6fe6-02e017f179c6\",\n \"profile_ids\": [\n \"3b24a087-3dd8-d649-53b9-3c568c648df2\",\n \"urn:uuid:b0539bbd-b39d-3227-d8b8-e3e934f349a6\"\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\": \"08359525-3a19-8c43-4d3e-ce15a09d02d5\",\n \"uid\": \"sint doofficia cillumeiusmod rep\",\n \"workflow_id\": \"urn:uuid:3e5554be-5bcf-bfd3-fd7e-504f1f94089b\",\n \"requester_id\": \"urn:uuid:f3ae4c1e-adc9-af41-e1e8-6e5b06eeb6c1\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"3205c521-6353-b473-0a70-0a4f61fc19e7\",\n \"profile_ids\": [\n \"5b4fffd6-97e5-2838-4ab8-72c19743c6b5\",\n \"urn:uuid:19101e98-640c-25cf-ea7b-c1e12d9c4b46\"\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": "94703c95-485d-4f6e-9334-0a38eee78c54", + "id": "b9157052-eefc-4ca1-b49e-61882151a787", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20140,7 +20140,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\": \"true\"\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", @@ -20162,7 +20162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c58cebfa-14c4-425c-8db7-519d820a5882", + "id": "f4f1eda3-7e1c-4edf-a8d2-27236a966860", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20197,7 +20197,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\": \"true\"\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", @@ -20225,7 +20225,7 @@ } }, { - "id": "95616b58-4ab4-44e1-97ee-04b69bd9cc07", + "id": "74030414-29df-4cff-8ea7-75c19e6f9d1c", "name": "Create an automated workflow", "request": { "name": "Create an automated workflow", @@ -20269,7 +20269,7 @@ }, "response": [ { - "id": "766715a1-1c3d-4f8d-a55d-236d746f16ca", + "id": "e7bf8a68-9e6a-4ac7-bfac-f912c9e90729", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20321,12 +20321,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"a384f89c-6275-3e93-4b45-77709a135300\",\n \"uid\": \"ut commodo laborelaboris ullamco\",\n \"workflow_id\": \"urn:uuid:329acafa-1346-6b94-6016-e45d164c0201\",\n \"requester_id\": \"urn:uuid:f40adb8c-ebc6-215f-12c0-a12052a6618e\",\n \"requester_type\": \"User\",\n \"profile_id\": \"7bf972c7-025d-f56b-6fe6-02e017f179c6\",\n \"profile_ids\": [\n \"3b24a087-3dd8-d649-53b9-3c568c648df2\",\n \"urn:uuid:b0539bbd-b39d-3227-d8b8-e3e934f349a6\"\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\": \"08359525-3a19-8c43-4d3e-ce15a09d02d5\",\n \"uid\": \"sint doofficia cillumeiusmod rep\",\n \"workflow_id\": \"urn:uuid:3e5554be-5bcf-bfd3-fd7e-504f1f94089b\",\n \"requester_id\": \"urn:uuid:f3ae4c1e-adc9-af41-e1e8-6e5b06eeb6c1\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"3205c521-6353-b473-0a70-0a4f61fc19e7\",\n \"profile_ids\": [\n \"5b4fffd6-97e5-2838-4ab8-72c19743c6b5\",\n \"urn:uuid:19101e98-640c-25cf-ea7b-c1e12d9c4b46\"\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": "2fd4b110-186b-48a1-8bed-84f7e6a1f6cd", + "id": "24060356-9267-4248-8d57-11b5aec18ba0", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20383,7 +20383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a57cd97-70ad-4194-896d-43054b6d7849", + "id": "47471a7f-8695-4521-85fb-eeee7cab846a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20446,7 +20446,7 @@ } }, { - "id": "a418e667-7a59-45cb-99c5-4a4c8c8aa90c", + "id": "6ad33d91-d5de-4c86-9831-7d86fa29fe5f", "name": "Create a registration workflow", "request": { "name": "Create a registration workflow", @@ -20490,7 +20490,7 @@ }, "response": [ { - "id": "681630a2-b410-4a27-938a-617fdea6d92c", + "id": "47d95701-909d-4b24-bf5e-60deb764064a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20542,12 +20542,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"a384f89c-6275-3e93-4b45-77709a135300\",\n \"uid\": \"ut commodo laborelaboris ullamco\",\n \"workflow_id\": \"urn:uuid:329acafa-1346-6b94-6016-e45d164c0201\",\n \"requester_id\": \"urn:uuid:f40adb8c-ebc6-215f-12c0-a12052a6618e\",\n \"requester_type\": \"User\",\n \"profile_id\": \"7bf972c7-025d-f56b-6fe6-02e017f179c6\",\n \"profile_ids\": [\n \"3b24a087-3dd8-d649-53b9-3c568c648df2\",\n \"urn:uuid:b0539bbd-b39d-3227-d8b8-e3e934f349a6\"\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\": \"08359525-3a19-8c43-4d3e-ce15a09d02d5\",\n \"uid\": \"sint doofficia cillumeiusmod rep\",\n \"workflow_id\": \"urn:uuid:3e5554be-5bcf-bfd3-fd7e-504f1f94089b\",\n \"requester_id\": \"urn:uuid:f3ae4c1e-adc9-af41-e1e8-6e5b06eeb6c1\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"3205c521-6353-b473-0a70-0a4f61fc19e7\",\n \"profile_ids\": [\n \"5b4fffd6-97e5-2838-4ab8-72c19743c6b5\",\n \"urn:uuid:19101e98-640c-25cf-ea7b-c1e12d9c4b46\"\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": "0b366c47-3201-4d0f-8217-bc2526bada4e", + "id": "f1e672ff-252f-4f85-91ff-55d669533950", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20604,7 +20604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9083e30-e62b-4071-8d17-a75e1d5b6d7e", + "id": "8526930a-fe27-4003-a3be-54071efef19f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20667,7 +20667,7 @@ } }, { - "id": "076af743-5a4a-4590-af56-aa3c7fc05ad9", + "id": "d45d1a82-5398-4b2a-85df-2a6a26abef43", "name": "Create a login workflow", "request": { "name": "Create a login workflow", @@ -20711,7 +20711,7 @@ }, "response": [ { - "id": "e660f4a2-413b-4807-ab20-70cb9a52f074", + "id": "137acc32-6f6b-4512-9e5d-81823a4278cc", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20763,12 +20763,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"a384f89c-6275-3e93-4b45-77709a135300\",\n \"uid\": \"ut commodo laborelaboris ullamco\",\n \"workflow_id\": \"urn:uuid:329acafa-1346-6b94-6016-e45d164c0201\",\n \"requester_id\": \"urn:uuid:f40adb8c-ebc6-215f-12c0-a12052a6618e\",\n \"requester_type\": \"User\",\n \"profile_id\": \"7bf972c7-025d-f56b-6fe6-02e017f179c6\",\n \"profile_ids\": [\n \"3b24a087-3dd8-d649-53b9-3c568c648df2\",\n \"urn:uuid:b0539bbd-b39d-3227-d8b8-e3e934f349a6\"\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\": \"08359525-3a19-8c43-4d3e-ce15a09d02d5\",\n \"uid\": \"sint doofficia cillumeiusmod rep\",\n \"workflow_id\": \"urn:uuid:3e5554be-5bcf-bfd3-fd7e-504f1f94089b\",\n \"requester_id\": \"urn:uuid:f3ae4c1e-adc9-af41-e1e8-6e5b06eeb6c1\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"3205c521-6353-b473-0a70-0a4f61fc19e7\",\n \"profile_ids\": [\n \"5b4fffd6-97e5-2838-4ab8-72c19743c6b5\",\n \"urn:uuid:19101e98-640c-25cf-ea7b-c1e12d9c4b46\"\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": "9b85784f-8263-4247-87e4-c9689d921abd", + "id": "0b935949-2b96-4999-8170-a23953853fe8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20825,7 +20825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ecaf34d-c544-44c7-8e4e-6eb4023b54c8", + "id": "8f69b955-a6ea-4279-b836-164550622e35", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20888,7 +20888,7 @@ } }, { - "id": "229d259b-965a-44fd-b31e-afd2411c302b", + "id": "89b35ba5-9a89-43ca-b91a-b80e3ecd7e06", "name": "Create a password reset workflow", "request": { "name": "Create a password reset workflow", @@ -20932,7 +20932,7 @@ }, "response": [ { - "id": "0d4ada9a-5627-470d-a4a7-acf97191b9ac", + "id": "275ebcb6-9f3d-43f1-ade4-94f5b343e64f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20984,12 +20984,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"a384f89c-6275-3e93-4b45-77709a135300\",\n \"uid\": \"ut commodo laborelaboris ullamco\",\n \"workflow_id\": \"urn:uuid:329acafa-1346-6b94-6016-e45d164c0201\",\n \"requester_id\": \"urn:uuid:f40adb8c-ebc6-215f-12c0-a12052a6618e\",\n \"requester_type\": \"User\",\n \"profile_id\": \"7bf972c7-025d-f56b-6fe6-02e017f179c6\",\n \"profile_ids\": [\n \"3b24a087-3dd8-d649-53b9-3c568c648df2\",\n \"urn:uuid:b0539bbd-b39d-3227-d8b8-e3e934f349a6\"\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\": \"08359525-3a19-8c43-4d3e-ce15a09d02d5\",\n \"uid\": \"sint doofficia cillumeiusmod rep\",\n \"workflow_id\": \"urn:uuid:3e5554be-5bcf-bfd3-fd7e-504f1f94089b\",\n \"requester_id\": \"urn:uuid:f3ae4c1e-adc9-af41-e1e8-6e5b06eeb6c1\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"3205c521-6353-b473-0a70-0a4f61fc19e7\",\n \"profile_ids\": [\n \"5b4fffd6-97e5-2838-4ab8-72c19743c6b5\",\n \"urn:uuid:19101e98-640c-25cf-ea7b-c1e12d9c4b46\"\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": "593d7584-177e-4da9-a298-26f2820cea13", + "id": "683c2150-f5e4-433a-a87b-e1eb73739f4b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21046,7 +21046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8e790ee-89af-44c8-a399-b0c1edc31c89", + "id": "7df85138-e6db-49d8-b3e3-28735f22fe18", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21115,7 +21115,7 @@ "description": "", "item": [ { - "id": "9626237d-1026-4029-bca2-1bff27dc6d17", + "id": "a1a109c7-8cac-4bc3-8384-b8188c127654", "name": "Create an approval action", "request": { "name": "Create an approval action", @@ -21159,7 +21159,7 @@ }, "response": [ { - "id": "37de382b-c6eb-4e01-b6c1-503fb71e6683", + "id": "cb77183d-1f34-45c6-a9a0-ee19b4e122e2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21216,7 +21216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b32d8f53-5ae8-460b-bd58-99331f14b0c7", + "id": "b2427862-8e41-416f-9f09-48b4b8014ed1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21273,7 +21273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e768adc-ac56-4f17-8448-037173621eb0", + "id": "4f5badf9-91f7-4d4f-89e9-4beb783df494", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21336,7 +21336,7 @@ } }, { - "id": "4cbe483d-cee4-49f4-b8dd-251d1d36a349", + "id": "95a6b857-03ab-431c-8652-dd1ef79ed348", "name": "Create ask security question action", "request": { "name": "Create ask security question action", @@ -21380,7 +21380,7 @@ }, "response": [ { - "id": "573dca27-a74a-43bc-81aa-d54b2b0a9ceb", + "id": "7c05dc08-e5b4-49ac-8d17-9386d6a7566d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21437,7 +21437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76e0c0f0-4a15-49d8-9c5c-8fa86bac6059", + "id": "5f7ea555-7153-4832-a64f-227412aea3c8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21494,7 +21494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "246bc996-58a0-406b-8cc1-dfa8c67d033d", + "id": "945fd48c-b922-409c-8a47-30103b71e711", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21557,7 +21557,7 @@ } }, { - "id": "6249c76f-4646-4582-9c39-c7b764d4ce07", + "id": "9b81c9bf-b92d-4b3c-ae6a-7cafbba1f189", "name": "Create an auto assign action", "request": { "name": "Create an auto assign action", @@ -21601,7 +21601,7 @@ }, "response": [ { - "id": "9ad1c97f-9432-4761-9cbe-f1189973ac30", + "id": "d427a4b2-2268-4a5d-a021-23b58d305cde", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21658,7 +21658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a95ccb5-1c4f-45cc-9269-86bfd16a85c1", + "id": "21b628b5-c8d0-4e1c-8112-713e11a8f44f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21715,7 +21715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5f1dce4-381b-4936-9456-82b42a5eb16d", + "id": "593584fb-982c-4b37-b9f7-fb75504fe440", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21778,7 +21778,7 @@ } }, { - "id": "1447d033-ca74-4c2f-a707-9f9961a42a48", + "id": "9c6a7f8e-9209-4c97-a533-9d0957ffd6fd", "name": "Create a batch update action", "request": { "name": "Create a batch update action", @@ -21822,7 +21822,7 @@ }, "response": [ { - "id": "ba192c8e-be42-44f5-93ac-918cec5bb4dc", + "id": "f45d534b-deb9-4ba6-95de-8b65535b5411", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21879,7 +21879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a199327e-8b77-49b0-b6cd-1241dc61bbb3", + "id": "d4fe7fdf-ef91-417f-baf9-fc6e9ffe07f8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21936,7 +21936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c08e4f36-fd06-4470-991d-8bd08d388728", + "id": "77c690df-7f9d-4424-8aeb-4639f3bc643a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21999,7 +21999,7 @@ } }, { - "id": "90f52ad9-8ad5-4c6b-8384-5735e0146ec4", + "id": "5f4815db-9693-4f1d-88cd-711fb8cdb5c0", "name": "Create a close session action", "request": { "name": "Create a close session action", @@ -22043,7 +22043,7 @@ }, "response": [ { - "id": "b6c7d40f-0f26-401f-853b-a199b555a843", + "id": "fe471a52-0368-4ed0-9b7a-95b4a3570a7b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22100,7 +22100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09ab6f40-bfef-4d65-894f-dd9c1bd41159", + "id": "e6ee7742-8fcd-445e-b512-d538876f4845", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22157,7 +22157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f70ce4d1-e66f-4528-9506-8561a62814e2", + "id": "090404ea-b2af-4651-83a0-43978121e038", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22220,7 +22220,7 @@ } }, { - "id": "786a42f8-f45d-4d75-b11e-d5ddc7db8df1", + "id": "6f76061b-dee8-45da-aeb9-4595da2b28b3", "name": "Create a contributors action", "request": { "name": "Create a contributors action", @@ -22264,7 +22264,7 @@ }, "response": [ { - "id": "efbd7ba3-b369-4cad-9e10-efe72cab35c7", + "id": "d50e5b15-b393-47fe-9491-da164d9b332b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22321,7 +22321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ee16192-ff1b-4c46-b3b2-5507ac7e217d", + "id": "886fa113-ae0e-4cf4-9b4e-6173c6ee8583", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22378,7 +22378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09d25db3-352a-4609-a254-2720de2231bf", + "id": "4722f74b-f3da-4d0b-a68e-82304d638a04", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22441,7 +22441,7 @@ } }, { - "id": "95ceba30-6076-492a-8291-779e7dd3be1e", + "id": "90314c09-788e-4334-a5cb-660e03e820e8", "name": "Create a create profile action", "request": { "name": "Create a create profile action", @@ -22485,7 +22485,7 @@ }, "response": [ { - "id": "6ef574b3-e5c0-423a-aabd-942ab345f84f", + "id": "cd8a8a2a-2640-4e94-a8f9-0d7f414b953b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22542,7 +22542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3b7f1f4-7a81-411e-9267-a5453f52c9cf", + "id": "8304f37f-eba9-4c85-bdb0-bd7136703249", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22599,7 +22599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79ffa720-be57-4282-b2f3-b9a67607518a", + "id": "e058032c-75bb-45db-b22d-f9b656b61f97", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22662,7 +22662,7 @@ } }, { - "id": "ab14af16-8926-4109-baa3-1a5104d62947", + "id": "7d25f020-15af-4ee0-a9c7-05c7b82e601a", "name": "Create a duplicate prevention action", "request": { "name": "Create a duplicate prevention action", @@ -22706,7 +22706,7 @@ }, "response": [ { - "id": "969460e1-5c63-4751-851a-8e7af98b6e2e", + "id": "acf41818-f895-4acb-bfff-5be306a85602", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22763,7 +22763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a97fa715-5080-4018-a09a-6abb44bc3b7f", + "id": "a8a5de79-84f9-40c3-b82e-9c9f0e5ebdb5", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22820,7 +22820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdf50633-22c5-4883-976c-62ee94163ae7", + "id": "f692cc0c-3c36-4893-9f87-38cf3860adda", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22883,7 +22883,7 @@ } }, { - "id": "3e938fc3-06cc-44f5-a8dc-dce5f084c5dc", + "id": "87bce23c-6515-416f-91e9-8680a2e25070", "name": "Create an email verification action", "request": { "name": "Create an email verification action", @@ -22927,7 +22927,7 @@ }, "response": [ { - "id": "fc9f5231-2faf-48f2-bf53-a1c0d3130f2f", + "id": "8ea79a72-1dd3-4506-98d4-4a81ee3a52b0", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22984,7 +22984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "800998d6-949a-47fc-88d9-52980c2f98fb", + "id": "25b036c6-3053-4044-b563-bc8f27716316", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23041,7 +23041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56d526eb-584f-4424-b3b9-40ade87badda", + "id": "f29ba77e-063e-4ad2-8a63-060c5c3c5731", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23104,7 +23104,7 @@ } }, { - "id": "205b2c11-9162-483c-8b46-acfae138470e", + "id": "d4334661-b11f-4d5f-b668-949a763f679e", "name": "Create a fulfillment action", "request": { "name": "Create a fulfillment action", @@ -23148,7 +23148,7 @@ }, "response": [ { - "id": "b98ac20d-6eaa-44aa-a3eb-b941f2ebb1c1", + "id": "813b95ec-3736-40ee-ab80-6160634f25e1", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23205,7 +23205,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3a377da-872d-4a6f-bf0f-744f8c96f145", + "id": "30a72e2a-e483-4f88-9e63-03a8b5e9fa0d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23262,7 +23262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88fcc290-d428-4904-9449-dab104fa45f0", + "id": "180815fa-d25a-4931-a500-bbd21513a9f7", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23325,7 +23325,7 @@ } }, { - "id": "3c1010a5-2c80-4d1a-97b9-3eb891b7a586", + "id": "17ab1251-ed55-4658-bf7e-bfd9675ac8a4", "name": "Create an identity proofing action", "request": { "name": "Create an identity proofing action", @@ -23369,7 +23369,7 @@ }, "response": [ { - "id": "87e847f9-1e9e-48ce-b662-93319e4c5a3c", + "id": "f6a4ff74-b143-4dde-b5c9-dc5a0098a4e5", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23426,7 +23426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a764e27c-e922-4ad2-9cbd-e375993a609e", + "id": "0e51a5a1-b583-4fe4-a801-d6a4f2caff07", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23483,7 +23483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "017874bd-85a9-44ff-89ac-6ed76830511d", + "id": "6f17154e-a686-4471-ac4d-6eebea8d84ce", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23546,7 +23546,7 @@ } }, { - "id": "d9f28d88-ea84-438e-ab98-21ba4fc30935", + "id": "78243e29-3c47-4d11-90f2-5d714a20060e", "name": "Create an invitation action", "request": { "name": "Create an invitation action", @@ -23590,7 +23590,7 @@ }, "response": [ { - "id": "e11d6699-3bc2-41ed-929e-3a82a1f71566", + "id": "79faffc0-9a7a-4ddc-a8d7-2fb86c326b0c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23647,7 +23647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "faa95626-663a-4cf0-8ce4-ad9c9529ec66", + "id": "068c3ff9-8abb-46c0-88f4-95c1b81e90cf", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23704,7 +23704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "112154bd-fa2a-473f-9844-ba9d629e6994", + "id": "aeba4066-37a0-4f6c-bbc1-beb53a7b363f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23767,7 +23767,7 @@ } }, { - "id": "a3af4f93-211a-4375-8951-dcce54a0d990", + "id": "ce2b2d6a-64e0-4b1e-8fc4-400c9acdb107", "name": "Create a ldap action", "request": { "name": "Create a ldap action", @@ -23811,7 +23811,7 @@ }, "response": [ { - "id": "c10143c7-e095-44c0-ae8d-0082ba83d80c", + "id": "9e766339-cb45-46dc-8fa1-d333c229064a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23868,7 +23868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "178477c6-113f-4101-9f36-466954414680", + "id": "f37a72b2-5b10-43f4-af7e-1e9212fc8406", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23925,7 +23925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f730b1bf-bcef-40f2-aff0-a2d796aadfe0", + "id": "929d4290-f7ea-4fb9-9fe9-aeb0f168359e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23988,7 +23988,7 @@ } }, { - "id": "addcb1f4-2e30-4f9c-a452-60a9ff0a2d75", + "id": "c02e6c04-3b03-4beb-acf2-90cb139f4a1d", "name": "Create a notification action", "request": { "name": "Create a notification action", @@ -24032,7 +24032,7 @@ }, "response": [ { - "id": "9846d222-c3e6-45df-bbf4-5d2b1f53c6e6", + "id": "10105610-3140-4467-8bcc-ecb3e6275b2c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24089,7 +24089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b09f3079-1f62-4877-a4a0-1a4a873f0159", + "id": "563525ff-4496-42a8-befe-438520603d4c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24146,7 +24146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7faa2dfc-66ed-4e08-ad66-5e457d342aa6", + "id": "e6435202-2102-4231-b22d-b54510893f3e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24209,7 +24209,7 @@ } }, { - "id": "6aa23db1-2764-4f2e-a0df-583990e5a5ff", + "id": "9463a6d9-62ac-41e2-b5c4-8255ee4b7a38", "name": "Create a password reset action", "request": { "name": "Create a password reset action", @@ -24253,7 +24253,7 @@ }, "response": [ { - "id": "c8d9a83a-cbdb-4365-874d-2bba65d4a24b", + "id": "c094fbe5-5b1e-4745-adf9-2fa17beb06c9", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24310,7 +24310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d661531f-a1d7-4a1a-b821-293264f5f549", + "id": "10d4c974-d575-486c-958d-70b462c83e2a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24367,7 +24367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c900eba-3750-435f-9c40-1fb1b87e7dfc", + "id": "3c2b1ac8-0361-4103-a75d-d7fd967fc8c9", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24430,7 +24430,7 @@ } }, { - "id": "74a63752-6d98-4cd2-907e-582c8a29e6eb", + "id": "242d6c3b-0560-4586-872d-986011d97a42", "name": "Create a profile check action", "request": { "name": "Create a profile check action", @@ -24474,7 +24474,7 @@ }, "response": [ { - "id": "5bb7e621-4b49-4567-94a6-47ff6a23a717", + "id": "0ab3e9c4-cdcb-4623-a00e-1c653ea03d6b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24531,7 +24531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05290428-e9ad-4501-90bc-294b021b2da0", + "id": "7eba5a69-0172-4dac-bf22-cfbfd12cf57c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24588,7 +24588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "804358cb-d88c-44a9-8993-dbc89d53ce83", + "id": "0c8c1fdd-6cba-4f7c-90df-857dd3ad5947", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24651,7 +24651,7 @@ } }, { - "id": "ca85453a-391e-40ba-9bc2-4bade9273653", + "id": "f584492a-9728-4ebb-921b-34c95c04a7d2", "name": "Create a profile select action", "request": { "name": "Create a profile select action", @@ -24695,7 +24695,7 @@ }, "response": [ { - "id": "f308627d-510d-47e0-a92f-de1b934e8ad3", + "id": "d42652b8-5980-4aca-a0ac-39685299686c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24752,7 +24752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a50e75e-ebc2-4db7-9a89-03a1b7b59562", + "id": "64ae392b-5137-46f2-a9a7-761128cdedee", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24809,7 +24809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb5279ce-98be-4724-8366-06e100601f94", + "id": "3e0d7795-0692-4775-9f3c-5da5eceac0fd", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24872,7 +24872,7 @@ } }, { - "id": "0bcb2347-5830-4529-bf7c-87dcc32187b4", + "id": "feec8d34-2ae4-4f9c-b13c-c0b536fa6a26", "name": "Create a request action", "request": { "name": "Create a request action", @@ -24916,7 +24916,7 @@ }, "response": [ { - "id": "001a38fe-44e0-45fb-9def-1484e9a9ba87", + "id": "394edf07-9c19-4014-b6b3-26f8e4cb15eb", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24973,7 +24973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a885d84d-3cbb-4e74-b288-19cc3f7834ea", + "id": "3e013fae-8bfb-4571-9d02-5346fc4cc56d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25030,7 +25030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5f1d7aa-d545-4ff7-b760-1b091e91c5cf", + "id": "0c73b98b-da1e-4682-8ec0-ca3d34f3326b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25093,7 +25093,7 @@ } }, { - "id": "924af323-ff20-483d-a354-e9f162a8375f", + "id": "c448f9d6-9cf4-454b-9426-4a2c83973b9c", "name": "Create a REST API action", "request": { "name": "Create a REST API action", @@ -25137,7 +25137,7 @@ }, "response": [ { - "id": "d88abfbd-2fee-4a2d-ae13-f381fd4f00d8", + "id": "66b91050-dc95-4ec2-adab-cfcab40eec04", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25194,7 +25194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7879d60e-c9f6-4be5-a4e7-ee082219dc58", + "id": "52d42cfa-46c3-4902-b2c0-f60295d255a6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25251,7 +25251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55213fd7-db0d-44ed-9d21-dbb68f4825ad", + "id": "8bba4517-c300-48bc-953c-ecc456ac4128", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25314,7 +25314,7 @@ } }, { - "id": "42b510f7-2292-4762-ad6e-a78cffcd8757", + "id": "dad9c538-7c70-4c67-9c1a-0fcb4790a948", "name": "Create a review action", "request": { "name": "Create a review action", @@ -25358,7 +25358,7 @@ }, "response": [ { - "id": "791dc556-37d2-484a-9629-b6231893300b", + "id": "d95dcac8-a710-42fa-af5f-b159ec6e8be1", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25415,7 +25415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b9a1b32-1d8c-484e-ad11-cd3ab8a556d1", + "id": "d5bcead8-8a77-4850-9851-db2b76c62d01", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25472,7 +25472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77ee492d-85a7-4d55-9a84-50c470500727", + "id": "2ceeff3b-a92d-41da-bd71-4746399f521b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25535,7 +25535,7 @@ } }, { - "id": "df9862cf-869a-49cc-a0ef-1c1967f32654", + "id": "d3f6724b-a8a2-4b20-8c6d-4115fca806d6", "name": "Create a run workflow action", "request": { "name": "Create a run workflow action", @@ -25579,7 +25579,7 @@ }, "response": [ { - "id": "9d0f916f-2f28-4357-aab4-f44f238708df", + "id": "7a33fad8-ae8b-418d-a90f-3964ad5c943d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25636,7 +25636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a549ab12-5bc0-47d9-9c0a-3c4d69da3ca1", + "id": "64306ddf-6f5a-4eaa-9f3e-999bd61b508d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25693,7 +25693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8504ac4b-0fdb-4e7d-91eb-3d9dc20eebcc", + "id": "64258c26-c421-417f-8864-9d3d1d1c9659", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25756,7 +25756,7 @@ } }, { - "id": "72bbaccf-9129-41d0-a4d0-cff0866beb31", + "id": "791610bb-05a6-4786-96df-cc8e19ba6ab5", "name": "Create a set attributes action", "request": { "name": "Create a set attributes action", @@ -25800,7 +25800,7 @@ }, "response": [ { - "id": "1b624bfd-e29c-44cf-b4cb-3a8cf66a1bac", + "id": "5c963725-c904-4b7b-8aff-9bc79c1511ac", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25857,7 +25857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01043086-a10a-4886-9484-7393b229f741", + "id": "b8266f8d-79ec-4ef9-a1a4-943283498f8f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25914,7 +25914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "902e72bb-c1c2-4ee0-84b5-c3aa7c2e929e", + "id": "70ff76f4-141f-4b8c-9c6e-1c597a834a6b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25977,7 +25977,7 @@ } }, { - "id": "ea112e4f-00ab-4b75-9e98-5f5fadb17be1", + "id": "1e8cc963-cd29-48ac-b581-47971b15c761", "name": "Create set security question action", "request": { "name": "Create set security question action", @@ -26021,7 +26021,7 @@ }, "response": [ { - "id": "7a3ed386-91e3-4fb1-97d8-66d6ec3ba1d8", + "id": "985ebeef-de62-4d61-aea8-ab706a19024a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26078,7 +26078,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e582d9aa-74a4-4c6b-babc-c7f283d07058", + "id": "77537174-d20b-456c-a395-a5db46292cd9", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26135,7 +26135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f650594-5678-4b0c-b4d8-cc3da5806a41", + "id": "f0443975-7ad8-4deb-9756-72b9bfe8845e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26198,7 +26198,7 @@ } }, { - "id": "d628c546-6a8b-4da1-912c-ad644fda183c", + "id": "7e0a9931-9c88-4193-80cf-71d647fee59b", "name": "Create a SOAP API action", "request": { "name": "Create a SOAP API action", @@ -26242,7 +26242,7 @@ }, "response": [ { - "id": "d421e865-b33e-44fa-bd40-c53fd62f05f9", + "id": "f5fcea8b-09ad-4b99-931a-f7a3f99dc396", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26299,7 +26299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c474352-288e-4e1c-add3-46bdd66dd5ad", + "id": "7b3d62b7-f8b9-4c97-a320-153a0d18b686", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26356,7 +26356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27a7fce8-d435-4b93-8ee9-ebfc0edc4baa", + "id": "502e6f5b-5a65-42df-aaf8-f4d3b90ca3cc", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26419,7 +26419,7 @@ } }, { - "id": "252968c4-9be9-4982-8075-50c49b81dddb", + "id": "96f82052-7435-4036-8cf7-f7aad034c7ba", "name": "Create a status change action", "request": { "name": "Create a status change action", @@ -26463,7 +26463,7 @@ }, "response": [ { - "id": "f3e8a5ff-ed75-497b-9680-e1652002a274", + "id": "d052e1ab-905d-415e-b865-d8eff277e3f4", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26520,7 +26520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "493ad3f4-8a17-4224-8eb0-1104658e6d73", + "id": "46e32191-837d-4fdf-9fb5-f38827a67df3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26577,7 +26577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26cbd3c5-8e2f-4a38-8254-eaf295ba6d89", + "id": "e3cde5fb-d998-4145-997d-81b6ebd04519", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26640,7 +26640,7 @@ } }, { - "id": "7d51e2cd-ac8a-438d-a307-10248421015a", + "id": "769d2b28-bec2-4aba-9076-c8e09cfc2101", "name": "Create an unassign action", "request": { "name": "Create an unassign action", @@ -26684,7 +26684,7 @@ }, "response": [ { - "id": "0aba7885-7a8c-49f2-be2f-46afa6c36fb4", + "id": "7898fdd5-5cd5-4310-8d3a-81e4658ebb8b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26741,7 +26741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff9881d9-3360-4ff9-b4b9-1805f4e2886a", + "id": "d397376e-e2f6-456c-a881-5eb5882fbf9b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26798,7 +26798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90c8fed8-74ac-44a4-aa42-f6d8c116bf4a", + "id": "85e98135-c221-4735-9ac8-3a0966b23e5c", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26861,7 +26861,7 @@ } }, { - "id": "744c1a5a-7d51-4c90-b613-5e420b491b10", + "id": "a49ce33f-5c29-4871-b2c3-b013fc9c67ca", "name": "Create an update profile action", "request": { "name": "Create an update profile action", @@ -26905,7 +26905,7 @@ }, "response": [ { - "id": "11ae41a0-2def-4e15-8256-b9be314ecbe0", + "id": "ef0dd579-ef9c-40c0-bece-a7f612779bf6", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26962,7 +26962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc7d2845-0530-4bdc-b004-c32f64b6c2f3", + "id": "e65c14ef-795f-4c80-ada5-1f0d97395843", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27019,7 +27019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd16400e-4b19-4aea-b99a-a400c9ee6f38", + "id": "d8040b08-ee91-4866-b450-efa7ad036964", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27082,7 +27082,7 @@ } }, { - "id": "77ab0cdd-0314-4174-9259-0cc9856bf21c", + "id": "ddf412da-cd2c-414f-96c1-fd7809d807e3", "name": "Create a username password action", "request": { "name": "Create a username password action", @@ -27126,7 +27126,7 @@ }, "response": [ { - "id": "4e9c99d2-007f-465a-b1f0-57f01c080d1f", + "id": "5d6f8889-24b1-42ac-9393-bb8a3d0a1e29", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27183,7 +27183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddd11695-10bb-415e-a61e-b2dddf41ffa5", + "id": "49b49598-e9f3-41b5-92a4-68916c7c2905", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27240,7 +27240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3568f49-f27a-40c6-8e83-ffc756b1c3d5", + "id": "77e58ae5-cd15-438a-9870-87f47e5965fd", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27303,7 +27303,7 @@ } }, { - "id": "ad88185b-1dad-4ae1-bb3a-f31f023082e7", + "id": "a1485ce2-fac4-48ab-958c-6eb859b4f9c4", "name": "Get Workflow Actions", "request": { "name": "Get Workflow Actions", @@ -27343,7 +27343,7 @@ }, "response": [ { - "id": "90f70935-dde2-4220-af4e-8ba29367a723", + "id": "2561f4d4-d19b-4b9f-92db-0121789a36bf", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27396,7 +27396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf934622-4808-4600-8b08-4d8261db766d", + "id": "0f6156f1-ebec-446d-bc5d-088d7c09ebd9", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27449,7 +27449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24d2338b-99fc-4275-acc8-8cd65cbdcd8f", + "id": "47502c23-b77e-4456-980d-184b1c54ce26", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27514,7 +27514,7 @@ "description": "", "item": [ { - "id": "caf374e1-0d3d-4bbf-ad72-dba1950b8ed3", + "id": "56525f95-f3e6-4872-a26a-ae48f9c5aee6", "name": "Get workflow sessions", "request": { "name": "Get workflow sessions", @@ -27573,7 +27573,7 @@ "type": "text/plain" }, "key": "uid", - "value": "tempor sunt in culpaqui nulla in" + "value": "aliqua irure pariatur voluptate " }, { "disabled": false, @@ -27591,7 +27591,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -27600,7 +27600,7 @@ "type": "text/plain" }, "key": "status", - "value": "workflow changed" + "value": "pending request" }, { "disabled": false, @@ -27626,7 +27626,7 @@ }, "response": [ { - "id": "0449b1f5-319c-41ea-ab2f-b92d5286b87b", + "id": "cd1b8388-c10a-40f9-af72-3dcf6b59ebee", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27680,7 +27680,7 @@ "type": "text/plain" }, "key": "uid", - "value": "tempor sunt in culpaqui nulla in" + "value": "aliqua irure pariatur voluptate " }, { "disabled": false, @@ -27698,7 +27698,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -27707,7 +27707,7 @@ "type": "text/plain" }, "key": "status", - "value": "workflow changed" + "value": "pending request" }, { "disabled": false, @@ -27746,12 +27746,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_sessions\": [\n {\n \"id\": \"498c645b-c7b5-7703-9b40-f9953d7893fa\",\n \"uid\": \"irure in minim nullaut mollit ut\",\n \"workflow_id\": \"902a9b88-cdc1-1b98-6823-91b0530f2a34\",\n \"requester_id\": \"1cf02c71-559d-75e2-cac7-12a2eeb6795b\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"591bc33a-6558-65d7-5b49-2ffc26be0f69\",\n \"profile_ids\": [\n \"urn:uuid:ddaeef8c-064b-450f-6924-8578ed387e6f\",\n \"1d517237-4586-e206-5b7b-662aaa847371\"\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:083c2f12-b1b6-e366-b9a4-b0e31864c5d4\",\n \"uid\": \"pariaturesse sed cupidatatconsec\",\n \"workflow_id\": \"urn:uuid:4b796c7f-2fe4-15f5-8f43-4e4d1c2556fd\",\n \"requester_id\": \"urn:uuid:04b00d25-7b34-2564-89bc-3b89de2620c4\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:779fc031-87ac-4049-4ad9-4a510ffdc314\",\n \"profile_ids\": [\n \"urn:uuid:78adf57d-c377-6960-0e26-ac2ec5599687\",\n \"961e2622-dc57-e7a3-3281-db5686259f00\"\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\": -66980597,\n \"offset\": -68972932,\n \"total\": 39781967,\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:ab2e664c-fa3d-66aa-2464-81d87bece12f\",\n \"uid\": \"laboris tempordo proidenteu in e\",\n \"workflow_id\": \"urn:uuid:a68d392e-b9e2-9e4a-7ca3-928ae75f2e5e\",\n \"requester_id\": \"f75ee26b-dde6-47b0-cf1a-45dc059b2612\",\n \"requester_type\": \"User\",\n \"profile_id\": \"a7774429-1de8-7ed6-bda1-d7776b39d6c7\",\n \"profile_ids\": [\n \"urn:uuid:113a27f1-74a6-6676-cb17-d46aa3029b37\",\n \"urn:uuid:3757e033-84e3-73af-6161-eac4376ee481\"\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:04ca3a3e-eba6-1e9c-32fc-bf5c3f3b4bc9\",\n \"uid\": \"ut labore Loremut ex sitnon quii\",\n \"workflow_id\": \"049ff749-cd52-c879-f780-6ac291fe88cf\",\n \"requester_id\": \"fe4528ab-416d-893d-8bff-6c08866f2367\",\n \"requester_type\": \"User\",\n \"profile_id\": \"14ab0a00-a9c7-eca4-36ba-3edbc97088b4\",\n \"profile_ids\": [\n \"57467a73-e643-a053-457a-cd0fad464029\",\n \"urn:uuid:9e78917c-ab7e-56f9-e247-c27b6bbf1175\"\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\": -38791306,\n \"offset\": 89753471,\n \"total\": -3123636,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1dfab1ca-53a6-481a-844f-c00402df7427", + "id": "b7f6881c-e253-492d-9fa5-adab1f9248af", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27805,7 +27805,7 @@ "type": "text/plain" }, "key": "uid", - "value": "tempor sunt in culpaqui nulla in" + "value": "aliqua irure pariatur voluptate " }, { "disabled": false, @@ -27823,7 +27823,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -27832,7 +27832,7 @@ "type": "text/plain" }, "key": "status", - "value": "workflow changed" + "value": "pending request" }, { "disabled": false, @@ -27876,7 +27876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95c957c7-ea0d-4601-9c19-5124b19ba377", + "id": "ac407610-f046-4bba-8b8a-6ba445bb10fe", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27930,7 +27930,7 @@ "type": "text/plain" }, "key": "uid", - "value": "tempor sunt in culpaqui nulla in" + "value": "aliqua irure pariatur voluptate " }, { "disabled": false, @@ -27948,7 +27948,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -27957,7 +27957,7 @@ "type": "text/plain" }, "key": "status", - "value": "workflow changed" + "value": "pending request" }, { "disabled": false, @@ -28007,7 +28007,7 @@ } }, { - "id": "ee15c96e-076b-419e-985a-fc48f45d441b", + "id": "f737c55c-d4da-4cbd-bd18-b95ab83ce530", "name": "Create a workflow session", "request": { "name": "Create a workflow session", @@ -28048,7 +28048,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:8525c13e-c7d3-7680-b7b0-953d90e2ba36\",\n \"requester_id\": \"urn:uuid:ee009957-9e53-2de2-8c2e-f5b6d127eb65\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:6b3e8852-8212-2b7b-67d0-a0e50bbc56f9\",\n \"profile_ids\": [\n \"urn:uuid:1c6a6cbe-c8fe-ea83-34d6-6c98215fc3e3\",\n \"urn:uuid:13412d44-95e4-200b-99c0-3942cea6cbf9\"\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:a788d736-2175-6e2c-9bb1-36dd250ad9c1\",\n \"requester_id\": \"a9229f12-2fe5-272d-276c-327c921cc4bc\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:6eb2fb16-3232-73f7-68db-aed07268026d\",\n \"profile_ids\": [\n \"2ce4de6f-9e74-497c-0507-ebdb9254593f\",\n \"1694e2b2-fa5d-7317-2671-f3c3b565a378\"\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", @@ -28060,7 +28060,7 @@ }, "response": [ { - "id": "df9f0a64-f4e6-48ca-94dd-fac7a8086ea3", + "id": "848cc80c-f8ef-469d-a357-9aa05ed2231a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28104,7 +28104,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:8525c13e-c7d3-7680-b7b0-953d90e2ba36\",\n \"requester_id\": \"urn:uuid:ee009957-9e53-2de2-8c2e-f5b6d127eb65\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:6b3e8852-8212-2b7b-67d0-a0e50bbc56f9\",\n \"profile_ids\": [\n \"urn:uuid:1c6a6cbe-c8fe-ea83-34d6-6c98215fc3e3\",\n \"urn:uuid:13412d44-95e4-200b-99c0-3942cea6cbf9\"\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:a788d736-2175-6e2c-9bb1-36dd250ad9c1\",\n \"requester_id\": \"a9229f12-2fe5-272d-276c-327c921cc4bc\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:6eb2fb16-3232-73f7-68db-aed07268026d\",\n \"profile_ids\": [\n \"2ce4de6f-9e74-497c-0507-ebdb9254593f\",\n \"1694e2b2-fa5d-7317-2671-f3c3b565a378\"\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", @@ -28121,12 +28121,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_session\": {\n \"id\": \"2c5f85f0-0c71-7068-ccbe-6a2e76f683e1\",\n \"uid\": \"aliquairure anim in amet inincid\",\n \"workflow_id\": \"urn:uuid:9dd0d587-acaa-8db6-8a18-a05a27e74554\",\n \"requester_id\": \"urn:uuid:ee0875dc-f9a3-d73b-0e6f-06307f9f50c3\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"7096a739-b6d2-d78f-87ec-6c243db17751\",\n \"profile_ids\": [\n \"urn:uuid:440fe6a0-4968-b8ba-c4c8-f5e0de9aaa3e\",\n \"urn:uuid:ea704a7e-44a9-d030-b1a9-a63c9360e7df\"\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:a252bbaa-fba7-1158-f0f9-13641cb94a41\",\n \"uid\": \"mollit enim tempor veniamexercit\",\n \"workflow_id\": \"urn:uuid:81fd12c0-11ee-fde7-8227-11290faad5fc\",\n \"requester_id\": \"929676d3-41d4-b1ae-15f0-4b56a8f369ac\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:2e58f0a7-c144-0a32-57db-2eaa1de9b0d7\",\n \"profile_ids\": [\n \"69d7c983-5ee1-018e-5012-907729153f61\",\n \"urn:uuid:2a26ecf3-b869-e747-de2c-e80aa4a2bf48\"\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": "966215eb-bf95-49f3-a75a-a5dfcdcf6647", + "id": "ffdfef18-84b3-461b-ba17-bab0ebb916f4", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28170,7 +28170,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:8525c13e-c7d3-7680-b7b0-953d90e2ba36\",\n \"requester_id\": \"urn:uuid:ee009957-9e53-2de2-8c2e-f5b6d127eb65\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:6b3e8852-8212-2b7b-67d0-a0e50bbc56f9\",\n \"profile_ids\": [\n \"urn:uuid:1c6a6cbe-c8fe-ea83-34d6-6c98215fc3e3\",\n \"urn:uuid:13412d44-95e4-200b-99c0-3942cea6cbf9\"\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:a788d736-2175-6e2c-9bb1-36dd250ad9c1\",\n \"requester_id\": \"a9229f12-2fe5-272d-276c-327c921cc4bc\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:6eb2fb16-3232-73f7-68db-aed07268026d\",\n \"profile_ids\": [\n \"2ce4de6f-9e74-497c-0507-ebdb9254593f\",\n \"1694e2b2-fa5d-7317-2671-f3c3b565a378\"\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", @@ -28192,7 +28192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df14e049-b2cc-4e32-881c-6fc0fe7f5be2", + "id": "7ba482b5-f051-4851-ad78-67d97f29269f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28236,7 +28236,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:8525c13e-c7d3-7680-b7b0-953d90e2ba36\",\n \"requester_id\": \"urn:uuid:ee009957-9e53-2de2-8c2e-f5b6d127eb65\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:6b3e8852-8212-2b7b-67d0-a0e50bbc56f9\",\n \"profile_ids\": [\n \"urn:uuid:1c6a6cbe-c8fe-ea83-34d6-6c98215fc3e3\",\n \"urn:uuid:13412d44-95e4-200b-99c0-3942cea6cbf9\"\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:a788d736-2175-6e2c-9bb1-36dd250ad9c1\",\n \"requester_id\": \"a9229f12-2fe5-272d-276c-327c921cc4bc\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:6eb2fb16-3232-73f7-68db-aed07268026d\",\n \"profile_ids\": [\n \"2ce4de6f-9e74-497c-0507-ebdb9254593f\",\n \"1694e2b2-fa5d-7317-2671-f3c3b565a378\"\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", @@ -28264,7 +28264,7 @@ } }, { - "id": "371eed7d-563a-410c-bd72-8ea25e7cec44", + "id": "a452032e-ce72-4fd1-af8b-1cbb2b61b302", "name": "Find workflow session by id", "request": { "name": "Find workflow session by id", @@ -28306,7 +28306,7 @@ }, "response": [ { - "id": "c8b79b86-5c7c-4099-8733-8b40eafa9d49", + "id": "19e4a33e-a07c-4a94-bf2b-3a6a37669ca9", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28345,12 +28345,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_session\": {\n \"id\": \"2c5f85f0-0c71-7068-ccbe-6a2e76f683e1\",\n \"uid\": \"aliquairure anim in amet inincid\",\n \"workflow_id\": \"urn:uuid:9dd0d587-acaa-8db6-8a18-a05a27e74554\",\n \"requester_id\": \"urn:uuid:ee0875dc-f9a3-d73b-0e6f-06307f9f50c3\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"7096a739-b6d2-d78f-87ec-6c243db17751\",\n \"profile_ids\": [\n \"urn:uuid:440fe6a0-4968-b8ba-c4c8-f5e0de9aaa3e\",\n \"urn:uuid:ea704a7e-44a9-d030-b1a9-a63c9360e7df\"\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:a252bbaa-fba7-1158-f0f9-13641cb94a41\",\n \"uid\": \"mollit enim tempor veniamexercit\",\n \"workflow_id\": \"urn:uuid:81fd12c0-11ee-fde7-8227-11290faad5fc\",\n \"requester_id\": \"929676d3-41d4-b1ae-15f0-4b56a8f369ac\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:2e58f0a7-c144-0a32-57db-2eaa1de9b0d7\",\n \"profile_ids\": [\n \"69d7c983-5ee1-018e-5012-907729153f61\",\n \"urn:uuid:2a26ecf3-b869-e747-de2c-e80aa4a2bf48\"\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": "fc947053-ea66-4e91-ad24-31a9b9246ed2", + "id": "ef36845c-abde-4463-b441-a01e2a39bd10", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28394,7 +28394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8a9a173-333d-4e1b-bdb0-df1459f1b11d", + "id": "c0d3f0dd-ed1b-4b28-8a6d-c644f01d7a45", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28444,7 +28444,7 @@ } }, { - "id": "5c5e84d8-fe7a-4a23-ba1b-e1e77c4fb49c", + "id": "c53b776a-078e-42b8-8891-2596f2d41fa5", "name": "Update a workflow session by id", "request": { "name": "Update a workflow session by id", @@ -28497,7 +28497,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:c97e4b75-051d-ac28-0e08-5b8262353834\",\n \"requester_id\": \"281dfff0-1934-907e-29ab-7a12af9fa38a\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:bb2bf291-29f1-7fcf-b5a0-886ce154205c\",\n \"profile_ids\": [\n \"fc443431-dc69-307d-178c-c573f36557ac\",\n \"urn:uuid:1a5c2832-0bdb-1592-1c1d-863f3a0af0cf\"\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\": \"urn:uuid:35da1adb-4610-08e6-0a5d-916758b3c87d\",\n \"requester_id\": \"902d9967-1751-1f4a-011b-8ad63bd31103\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"939d58c7-26c3-df3c-353f-72c34f6f42f3\",\n \"profile_ids\": [\n \"urn:uuid:e305f549-def6-dd61-11ad-97c1b5c8ef91\",\n \"f1ed790c-d1fa-995a-bad4-e4a5090e9bcd\"\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", @@ -28509,7 +28509,7 @@ }, "response": [ { - "id": "5358d827-f2a9-4f86-80ee-e3dd0faea02d", + "id": "19876d62-5a19-42f8-b3c3-2b73c7076eec", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28554,7 +28554,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:c97e4b75-051d-ac28-0e08-5b8262353834\",\n \"requester_id\": \"281dfff0-1934-907e-29ab-7a12af9fa38a\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:bb2bf291-29f1-7fcf-b5a0-886ce154205c\",\n \"profile_ids\": [\n \"fc443431-dc69-307d-178c-c573f36557ac\",\n \"urn:uuid:1a5c2832-0bdb-1592-1c1d-863f3a0af0cf\"\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\": \"urn:uuid:35da1adb-4610-08e6-0a5d-916758b3c87d\",\n \"requester_id\": \"902d9967-1751-1f4a-011b-8ad63bd31103\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"939d58c7-26c3-df3c-353f-72c34f6f42f3\",\n \"profile_ids\": [\n \"urn:uuid:e305f549-def6-dd61-11ad-97c1b5c8ef91\",\n \"f1ed790c-d1fa-995a-bad4-e4a5090e9bcd\"\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", @@ -28571,12 +28571,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_session\": {\n \"id\": \"2c5f85f0-0c71-7068-ccbe-6a2e76f683e1\",\n \"uid\": \"aliquairure anim in amet inincid\",\n \"workflow_id\": \"urn:uuid:9dd0d587-acaa-8db6-8a18-a05a27e74554\",\n \"requester_id\": \"urn:uuid:ee0875dc-f9a3-d73b-0e6f-06307f9f50c3\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"7096a739-b6d2-d78f-87ec-6c243db17751\",\n \"profile_ids\": [\n \"urn:uuid:440fe6a0-4968-b8ba-c4c8-f5e0de9aaa3e\",\n \"urn:uuid:ea704a7e-44a9-d030-b1a9-a63c9360e7df\"\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:a252bbaa-fba7-1158-f0f9-13641cb94a41\",\n \"uid\": \"mollit enim tempor veniamexercit\",\n \"workflow_id\": \"urn:uuid:81fd12c0-11ee-fde7-8227-11290faad5fc\",\n \"requester_id\": \"929676d3-41d4-b1ae-15f0-4b56a8f369ac\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:2e58f0a7-c144-0a32-57db-2eaa1de9b0d7\",\n \"profile_ids\": [\n \"69d7c983-5ee1-018e-5012-907729153f61\",\n \"urn:uuid:2a26ecf3-b869-e747-de2c-e80aa4a2bf48\"\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": "a38732f8-f33c-4b05-bd57-0983ba099f9d", + "id": "ea03f758-1be9-4858-9243-1213728d2c36", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28621,7 +28621,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:c97e4b75-051d-ac28-0e08-5b8262353834\",\n \"requester_id\": \"281dfff0-1934-907e-29ab-7a12af9fa38a\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:bb2bf291-29f1-7fcf-b5a0-886ce154205c\",\n \"profile_ids\": [\n \"fc443431-dc69-307d-178c-c573f36557ac\",\n \"urn:uuid:1a5c2832-0bdb-1592-1c1d-863f3a0af0cf\"\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\": \"urn:uuid:35da1adb-4610-08e6-0a5d-916758b3c87d\",\n \"requester_id\": \"902d9967-1751-1f4a-011b-8ad63bd31103\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"939d58c7-26c3-df3c-353f-72c34f6f42f3\",\n \"profile_ids\": [\n \"urn:uuid:e305f549-def6-dd61-11ad-97c1b5c8ef91\",\n \"f1ed790c-d1fa-995a-bad4-e4a5090e9bcd\"\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", @@ -28643,7 +28643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "648bd0af-8aff-457e-b277-2871df1eb327", + "id": "c485d4dd-4fb2-4364-be13-47526292b44b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28688,7 +28688,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:c97e4b75-051d-ac28-0e08-5b8262353834\",\n \"requester_id\": \"281dfff0-1934-907e-29ab-7a12af9fa38a\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:bb2bf291-29f1-7fcf-b5a0-886ce154205c\",\n \"profile_ids\": [\n \"fc443431-dc69-307d-178c-c573f36557ac\",\n \"urn:uuid:1a5c2832-0bdb-1592-1c1d-863f3a0af0cf\"\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\": \"urn:uuid:35da1adb-4610-08e6-0a5d-916758b3c87d\",\n \"requester_id\": \"902d9967-1751-1f4a-011b-8ad63bd31103\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"939d58c7-26c3-df3c-353f-72c34f6f42f3\",\n \"profile_ids\": [\n \"urn:uuid:e305f549-def6-dd61-11ad-97c1b5c8ef91\",\n \"f1ed790c-d1fa-995a-bad4-e4a5090e9bcd\"\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", @@ -28716,7 +28716,7 @@ } }, { - "id": "3f184181-5d0e-4ba2-b437-65a10f779970", + "id": "432f71f2-d55a-4d4b-a7ab-85c3fdf74fda", "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", @@ -28770,7 +28770,7 @@ }, "response": [ { - "id": "074e8d2d-e5e6-46f1-8343-faa4af6731f3", + "id": "61170767-b4fb-401c-9d5d-c50a24bb770d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28811,12 +28811,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"in ipsum laborum cillum\"\n}", + "body": "{\n \"url\": \"ea pariatur\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2822c310-8dc8-4d63-9742-7a635c8a0ef6", + "id": "4a4da4c0-453f-416b-9527-e26b27f31f67", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28862,7 +28862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "879fdeb8-fb68-451f-84e7-b2d0c8d76848", + "id": "261ffd51-6c1b-411c-88e9-5405fdad29db", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28914,7 +28914,7 @@ } }, { - "id": "147b025d-3fa0-4c95-84c0-d792270234fe", + "id": "48b0788b-5191-46a1-a479-3715d06fc4b9", "name": "Uploads a new attachment attribute value to a workflow session", "request": { "name": "Uploads a new attachment attribute value to a workflow session", @@ -28976,7 +28976,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut veniam", + "value": "commodo nostrud dolore nu", "type": "text" } ] @@ -28985,7 +28985,7 @@ }, "response": [ { - "id": "8ec22903-720d-49a6-9312-426d91fda2ad", + "id": "2a63aa98-1c6f-4381-8b96-90c65b65a761", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29029,7 +29029,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut veniam", + "value": "commodo nostrud dolore nu", "type": "text" } ] @@ -29043,12 +29043,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"in ipsum laborum cillum\"\n}", + "body": "{\n \"url\": \"ea pariatur\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "965e33eb-75ce-42fe-b674-4217e87ecdec", + "id": "b9479199-bf38-40e9-a45c-7f32e72a1731", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -29092,7 +29092,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut veniam", + "value": "commodo nostrud dolore nu", "type": "text" } ] @@ -29111,7 +29111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "775fa8c3-b48a-4753-b2b2-46be8fa18041", + "id": "0abcf123-2002-4454-8ea3-04dc1f2132fa", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -29155,7 +29155,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut veniam", + "value": "commodo nostrud dolore nu", "type": "text" } ] @@ -29186,7 +29186,7 @@ "description": "", "item": [ { - "id": "cdbe1c4a-8b84-4d96-b751-1c09ae000902", + "id": "cf093a39-4ac4-4854-9851-57b84c8bd429", "name": "Get identity proofing result data in bulk", "request": { "name": "Get identity proofing result data in bulk", @@ -29245,7 +29245,7 @@ "type": "text/plain" }, "key": "workflow_session_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -29280,7 +29280,7 @@ }, "response": [ { - "id": "dcabb379-0bd3-49c2-9a8c-a5e2fdfb2dfa", + "id": "7decc219-cc60-425a-9d02-99b38f5cb8b3", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29334,7 +29334,7 @@ "type": "text/plain" }, "key": "workflow_session_id", - "value": "afb7a954-1afd-313e-80a0-302426bc0092" + "value": "urn:uuid:b085c983-18fc-3945-2968-818980d7e987" }, { "disabled": false, @@ -29382,7 +29382,7 @@ "value": "application/json" } ], - "body": "{\n \"identity_proofing_results\": [\n {\n \"id\": \"urn:uuid:0d0c4240-c589-5dcb-866d-4f9491c067bc\",\n \"identity_proofing_action_id\": \"be24da0a-1d97-2804-1fe8-8f75a414e178\",\n \"workflow_session_id\": \"urn:uuid:d4d620b8-ef08-0128-b59f-858c6da884ae\",\n \"profile_id\": \"ba1790ca-9546-ef0c-acaf-780f73f3ff53\",\n \"proofing_workflow\": \"a74c9273-c0fe-7b19-3cf7-54cfbc6e4d7a\",\n \"result\": \"pending\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"1944-10-09T04:56:39.975Z\",\n \"updated_at\": \"1988-05-25T13:44:39.855Z\"\n },\n {\n \"id\": \"a524edb1-6581-0f19-9a05-d3616e259827\",\n \"identity_proofing_action_id\": \"urn:uuid:d3417214-8551-198b-727a-b4ea3b7d24df\",\n \"workflow_session_id\": \"e4411be0-135a-0fbe-cf8e-c6634fea79e3\",\n \"profile_id\": \"1e51a47f-fd9a-0a20-c6c5-476376184c66\",\n \"proofing_workflow\": \"03fbd37d-7012-86dd-8e82-abcdd566a13e\",\n \"result\": \"fail\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"2010-10-03T02:15:26.861Z\",\n \"updated_at\": \"1945-07-15T11:34:50.055Z\"\n }\n ],\n \"_metadata\": {\n \"limit\": -70325089,\n \"offset\": -74357462,\n \"total\": 52371854,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"identity_proofing_results\": [\n {\n \"id\": \"urn:uuid:e8bf2873-3ce8-e0a1-ad0b-e97c145f640a\",\n \"identity_proofing_action_id\": \"bf1103a9-ca88-2563-5b7b-e3d817031cf6\",\n \"workflow_session_id\": \"urn:uuid:41a4b9c6-5656-03b3-ec66-5724a169d3c6\",\n \"profile_id\": \"2384041a-1d5d-a30b-f5a5-53577ca491c7\",\n \"proofing_workflow\": \"urn:uuid:2a0cb888-f616-63d2-65c1-52cb32a58c7d\",\n \"result\": \"pass\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"1994-11-13T01:56:05.772Z\",\n \"updated_at\": \"1981-01-11T19:09:35.042Z\"\n },\n {\n \"id\": \"22de5342-af51-a25f-91dd-be4f6a686515\",\n \"identity_proofing_action_id\": \"urn:uuid:0c8d1d42-13d4-81c1-e424-1f1123669684\",\n \"workflow_session_id\": \"urn:uuid:ca521442-12de-e037-17c5-b42eaad7e40e\",\n \"profile_id\": \"urn:uuid:526e0359-ecbe-d6bc-76c1-cc9c37cd3904\",\n \"proofing_workflow\": \"0b03c81c-70ac-7489-3a24-71a54c594bef\",\n \"result\": \"fail\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"1949-09-22T13:16:58.377Z\",\n \"updated_at\": \"1977-08-01T08:24:35.428Z\"\n }\n ],\n \"_metadata\": {\n \"limit\": -48547446,\n \"offset\": 22121999,\n \"total\": 75386933,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29399,7 +29399,7 @@ "description": "", "item": [ { - "id": "670492d6-ea0d-4bd9-9a1e-6ea3e97dd725", + "id": "68c6b690-d1a8-4457-9885-e881cbc37a80", "name": "Get saved advanced search queries", "request": { "name": "Get saved advanced search queries", @@ -29429,7 +29429,7 @@ }, "response": [ { - "id": "ade08925-bb85-4689-8c82-ad2d2c5fa342", + "id": "99004686-c288-4fa4-937c-fa0d1d635fc8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29467,7 +29467,7 @@ "value": "application/json" } ], - "body": "{\n \"advanced_search\": [\n {\n \"id\": \"3bc851c8-f0c9-2fdc-e9b7-6ee6cc206cc7\",\n \"uid\": \"commodo amet in eiusmodin consec\",\n \"label\": \"enim id\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"620ed746-3749-42dc-deeb-7cbea33510bf\",\n \"uid\": \"aliquip enimex nostrudeu irure a\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"f7b9adb7-d2ac-e6bc-5321-9bbf9bef0b73\"\n },\n {\n \"id\": \"594f8de9-2fb9-36ce-81b4-46a01faa78db\",\n \"uid\": \"elit qui utenim amet commodo cil\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:da0c0db2-12b1-9e24-1202-88d812e81c1b\"\n }\n ]\n },\n {\n \"id\": \"urn:uuid:373e0e88-7767-7144-02c2-2c23c82e970a\",\n \"uid\": \"in reprehenderit labore Duis ali\",\n \"label\": \"dolor exercitation non ex\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"258a996c-8f4e-9e00-2241-3ca9415030a9\",\n \"uid\": \"labore sit nulla velit doest adi\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"57e26ee4-195a-f4f0-94d1-e50bc60ede69\"\n },\n {\n \"id\": \"urn:uuid:3668c4d0-43c2-c2ac-439c-e47f1f4eb943\",\n \"uid\": \"laborumUt minim ut nullado nisie\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:9f0cf25e-8ef2-efae-505c-8257ff35d633\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"advanced_search\": [\n {\n \"id\": \"bbee0dc5-9b20-d00d-c97e-c1dbe6120b87\",\n \"uid\": \"officia aute Lorem laborislaboru\",\n \"label\": \"consequat laboris mollit\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"3c62d1c0-4343-1a60-680c-518b5cdb8999\",\n \"uid\": \"Duisminim Duispariatur laborum n\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:ebd77a09-3947-d7df-191d-ca2984bcec64\"\n },\n {\n \"id\": \"urn:uuid:e29ee599-bbb4-f3fb-9ec3-1f9c796944a6\",\n \"uid\": \"qui nostrudut tempor Duis minime\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:fbc1a95d-524a-22be-818c-48f380b6e50b\"\n }\n ]\n },\n {\n \"id\": \"5d5665ef-ce0b-4874-99e7-8df3da8d2d20\",\n \"uid\": \"commodo voluptate dolorid amet i\",\n \"label\": \"proident esse Excepteur laborum\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:76c51ce7-3352-16d2-0da7-be54e210f965\",\n \"uid\": \"nulla tempor do deseruntullamco \",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:bc7e445a-9479-7be6-976d-a7afd86f8530\"\n },\n {\n \"id\": \"urn:uuid:21378c1f-77c8-5d47-030b-e9adc8f1498c\",\n \"uid\": \"sit veniam ipsum pariatur nondol\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:8edf61a1-ebcc-982c-e011-8bdd3f959f14\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29478,7 +29478,7 @@ } }, { - "id": "6724c3df-ad70-40ed-9920-551e8dd28db4", + "id": "6c978fa0-df9d-4f40-b7eb-db2f1eb3ca59", "name": "Save an advanced search query for later use", "request": { "name": "Save an advanced search query for later use", @@ -29509,7 +29509,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"labore ut aute nulla\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"674124ed-dc78-bac3-996c-ca142bbc3baf\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"a76294d9-1580-5b19-d8b4-80d28db68fb7\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"aute\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:1fb30ff5-05c0-5720-f4ed-50ad518c2f22\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:5a2e9c1d-4184-789f-4c8c-683d924d1de6\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29521,7 +29521,7 @@ }, "response": [ { - "id": "8ef76408-a97c-408e-a558-58e24ecfc13c", + "id": "89af2068-adbd-434f-b0af-d22c37c58e0f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29555,7 +29555,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"labore ut aute nulla\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"674124ed-dc78-bac3-996c-ca142bbc3baf\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"a76294d9-1580-5b19-d8b4-80d28db68fb7\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"aute\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:1fb30ff5-05c0-5720-f4ed-50ad518c2f22\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:5a2e9c1d-4184-789f-4c8c-683d924d1de6\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29572,7 +29572,7 @@ "value": "application/json" } ], - "body": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:38ffdd01-6cc5-9712-8d03-b82ca6091e9b\",\n \"uid\": \"aliquip tempor reprehenderitsed \",\n \"label\": \"Duis sed ullamco nulla reprehenderit\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"ec63a31e-c4dc-5ce3-00a9-b88c85a4a144\",\n \"uid\": \"esse nulla ad incididunt reprehe\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"472a484d-28cc-3f6d-edd1-998cc28c0e88\"\n },\n {\n \"id\": \"urn:uuid:430742c6-6439-168f-565f-e783200ad2f7\",\n \"uid\": \"incididunt sitconsequat aute inc\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:613d177d-fb21-c4c3-05e2-533eba562a84\"\n }\n ]\n }\n}", + "body": "{\n \"advanced_search\": {\n \"id\": \"57fb5e11-9056-8cc1-39a8-243ee3787231\",\n \"uid\": \"ex eadolor aute occaecat exercit\",\n \"label\": \"ipsum aliqua aliquip\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"a54a784d-5ebf-4715-7f82-8fcf0655ed26\",\n \"uid\": \"Ut consecteturcillum qui volupta\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"0a489149-10fe-e1be-8435-2c0c5b573bfe\"\n },\n {\n \"id\": \"urn:uuid:8dbdc45e-b680-83a3-ce2a-a47869d59a5a\",\n \"uid\": \"proidentconsectetur adipisicing \",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:ee4d636a-8b1e-16d1-8806-48d09602fac8\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29583,7 +29583,7 @@ } }, { - "id": "d414cf5c-6108-4810-a602-d6024a51d9b2", + "id": "1e84a45c-f206-4468-bc59-ccd6b26b8ee8", "name": "Run an advanced search for profiles, without saving the query", "request": { "name": "Run an advanced search for profiles, without saving the query", @@ -29643,7 +29643,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"labore ut aute nulla\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"674124ed-dc78-bac3-996c-ca142bbc3baf\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"a76294d9-1580-5b19-d8b4-80d28db68fb7\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"aute\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:1fb30ff5-05c0-5720-f4ed-50ad518c2f22\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:5a2e9c1d-4184-789f-4c8c-683d924d1de6\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29655,7 +29655,7 @@ }, "response": [ { - "id": "9a58745b-8ee8-4881-acd6-8e5e2f9dab22", + "id": "c1baeec8-d6cb-46e2-ad45-536136dc78eb", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29718,7 +29718,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"labore ut aute nulla\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"674124ed-dc78-bac3-996c-ca142bbc3baf\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"a76294d9-1580-5b19-d8b4-80d28db68fb7\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"aute\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:1fb30ff5-05c0-5720-f4ed-50ad518c2f22\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:5a2e9c1d-4184-789f-4c8c-683d924d1de6\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29735,7 +29735,7 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut incupidatat ipsumcupidatat ci\",\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\": \"pariatur dolor exercitationlabor\",\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\": \"do nullaquis sedsunt consectetur\",\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\": \"irure nostrud fugiat autelaborum\",\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" } @@ -29746,7 +29746,7 @@ } }, { - "id": "2166c6d4-65f3-42d2-86e3-1ca7a8ccbe20", + "id": "21c8d364-e5fc-4960-acf7-b333da9bf200", "name": "Update a saved advanced search query", "request": { "name": "Update a saved advanced search query", @@ -29789,7 +29789,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:d59be275-8960-76ae-5549-707e061031e6\",\n \"label\": \"eiusmod in sint amet\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"da7e6373-feba-0175-38be-67f9ae73714f\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:f934d86f-7a62-884f-a554-e7aed305bc12\",\n \"_destroy\": false\n },\n {\n \"id\": \"urn:uuid:a1b66b2c-238c-3941-377f-47f4ea5a2fd6\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:171b4adc-d8c5-1af2-c604-b51f81455c33\",\n \"_destroy\": false\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:47f621d2-0cd3-434e-63f3-34a9058313ae\",\n \"label\": \"Duis aliqua incididunt\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"ca044a4b-2afc-6aa0-02d8-67c5e8f23f17\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:af8f4718-9b62-2212-eb14-cb69403d3d36\",\n \"_destroy\": false\n },\n {\n \"id\": \"urn:uuid:1c1f0586-a6a9-12c0-4715-fec581b31eda\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"faca3736-0ac3-ea5a-2fcc-25c67f151a1d\",\n \"_destroy\": false\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29801,7 +29801,7 @@ }, "response": [ { - "id": "57125b10-1951-4a5a-a11e-8775c47b8c60", + "id": "071181de-74bd-45a7-822b-4a01ab21d59c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29836,7 +29836,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:d59be275-8960-76ae-5549-707e061031e6\",\n \"label\": \"eiusmod in sint amet\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"da7e6373-feba-0175-38be-67f9ae73714f\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:f934d86f-7a62-884f-a554-e7aed305bc12\",\n \"_destroy\": false\n },\n {\n \"id\": \"urn:uuid:a1b66b2c-238c-3941-377f-47f4ea5a2fd6\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:171b4adc-d8c5-1af2-c604-b51f81455c33\",\n \"_destroy\": false\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:47f621d2-0cd3-434e-63f3-34a9058313ae\",\n \"label\": \"Duis aliqua incididunt\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"ca044a4b-2afc-6aa0-02d8-67c5e8f23f17\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:af8f4718-9b62-2212-eb14-cb69403d3d36\",\n \"_destroy\": false\n },\n {\n \"id\": \"urn:uuid:1c1f0586-a6a9-12c0-4715-fec581b31eda\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"faca3736-0ac3-ea5a-2fcc-25c67f151a1d\",\n \"_destroy\": false\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29853,7 +29853,7 @@ "value": "application/json" } ], - "body": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:38ffdd01-6cc5-9712-8d03-b82ca6091e9b\",\n \"uid\": \"aliquip tempor reprehenderitsed \",\n \"label\": \"Duis sed ullamco nulla reprehenderit\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"ec63a31e-c4dc-5ce3-00a9-b88c85a4a144\",\n \"uid\": \"esse nulla ad incididunt reprehe\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"472a484d-28cc-3f6d-edd1-998cc28c0e88\"\n },\n {\n \"id\": \"urn:uuid:430742c6-6439-168f-565f-e783200ad2f7\",\n \"uid\": \"incididunt sitconsequat aute inc\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:613d177d-fb21-c4c3-05e2-533eba562a84\"\n }\n ]\n }\n}", + "body": "{\n \"advanced_search\": {\n \"id\": \"57fb5e11-9056-8cc1-39a8-243ee3787231\",\n \"uid\": \"ex eadolor aute occaecat exercit\",\n \"label\": \"ipsum aliqua aliquip\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"a54a784d-5ebf-4715-7f82-8fcf0655ed26\",\n \"uid\": \"Ut consecteturcillum qui volupta\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"0a489149-10fe-e1be-8435-2c0c5b573bfe\"\n },\n {\n \"id\": \"urn:uuid:8dbdc45e-b680-83a3-ce2a-a47869d59a5a\",\n \"uid\": \"proidentconsectetur adipisicing \",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:ee4d636a-8b1e-16d1-8806-48d09602fac8\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29864,7 +29864,7 @@ } }, { - "id": "62719aa9-db8f-4755-b232-b3176a697ba8", + "id": "49c68bd2-3a53-4686-bacc-fdb9df452950", "name": "Run a saved advanced search query", "request": { "name": "Run a saved advanced search query", @@ -29935,7 +29935,7 @@ }, "response": [ { - "id": "fd9469d3-8551-4280-824d-89d293abb0c5", + "id": "a70ecbcb-943c-42c2-82e6-3d86a19aa77f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30003,7 +30003,7 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut incupidatat ipsumcupidatat ci\",\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\": \"pariatur dolor exercitationlabor\",\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\": \"do nullaquis sedsunt consectetur\",\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\": \"irure nostrud fugiat autelaborum\",\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" } @@ -30020,7 +30020,7 @@ "description": "", "item": [ { - "id": "0fb0676a-5285-41cd-bc13-9d6a20253e97", + "id": "63cd3144-d56d-445d-a6b9-138af404d300", "name": "Get the status of a bulk job", "request": { "name": "Get the status of a bulk job", @@ -30043,7 +30043,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "nostrud Lorem" + "value": "nulla sit esse" } ], "variable": [] @@ -30060,7 +30060,7 @@ }, "response": [ { - "id": "98ba23a9-618a-4600-85c2-9bbd3d16ab85", + "id": "cb6871be-288a-4097-b0c7-12a8757f0407", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30078,7 +30078,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "nostrud Lorem" + "value": "nulla sit esse" } ], "variable": [] @@ -30108,12 +30108,12 @@ "value": "application/json" } ], - "body": "{\n \"uid\": \"urn:uuid:45981c06-fff3-8d28-e8da-5ce439221b87\",\n \"status\": \"complete\",\n \"job_type\": \"import\",\n \"job_data\": [\n {\n \"user_id\": \"6d1a674e-6efc-adde-eee7-7d0bafea7310\",\n \"manager_id\": \"3b4a6fcf-6be0-f3f7-75d3-759d4bbf95d1\",\n \"errors\": [\n \"Validation error for record in job\",\n \"Validation error for record in job\"\n ]\n },\n {\n \"user_id\": \"urn:uuid:b146368f-c862-b59a-958e-a56f416d3349\",\n \"manager_id\": \"283e4b76-ae3e-c068-a89e-e520c79f872b\",\n \"errors\": [\n \"Validation error for record in job\",\n \"Validation error for record in job\"\n ]\n }\n ]\n}", + "body": "{\n \"uid\": \"adf5d822-e4c9-b49e-305e-4b41954b86a1\",\n \"status\": \"complete\",\n \"job_type\": \"import\",\n \"job_data\": [\n {\n \"user_id\": \"urn:uuid:2bda8e6b-352b-622f-d153-8c4a6daa405d\",\n \"manager_id\": \"207a89ee-2ae4-ff25-6f5d-7046ef20b80b\",\n \"errors\": [\n \"Validation error for record in job\",\n \"Validation error for record in job\"\n ]\n },\n {\n \"user_id\": \"urn:uuid:ad4c5c45-80a8-f39b-3c79-59e2f842f455\",\n \"manager_id\": \"c89106d7-3abb-26e0-78a4-a2998a0eec9f\",\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": "b75b5ac7-e5e6-4bb7-92c8-9090d93378bd", + "id": "a927615c-e4d3-4c2f-a6d2-fd69186abfdf", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -30131,7 +30131,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "nostrud Lorem" + "value": "nulla sit esse" } ], "variable": [] @@ -30166,7 +30166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e292bfbd-0407-4c27-ae19-3bf366f436e2", + "id": "0fc50ec2-2205-4ffc-842f-2c7d0e49425d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -30184,7 +30184,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "nostrud Lorem" + "value": "nulla sit esse" } ], "variable": [] @@ -30231,7 +30231,7 @@ "description": "", "item": [ { - "id": "7cef2a2e-0d24-44a2-b0db-479346110391", + "id": "1c101189-4be5-4734-a7a5-25bb4703c0cb", "name": "Create a form", "request": { "name": "Create a form", @@ -30274,7 +30274,7 @@ }, "response": [ { - "id": "7c058549-e59e-43e3-99b2-389da59ca6e0", + "id": "93a11ac5-47bb-41eb-8b86-962a909ba60a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30330,7 +30330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abf0b36d-3baf-4296-9cff-09905237e9a1", + "id": "b2d62466-b023-454a-af90-c49bc9835d37", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -30386,7 +30386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a808721-1ee9-41ba-93a0-2c8619a3895b", + "id": "40583cec-bf0b-4134-8439-4555f9ad6e6d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -30454,7 +30454,7 @@ "description": "", "item": [ { - "id": "6f2269be-0087-4ead-beda-85e35660f0f9", + "id": "47e238c9-5663-441d-a992-186a75504654", "name": "Create a form attribute", "request": { "name": "Create a form attribute", @@ -30497,7 +30497,7 @@ }, "response": [ { - "id": "12e279fa-0da5-4e8a-8256-a2c88f161313", + "id": "674ea010-77f9-40cb-8dbc-e988f87de45a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30553,7 +30553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e79185f5-864a-4513-83d8-7caea1346282", + "id": "869119c5-96aa-4c15-ad65-c008b84f149c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -30609,7 +30609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6200b610-fdee-4b54-b1ae-037f99c90cac", + "id": "6965e64e-b169-4c4a-a85c-5fe05bccefbb", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -30695,7 +30695,7 @@ } ], "info": { - "_postman_id": "e7a6bda0-e0b8-4ca1-86bb-6bc20d61db2b", + "_postman_id": "45400c64-5e01-40a6-b39e-87233c4aa21d", "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 a0507a9..5bbdbff 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": "6ead3b7d-187e-4732-b27b-0713ac4462d4", + "id": "3b465f52-d27b-4864-b461-b87db7b8ef69", "name": "List Access Profiles", "request": { "name": "List Access Profiles", @@ -107,7 +107,7 @@ }, "response": [ { - "id": "b8b3a0f4-6cf8-4b39-a04a-a29ae171da0b", + "id": "96e2d9d6-2fe3-40ea-a4df-df549ee84992", "name": "List of Access Profiles", "originalRequest": { "url": { @@ -223,7 +223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f21ad1c7-ce63-43a2-9aab-cf561dc24549", + "id": "b56d5041-e6db-4735-a53a-59726677fb6f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -339,7 +339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ffe9418-f990-4572-b223-e587f72562d8", + "id": "b27f3f1e-935e-41dc-afaf-ac58b86e577f", "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": "66f70b17-872e-496a-8da3-565e4347fec1", + "id": "be59f914-45a1-4ec7-b142-172e5f2bdc4d", "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": "d5892e44-3ef7-4655-9631-7b644121dc32", + "id": "78c13678-e5e7-4050-ba8c-929f03eba413", "name": "Too Many Requests - Returned in response to too many requests in 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": "ac87d8bb-a1f9-42d7-ba71-e2d75abfe90f", + "id": "5b211675-834f-4d8b-a111-5801ae6e9e53", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -809,7 +809,7 @@ } }, { - "id": "c90f3a72-a7a2-4e77-94b9-98ea2f2feb93", + "id": "eebf4faa-2922-499e-9769-d20e6e3244e5", "name": "Create an Access Profile", "request": { "name": "Create an Access Profile", @@ -851,7 +851,7 @@ }, "response": [ { - "id": "0e8a86cf-9be9-4774-ab5d-8fa1cc16c1e8", + "id": "ab14ee6f-2b42-445e-b900-2a8c1005fea3", "name": "Access Profile created", "originalRequest": { "url": { @@ -907,7 +907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cb64af6-ba6e-4a07-81a7-714bdcff04e4", + "id": "38aa4a0f-1180-466e-83e3-6eba055137aa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -963,7 +963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e200091-6f21-4c17-b178-775f47f8b303", + "id": "b76a16f6-4c4f-4bf5-a157-e9bc592b138e", "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": "4252eae1-0521-4583-805e-0d01551275f8", + "id": "d1f4f7fa-7d03-45d4-b84a-7afac72a87a0", "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": "cfcf55ed-ce24-4b61-87f0-87bfe11ae5b0", + "id": "298e205d-3689-43fb-9d03-f979d745ed79", "name": "Too Many Requests - Returned in response to too many requests in 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": "c7a75559-f511-4659-8858-06bdeee21da5", + "id": "02b3e86f-cafa-4146-b452-40e85e3678ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1193,7 +1193,7 @@ } }, { - "id": "3a86cd42-b00d-401b-93f7-5906981be8ec", + "id": "b1b5a207-47da-4118-8f46-b4395035265a", "name": "Get an Access Profile", "request": { "name": "Get an Access Profile", @@ -1234,7 +1234,7 @@ }, "response": [ { - "id": "b5de561a-25f0-4fb7-951a-1da1b01423c8", + "id": "0d5078c7-30bc-402e-9a6b-089b06725b56", "name": "An AccessProfile", "originalRequest": { "url": { @@ -1278,7 +1278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3092b065-5c29-44cc-a5e7-1ea08f1d40de", + "id": "0ad0179a-1c7b-4893-836e-861330417fe3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1322,7 +1322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d0d6a94-db13-428f-8699-f629d6d58766", + "id": "60835420-f96e-457e-96d8-4bada65ba5ff", "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": "1f3f453c-c715-4301-b030-28fe18e47e1d", + "id": "1d480da4-c5eb-45d5-9fc4-27f741c5f73d", "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": "fc48981c-352d-4372-a182-d1e63b9760c6", + "id": "57065867-1b4c-4a25-b655-bd39ae3592ae", "name": "Too Many Requests - Returned in response to too many requests in 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": "96ab28e8-76ff-4ff8-8d07-f1fc46962571", + "id": "11cf0570-77e2-4b10-983f-1488146446d0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1504,7 +1504,7 @@ } }, { - "id": "d9f44138-6c7e-4163-b741-afbfeee4d1b2", + "id": "231dfafa-9798-47e8-bc5b-6c958bf34570", "name": "Patch a specified Access Profile", "request": { "name": "Patch a specified Access Profile", @@ -1558,7 +1558,7 @@ }, "response": [ { - "id": "f59edcf4-c1a8-4c66-bcab-9e2617e9ef5f", + "id": "96fd035e-7841-438d-b681-7212e14fe5eb", "name": "Add Entitlements", "originalRequest": { "url": { @@ -1615,7 +1615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c23b7454-02e7-4acb-aaba-529569a4260f", + "id": "8dffa480-8a30-4bc8-8a32-0ab7a7358adf", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -1672,7 +1672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af7fc792-6c4c-4632-91d2-10897ff246c4", + "id": "8a6e25cd-e2ed-4793-a185-536433e3e79c", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -1729,7 +1729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4007985-2dfb-4e7a-8df6-958a53dca71e", + "id": "6c93701f-fd87-47d2-98a5-0605b4ba15cd", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -1786,7 +1786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "409d5de7-0211-4903-98d2-e3684929d0c9", + "id": "0f20b76c-2a17-4a7f-a73e-89259ff15ee5", "name": "Replace Source", "originalRequest": { "url": { @@ -1843,7 +1843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10683578-2927-46f6-b128-d3abbe25003d", + "id": "42027807-d6a6-41ce-b00e-57e3b204267e", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -1900,7 +1900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dab9a8a3-dadf-4cf5-914f-9c1235fd5fe2", + "id": "83c24cfe-39b7-420c-a6ab-7af8f25a5def", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -1957,7 +1957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1177e60b-c9ed-4615-af77-be88626d4943", + "id": "96612083-73da-4bb4-916b-d627651f1767", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2014,7 +2014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "444d35aa-f5f4-4e39-b8b6-c381577b2ac1", + "id": "2ba2aa56-22b7-4c6d-873b-09ff6dc4c716", "name": "Replace Source", "originalRequest": { "url": { @@ -2071,7 +2071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f33bb2a7-640f-408f-ab18-0da4454a1164", + "id": "2c649a78-a0c7-497b-bd52-d3216dcdcd08", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -2128,7 +2128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d699c63-bc0d-45a1-926b-ea355863a931", + "id": "f69c9dfe-d5dc-4ea4-af5d-7e1d6a0f18f8", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2185,7 +2185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffa4c6e4-f111-4430-acd8-2976c67c6fee", + "id": "653921d2-746b-48bf-b57c-ae27b091a7ad", "name": "Replace Source", "originalRequest": { "url": { @@ -2242,7 +2242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4545c7e-98ac-41e4-8c7f-474bbac040fd", + "id": "0da3517c-dd77-4c8a-b973-7dff9e87e424", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -2299,7 +2299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cbecd75-05d6-4eca-9001-3deb0b5b567f", + "id": "9ae20c77-fd81-427d-b158-0fa595c90c2f", "name": "Replace Source", "originalRequest": { "url": { @@ -2356,7 +2356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "745a519a-dfc7-4419-a0aa-52a5f215caca", + "id": "efa107fd-bf1b-4b44-ab4f-53ea6b59fee1", "name": "Replace Source", "originalRequest": { "url": { @@ -2413,7 +2413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c133e0fa-01c4-47cc-8e31-478beec9ccf5", + "id": "5a407c58-c8aa-4464-8f02-776b70542b45", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -2476,7 +2476,7 @@ } }, { - "id": "98579512-4cc9-4f7f-a558-371a9be63d5a", + "id": "54bb0043-2d8f-46e2-aabc-3427a2c14e6c", "name": "Delete the specified Access Profile", "request": { "name": "Delete the specified Access Profile", @@ -2517,7 +2517,7 @@ }, "response": [ { - "id": "7cb85f3d-d4f8-4607-9357-5ee336b89c02", + "id": "0b9b9048-0783-499e-bcf5-dacd1a4527fc", "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": "ef5b00db-a6f7-4e18-84da-3ec00b8e74ef", + "id": "d9df80c4-191d-4e9a-8298-3245137b6241", "name": "Returned when an access profile cannot be deleted as it's being used.", "originalRequest": { "url": { @@ -2595,7 +2595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ce4e4da-b164-4b72-be0f-8dc24bd3e60d", + "id": "9f0706ea-9259-4e80-ab5a-2ee2daee9a6a", "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": "55a57019-9105-4255-bbe5-004172b38df5", + "id": "3741fbe1-b4cb-4c17-b533-2c58ca6fc4d4", "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": "caf4968b-b4ee-492a-b1a0-0adf48057dda", + "id": "e883b036-1c76-4b7b-90bd-d36a7925b2aa", "name": "Too Many Requests - Returned in response to too many requests in 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": "0cb10282-5d6b-44c5-87d4-b9b72445e605", + "id": "3cd58828-8a75-4ac0-bec1-edace8271e08", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2777,7 +2777,7 @@ } }, { - "id": "69271594-2747-4d97-a2db-81d23af1679e", + "id": "fda22e19-521a-4b13-a687-0baaa5d9ffa2", "name": "Delete Access Profile(s)", "request": { "name": "Delete Access Profile(s)", @@ -2820,7 +2820,7 @@ }, "response": [ { - "id": "661ec574-0d6c-4d0c-bca2-f2056251256f", + "id": "171bc8fd-ec55-45e3-9e3e-a1518c3fc4f7", "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": "7b76b2e1-89aa-4884-a395-ca38022fcb23", + "id": "44355193-0a25-4621-b58e-26a4598f0cd1", "name": "Returned if at least one deletion will be performed.", "originalRequest": { "url": { @@ -2934,7 +2934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b402ffa0-4062-4ded-b5b7-808f813185cc", + "id": "e891c500-ecb0-4226-93d4-39475b788a5c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2991,7 +2991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "482f1f96-7c2d-405d-92f7-33175f084049", + "id": "858a84ee-74f3-46d7-9dfe-f764996b6d63", "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": "90cc4701-6275-44e7-a27b-1d9eb48ce544", + "id": "2a558bf4-d346-4901-bc8b-05f1d6d64f13", "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": "562876ce-1f0c-4520-8e0b-2a4fab162537", + "id": "03c064c6-3c5c-4465-9efc-07efeac50872", "name": "Too Many Requests - Returned in response to too many requests in 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": "9a063525-580d-4d19-8369-c522d28d2a91", + "id": "b89f34a2-2e39-49cb-aa74-b95ad48d0ee6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -3225,7 +3225,7 @@ } }, { - "id": "f56cd093-6a55-4738-a206-6e08bbe24ea6", + "id": "7e57d257-c49d-4d5d-b952-7579c3b116ce", "name": "List Access Profile's Entitlements", "request": { "name": "List Access Profile's Entitlements", @@ -3313,7 +3313,7 @@ }, "response": [ { - "id": "9f70230b-0dee-41ae-90e7-18ca507bfd85", + "id": "ca1eb0cf-2cae-4a35-baa0-b4441dfd418b", "name": "List of Entitlements", "originalRequest": { "url": { @@ -3404,7 +3404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b726b481-521e-4f2c-8539-7c2780b8822c", + "id": "64216cb3-aa72-4257-b00a-8cd08f302491", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -3495,7 +3495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "108ba483-4724-46ca-8db5-eaa548ea7039", + "id": "67bd8394-7db6-4042-be2b-8080170121ba", "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": "e8d12c20-2ceb-4080-9ee1-eb53a4675e54", + "id": "c53ed151-2999-4ef5-a139-66024754e54f", "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": "3f0298be-fbca-4966-9da1-3e952ab28d71", + "id": "dd4da0ad-75ae-4737-9d05-b0cca67be5f7", "name": "Too Many Requests - Returned in response to too many requests in 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": "528ec147-7db1-4297-ab2f-66985c53fb4d", + "id": "f7acddc4-8b52-46c8-8fcc-1371ec5f1cc1", "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": "4cc8df48-5ab8-414e-a12e-e5981fbdccfb", + "id": "6f25ee59-ed07-4ddf-a673-8390537240c7", "name": "Pending Access Request Approvals List", "request": { "name": "Pending Access Request Approvals List", @@ -3956,7 +3956,7 @@ }, "response": [ { - "id": "63ac7d9b-34b2-4b10-842d-a9fb333bd683", + "id": "1285a737-5c0e-4d5a-a9c1-354d2c0ba482", "name": "List of Pending Approvals.", "originalRequest": { "url": { @@ -4055,7 +4055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f6cb7b8-9af8-45a8-bde0-6548c36ad230", + "id": "2acf0dc1-2efc-4053-a42e-e4c0058c671c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -4154,7 +4154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f49fb82-e49b-4f1a-bcc7-19f665ac3ae3", + "id": "e7578e4b-30ae-43b0-bcc8-653cb3ae1103", "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": "f0930e96-dedb-4d06-81bb-df15f46b721f", + "id": "47b3ab7e-21da-41d6-b61b-3ad383da6388", "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": "fdbd36b5-c99a-4670-a02e-3f5ae8f7a393", + "id": "84938f58-a9cc-4728-b740-5bf08e7c6b79", "name": "Too Many Requests - Returned in response to too many requests in 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": "4ee9048b-b74e-4a0c-8108-a462e463d166", + "id": "a554ab72-d3f9-4a8f-b534-6a401e46b04a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4556,7 +4556,7 @@ } }, { - "id": "52471ce8-406c-45a7-9735-6c90acdee8dd", + "id": "19e35ff5-fb4e-4333-920d-e5ba9242eeb6", "name": "Completed Access Request Approvals List", "request": { "name": "Completed Access Request Approvals List", @@ -4641,7 +4641,7 @@ }, "response": [ { - "id": "0d137cdb-ce62-4545-97d4-7dd87ed01b56", + "id": "95846c93-1df7-415f-9569-e4b49e3d124f", "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\": \"qui dolor\"\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\": \"sunt aliqua commodo cupidatat aliquip\"\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\": \"dolor\"\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\": \"incididunt esse irure nisi ullamco\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2452c3f0-43df-4f8c-a616-78c3a73fdeab", + "id": "48c6f4d5-90f9-4991-ae53-1d6eab8239b8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -4839,7 +4839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abe2d961-2a04-45ee-a9a4-cafe8c3d0aa1", + "id": "3bf0398c-d804-4734-9042-bdb7cfe4bd7a", "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": "86f8b36a-fbda-40cf-8d04-86818049e657", + "id": "e45ea545-e999-41b3-9df3-3325f1b77813", "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": "1e7f60d8-9b00-4fad-aabf-7de9448efed7", + "id": "891436a8-4c0a-4019-bdc8-be1ce65196f9", "name": "Too Many Requests - Returned in response to too many requests in 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": "089fb9ef-ad1b-4959-bd74-9b68731d6fb5", + "id": "ad6011e6-ecd0-4522-8a89-6fcdd8e624d3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5241,7 +5241,7 @@ } }, { - "id": "bff6f520-ab54-44ef-b7d8-fce2edd4c399", + "id": "1fd3de14-414c-4716-a61a-e3ed49f9b590", "name": "Approves an access request approval.", "request": { "name": "Approves an access request approval.", @@ -5296,7 +5296,7 @@ }, "response": [ { - "id": "3b963a06-1105-4e95-b3b7-1a1d3cadf56a", + "id": "4226ef22-4a96-4476-96e0-d4cba43f4d26", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -5354,7 +5354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0794c656-85ab-44f7-821a-eab65c51a505", + "id": "9f0c013a-be58-43c8-b30e-06b13ed39c20", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5412,7 +5412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52a824c4-e720-43be-aabc-e9354290370d", + "id": "66b81bae-eed0-4764-a96f-4b509910812b", "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": "a7b75695-98ac-41ec-b7ff-54d8ea9f3825", + "id": "802fb809-5a52-432e-ad7a-3e3bebd5c5e0", "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": "6bbd2298-7f6c-44e7-9bea-24f01d338291", + "id": "0745fa91-b33a-4f3e-b326-61641027599d", "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": "ac02c9d4-5a55-41ac-9450-f948a0f035ef", + "id": "2b8f6635-1240-40b7-b5ec-4c1537c12107", "name": "Too Many Requests - Returned in response to too many requests in 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": "4daa7443-fb0d-4499-89de-5edeef246a9a", + "id": "641b231c-0ac1-477b-9ba2-49aa62b4ea00", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5708,7 +5708,7 @@ } }, { - "id": "569a9dc4-4dc0-4ab2-ad3e-481f55641cca", + "id": "00f767bb-ba4a-479a-b95c-bf72e6d3a1e7", "name": "Rejects an access request approval.", "request": { "name": "Rejects an access request approval.", @@ -5763,7 +5763,7 @@ }, "response": [ { - "id": "d73ea9e3-d33b-4544-9320-e1208224b1ac", + "id": "c3d4c253-b8e0-4c98-942c-b54b2f876f6e", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -5821,7 +5821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7800dbf-e082-4a25-95ec-b7d32cc25a9c", + "id": "f515a6af-4b1c-45ae-9244-6529255a70ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5879,7 +5879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "724a83df-46f8-431e-9579-a3e5b7259a6c", + "id": "c27afb80-f894-4fba-923c-99390fc355a4", "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": "14c2be47-85cb-450b-b285-ab7d4452e9be", + "id": "c50aaac6-2be2-4eac-a4c0-d092a2cd12b8", "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": "9ba8e70c-ed18-41aa-881d-24079eebf3c3", + "id": "59a98d8d-73d3-42c4-ac8b-d1b25550d62d", "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": "be10a6ea-6492-432a-9aed-9aef8060a962", + "id": "217e3a54-f3ec-40c3-90a3-3d21bfefdfbc", "name": "Too Many Requests - Returned in response to too many requests in 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": "0e36c827-b846-4727-a74b-760321001f74", + "id": "2e8a5295-18a0-48b9-a8cd-52b3693e7db2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6175,7 +6175,7 @@ } }, { - "id": "20333366-5289-4dce-9790-6c0b802ed9e7", + "id": "21c29229-1f82-4463-9de8-f867ea22084a", "name": "Forwards an access request approval.", "request": { "name": "Forwards an access request approval.", @@ -6230,7 +6230,7 @@ }, "response": [ { - "id": "a29e305b-b2f1-4216-8be0-488cddde7630", + "id": "4b297dfb-ec72-4f68-9232-2285a527a870", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -6288,7 +6288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c3fe2f0-8a5d-4565-af2c-f2a45263b4f8", + "id": "3877dbde-236e-403d-8651-8964711e4d6d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -6346,7 +6346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "299c3794-0c66-4fa0-8015-79242a5f3d8a", + "id": "2fc25639-2511-4ae6-bac2-8af1fa9b7942", "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": "2264d888-4cfb-4a13-bd7f-748b1d994a58", + "id": "3e3f89e2-0a6e-4e52-87a1-767b12dc1dd4", "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": "8f05a3d3-8fb6-4e70-9676-2ec0c2b0a23f", + "id": "4b26a190-f74c-45da-b128-4b2e08807e10", "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": "86005c48-55ae-4dd7-978c-10029af6204e", + "id": "2315e646-3ca4-49f9-a501-78d1c4b155fb", "name": "Too Many Requests - Returned in response to too many requests in 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": "dd1a2ad0-3148-4c65-b1e3-75883a85722d", + "id": "7caf9c47-8c13-4894-ae98-b5ef3dbbb022", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6642,7 +6642,7 @@ } }, { - "id": "c8e012b5-8bae-4e02-8294-46412fd0974b", + "id": "4cb53358-91cb-40cf-8d29-b1b3224041c6", "name": "Get the number of access-requests-approvals", "request": { "name": "Get the number of access-requests-approvals", @@ -6691,7 +6691,7 @@ }, "response": [ { - "id": "59bd47f7-ef94-4379-8300-ed998ade53b3", + "id": "7516d36c-6f3f-47b7-bd2f-2fc195a594f5", "name": "Number of pending, approved, rejected access request approvals.", "originalRequest": { "url": { @@ -6754,7 +6754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e68e995-dbcd-4978-9c60-cbae9725fb8d", + "id": "cb9189b4-6fc8-4faa-8723-207717a3d642", "name": "Client Error - Returned if the query parameter is invalid.", "originalRequest": { "url": { @@ -6817,7 +6817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b9b87a0-8b56-46c7-b725-803dcf6d6379", + "id": "a912ce82-f295-4666-a5d3-c07149531802", "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": "b562b897-20a2-44a6-8d89-3d086976afbb", + "id": "f6decde8-a0d5-49a7-9e8f-d5fd3d190152", "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": "5a5edf8a-748a-4432-b457-88e764328949", + "id": "66d81988-3acc-4fa7-a582-cbb59cb8c8cb", "name": "Too Many Requests - Returned in response to too many requests in 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": "a4c922d7-5d13-42af-84ba-e8e6f16c8a53", + "id": "6e9ec38e-90b1-45ca-9345-b6cc964c0298", "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": "5f1f2b1a-be2e-4634-8f51-351e8b1941cf", + "id": "fbe3f158-2ae7-4d27-a539-802203b289df", "name": "Submit an Access Request", "request": { "name": "Submit an Access Request", @@ -7123,7 +7123,7 @@ }, "response": [ { - "id": "a7b8136f-4f88-44e3-92d5-1545cca1860e", + "id": "d818b017-6fb9-4140-8f95-3c2eb5fb73ec", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7179,7 +7179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "598f8ec9-a0af-4e1a-a578-271176f85ac1", + "id": "e9f080de-9fd4-4e59-94f3-e92fa4eb1a55", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7235,7 +7235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f94b22ef-2655-42ee-bc01-63161d8b8d80", + "id": "df6974d1-971d-4db0-94c6-71d24f460511", "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": "e97b1ba5-b916-4b19-9569-cbc23dcde0c7", + "id": "29210f16-360b-4555-b4ba-ddd62f2c9793", "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": "c6794313-018d-45a8-b385-e68c5d2bc5af", + "id": "01cb9cb5-0a51-4e45-bcb9-979de40518b2", "name": "Too Many Requests - Returned in response to too many requests in 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": "0cff8f40-a664-4e94-bb77-00a7211a0a48", + "id": "fe9f538e-2777-49ae-9f19-619e4dee05e7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7465,7 +7465,7 @@ } }, { - "id": "6441b900-36e6-4da7-a8e2-d6764a41aa87", + "id": "c383181e-72cf-4a0e-a640-fe4979afcfb6", "name": "Cancel Access Request", "request": { "name": "Cancel Access Request", @@ -7508,7 +7508,7 @@ }, "response": [ { - "id": "a6016b5b-bf5e-4530-a952-5162c2abcbde", + "id": "6da24156-9798-4cad-8dba-dcbad12017a0", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7565,7 +7565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59703122-0f9d-46c6-829e-9bbd6299c2e2", + "id": "c4e30eba-e79a-45c4-a518-ba8382afb167", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7622,7 +7622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2563b1c-cc40-4ccc-a5f4-68acc0c1490d", + "id": "491e5f6f-24bc-4788-8c1f-49367386d141", "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": "3e4fd03a-4eb2-49f7-aa3c-6f68795acd2e", + "id": "c24af76c-7873-4fca-a613-5fe474f74571", "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": "99357dff-3a8f-4426-bd75-85b299ba34d1", + "id": "5de2f820-a956-48b3-91e8-fb5da5b0aa76", "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": "5c6f339f-be45-4879-b48a-f05eb0a07cbb", + "id": "c5763308-d9fb-41f4-a16d-d792b7d6335f", "name": "Too Many Requests - Returned in response to too many requests in 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": "2c75d909-9001-461b-b0f6-680d83335b4a", + "id": "73103caf-fce6-4f6a-85fc-33ed9aa8c841", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7913,7 +7913,7 @@ } }, { - "id": "54f7909d-2fda-4bb9-8b2a-ca1364410a2f", + "id": "ebecc16e-a47b-419c-b408-eef18e651663", "name": "Get Access Request Configuration", "request": { "name": "Get Access Request Configuration", @@ -7942,7 +7942,7 @@ }, "response": [ { - "id": "9b11fbd0-aa13-4e23-936c-8145642aeedc", + "id": "65363c6a-2e4c-4839-8fe2-7a1fb6900f80", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -7985,7 +7985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e678ec5e-6de9-42ed-a0c0-5a63c48aff4d", + "id": "42911296-33eb-41b2-94dc-1aba71c83b17", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8028,7 +8028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45c09594-710c-4d29-822e-d37b5ad2fb08", + "id": "2a07809f-9896-41ae-b4c8-94aa75c1c43e", "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": "b57b8093-453d-4a69-8d3f-54f4059f983e", + "id": "4529a3c1-23ca-456f-8827-672983d32f02", "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": "20ce5fc4-7a5e-45e9-8862-562c687bdec9", + "id": "5fcdb2d4-8cf2-4ac6-bfd3-cb83911d2e38", "name": "Too Many Requests - Returned in response to too many requests in 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": "42189d7c-814e-40c7-a7b0-6c2c2182553e", + "id": "7c449a78-c427-4700-a46d-793d734129f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8206,7 +8206,7 @@ } }, { - "id": "231bdfca-abb2-464f-862e-2860a1ccf869", + "id": "dfa8c89c-8bee-48be-94c1-00e87541df48", "name": "Update Access Request Configuration", "request": { "name": "Update Access Request Configuration", @@ -8248,7 +8248,7 @@ }, "response": [ { - "id": "ae367aa9-9ab3-4647-957a-85651886b3b5", + "id": "5fb9086a-20fb-4b20-8952-455bc62de71c", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -8304,7 +8304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efd3189f-a3c1-4257-b961-65aefeb2c48c", + "id": "a1d29e4e-b579-48cf-b734-d0828ecc350a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8360,7 +8360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71f7abed-6ca8-42e4-9f95-a0adffff052f", + "id": "53f2fa31-47a7-4587-b206-d8777f4558bd", "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": "979069a8-16e9-4eff-b761-95798ab816a8", + "id": "2d8dd295-aa1f-43ba-88e6-45035e0dccb6", "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": "b5273b07-0010-4ae7-ad9f-26309831b036", + "id": "97a9dbbf-c65d-4294-aa75-a0ea8d8bd7c7", "name": "Too Many Requests - Returned in response to too many requests in 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": "a067a9c6-2274-4a69-8291-a1e5a96fb12f", + "id": "0903c5a4-6078-4e9c-84b5-085227d1aa22", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8590,7 +8590,7 @@ } }, { - "id": "974248f6-343d-463a-9610-77d8d675a170", + "id": "01db535c-32b0-4dae-ac13-f55f945b7b06", "name": "Access Request Status", "request": { "name": "Access Request Status", @@ -8701,7 +8701,7 @@ }, "response": [ { - "id": "793e6a9b-b743-4768-a923-47499c5fc902", + "id": "453d777b-de75-4e3e-8935-1aede2432dc2", "name": "List of requested item status.", "originalRequest": { "url": { @@ -8826,7 +8826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6622134e-04ef-4750-8a1b-578c2619fee7", + "id": "64854a92-a076-4415-aad5-96dfd5b56df6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8951,7 +8951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f449d97-8bbb-49db-b0b4-afbbb75ce4d0", + "id": "37a33a1c-4756-49d3-9e3a-df097cfa58ee", "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": "6bc828e9-35db-4fc4-a0ef-8a9c9b657eeb", + "id": "9fd942d8-7387-4b7b-bce4-e92441d2e67c", "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": "71ced035-f85b-4240-905b-32a3bd3e7158", + "id": "67527cd4-9a0e-4bea-ace2-d5b4f54eb3ce", "name": "Too Many Requests - Returned in response to too many requests in 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": "bff7fc86-4b24-4d67-897c-aee161873f8c", + "id": "6b527f82-4fa7-49cd-805f-08f9dc4935a0", "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": "1b6b8a09-9196-4477-a18b-06ae4c2f30a5", + "id": "c328d305-3aa8-4b94-8911-c3b8d7f00fe9", "name": "Returns account usage insights", "request": { "name": "Returns account usage insights", @@ -9542,7 +9542,7 @@ }, "response": [ { - "id": "188ba576-f661-4360-922d-cc46715ee7b3", + "id": "d7d6ce2f-6e94-4d06-a86c-6a5136963afa", "name": "Summary of account usage insights for past 12 months.", "originalRequest": { "url": { @@ -9624,7 +9624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df9a3f39-f1b1-4074-b897-3b25635454a5", + "id": "2d5f08e7-770c-4dc6-88ad-2c478fcda3d8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9706,7 +9706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71618579-cd52-4bbb-8330-27bd7bc1d2cc", + "id": "f0f1bca3-1b15-44fb-bb97-2c88bce9233a", "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": "e217a812-abb4-414a-8d6b-655024aa9efe", + "id": "fb8f22f0-58e5-4627-814d-b79b9bc1c6bb", "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": "79bc98b1-472d-4c1a-b011-4d06286ffacc", + "id": "ed3f2052-72e7-4f80-beef-720659e19017", "name": "Too Many Requests - Returned in response to too many requests in 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": "abc30046-1188-49fd-8fa5-aca5728c59f9", + "id": "c6bbe00a-fc72-45c6-9343-e3aeddb87c05", "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": "f0372b72-0e55-4789-8614-8e24619ce88e", + "id": "9fc32e3d-7cff-4a13-9938-9145302d8e18", "name": "Accounts List", "request": { "name": "Accounts List", @@ -10121,7 +10121,7 @@ }, "response": [ { - "id": "043718b2-ed21-4b5b-9afe-8097efaafd32", + "id": "523ef079-769c-40f4-8e06-33aa0a9e5f57", "name": "List of account objects", "originalRequest": { "url": { @@ -10210,7 +10210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0fd4e60-6a28-4618-8c30-86e66cf880a8", + "id": "8ba238b0-befc-4f2d-a6ad-a4e4769eb0f4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10299,7 +10299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcd22cd2-4b22-4440-9e83-865414694057", + "id": "f593429d-5032-46c6-979c-4ce605d32054", "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": "b268a3f9-fc6b-4296-a5c4-1fe51cfa37a4", + "id": "943948bc-458d-4262-ac5a-ff386e67a009", "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": "915b5ad2-ea08-498e-bf2d-4b8080dd5350", + "id": "60a75529-1a24-47b9-8b97-4dfed21d24ef", "name": "Too Many Requests - Returned in response to too many requests in 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": "075fa7e9-34ef-44da-b16b-e436e731dbff", + "id": "5a336b4c-a9a8-4edf-a99b-609715a1d00f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10661,7 +10661,7 @@ } }, { - "id": "f185fed7-8377-45f9-a91b-6bceef38e05c", + "id": "ae08d89b-246e-4195-8f6b-a860694eb06e", "name": "Create Account", "request": { "name": "Create Account", @@ -10703,7 +10703,7 @@ }, "response": [ { - "id": "2dcb0b9f-4e0c-4d2b-bc74-f621311a109d", + "id": "b9baab5f-7aac-4d06-8a70-fdb2a56d1f0f", "name": "Async task details", "originalRequest": { "url": { @@ -10759,7 +10759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bc8216c-984c-45b0-83d6-7346c58dba71", + "id": "9c3841db-1e34-4611-bcfc-2ef0d8a9d850", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10815,7 +10815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d1613ed-e738-4997-a200-5eed2c1e98d9", + "id": "a213d3e3-f480-441c-b85d-c85e7bf40160", "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": "413e65b3-82a1-4d34-9b09-acb23bfda0d1", + "id": "6f495e92-c6bd-4679-a4d4-c784d7323210", "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": "74476abb-f7bf-4c60-bb58-30badb001c36", + "id": "848fe2bd-0899-41ec-b280-c7e2cd869553", "name": "Too Many Requests - Returned in response to too many requests in 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": "245a63c0-4992-45f3-8724-841e46a2f517", + "id": "70d6669b-78c0-49dd-aeff-d08fe3d9f313", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11045,7 +11045,7 @@ } }, { - "id": "99bfefc7-09cb-4037-a4c8-cdb9bb66c748", + "id": "7b528feb-b06a-4f84-8614-ec28ae220842", "name": "Account Details", "request": { "name": "Account Details", @@ -11086,7 +11086,7 @@ }, "response": [ { - "id": "51cf82bb-8c2e-4bf2-b1d7-45602af164dd", + "id": "e4ab6923-dd9a-4977-b6b7-60d306ac6e9e", "name": "Account object.", "originalRequest": { "url": { @@ -11130,7 +11130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06d97367-eba4-4dcd-9f58-114a34781519", + "id": "aafacce6-7bbe-4866-8bdb-93102ee189f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11174,7 +11174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16d13131-4bc0-4c42-8cde-b827e486f11a", + "id": "9c2382f4-463b-4c2a-ae91-5e0112f4dbb4", "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": "b8cfce94-ab75-4b4c-b7d0-8ed130e3aa19", + "id": "25f6f841-5093-4a54-8f7e-511a845d7061", "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": "da8814ad-09f1-480c-84c1-cc9663f9c5f4", + "id": "1ef9a4f3-c7a9-4248-a730-2b8c539dd104", "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": "e40a8998-0db1-40dd-a60f-7d751906ea53", + "id": "84e07877-9fd5-4beb-852f-1155b4d7786d", "name": "Too Many Requests - Returned in response to too many requests in 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": "2223acf0-7b15-415a-a7f3-593dbf7389c2", + "id": "3143ee4f-5218-49d4-a50b-60036700f8e8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11400,7 +11400,7 @@ } }, { - "id": "12d72701-89ef-49ef-850b-de36b1866e94", + "id": "592e95b4-baed-44bf-a6f3-7a62b0b85f13", "name": "Update Account", "request": { "name": "Update Account", @@ -11454,7 +11454,7 @@ }, "response": [ { - "id": "ff95070f-a252-4cb4-a181-210dcbfd8667", + "id": "980bc00a-213d-4655-850b-e8519b3fcc9c", "name": "Accepted. Update request accepted and is in progress.", "originalRequest": { "url": { @@ -11511,7 +11511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbd3472d-0cc6-4a88-9e3f-f3368fd66ecb", + "id": "b40cc358-c307-418d-9c86-3a2f3aff5c56", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11568,7 +11568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e4de676-abe8-4eab-8293-9177ab39283e", + "id": "6fb9dbe5-a189-484d-8790-97aea1c1d8a1", "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": "b4048cdb-11c8-44ef-a68a-609edadfdfe8", + "id": "6fbc4a39-c512-4aad-80d6-1fe673f327cb", "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": "7f85277d-ec7b-42c3-998e-721d2ae65ea3", + "id": "9302d94d-da76-4bc0-ad14-62b1666c4906", "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": "2ec0c652-ae62-462f-a9d1-83a0b56a1946", + "id": "9f088d98-68e2-4981-9e1c-cb8483a110ac", "name": "Too Many Requests - Returned in response to too many requests in 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": "990ecafd-559c-49b2-aecc-afe0c8487972", + "id": "e0bdeb6d-957a-46cc-b44e-2acf2d4c51c2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11859,7 +11859,7 @@ } }, { - "id": "bf2e92b8-40de-44f4-be2a-c090ca963fe2", + "id": "d8b16656-e0f4-4346-8577-c5b6f770b535", "name": "Update Account", "request": { "name": "Update Account", @@ -11913,7 +11913,7 @@ }, "response": [ { - "id": "df1dbbbe-ca05-42b7-af2f-582f8d090061", + "id": "38a61be5-690d-45d7-8697-533540382229", "name": "Async task details.", "originalRequest": { "url": { @@ -11970,7 +11970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b27dd1ad-0ab9-4c3e-ac93-a3456b882e09", + "id": "b357c4c0-53f7-47a0-80f8-6f3d6622b067", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12027,7 +12027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61d9db53-6dc7-4103-8054-8d229ee21162", + "id": "2979ed74-e2d7-4bc7-81e3-18b1767e86a0", "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": "d0be5cfa-67b7-4711-8707-6a05bc09e3e3", + "id": "0bdddaa4-dcef-47db-b8bb-18faf99fdba2", "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": "2481c488-73e1-458b-b741-3b16201c474d", + "id": "43b7e606-fdf3-4348-a983-27af2b5ba010", "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": "d8d69a8e-cb3c-49dd-b904-71075c0c2791", + "id": "55311156-e595-4464-9f18-d59fd193c113", "name": "Too Many Requests - Returned in response to too many requests in 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": "740d3884-714b-44a6-9cdf-ab20aa01a869", + "id": "275ae595-96df-45c5-ae16-e0188ee71bb9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12318,7 +12318,7 @@ } }, { - "id": "b5579c61-3e1b-4a76-a65d-28bbe13a90a8", + "id": "eb4579aa-af80-4bb7-9903-cf232d2b9112", "name": "Delete Account", "request": { "name": "Delete Account", @@ -12359,7 +12359,7 @@ }, "response": [ { - "id": "3e21273b-36fe-44df-b81b-e787b83d5637", + "id": "7aa83382-0796-4c7e-84ae-f91566c30446", "name": "Async task details.", "originalRequest": { "url": { @@ -12403,7 +12403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3733129e-d88c-452d-9d4f-12cf29299fae", + "id": "9f813eca-eecf-461a-a565-f9d1ed517c40", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12447,7 +12447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfabbd94-1ef5-4380-9284-fe5e7ab0f494", + "id": "e44ebd0e-b57c-48cc-9a83-e58ccaa185a6", "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": "e0f04ec3-a06a-4d12-ac34-603e37df43ff", + "id": "8c49340b-1951-4df9-b9e7-ff0acc457170", "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": "4a1de225-5286-4a4c-9efa-5ef2d8dd6c37", + "id": "051657b3-043d-48ab-b25d-602e8ad8942f", "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": "aaac64b5-856f-4266-8ad9-98f252433268", + "id": "9a947937-c8d2-4e95-b857-5e374504a36c", "name": "Too Many Requests - Returned in response to too many requests in 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": "cc7c80b3-99b5-46cc-a17b-33e0681325b2", + "id": "2ef9398e-9a8f-4825-8bdb-3ee377e80b18", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12673,7 +12673,7 @@ } }, { - "id": "a1b9c383-903e-4ed3-bd36-733b3b2566d2", + "id": "876d9f58-f880-42e2-9292-c9d2f8345f19", "name": "Account Entitlements", "request": { "name": "Account Entitlements", @@ -12743,7 +12743,7 @@ }, "response": [ { - "id": "451085c6-34c0-4e43-aebc-4e1fed368aab", + "id": "7de64868-139e-4dff-bb93-b13192b6c36e", "name": "An array of account entitlements", "originalRequest": { "url": { @@ -12816,7 +12816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b874489-ce9c-4f70-916b-0698c4b9d1cd", + "id": "acf4cc1a-958c-448a-8a50-f9735bd63c0e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12889,7 +12889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ee472ba-98e7-4f1d-82a6-09e0008be84b", + "id": "145df5b4-6751-4bf7-b149-f328b4fcbc88", "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": "1326c5a1-659b-4ecd-905f-6c0f848ae1cb", + "id": "0a29288f-d16f-4628-8dee-5a7da644fd4a", "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": "272bd6b1-3b9d-4e8a-8b52-46610554643b", + "id": "eb49264b-afef-4bed-a825-4ac5f26665eb", "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": "b6114af1-4bf1-4c4d-bcce-ec48e258257f", + "id": "70c67020-4859-4245-8329-448636137300", "name": "Too Many Requests - Returned in response to too many requests in 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": "a2d4b395-2901-466a-8fb1-e4b62f16b1ce", + "id": "2da5fb71-3fac-4834-890b-aed9db3644f0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13260,7 +13260,7 @@ } }, { - "id": "43049ebe-65bd-42b3-acf8-e9805b3b8e98", + "id": "fa098c7c-2555-4818-ad76-21ab2719ad39", "name": "Reload Account", "request": { "name": "Reload Account", @@ -13302,7 +13302,7 @@ }, "response": [ { - "id": "f4edd099-7eff-403d-b68a-7cae0574e18b", + "id": "98519b3b-b250-4ee3-a918-cb32fe6173ea", "name": "Async task details", "originalRequest": { "url": { @@ -13347,7 +13347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eae78c85-0196-44a3-861b-ab8fbfe82d53", + "id": "f7a7aeb6-2df0-4dd0-b9ae-e0c79cf01527", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13392,7 +13392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89c897ab-3991-4694-a5d5-7c0a0e5d3e29", + "id": "6978f002-d301-4ec2-b2b2-36f28188e919", "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": "bad1ee41-6f01-4034-972c-78d898da5a90", + "id": "94c25998-4079-49e0-b742-048a91fd65b4", "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": "11c78122-6b04-4993-a7f0-b7c0253e3a9f", + "id": "eb24079e-f6ba-4968-ae15-b57893d2e834", "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": "f561ba4e-ea20-48ff-bce5-70cb0e3b6880", + "id": "6bd073eb-6bd0-46e0-bc83-fd3d0d112ecd", "name": "Too Many Requests - Returned in response to too many requests in 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": "c6088a75-e0e5-4a2f-9c92-b8abeb433b09", + "id": "e77895e3-9564-4f0a-a102-36acbea70ab4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13623,7 +13623,7 @@ } }, { - "id": "081868f8-6e23-4259-872a-9132e56924fd", + "id": "eb099f61-016e-4ad8-993d-0971a5f50a3e", "name": "Enable Account", "request": { "name": "Enable Account", @@ -13678,7 +13678,7 @@ }, "response": [ { - "id": "5a3254fd-6020-4b80-9c47-22c79e2d7db3", + "id": "1827b071-bf68-40e3-aef5-88611dd2b93a", "name": "Async task details", "originalRequest": { "url": { @@ -13736,7 +13736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb78ad64-4af3-4c67-8377-b2dc277cacbe", + "id": "11951548-5ac9-4683-b637-3a034ac3d7d0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13794,7 +13794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c28dc0a8-9dcd-4124-9e98-589986fa41a2", + "id": "5eb7cf63-d35e-42b7-a067-a483f329cbcf", "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": "2384c150-655e-4841-8ca6-ca0fa8470b91", + "id": "4d40c0c1-6137-4df5-816d-2d0e06ed0f1c", "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": "8a119022-e46a-46da-94b7-217637b8577f", + "id": "cf874c25-161e-4288-98d7-638cd147baf8", "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": "b471a7dc-f414-46d5-aea4-b1320ee94db6", + "id": "d6d976ad-bd65-46ce-bdc9-bd7c491a850a", "name": "Too Many Requests - Returned in response to too many requests in 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": "6bcd1558-56a9-4569-bc8b-1e5cdfad6d77", + "id": "6c8819b9-a682-46dc-97ac-fdd346e4bf78", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14090,7 +14090,7 @@ } }, { - "id": "43b7a8cf-63d5-446a-8c7a-a01875b7aa95", + "id": "1f911a74-487f-44e3-8867-a00306ea5f22", "name": "Disable Account", "request": { "name": "Disable Account", @@ -14145,7 +14145,7 @@ }, "response": [ { - "id": "2c3e2336-922f-497a-9501-ced3018ac3bd", + "id": "2efc6250-4307-4b98-98b6-1143e3ca4daa", "name": "Async task details", "originalRequest": { "url": { @@ -14203,7 +14203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a786eed-03c2-4382-ab82-3bcb843ae22d", + "id": "ed27ed8a-c8c2-4ded-aeca-b49f41769287", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14261,7 +14261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "463d9372-3734-4d9d-84d6-d512fb0ee519", + "id": "7f16842b-4822-42e1-b727-5c9566869b68", "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": "10193c9f-295a-451d-bfd5-e1983ceecd6a", + "id": "a174ba48-7255-41cd-97b3-211893ee77c6", "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": "c47cee67-a762-446f-b92a-09dc00418744", + "id": "0cd870be-f4a8-402a-8c74-7ad02e115b6f", "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": "20127e2f-671c-46c8-b8d1-9778e59ba54c", + "id": "226cf2ea-7f50-46d3-b225-89ea844fa03b", "name": "Too Many Requests - Returned in response to too many requests in 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": "bb8e7007-146d-4ace-96d5-1d21a5bd57bc", + "id": "d816af30-86df-4518-a706-516f249c284f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14557,7 +14557,7 @@ } }, { - "id": "8383f2aa-6e0b-4d1a-bcf1-be36da299623", + "id": "b975058a-c3b1-446c-8ab7-773df0d8684f", "name": "Unlock Account", "request": { "name": "Unlock Account", @@ -14612,7 +14612,7 @@ }, "response": [ { - "id": "7bf38d32-99fa-4c65-a683-d9397f39286c", + "id": "554b4649-8fc2-462a-9dc2-85e354147ac7", "name": "Async task details", "originalRequest": { "url": { @@ -14670,7 +14670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bf5e978-7d03-49f4-aed3-62144fa2aa89", + "id": "c2386c7c-0876-42d5-82ea-6b33d85143c2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14728,7 +14728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0df045d-630f-4dc2-832d-ccb5d329b18f", + "id": "2a4ec902-d3fe-4f7b-a0ca-336add0453db", "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": "1f78eb63-ba40-4db6-b343-bd556a8b95f1", + "id": "daf63c7e-32a1-4285-a4d8-fef03784d867", "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": "f76e2a8b-e944-41b0-a2b8-ffcaed759c5e", + "id": "743b584d-1e43-4371-9cf6-d21c19e3ebad", "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": "bfb64207-de7a-4488-a932-e5d2bff9c76f", + "id": "c5e65d45-bb91-47ae-a536-33d7c92dd5ea", "name": "Too Many Requests - Returned in response to too many requests in 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": "d77fbc52-633b-42ca-b75c-d33ee6ebbc74", + "id": "9f7bba37-2dd8-4604-a8b7-ca6a8ec5adc9", "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": "5d575a6c-d644-4741-ab14-bfeb37443805", + "id": "e8088274-01fe-4e87-84b2-fa06da3a03cd", "name": "List Account Activities", "request": { "name": "List Account Activities", @@ -15132,7 +15132,7 @@ }, "response": [ { - "id": "2131ccac-f941-425c-9414-f184f71361e5", + "id": "340ec56e-b50f-4f26-9840-c55ded7c2483", "name": "List of account activities", "originalRequest": { "url": { @@ -15248,7 +15248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddddc4ef-2ab6-41eb-bbdf-7be0e316cc55", + "id": "f3ce246d-8ac3-40b0-858e-e827c09f2876", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15364,7 +15364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d9e3e32-973f-4da9-b301-02f5038640bb", + "id": "9fb9ecc9-7424-4209-942e-849ec2bc9967", "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": "6e897665-b6e4-4459-8e65-7a35d3120f39", + "id": "d1c6fe90-7b92-41ec-b81a-351d9a963d01", "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": "0037e4fd-6a0c-478c-b8cb-4b8df48a7f85", + "id": "ccb000ea-0b29-473c-977b-d7c49fdefc6b", "name": "Too Many Requests - Returned in response to too many requests in 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": "792052de-2081-47ac-af2c-9d3ba366964b", + "id": "1d095ed3-5344-4330-890c-cb338fef868c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15834,7 +15834,7 @@ } }, { - "id": "ab203dff-1927-41b9-9276-e67210df4b1b", + "id": "97f9cc39-8640-4918-b36c-e424a56aef82", "name": "Get an Account Activity", "request": { "name": "Get an Account Activity", @@ -15875,7 +15875,7 @@ }, "response": [ { - "id": "623bdfd5-fe7d-4bdd-88a1-b4646d2c0f87", + "id": "2c036dca-bbc5-4d3a-af77-848313031bef", "name": "An account activity object", "originalRequest": { "url": { @@ -15919,7 +15919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb10613d-0873-4542-87ee-d90fe677b8f3", + "id": "0a4a2086-00dd-4ea0-b104-f045a414ca54", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15963,7 +15963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e452350-5218-4b47-bb4a-b393f4cdff59", + "id": "d308a045-0bd3-4068-91a4-e70bc5c9e5fd", "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": "2a4694dc-fdbc-458b-8c6c-79350e0681d5", + "id": "4953873d-b98a-405b-8d12-9eb54cb6586c", "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": "e5dc8161-a9f2-4b26-966b-5d380d54e016", + "id": "321f30f2-1b40-4036-ba51-b32e0d88ae48", "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": "a79462ad-e399-4b67-ba87-702bdab2d9ea", + "id": "5e80cc3f-6f1a-44b8-b727-e86b3342467e", "name": "Too Many Requests - Returned in response to too many requests in 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": "804dd46e-84f0-4882-8763-0cfe3947ca40", + "id": "b624337a-af48-4868-9b91-40356b1107b5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16195,7 +16195,7 @@ "description": "Use this API to implement user authentication system functionality. \nWith this functionality in place, users can get a user's authentication system details, including their capabilities, and modify those capabilities. \nThe user's capabilities refer to their access to different systems, or authorization, within the tenant, like access to certifications (CERT_ADMIN) or reports (REPORT_ADMIN). \nThese capabilities also determine a user's access to the different APIs. \nThis API provides users with a way to determine a user's access and make quick and easy changes to that access. \n", "item": [ { - "id": "c0d51b5d-4bd9-4042-95e5-a4aaea64c921", + "id": "e671e741-5af4-4678-b3a3-7e131cb714bc", "name": "Auth User Details", "request": { "name": "Auth User Details", @@ -16236,7 +16236,7 @@ }, "response": [ { - "id": "fbe7051c-97bc-4297-8d9f-2cb022e5ac15", + "id": "af14828d-9ce6-4555-aee9-57b1fc086cd3", "name": "The specified user's authentication system details.", "originalRequest": { "url": { @@ -16280,7 +16280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ac9f178-0ced-4855-94e6-fcf871dc6a51", + "id": "60156ae0-6c63-425f-acc3-74abf62abecc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16324,7 +16324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce0b7667-9f06-4d64-86af-4ef9364bdfbb", + "id": "4faa0d24-ac32-43d7-b6b1-883ddfb34965", "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": "1f32e382-e7eb-436c-9213-411b4d4858a7", + "id": "1d5a7b68-ed29-4214-9e5b-0dd912ae008c", "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": "76d4b225-966b-4b48-bad6-2a0a469c7a76", + "id": "53d847b9-4d81-4836-9553-e4b75f18bf6f", "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": "0a1d80ea-8d7d-43fd-b530-2dab3c88d3a5", + "id": "f6bcc08e-9cbb-499d-bf14-9b21d6d1b984", "name": "Too Many Requests - Returned in response to too many requests in 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": "fb862de4-1ef7-47ea-8158-abb28b0458e6", + "id": "c5f0355f-9983-4ad9-9ae1-b580dd5f98ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16550,7 +16550,7 @@ } }, { - "id": "ba2cb198-d538-493e-96f6-7953b90713c5", + "id": "4713e9d6-84a5-45fc-975a-ed7a09c68257", "name": "Auth User Update", "request": { "name": "Auth User Update", @@ -16604,7 +16604,7 @@ }, "response": [ { - "id": "3949003f-4dc9-4ee0-a350-209d93d500d6", + "id": "d6be52fd-9d53-4c65-a5d1-c7c1bbc4ddc7", "name": "Auth user updated.", "originalRequest": { "url": { @@ -16661,7 +16661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bbdec6c-61b9-498a-89fc-8289e5eeb3ce", + "id": "8b399fbc-ad45-4616-892d-2f28f40a1cfd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16718,7 +16718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fedd7f0-4991-4d9a-b25e-83b604f61e33", + "id": "3ae3fd5d-ee93-4c40-b506-5a66b9915746", "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": "8075833e-33c3-4077-9e68-d56c630aa0cd", + "id": "be296642-c22e-4a3e-bc95-a766d28a5f77", "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": "0f2f6f32-9da8-4805-abe6-494dd41ba173", + "id": "1b987538-e554-4e8a-aa17-cfe79b6b2b7f", "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": "c9285bab-43b2-44a8-9353-e1762a9b4077", + "id": "bb80d6d4-da3d-4f18-ae62-0eca35dac42d", "name": "Too Many Requests - Returned in response to too many requests in 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": "739a36ae-086a-490c-83f3-dc2a228acb34", + "id": "833f59bb-a666-41c5-9f3e-ca47255aaec6", "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 and manage existing branding items, and they can also create new branding items and configure them for use throughout Identity Security Cloud. \nThe Branding APIs provide administrators with a way to customize branding items. \nThis customization includes details like their colors, logos, and other information. \n", "item": [ { - "id": "f1bc5c50-8542-48fc-ab6b-f4398f6f2684", + "id": "30d2a841-a32a-4c9b-8d63-f92efcf5974b", "name": "List of branding items", "request": { "name": "List of branding items", @@ -17044,7 +17044,7 @@ }, "response": [ { - "id": "fdee0a04-3432-452e-b4b4-8b3c2c1ffd5a", + "id": "98e96ff9-87e6-443e-949c-70b7c3dd92e1", "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\": \"Excepteur\",\n \"navigationColor\": \"consequat eu ad officia D\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n },\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"minim consectetur enim\",\n \"navigationColor\": \"velit ullamco cillum\",\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\": \"eu non ut do dolor\",\n \"navigationColor\": \"amet\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n },\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"sed ad Ut velit\",\n \"navigationColor\": \"enim\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cc5d197f-9293-4327-8893-90f15bbcfa6a", + "id": "64f1e1b3-ffea-4631-8100-8f5c6caae29a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17130,7 +17130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91801674-43a7-44e5-a3e3-93daa648c79b", + "id": "678b4824-c4d0-411a-b3a0-75cc10ded75d", "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": "ca7eb327-6f3f-49c1-8fdd-b646226ec439", + "id": "4a6b755c-5e88-4691-ba05-9c34622527ac", "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": "79ef6e01-2ede-4452-a9a2-ebacdefa1901", + "id": "ee00f3dd-506b-4766-bf0c-eef73305e64d", "name": "Too Many Requests - Returned in response to too many requests in 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": "8957d470-0bea-4801-95aa-2832af86b174", + "id": "141b197e-6c5b-48cf-8d42-1f7f2de2d70c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17308,7 +17308,7 @@ } }, { - "id": "47837f0f-2e56-4ad7-8049-e5dbbfa839f8", + "id": "2612680a-86dc-445c-b06b-191335935a99", "name": "Create a branding item", "request": { "name": "Create a branding item", @@ -17373,7 +17373,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "dolore enim ipsum", + "value": "ex dolore consectetur", "type": "text" }, { @@ -17382,7 +17382,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "Excepteur aliqua ex cillum", + "value": "commodo mollit consequat", "type": "text" }, { @@ -17417,7 +17417,7 @@ }, "response": [ { - "id": "2b0e716a-9444-4b01-9166-d5226173fbb2", + "id": "278ffbbb-f100-4001-9033-c2b8a20ac945", "name": "Branding item created", "originalRequest": { "url": { @@ -17485,7 +17485,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "dolore enim ipsum", + "value": "ex dolore consectetur", "type": "text" }, { @@ -17494,7 +17494,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "Excepteur aliqua ex cillum", + "value": "commodo mollit consequat", "type": "text" }, { @@ -17535,12 +17535,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"co\",\n \"navigationColor\": \"dolor ad Duis\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", + "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"nulla nostrud dolor\",\n \"navigationColor\": \"est eiusmod\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "da497f10-5933-4b54-9118-2546cbef84d5", + "id": "69d472ea-c8f4-4e0f-ab24-0272a08ff7e5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17608,7 +17608,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "dolore enim ipsum", + "value": "ex dolore consectetur", "type": "text" }, { @@ -17617,7 +17617,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "Excepteur aliqua ex cillum", + "value": "commodo mollit consequat", "type": "text" }, { @@ -17663,7 +17663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cc0d8c3-6aef-41df-9786-c3d785b99b98", + "id": "ac673aae-64a6-43a2-83ca-e597a9dcf9d4", "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": "dolore enim ipsum", + "value": "ex dolore consectetur", "type": "text" }, { @@ -17740,7 +17740,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "Excepteur aliqua ex cillum", + "value": "commodo mollit consequat", "type": "text" }, { @@ -17786,7 +17786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "122348d4-0cc5-49d9-a06f-59490f6be622", + "id": "9477b350-7b3a-442b-9cdd-5644ce2a888b", "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": "dolore enim ipsum", + "value": "ex dolore consectetur", "type": "text" }, { @@ -17863,7 +17863,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "Excepteur aliqua ex cillum", + "value": "commodo mollit consequat", "type": "text" }, { @@ -17909,7 +17909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "052c3b8e-5aae-4ded-bc9c-86bc86817540", + "id": "c08869fb-8c71-48c9-aa76-cfdca20a0ffc", "name": "Too Many Requests - Returned in response to too many requests in 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": "dolore enim ipsum", + "value": "ex dolore consectetur", "type": "text" }, { @@ -17986,7 +17986,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "Excepteur aliqua ex cillum", + "value": "commodo mollit consequat", "type": "text" }, { @@ -18032,7 +18032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b093550-7cd6-41e8-a018-af84a874f1e6", + "id": "d18f8ce0-97ae-45ef-a6c4-5725e18efecf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18100,7 +18100,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "dolore enim ipsum", + "value": "ex dolore consectetur", "type": "text" }, { @@ -18109,7 +18109,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "Excepteur aliqua ex cillum", + "value": "commodo mollit consequat", "type": "text" }, { @@ -18161,7 +18161,7 @@ } }, { - "id": "1cc73c0f-e531-41cb-8db5-cab791cfee41", + "id": "055e4645-aef6-419f-aa3e-5ad121e4faf0", "name": "Get a branding item", "request": { "name": "Get a branding item", @@ -18202,7 +18202,7 @@ }, "response": [ { - "id": "c0d8f025-b0b6-45e3-a11d-a1060473b3da", + "id": "c9a3b0ed-9be0-406d-bbd4-9b115215189e", "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\": \"co\",\n \"navigationColor\": \"dolor ad Duis\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", + "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"nulla nostrud dolor\",\n \"navigationColor\": \"est eiusmod\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "59bfa74f-2dfd-4f18-aa9d-ae4640c167ef", + "id": "9bf3e7d4-f0b1-4b5a-90e4-086bc44c722e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18290,7 +18290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a986093-8a13-451c-ba1b-c85180a9d5cd", + "id": "5a18696c-975f-4e0a-9c98-fe4045ad27d8", "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": "7c4d46f3-6d7b-4a6e-b7e5-46332d8570ea", + "id": "9ea471f4-7762-412f-97e6-6f022b0fee64", "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": "0c5f5b2e-d6eb-44b7-ab57-b9b6a7625e1b", + "id": "54be7144-1eb0-4b12-8568-bfe0bbeade52", "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": "17f6a34b-f46d-4f9a-80ac-0cd3fa36978b", + "id": "efe69196-de79-4c79-af77-bf74335d9bbe", "name": "Too Many Requests - Returned in response to too many requests in 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": "0b15b728-2417-4c7e-b4e4-498927b726df", + "id": "1c5abec9-dd77-415b-bb33-1d69b7db0271", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18516,7 +18516,7 @@ } }, { - "id": "804f0bff-8e57-4b24-a311-ed31ceae4246", + "id": "dfc2096a-6457-4374-a886-e4de0955c017", "name": "Update a branding item", "request": { "name": "Update a branding item", @@ -18593,7 +18593,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "dolore enim ipsum", + "value": "ex dolore consectetur", "type": "text" }, { @@ -18602,7 +18602,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "Excepteur aliqua ex cillum", + "value": "commodo mollit consequat", "type": "text" }, { @@ -18637,7 +18637,7 @@ }, "response": [ { - "id": "1d1d7e9c-04ff-4e91-92db-690d9013f046", + "id": "9ff8be5b-6530-4dcc-aec4-d3dd2318d049", "name": "Branding item updated", "originalRequest": { "url": { @@ -18706,7 +18706,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "dolore enim ipsum", + "value": "ex dolore consectetur", "type": "text" }, { @@ -18715,7 +18715,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "Excepteur aliqua ex cillum", + "value": "commodo mollit consequat", "type": "text" }, { @@ -18756,12 +18756,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"co\",\n \"navigationColor\": \"dolor ad Duis\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", + "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"nulla nostrud dolor\",\n \"navigationColor\": \"est eiusmod\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d7ceb0c3-1a01-4c99-848d-35f112c837e8", + "id": "e65be6e3-dc07-469a-b920-9dd52eb96c18", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18830,7 +18830,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "dolore enim ipsum", + "value": "ex dolore consectetur", "type": "text" }, { @@ -18839,7 +18839,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "Excepteur aliqua ex cillum", + "value": "commodo mollit consequat", "type": "text" }, { @@ -18885,7 +18885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68316fab-4691-49ba-a634-261624fc91ee", + "id": "9b8fd80b-dc0a-4b69-b580-ec49162fed80", "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": "dolore enim ipsum", + "value": "ex dolore consectetur", "type": "text" }, { @@ -18963,7 +18963,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "Excepteur aliqua ex cillum", + "value": "commodo mollit consequat", "type": "text" }, { @@ -19009,7 +19009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e0e87a6-764a-4448-9fe9-888a8e8b6d73", + "id": "fad42c47-81eb-481f-b19d-46790ead3f6a", "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": "dolore enim ipsum", + "value": "ex dolore consectetur", "type": "text" }, { @@ -19087,7 +19087,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "Excepteur aliqua ex cillum", + "value": "commodo mollit consequat", "type": "text" }, { @@ -19133,7 +19133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02df5d0d-7f34-45f0-a568-18b27170831d", + "id": "3106c8b7-7201-4a93-b715-2053102e7572", "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": "dolore enim ipsum", + "value": "ex dolore consectetur", "type": "text" }, { @@ -19211,7 +19211,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "Excepteur aliqua ex cillum", + "value": "commodo mollit consequat", "type": "text" }, { @@ -19257,7 +19257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c8cdbce-233b-4f55-ba54-4d6a6ead2b32", + "id": "9b7f38c4-7e96-4ac1-af34-1fe3f1a5b3a7", "name": "Too Many Requests - Returned in response to too many requests in 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": "dolore enim ipsum", + "value": "ex dolore consectetur", "type": "text" }, { @@ -19335,7 +19335,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "Excepteur aliqua ex cillum", + "value": "commodo mollit consequat", "type": "text" }, { @@ -19381,7 +19381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b540d81-5fc8-44e4-a270-331d2b85826e", + "id": "02862435-1eca-4e59-a370-d2e16cb03d22", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19450,7 +19450,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "dolore enim ipsum", + "value": "ex dolore consectetur", "type": "text" }, { @@ -19459,7 +19459,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "Excepteur aliqua ex cillum", + "value": "commodo mollit consequat", "type": "text" }, { @@ -19511,7 +19511,7 @@ } }, { - "id": "a7c598e7-ed28-4bff-93e4-a3e5e569cb76", + "id": "285cf888-50cc-4394-8266-3a32df128593", "name": "Delete a branding item", "request": { "name": "Delete a branding item", @@ -19552,7 +19552,7 @@ }, "response": [ { - "id": "3cf523b4-c1fe-4c4e-9da1-c1081d4e18df", + "id": "87066bbb-8974-4281-be87-4705fef046bb", "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": "45bf8d9f-a258-411c-a03d-d69871d12970", + "id": "90b942b2-c284-4203-9ec2-db98c5b3849d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19630,7 +19630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1590e4ae-76cd-4d6b-99f2-a1392ac5184f", + "id": "ee97d5cf-2b6b-4dbb-b28f-a5df85f42548", "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": "06622ba0-24d7-4983-8dbf-7853c44672bc", + "id": "e6d05892-8de9-426a-83c8-82b939530ecc", "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": "14fb9115-b2db-4f2c-a043-6f5bb3218bc0", + "id": "df2b13b9-a875-4c34-9195-45d32e1bf670", "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": "4484ad95-d4e6-49b1-9f00-6eebdca57704", + "id": "3bcb3d63-72a4-4699-883d-9f5a0ee6f9d1", "name": "Too Many Requests - Returned in response to too many requests in 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": "b31b228c-2caf-4367-9509-bd258fb72322", + "id": "93426878-acfe-4b06-8f80-be5b1efb7db7", "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": "e5dda4b2-6fea-4596-89d5-83438e1b140e", + "id": "f3517547-7745-4da5-8268-ff242990c674", "name": "List Campaigns", "request": { "name": "List Campaigns", @@ -19946,7 +19946,7 @@ }, "response": [ { - "id": "d51ac185-d8c9-456d-a89a-91afc0649f61", + "id": "f8877365-d1ff-4a3b-b6de-ecd2ffe60333", "name": "Slim Campaign", "originalRequest": { "url": { @@ -20044,7 +20044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ec83915-7aa6-442c-b0b0-42c65f58bd96", + "id": "2012ce8e-6675-425b-85dd-4ba8dc280fbd", "name": "Full Campaign", "originalRequest": { "url": { @@ -20142,7 +20142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34e721e6-e9c6-4c15-8877-abd7b838ed76", + "id": "354b1888-a72e-4c2e-8acd-4a78631748a9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20240,7 +20240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "633e62da-c8eb-43a5-86bc-b7c9e878c9bb", + "id": "521b5020-81dd-4ca9-8864-4c53aefa63af", "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": "1a81ffc1-b4f6-4ffa-a1d1-67d44e98b358", + "id": "ccc5cdf1-7ec0-46a7-9fd4-ef310981c09a", "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": "e551b059-b0e3-4534-801f-4e44a22230df", + "id": "f6cb2906-6b51-40dd-85fc-0a4aed42eff3", "name": "Too Many Requests - Returned in response to too many requests in 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": "f4c16bd8-4dd1-4a88-a799-1aae60b1a0cd", + "id": "ccc0d3a1-4e2d-451a-87bf-2c62bc621212", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20638,7 +20638,7 @@ } }, { - "id": "2527f7c2-b88d-4de8-8936-4f30cb23bb2c", + "id": "692cea8e-fa3e-4aca-8f04-7c3918a1dbc6", "name": "Create a campaign", "request": { "name": "Create a campaign", @@ -20680,7 +20680,7 @@ }, "response": [ { - "id": "c1d0a82b-75fc-4c0e-b26b-20fc3a66c128", + "id": "9c6d04fc-3d19-44dd-acfb-4b8ca23d0f8f", "name": "Manager", "originalRequest": { "url": { @@ -20736,7 +20736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff579f74-be23-4154-873d-26ed918daf88", + "id": "cf142052-2a4e-4bc9-9d1c-b5b7bc3a2d7f", "name": "Search", "originalRequest": { "url": { @@ -20792,7 +20792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb1ebcdb-1de6-4f2f-89a5-f30ee3119837", + "id": "62d4a9b4-757e-4775-ab9c-fb0529ed2c16", "name": "Source Owner", "originalRequest": { "url": { @@ -20848,7 +20848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f35e23e1-d0c5-437c-b3cf-b3c7f85b8c8c", + "id": "dcca5109-6530-4c75-a189-f03f0fe9f2f0", "name": "Role Composition", "originalRequest": { "url": { @@ -20904,7 +20904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "164a3dad-ae0b-4c5c-b746-c7c0e5a1d472", + "id": "cd99ceac-f48d-4ef6-825a-882de77c9fab", "name": "Manager", "originalRequest": { "url": { @@ -20960,7 +20960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04fffbf2-039b-4130-a7cf-b411aecae59b", + "id": "413a4ebf-c26e-457f-bb0f-4e2e855eb680", "name": "Manager", "originalRequest": { "url": { @@ -21016,7 +21016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b836fcd2-1a5d-46b2-a4c2-63415bc5528f", + "id": "d79b384a-352c-4291-8c0a-dcb535a89b08", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -21072,7 +21072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f672412-779a-426e-a57c-4ee28990fe3d", + "id": "ec0dbc8c-332b-48dd-b4cb-50fb9cb65a5a", "name": "Manager", "originalRequest": { "url": { @@ -21128,7 +21128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e3bfb1d-816d-4356-8eb6-1d970e4beaa5", + "id": "bcb5117c-56fa-41c1-b0e8-dd508733db74", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -21190,7 +21190,7 @@ } }, { - "id": "a9bd14da-e199-424b-81ae-24c1a4801184", + "id": "7b846ed3-8894-45fd-8571-864059fc4610", "name": "Get a campaign", "request": { "name": "Get a campaign", @@ -21231,7 +21231,7 @@ }, "response": [ { - "id": "153171af-a96a-443a-9cda-ff3c7d7619ca", + "id": "a0f9d922-47c3-45f5-804c-06334fdc8a56", "name": "Manager", "originalRequest": { "url": { @@ -21275,7 +21275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6982fdd0-ea98-41c1-a2a6-1e9da6f8ebfe", + "id": "df7c04ef-b2ff-4dd2-ad54-4985db59babf", "name": "Search", "originalRequest": { "url": { @@ -21319,7 +21319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af7b2b7a-7a6d-4206-b836-ec434fbbddfc", + "id": "a6d01854-7a5e-4654-befb-f556a0cbd238", "name": "Source Owner", "originalRequest": { "url": { @@ -21363,7 +21363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f24fc205-03ea-4e7e-b61f-90e936adbf0a", + "id": "8e72a946-3a95-4cc8-b001-63a312c97cf4", "name": "RoleComposition", "originalRequest": { "url": { @@ -21407,7 +21407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6329d4a0-33bc-4f9a-be44-a3d6880a54be", + "id": "505d0395-ba98-4f32-b727-1548a56f5138", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21451,7 +21451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "008d76ad-0800-469b-98c5-c126824060a3", + "id": "f205c01c-fe73-459c-ba00-45db2985459d", "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": "440d3702-24e0-4f81-a6ef-3068e28872ef", + "id": "5813fd43-1a07-456a-ac8a-62b358c7185b", "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": "a59cf7e4-9e7e-458e-bd71-1b9aeeb28031", + "id": "a9ecaaac-0cf2-4da9-8eba-3cc1ca8c2caa", "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": "37bd7a52-31c4-4c93-9697-acc8d66cf7fc", + "id": "7fd109a8-daf4-472f-a011-8e0e90ebb261", "name": "Too Many Requests - Returned in response to too many requests in 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": "7ace1e02-d76e-454f-ba8d-ff599306d676", + "id": "dfb84dd2-f8fb-4cff-8b70-56a4234e999d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21677,7 +21677,7 @@ } }, { - "id": "a80ca9d5-8649-45c8-b73e-4ca68f0c7a42", + "id": "47325e30-c132-4351-abd0-543cd41f10fb", "name": "Update a Campaign", "request": { "name": "Update a Campaign", @@ -21731,7 +21731,7 @@ }, "response": [ { - "id": "e27fc13a-5f70-4991-9057-daf0294b7c7c", + "id": "880199a7-7d35-4782-a369-6fa25a6cad0a", "name": "Manager", "originalRequest": { "url": { @@ -21788,7 +21788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78a1cf8c-717b-4ff0-ae6b-397f48d22812", + "id": "c0fe097a-5e99-465c-b16e-fa39b4ce6256", "name": "Search", "originalRequest": { "url": { @@ -21845,7 +21845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fe280ca-c472-4af0-9f98-2cd50e5c5280", + "id": "03e45ffd-bde5-4022-ba25-f53b0b1cdcc9", "name": "Source Owner", "originalRequest": { "url": { @@ -21902,7 +21902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8f941b7-1df3-4497-8d39-ce9c1b4e34bc", + "id": "3a97c76c-c146-4fca-88a4-d518d6dada74", "name": "RoleComposition", "originalRequest": { "url": { @@ -21959,7 +21959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26f303ac-7f9a-4234-bb4c-33892db2cf74", + "id": "f9314c52-0dbb-42eb-8819-f487a07d18f5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22016,7 +22016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "117fca9b-b852-4d74-9357-325028edf700", + "id": "117edf98-f18d-469a-921f-26b2d3ed8a9b", "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": "121d87fc-8a1e-429d-b71c-cce29474c493", + "id": "f1f7862c-5626-4459-84be-dbc8add0cfca", "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": "6881e59f-aeef-46b0-bb7f-a5143fc80b7f", + "id": "d875c0ae-853c-4274-a6b6-359af149a6a4", "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": "83f2be44-2500-4096-9faf-f870e0d48c48", + "id": "57a054f1-5e09-4aaf-9a26-3c3170ac4a91", "name": "Too Many Requests - Returned in response to too many requests in 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": "31f4bb7d-b482-4875-905b-61cc876857ad", + "id": "be7eb70a-451b-490b-9d06-02ce46ff48f6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22307,7 +22307,7 @@ } }, { - "id": "1c00e318-4664-476c-b2bb-1b42467d8c0f", + "id": "dce8424d-6906-4d49-aa25-eb22ce7314a1", "name": "Reassign Certifications", "request": { "name": "Reassign Certifications", @@ -22362,7 +22362,7 @@ }, "response": [ { - "id": "57b420eb-9223-4e47-83d1-370de0fc1cb3", + "id": "104f7588-00c6-48f4-ab8b-f4ba708d22fa", "name": "The reassign task that has been submitted.", "originalRequest": { "url": { @@ -22420,7 +22420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49b53461-3196-4307-bcc7-ebefed4fdb62", + "id": "a2b09995-a001-474d-b993-18159bf9904e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22478,7 +22478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b9c53fa-a0ee-40a9-92a4-f961736b565a", + "id": "c0fe5225-30a3-46c2-a44c-ce8c0f0fb759", "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": "eb9ca083-ea36-48ba-bd97-a4ba35979798", + "id": "f7cb52bd-a75b-4603-8a3c-34c5b64b4f63", "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": "aa27046f-5343-4344-8368-58ae0aba7746", + "id": "a2e1cff8-eaff-44bf-b40f-c24514b98474", "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": "2a5e1424-23ec-40e8-a92d-cc98e6e4e502", + "id": "0dd6bf0c-d611-4164-8eea-34bf59c36d9a", "name": "Too Many Requests - Returned in response to too many requests in 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": "ddb3da9e-c188-40ba-9d2c-4d1867820e6d", + "id": "1a89ca56-c83e-4a86-b599-494ffdfcc2e3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22774,7 +22774,7 @@ } }, { - "id": "8fccac73-aee8-4241-965b-11f2ca10d82b", + "id": "ebdce5f7-aece-4c87-bd46-370b080eb7cc", "name": "Activate a Campaign", "request": { "name": "Activate a Campaign", @@ -22829,7 +22829,7 @@ }, "response": [ { - "id": "2750e769-5074-4eab-8808-3b06c0171bc6", + "id": "2066b7ca-4217-46f7-a2f1-c0c101b492b6", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -22887,7 +22887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0848781-85e4-41a8-b128-c7645d2f3089", + "id": "0fb1194a-a287-4db5-bf48-34c87d459918", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22945,7 +22945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc335c26-a485-4129-8c60-49d6da248c75", + "id": "afdb5591-5552-41be-a402-05479eb62605", "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": "ffdd014b-9c9a-4eed-8efb-805c0f1d923c", + "id": "030ff456-05fc-4a3a-8acc-6fa991ce260d", "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": "663ad783-2250-4d72-884a-9dadad00f06b", + "id": "0a70a1cb-f974-4ddd-997f-0635f53a9443", "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": "6c4ca03c-8f53-49ee-b64a-cea15cef49d1", + "id": "14a203b8-8ea9-48fb-854f-b2b4e1f305b4", "name": "Too Many Requests - Returned in response to too many requests in 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": "5b968ec2-62be-4014-b962-9eddb22a98dd", + "id": "8169cea8-8923-44f3-8c1e-20f996c66720", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23241,7 +23241,7 @@ } }, { - "id": "10a5d55d-96a6-4458-a4ba-8976254a94ea", + "id": "d0c03a6b-f854-4f58-9978-5be079e97f1c", "name": "Complete a Campaign", "request": { "name": "Complete a Campaign", @@ -23296,7 +23296,7 @@ }, "response": [ { - "id": "60774b56-f483-4cf3-a826-e042b634dfae", + "id": "b34e3847-dbb1-414d-bf0a-6ef105fdee42", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -23354,7 +23354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cd98723-5ade-447d-b4a0-70f260d9b1ab", + "id": "144a231e-f43f-42b3-b8a2-06c593b38ed9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23412,7 +23412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e33fee43-8984-40c3-981a-c7f92d13f232", + "id": "24ed2ed7-7d31-4733-8757-da4f97439055", "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": "db860556-a220-49ef-bdd9-a827fd0680c4", + "id": "3a438ceb-3e82-4553-9c63-7669de9d00ce", "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": "ca23ac2f-6094-455a-a9e3-9dd29a012f04", + "id": "4b72370d-6a0b-483e-a97f-855c7f1decf7", "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": "40401900-0e84-4c51-8bdf-58ab4f425b0b", + "id": "47719c51-b95c-412f-9cd9-97ec159c5035", "name": "Too Many Requests - Returned in response to too many requests in 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": "707171ac-9625-4af1-ac32-dbf0c59ffdd0", + "id": "37da4401-d3e9-4553-b0b3-2d56e242cd36", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23708,7 +23708,7 @@ } }, { - "id": "d5df23be-ab7a-426a-adaf-f4ecdebb54c7", + "id": "9a1a89c9-f646-4481-aa1a-beb141edc2ec", "name": "Deletes Campaigns", "request": { "name": "Deletes Campaigns", @@ -23751,7 +23751,7 @@ }, "response": [ { - "id": "41ac7cc3-8304-4814-add2-ec4ab5f27be9", + "id": "45e502fa-dd4e-40b0-8c69-89ac3f93eb3a", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -23808,7 +23808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eba26055-3081-4537-91f6-bf585865eaf4", + "id": "932f776d-8bdf-4e11-a2ce-606d16c9afb3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23865,7 +23865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf1c89cc-dfdc-469e-9eb6-154e9d7af5cb", + "id": "4cc9edf6-41ed-4ccb-9428-4003bac98436", "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": "449d2bca-6a52-418f-8afb-89e9a04770ee", + "id": "96c44c47-09d4-499b-9332-fa66779d8c13", "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": "906bb3f7-9f98-4228-ba38-81d6cdf4cf3a", + "id": "63126699-d82b-452f-8e07-452ec3b7cfe0", "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": "9291297a-b883-4e0a-908f-0a118860c651", + "id": "c2323697-e937-4074-823b-01417e9a37f9", "name": "Too Many Requests - Returned in response to too many requests in 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": "b9bc5ea0-22c1-4799-b05a-ea6449bca85f", + "id": "f8cb3622-3003-487b-8a4c-8860a51cd627", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24156,7 +24156,7 @@ } }, { - "id": "30253d60-adb1-4e6c-b5be-cec90cf1625c", + "id": "4f41ea04-168b-47d3-b687-63ca5e6d1f1f", "name": "Run Campaign Remediation Scan", "request": { "name": "Run Campaign Remediation Scan", @@ -24198,7 +24198,7 @@ }, "response": [ { - "id": "32bd71f7-c32e-4b0f-ac51-c4394c44effd", + "id": "f480d369-8314-4322-8cb2-89c7f874ab9e", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -24243,7 +24243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac67e8db-ae86-4316-90b9-a97982258e89", + "id": "f7430fdd-0ed1-4dd6-9c4b-397fd0ba0188", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24288,7 +24288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93bc5455-31a3-4000-84d6-a2099b28facd", + "id": "52669bbf-5833-45b8-bbf8-84049babbdc9", "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": "3dfbc8c6-7e40-460f-aa4a-19506019a4e2", + "id": "4a41c06d-2548-4d2d-b40c-a055d7ad79c3", "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": "a0c77ce5-d136-4152-8c9b-1549b5826808", + "id": "56852a99-3271-4fd0-9972-4fff4fe497c6", "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": "ac8591ea-8436-4ec4-bf27-90f90e864c2d", + "id": "2df84367-513a-4bb5-a278-17afc5438558", "name": "Too Many Requests - Returned in response to too many requests in 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": "e20e307a-5142-4d7d-8eb8-e0e7583c4b1a", + "id": "d2df1a2a-79ef-4338-bc29-ca0f78544ffc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24519,7 +24519,7 @@ } }, { - "id": "76f5a730-853d-42f7-bd89-040a8e337d45", + "id": "24f10ea5-e657-4251-bda7-299ad98adb7a", "name": "Get Campaign Reports", "request": { "name": "Get Campaign Reports", @@ -24561,7 +24561,7 @@ }, "response": [ { - "id": "ba7d4b6d-f9bc-43bb-a393-f2f7c24d1611", + "id": "1107a62c-583c-45f2-a3ab-6e9f90c94862", "name": "Array of campaign report objects.", "originalRequest": { "url": { @@ -24606,7 +24606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45aa55e1-6e2d-4c5d-ac79-6bc94868649a", + "id": "b1a3f2d7-9b5a-4556-bf05-14c0d57f561c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24651,7 +24651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "489339a0-2731-44cc-8c7a-01d54e27d05f", + "id": "6fdb02e0-6c65-47fb-8f25-cadf0d4ab208", "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": "d5d30680-d367-4351-9c6c-72208998da18", + "id": "1eae75a4-906d-4f2c-9382-fa22ba0e66fb", "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": "ed9e031e-5438-4538-9d0b-fffa2305ef4d", + "id": "c37b58b3-48cc-4c03-b85f-278331bcb2d6", "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": "04205d4a-8549-484d-9be8-bbe8bd751b15", + "id": "a6ed0be6-8aff-4c7a-961c-66bf74f0e67a", "name": "Too Many Requests - Returned in response to too many requests in 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": "0b5e2239-df52-44ce-a659-085a676642eb", + "id": "67a0a3d2-d979-4549-bc1a-d5cfca30da23", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24882,7 +24882,7 @@ } }, { - "id": "4e987651-e6ac-46dd-8e78-61c0aafc37de", + "id": "4309ede0-c566-40f4-b481-83318f0972f0", "name": "Run Campaign Report", "request": { "name": "Run Campaign Report", @@ -24935,7 +24935,7 @@ }, "response": [ { - "id": "0c3c74d4-3759-4fe0-b7b1-b81b9d08c4d5", + "id": "53fe730d-6162-4342-9629-e68cad93f53c", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -24981,7 +24981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "381268e8-b352-42cc-a0e3-1662c95e3ada", + "id": "ba922057-3cfa-4bd8-a0da-014de4907446", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25027,7 +25027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b5d55dc-66b5-474c-b550-fd9a6feded2c", + "id": "ef339890-d9fe-44d0-9e9c-11813e5501d9", "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": "5f6c0ad1-ba30-4e00-97c3-4267b5f3c276", + "id": "8d9dd6fe-9131-4f4b-b48e-68eaedd61dd2", "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": "c05fd960-b1a6-4c76-9039-5ce13ffd2613", + "id": "70702282-cd46-4c31-bc32-e00aa866f4f6", "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": "69971e18-12e1-45bb-bf3e-b8ef55626fd7", + "id": "943b9839-3a59-40be-a248-f53ecf42034b", "name": "Too Many Requests - Returned in response to too many requests in 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": "554c616e-9262-4322-8a95-d0f652ccddee", + "id": "b740c239-43f7-456c-9091-4a3da49c5a8f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25263,7 +25263,7 @@ } }, { - "id": "d412baf8-ccc3-4b9f-a2e2-37bed1e77546", + "id": "e1fbec7c-7156-4934-8867-44a6902c955a", "name": "Get Campaign Reports Configuration", "request": { "name": "Get Campaign Reports Configuration", @@ -25293,7 +25293,7 @@ }, "response": [ { - "id": "5628137f-c3fa-47aa-ae71-195379b59eed", + "id": "7a5a19c3-6de6-4413-878d-666614bcb463", "name": "Campaign Report Configuration", "originalRequest": { "url": { @@ -25337,7 +25337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2d7f5d1-c2ae-4946-a342-d0afa0c005d0", + "id": "bb21b241-a37b-4588-b223-633b0cfc9064", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25381,7 +25381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a7d47b3-d2fd-4adb-8c70-42765f2de75e", + "id": "2e39633d-7463-4f51-af8f-9c8d9de88fcf", "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": "ba29a854-6738-46de-8b14-27aed056188b", + "id": "aedad190-7115-4816-83fd-506256bd8312", "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": "3f163ef0-dea9-4c95-a90e-ecd8ae4471c0", + "id": "8a7f79dd-ce58-4d11-ad3e-4f06928bef73", "name": "Too Many Requests - Returned in response to too many requests in 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": "2dfadcdc-ae94-420c-a33e-5e7c245d24c1", + "id": "719025f2-9af0-4de2-ae41-b429f7f527c8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25563,7 +25563,7 @@ } }, { - "id": "d3cd3fc4-c4e5-495d-8387-48322495778c", + "id": "b9010867-c645-4749-98b4-4ba23592fdd0", "name": "Set Campaign Reports Configuration", "request": { "name": "Set Campaign Reports Configuration", @@ -25606,7 +25606,7 @@ }, "response": [ { - "id": "768a3776-a581-45cb-8e9f-60e57fb4f26b", + "id": "795fb6b4-9222-459f-a8db-7cee6abb6332", "name": "The persisted Campaign Report Configuration", "originalRequest": { "url": { @@ -25663,7 +25663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f5949be-af9d-42df-b31d-05feb48e5c4a", + "id": "5e1edd59-c6b4-4bfa-a873-8b014f5f4bd7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25720,7 +25720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f7810f8-3457-4998-91b0-2639032a1f85", + "id": "7d4d0562-e481-489a-a6d4-0fd2f2472d90", "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": "f6e12243-b9d7-4566-b9f7-48f7644d8538", + "id": "1e53ca32-f85a-451b-ad72-b2616c2df49c", "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": "908f9fc3-8c70-4a46-962c-c3bbcb0442b7", + "id": "ade4ef28-e287-4801-aea8-195e6fe6372c", "name": "Too Many Requests - Returned in response to too many requests in 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": "b0dd1af4-399f-4c99-82ed-bb12f6be3a32", + "id": "4f29edfd-c9c7-4cf3-9094-58e385601986", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25954,7 +25954,7 @@ } }, { - "id": "f6192555-fb1f-425a-b784-cc64b293b8f3", + "id": "98eeb3a3-236c-4444-afe7-a315e7687504", "name": "Create a Campaign Template", "request": { "name": "Create a Campaign Template", @@ -25996,7 +25996,7 @@ }, "response": [ { - "id": "6ec3148a-51cb-46d0-8711-f27a801f825b", + "id": "eb5df420-a347-4eb2-955d-8096775d4465", "name": "Manager", "originalRequest": { "url": { @@ -26052,7 +26052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8504db4-e89a-43bb-a901-f699a3b7ea01", + "id": "ce598e8f-242a-4bf0-9a55-df14c5232be2", "name": "Search", "originalRequest": { "url": { @@ -26108,7 +26108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7ed13a7-e8d0-4177-88be-031649397787", + "id": "6a5ae8d2-47fc-4b70-9cd7-b18c3bb91bab", "name": "Source Owner", "originalRequest": { "url": { @@ -26164,7 +26164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b56ee7a5-1a86-43cf-979d-e15055b28a44", + "id": "da358041-0e08-401d-a197-ac877bccfe4d", "name": "RoleComposition", "originalRequest": { "url": { @@ -26220,7 +26220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3f737ad-5321-43e3-8c12-c1db29dc0ff1", + "id": "a20e42c8-4241-4ad7-b43b-34d4c8f39d18", "name": "Manager", "originalRequest": { "url": { @@ -26276,7 +26276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0729701-dfdb-48c6-ad92-b55093888b3a", + "id": "8b654b03-ea3c-42fb-8ca6-910c5f45c8e5", "name": "Manager", "originalRequest": { "url": { @@ -26332,7 +26332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52c088eb-a8bf-4d94-8989-ede2d50839f3", + "id": "c733a12a-ee6a-46ae-b135-b9b05b1255ff", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -26388,7 +26388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "594f7a62-8502-4bcf-8218-0093cf641aca", + "id": "a5b9e0b9-e57b-4955-bb16-a6f24f097315", "name": "Manager", "originalRequest": { "url": { @@ -26444,7 +26444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b01a5419-2493-400f-ac00-025ba2edbf48", + "id": "456e55e2-32af-40cc-9392-ccae3a853e49", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -26506,7 +26506,7 @@ } }, { - "id": "6c6e02a9-1865-4189-81fb-00ef675cdc6e", + "id": "3cb5e0f8-aa1b-4424-9577-7a4b651d6cff", "name": "List Campaign Templates", "request": { "name": "List Campaign Templates", @@ -26581,7 +26581,7 @@ }, "response": [ { - "id": "4515accb-f79d-4349-bf97-ce6c1f6c50fd", + "id": "703a1c15-1fef-4302-ad26-3fb6b299b009", "name": "List of campaign template objects", "originalRequest": { "url": { @@ -26670,7 +26670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27069771-a3d8-4d76-85b6-2ff571accd63", + "id": "985b780c-11d6-4473-81b5-b336b52fd5bb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26759,7 +26759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1738c696-7b69-49fc-b498-a67c601609b0", + "id": "ef5f73da-71d3-4ee5-b6bb-49dc73667bbc", "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": "abfb41d3-13b2-4527-afc8-101975200ee7", + "id": "d7f5a34f-f811-4d4a-9c1a-60a4b8399780", "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": "0df3d416-6708-4f26-a60f-a9e446096092", + "id": "9e0f2882-309d-481d-bf13-6a494e8cbc32", "name": "Too Many Requests - Returned in response to too many requests in 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": "338e9daf-518a-40bc-aad2-9db0198e44c2", + "id": "2cc8d210-6bc0-40f5-b9fc-5bd05bdcfe56", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27121,7 +27121,7 @@ } }, { - "id": "38b6d103-db26-4e0b-ad2c-5498eff5983d", + "id": "38e50181-e189-450f-b97b-d01f3a0e4b22", "name": "Update a Campaign Template", "request": { "name": "Update a Campaign Template", @@ -27175,7 +27175,7 @@ }, "response": [ { - "id": "966f24c4-3c89-494f-825f-0d4bd61de4c7", + "id": "53e5b601-540d-4f79-9dee-cc58ad2cd7b9", "name": "Manager", "originalRequest": { "url": { @@ -27232,7 +27232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7da83361-9ca3-47c7-8042-a3f98224342a", + "id": "98966039-8af3-44c0-b36f-8ea3377feb1a", "name": "Search", "originalRequest": { "url": { @@ -27289,7 +27289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51b2e526-048c-4ace-aaad-1d0f1c5bd2bc", + "id": "5703c74f-6c13-497a-972b-c6bfe42407df", "name": "Source Owner", "originalRequest": { "url": { @@ -27346,7 +27346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9914004e-8e78-40d9-a10d-971ce2d27717", + "id": "87744672-6aae-4021-9d9a-b0318e21d218", "name": "RoleComposition", "originalRequest": { "url": { @@ -27403,7 +27403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5051c582-3c49-4c87-b375-12dec524bcf8", + "id": "7f52b124-f96f-468c-b27c-aca349f1bb87", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27460,7 +27460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afed66fc-7a73-466d-a96b-7885949c5e6a", + "id": "fcd3131a-f0e6-49a4-8785-ed4bb194696d", "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": "c5039987-c050-4a98-94ff-a0154aba117c", + "id": "fbbaf624-f755-4c23-8a87-b3d028d1bcf3", "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": "8e71776f-7920-48d3-a4de-fba404c836c6", + "id": "118efdc4-c0a2-427f-8dc9-084ce255faec", "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": "0477858f-5df0-473e-a7e7-800eb869ae34", + "id": "621fb79a-b307-4f41-a290-842d61a44a78", "name": "Too Many Requests - Returned in response to too many requests in 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": "b62d0263-a8d7-4926-989d-e4b38a7fe760", + "id": "d62e8f5b-f87c-42f1-a52f-f52199a3137d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27751,7 +27751,7 @@ } }, { - "id": "433eb7c8-77da-4126-92b6-e40254939750", + "id": "cd68e667-aece-4c47-ae6c-52af3d0df904", "name": "Get a Campaign Template", "request": { "name": "Get a Campaign Template", @@ -27792,7 +27792,7 @@ }, "response": [ { - "id": "c353db5c-67f6-4170-8f3a-51c568dbad84", + "id": "06611009-9a0f-443c-a4f3-1a82ff17abb7", "name": "Manager", "originalRequest": { "url": { @@ -27836,7 +27836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1955dc90-38c4-4f68-b793-5a710224e9d2", + "id": "1c229e56-8cb4-484a-898b-f0b09687b6c6", "name": "Search", "originalRequest": { "url": { @@ -27880,7 +27880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e83a309e-45c6-46be-a6ac-3d64b8e048c7", + "id": "2feda034-795f-42c0-82ca-d72f186a9496", "name": "Source Owner", "originalRequest": { "url": { @@ -27924,7 +27924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ec9ad25-7041-4e84-94db-3069ca61f07d", + "id": "73a6a4bb-41c9-49e5-ad58-4a34667a8987", "name": "RoleComposition", "originalRequest": { "url": { @@ -27968,7 +27968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c659d3fa-ea59-42d0-9b69-afac9e83015e", + "id": "0b7ef6a9-3f36-478b-849d-27e6fa83eeaa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28012,7 +28012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8c3a155-c6f4-4614-9a88-1b562f2f536d", + "id": "a95651fb-5089-4ae3-a134-832d63e47d12", "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": "52a1dc47-6460-42e2-b078-83aa11857ae6", + "id": "3f9ffa31-5ede-4ba5-a4a6-27e3f983fbee", "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": "97040ba9-b3f3-43bf-a9a1-a3e02ce352af", + "id": "60978d01-6b25-4a9e-8266-ca0de150bab6", "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": "d5ab241b-83e2-4fba-92a6-005a623f4ea8", + "id": "d57894f5-1d7b-4cb2-96ad-e3b668334aa3", "name": "Too Many Requests - Returned in response to too many requests in 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": "70f1acb5-83d5-4eff-8cbe-ff9b4bc7ab81", + "id": "8262cc12-4473-49d9-a4c3-f139e618e263", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28238,7 +28238,7 @@ } }, { - "id": "ff510198-a23a-42cd-9e2d-cf4b6ecb7f67", + "id": "1e54a0c6-a3ec-4d2f-acc5-04df544114b5", "name": "Delete a Campaign Template", "request": { "name": "Delete a Campaign Template", @@ -28279,7 +28279,7 @@ }, "response": [ { - "id": "66b4dce4-c133-4f68-a552-9a99fc64b9e6", + "id": "c3e114f3-6b13-4002-abb8-347232a4c853", "name": "The campaign template was successfully deleted.", "originalRequest": { "url": { @@ -28313,7 +28313,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3c15837e-a54f-45df-979f-fd17e76c9efd", + "id": "09389df6-da83-4b96-a73a-4b01532bec47", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28357,7 +28357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8561c057-8232-43bd-9e5f-f09cb39463e1", + "id": "2f78cd12-af5c-44ed-a3ca-0cf1a752d356", "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": "a55235c2-e6fe-43e8-a350-0d7f62ee9bec", + "id": "bf57ff9c-a1f0-41dd-b2c8-1860bedbc554", "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": "e72be865-8f5b-464c-ad6b-8f22430ca40d", + "id": "a153b1c4-e190-422f-9245-e6224ab74e24", "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": "a90bd012-d161-42f3-aca5-4f5f9af2cde7", + "id": "41c610cb-4778-4a90-a677-9f0f8a22ae26", "name": "Too Many Requests - Returned in response to too many requests in 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": "0bfe022c-ee96-4f6c-8ae3-fc0210c718de", + "id": "92f1b1d0-ad60-4151-a319-09228e396735", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28583,7 +28583,7 @@ } }, { - "id": "0408ae30-6c7e-42e8-af89-0171ca78e8a6", + "id": "775d4128-811c-489a-a32b-984d563f0ac4", "name": "Gets a Campaign Template's Schedule", "request": { "name": "Gets a Campaign Template's Schedule", @@ -28625,7 +28625,7 @@ }, "response": [ { - "id": "da1e1a69-89da-46f2-b4ef-502d770eaac8", + "id": "6a11eb9a-cd3f-43a9-b7f3-d704dc8f89a7", "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": "4aac42a7-2b40-49f8-aa6d-52aff5026dda", + "id": "61107184-25f5-4122-b5f7-2e02d5f1b750", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28715,7 +28715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9ed3b20-1302-402c-a2c0-58ab63969e6d", + "id": "339b5d47-4f4a-4e0f-b131-0fe4ddc1c088", "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": "b81cd0fc-e124-4910-b0fb-0b846dc1cc3f", + "id": "854e13b5-471b-4b5c-894a-1efb26d1438d", "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": "59342afa-5bdb-4592-b17f-8fa74041f884", + "id": "ac944adf-84e0-4fab-9db6-0fa628e50fbe", "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": "9d4095cc-dc4e-4996-9e10-0bb886b7a6aa", + "id": "ee92500c-d4d5-43d2-807b-745a825e2917", "name": "Too Many Requests - Returned in response to too many requests in 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": "9a78ef84-49f7-485b-9239-94608955b832", + "id": "2607cf0b-4bf5-4d4a-ada9-2bfe9e1e7c9a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28946,7 +28946,7 @@ } }, { - "id": "c239d155-45ce-4581-9c98-1d765b363ffc", + "id": "24c8479f-144f-4f5f-acd6-b2205c100ae3", "name": "Sets a Campaign Template's Schedule", "request": { "name": "Sets a Campaign Template's Schedule", @@ -29001,7 +29001,7 @@ }, "response": [ { - "id": "2d18f684-804f-4b31-a33f-785343668f57", + "id": "8ce1f750-e6ed-4fed-9de9-f84032d8fa6f", "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": "a68634f6-7230-4680-8b72-a47d99e7952d", + "id": "162f9517-ea0e-4ede-b82f-aaadc18b878b", "name": "Monthly", "originalRequest": { "url": { @@ -29107,7 +29107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1f702dc-9c2f-42b9-a466-d67ff6cc9760", + "id": "de08c978-d1f7-4fe9-a008-9c355b059196", "name": "Once a year", "originalRequest": { "url": { @@ -29165,7 +29165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fa5e21e-bbd5-4501-8166-3c99f12d2e2c", + "id": "4cbcc1f6-a331-4fb4-9003-519c5d42886b", "name": "Quarterly", "originalRequest": { "url": { @@ -29223,7 +29223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bf3803a-d33b-4924-a6c8-3cdcd76eee40", + "id": "6555b92b-c11f-483c-97bf-59a2e592f80f", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -29281,7 +29281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c792aab9-5ddc-4240-ae7c-13b00e08f531", + "id": "80e29f02-5136-45c7-ab9b-b037ffc20e8a", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29339,7 +29339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8659356-4699-4003-8da2-bdbff422f61f", + "id": "b09b4c0f-a5f0-4f94-90b0-7873efc85c42", "name": "Once a year", "originalRequest": { "url": { @@ -29397,7 +29397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3164da9-9277-4814-8256-0206cb9db82f", + "id": "b081b6ff-b6f1-4dbb-a0e0-9a22bb1057b2", "name": "Quarterly", "originalRequest": { "url": { @@ -29455,7 +29455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d43d7ea3-521e-47f5-b460-3dcdbdd56cd3", + "id": "4a1159d8-bf82-47bd-b106-8c882cf496d3", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -29513,7 +29513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46cc59c1-0e20-4771-bf66-e5e10b84df23", + "id": "8642a128-ccfc-4d8d-a0c2-4f19687e88a4", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29571,7 +29571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11a43ee2-e970-4c9d-9c20-acae9de55e18", + "id": "0737e846-0300-4454-819f-42443636dfed", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -29629,7 +29629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5accb7a6-6911-4cf3-918a-c5054c419d12", + "id": "ed1189ad-6dfb-40a3-99f0-4386ac1b3b4a", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -29687,7 +29687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b01cb328-0d3b-422a-8bb5-42471e09e1c6", + "id": "89d1358f-a3a0-4ac9-a455-fbfc2dd12666", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29745,7 +29745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88524490-e7ac-4255-8c30-917c9f7cda33", + "id": "1fd42b94-4c78-4971-90d5-807982030a2a", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -29803,7 +29803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a5e89e8-96e8-4b4c-9d23-f71fbb06769f", + "id": "a057b160-5bc0-4be4-a83a-9787f6363e2c", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29861,7 +29861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13494a0c-f09b-437b-abcb-8cd0ebe0a615", + "id": "e96f03f1-15c5-4b5a-9a66-e6fbfb6d17f8", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29919,7 +29919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "068bef06-22ff-4691-aa05-fd0aed8ba35b", + "id": "78cd268e-82ed-4e2b-89bc-979a33e89d0a", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -29983,7 +29983,7 @@ } }, { - "id": "dbc87278-3311-4c0a-a365-fd547b83dd22", + "id": "bb95fc20-b094-4c27-809c-c89e30537708", "name": "Deletes a Campaign Template's Schedule", "request": { "name": "Deletes a Campaign Template's Schedule", @@ -30025,7 +30025,7 @@ }, "response": [ { - "id": "a70cdf07-08f3-4dde-9d70-04167e6ffb33", + "id": "bba75780-f07a-423c-9a79-a07b18efa5e8", "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": "dfa8abe4-5445-454d-8bf5-cf10dcdc41d9", + "id": "cd90572d-75d4-482c-a549-7d34dc345292", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30105,7 +30105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d150b534-ee3b-405a-bde2-f227b078fff6", + "id": "dbbe4cba-9668-42ee-b54f-b6b13af8cd9c", "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": "4f149332-1280-4558-b5d2-68258b243e32", + "id": "4c8d153d-e952-42ae-ba7f-3aaf236c9150", "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": "2938e2a9-0ff4-42ea-9884-2b41d672a6d2", + "id": "fef1cfb4-df41-410d-86d4-2a313135a6d6", "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": "72a81767-e830-4faf-806b-a1b9669d0c06", + "id": "af1deab5-23fe-4957-ab61-f01823f67d5c", "name": "Too Many Requests - Returned in response to too many requests in 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": "f2e6e5a4-fb72-468e-9ca3-3153ecd32155", + "id": "31ae0d74-294c-4055-8ea9-0274eb3bb9e5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30336,7 +30336,7 @@ } }, { - "id": "67e45068-7690-49ef-9ef7-4c520b4427af", + "id": "6756bcb1-9997-44dd-8dfa-863f7c3094e9", "name": "Generate a Campaign from Template", "request": { "name": "Generate a Campaign from Template", @@ -30378,7 +30378,7 @@ }, "response": [ { - "id": "369dc82c-9a6f-48e5-acd8-0abf690fc69b", + "id": "0bef11d2-3565-48ac-a903-dca0daf45696", "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": "03f90c04-2c56-44ba-9379-6562edacbf14", + "id": "6ba7be5d-85ae-4c5f-a7b6-41da5202b91d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30468,7 +30468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7be968d9-67e9-4834-830d-9ee4259587ad", + "id": "930cdff8-23db-4c93-8b7a-c09f85b6a87e", "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": "431b8cc0-f3b1-4d5b-bd3d-916ffef877f2", + "id": "fd3268fb-496e-4c7b-9454-ea8cb8db8310", "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": "90b5f523-24f5-47e7-ac96-dcceb102e196", + "id": "a2b5df36-8b9e-4cf0-82c1-90c0267e5c46", "name": "Too Many Requests - Returned in response to too many requests in 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": "13f2c257-dd5d-429e-9476-16971ca49ab3", + "id": "a1c42d1c-1c6b-4a5f-9b25-9dfdc9fb4f0d", "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": "bbfc03c7-c0d3-41bd-b113-5058caa9a0cf", + "id": "6373746e-57cd-494c-a8a6-df1cde65a48d", "name": "Identity Campaign Certifications by IDs", "request": { "name": "Identity Campaign Certifications by IDs", @@ -30744,7 +30744,7 @@ }, "response": [ { - "id": "b0fd3970-d0f5-4e76-a31e-89d634f036e5", + "id": "5348c75a-ef8d-41a0-b024-1a32bb0db86e", "name": "List of identity campaign certifications", "originalRequest": { "url": { @@ -30842,7 +30842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "693af74f-4ed5-47d4-82e8-3b40a2babe2d", + "id": "11b91190-7197-4fae-90cb-6a90376f4f9a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30940,7 +30940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d2e6ef1-c563-46bc-92fc-49c3af1b55eb", + "id": "5982ee24-ae26-4164-8656-7b1b3dd852ce", "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": "e366728d-ebdb-4950-8d5e-f6cb6ca4d906", + "id": "27621eb1-4b38-4284-9598-a9365db40c84", "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": "2b11fda9-9358-4767-9f2e-0a93aee5c71a", + "id": "219514dd-6650-4994-aef2-e7267115d675", "name": "Too Many Requests - Returned in response to too many requests in 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": "248fea62-f67e-4432-a4d7-6abcb2fdf06e", + "id": "5e960b93-a437-4b93-83de-247acf782e75", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31338,7 +31338,7 @@ } }, { - "id": "204ff9eb-b6df-4911-83ba-d35980e7e065", + "id": "0b5a678c-75f4-45c1-989c-d735a4f956a2", "name": "Identity Certification by ID", "request": { "name": "Identity Certification by ID", @@ -31379,7 +31379,7 @@ }, "response": [ { - "id": "6f6c5bfa-b099-45bd-8ccd-0f073e49b2ab", + "id": "11109bd9-634a-46ad-b668-60e905a6f64f", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -31423,7 +31423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fbe9e3b-cffb-4940-bce6-6d52a63d4b6f", + "id": "d30250f1-7bd1-4c80-b43e-270c189f8f95", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31467,7 +31467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53f9a89f-4de3-4293-8d5c-16ce883a1c6e", + "id": "ad2fa4af-3eff-43f1-8547-331abe7f74d5", "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": "24b6e4c7-6b53-4a03-a8fc-2f766e0035a5", + "id": "4a52485b-1b15-4493-92f0-38b2b772484c", "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": "10d3f075-23ce-413e-abd8-bddf1240526b", + "id": "fd10a3e5-3442-4a53-bb12-d6d9d5d14b95", "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": "ee57f0a5-ecc1-47e8-8989-da0f88c9b6c9", + "id": "0c1575fe-4824-495b-8bfc-f5d7cf406dd3", "name": "Too Many Requests - Returned in response to too many requests in 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": "5e8c57a0-2739-4858-a376-ba9044f294cd", + "id": "310a3c94-0577-4de1-88db-fdbde3c24b92", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31693,7 +31693,7 @@ } }, { - "id": "1eaaa247-3453-4ca0-8878-ca030acd3155", + "id": "f1758666-7b90-4b77-9e4a-43cbd8e33ca3", "name": "List of Access Review Items", "request": { "name": "List of Access Review Items", @@ -31808,7 +31808,7 @@ }, "response": [ { - "id": "c34eda68-c748-4b62-9908-567266ba0bac", + "id": "25b0e433-e86e-482a-84ff-3212a594280b", "name": "A list of access review items", "originalRequest": { "url": { @@ -31926,7 +31926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4258f70-2a5b-45ee-8703-7b3a15c2ca97", + "id": "fcd1054c-2248-46b8-955c-8bfe725fc4f7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32044,7 +32044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28e46326-9686-4ecd-b509-64cae559ec02", + "id": "60a06e72-44ac-4a39-820a-19155054841c", "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": "e8ece663-75a4-47b4-8a69-1dc1a1811aa5", + "id": "1ba2bf90-51ec-4e7c-a586-6ff69f3be08b", "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": "4391d28c-2797-4722-acef-d913b1bffbef", + "id": "a1c06c66-4ccb-479e-9bc1-7d9bdeb23040", "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": "021bd111-82d6-40de-beea-9d2fa94205df", + "id": "52676766-6701-4b26-8a21-16f5079405c9", "name": "Too Many Requests - Returned in response to too many requests in 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": "55cdd222-9460-485d-b8b2-8ead9342351a", + "id": "7d039a6a-2050-4708-8ba0-58de2eeb5709", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32640,7 +32640,7 @@ } }, { - "id": "22f1a4b1-ce35-4261-b6d8-281e6cb7cbda", + "id": "5968add1-1307-4bdd-80ff-b71a6286dc92", "name": "Decide on a Certification Item", "request": { "name": "Decide on a Certification Item", @@ -32695,7 +32695,7 @@ }, "response": [ { - "id": "47f5382c-417c-456d-9965-44c6999e2596", + "id": "c8fc48be-7b9f-4729-99ba-27b1d5884e56", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -32753,7 +32753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f98b76b0-d204-41eb-bdb6-a693e4a6f9ef", + "id": "a8cda4fe-6154-4940-9bfd-ec9ab1f91ddb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32811,7 +32811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70fdef23-5215-4a02-8047-28c8c232dbfc", + "id": "952d1ead-ba2d-4dae-b98f-b8dc8b98a0e1", "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": "5f0f13f5-23f5-488f-8899-2663ab704664", + "id": "1e9e4383-a11f-42f2-9db1-106b5126310c", "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": "c7bff7b0-2a8e-4efe-a9ca-3effd420703c", + "id": "cf3c21d6-d6dc-415e-a3db-6dad0a39f606", "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": "7a872cc5-2d66-453b-b9f6-9a162930141c", + "id": "e52f8163-76ec-4ab1-9818-0f24f6fc4753", "name": "Too Many Requests - Returned in response to too many requests in 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": "8d5d15ff-d653-4282-a02b-7cee14872edc", + "id": "9c632ea7-d6cc-441e-8b9c-ed8b90ee6839", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33107,7 +33107,7 @@ } }, { - "id": "6ed7625f-2de2-4e4a-9717-36d0e2fcff82", + "id": "a58ba1c8-36ad-480e-8f05-0f214728fc3b", "name": "Reassign Identities or Items", "request": { "name": "Reassign Identities or Items", @@ -33162,7 +33162,7 @@ }, "response": [ { - "id": "bd16069c-83b1-48b7-80ac-e82d23dd7723", + "id": "5a36efbd-878d-4344-a3b1-9f49c6294d3f", "name": "An identity campaign certification details after completing the reassignment.", "originalRequest": { "url": { @@ -33220,7 +33220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4122aa75-5ec0-4c37-a4d4-ea37d1b1450b", + "id": "1324ae19-65f3-410d-8620-16c59614d05f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -33278,7 +33278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a8a46bd-268d-40c0-987b-85ecf4dcf2b4", + "id": "6f9c8a7f-e0b9-4b5a-9275-ae3aae1b9d25", "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": "21d5609d-f039-4510-bda0-41b0ea9cc176", + "id": "b0a6a825-d702-40a5-8c5a-9da4c93072bc", "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": "22f6722e-4f74-499f-98c1-6b162aa31f12", + "id": "c1ebb2c6-907a-49a1-8605-5b8eaa9affdb", "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": "31fbd454-fbc4-4132-8ca4-8378f95c1a56", + "id": "a092d522-1497-45c5-a4ee-55a5632b408e", "name": "Too Many Requests - Returned in response to too many requests in 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": "baf7be27-1cf4-4b2a-9a43-b10fe7305590", + "id": "6eb6a979-9edb-41ee-8cc2-c5d2f815f912", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33574,7 +33574,7 @@ } }, { - "id": "beec08cb-2bc4-41af-b229-1a16990b3db6", + "id": "2eb957e6-7d8c-4a00-a974-94f73222d2ce", "name": "Finalize Identity Certification Decisions", "request": { "name": "Finalize Identity Certification Decisions", @@ -33616,7 +33616,7 @@ }, "response": [ { - "id": "280e6060-4926-497a-acaf-1172d682bab1", + "id": "794cf4bb-b08a-4591-b2e4-6ccf8920c33b", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -33661,7 +33661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b58679c5-bb6a-4ae9-b435-522c0cd310a3", + "id": "2e4ca313-6b06-4207-8861-ab2d31f5e598", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -33706,7 +33706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1719d327-d52f-40b5-b141-24ca30ecc69f", + "id": "b2921ea9-06a9-4828-b632-eea43c4ccbc5", "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": "b1c00867-8892-4ce3-b941-5e83c36fe5c4", + "id": "1ef3c3bd-9909-46ed-bba2-7e8215482e75", "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": "dd82901f-932c-4084-a72e-3e8144bad809", + "id": "56ead47a-e708-4b62-b62b-d17d41c89269", "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": "60b00a38-94bc-44dd-b5d2-f740df21f797", + "id": "b68df442-4540-4aa4-9267-c3ead8489fef", "name": "Too Many Requests - Returned in response to too many requests in 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": "63e6768d-2191-4bbe-8196-5286ede135bd", + "id": "a2b553b1-8f84-47ac-8037-4babf9deda57", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33937,7 +33937,7 @@ } }, { - "id": "d8f9e685-4615-422d-aaa2-0102cb7c8113", + "id": "f00f71ee-dea5-4c7d-8d04-85e852372c31", "name": "Permissions for Entitlement Certification Item", "request": { "name": "Permissions for Entitlement Certification Item", @@ -34028,7 +34028,7 @@ }, "response": [ { - "id": "61f948b1-b9ec-4aeb-a859-ae0900b7cb3f", + "id": "01ac2699-16b4-4d01-a307-c95eb5341566", "name": "A list of permissions associated with the given itemId", "originalRequest": { "url": { @@ -34112,7 +34112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9850f68d-9ffd-495f-9f44-bfcbc2c41b30", + "id": "a4131aeb-c82b-41fd-957d-f7f381428a00", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34196,7 +34196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "812665e6-de31-487e-a17e-d56a6a6de4ba", + "id": "4022dbbe-8a7b-4b32-973b-fb6dc9d61639", "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": "80d4b71a-df2c-4d31-8edd-fcb36c228cdc", + "id": "0734a555-2104-42b8-8b6c-d5de4bbd0d2d", "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": "a7297a51-6178-4b6b-a843-1f9b8fd5f138", + "id": "3deb6c68-c91d-447f-8c80-4ed12abd9b11", "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": "360b402a-1d2a-4e88-9f46-226a89805a9b", + "id": "31e4029b-cf4a-4580-af3c-a24ab2e12921", "name": "Too Many Requests - Returned in response to too many requests in 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": "d565b97b-b0b0-4d63-8960-62b32b1f44a8", + "id": "7aefb8ca-52ed-468c-919e-9f8a1993757e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34622,7 +34622,7 @@ } }, { - "id": "40276f32-0f2f-4d68-82e8-2c3e5df6f4bb", + "id": "455548ec-d567-4e9b-b3bd-1ad3b023d14b", "name": "List of Reviewers for certification", "request": { "name": "List of Reviewers for certification", @@ -34710,7 +34710,7 @@ }, "response": [ { - "id": "6064b6e7-213a-422d-b2b1-c4bb6a8c87e2", + "id": "423853c4-e836-45f8-9e8c-ca69130f996e", "name": "A list of reviewers", "originalRequest": { "url": { @@ -34801,7 +34801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "092b6aca-f875-4a6b-b4af-e7683ed4407b", + "id": "e96b954a-d39f-4849-9fa9-000066c03f73", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34892,7 +34892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1338853-f545-45ef-a305-7cf77a99075b", + "id": "87d6af09-39c5-4ca8-b36c-cd6dfb67e967", "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": "1f1104f4-36b8-4fd2-8bd8-03ef0c873506", + "id": "54c05bb1-a5db-41a6-8a7c-fcfd646c8155", "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": "057b51b0-92ef-4e00-a89b-eaf3340b6195", + "id": "3b55b822-7577-4e88-9db1-d47b695a526f", "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": "8d7c5c10-a5db-455a-87ce-2d28ae8a5805", + "id": "194fb9f5-ccff-4030-a08d-7004bb101921", "name": "Too Many Requests - Returned in response to too many requests in 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": "4e2a8b38-239d-47fb-a49f-109cdc1bf0b7", + "id": "e441d962-f633-4ac7-8da2-624564046be8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35353,7 +35353,7 @@ } }, { - "id": "7f4b9c3a-e76e-41d9-a556-8df1e0fe5d04", + "id": "ecae65eb-d3cc-415d-84c7-19f2501b0137", "name": "Reassign Certifications Asynchronously", "request": { "name": "Reassign Certifications Asynchronously", @@ -35408,7 +35408,7 @@ }, "response": [ { - "id": "c1ef0ac4-3904-434e-ba2c-0d8da718ec80", + "id": "ba9c5298-9aea-4de3-9829-13db464d3fe0", "name": "A certification task object for the reassignment which can be queried for status.", "originalRequest": { "url": { @@ -35466,7 +35466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6868cdf1-3ba8-4de9-b40a-9f0f927b633e", + "id": "8451c042-3771-404a-a520-f732caabd9e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -35524,7 +35524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "244af50a-f030-402d-955f-90e816533e24", + "id": "842d530d-c330-4609-be73-0f9b3602410a", "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": "0233dd36-a953-4318-b99d-5b7b530ff5fa", + "id": "cf80a36e-bfa7-460f-86ff-5f1fd04b2c54", "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": "8f811353-b473-4183-8bcb-f6a732860f84", + "id": "bb0c4d54-299b-4fd3-bcf6-8ac506cd1d68", "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": "998e129b-d2ad-4ffc-98a1-4e4449f7d057", + "id": "f157f9a8-4eea-4e29-9e29-9c39ded6f274", "name": "Too Many Requests - Returned in response to too many requests in 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": "78620eee-8fe1-4a86-b363-6dcebe8fed74", + "id": "03995328-a4fd-4462-bbbc-5b51e6b83092", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35820,7 +35820,7 @@ } }, { - "id": "61333610-41ea-4e08-a803-cf150e67dc20", + "id": "856cf85b-8ab2-46a5-8750-05bd6de95b63", "name": "Certification Task by ID", "request": { "name": "Certification Task by ID", @@ -35861,7 +35861,7 @@ }, "response": [ { - "id": "358cd658-4c77-4c62-bd24-6fa020ce8115", + "id": "cfb0a883-6c14-4d27-bad2-d60014b9285d", "name": "A certification task", "originalRequest": { "url": { @@ -35905,7 +35905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e69138f-cf0d-4192-b544-f13cc8ed7732", + "id": "444624f9-15fb-45cd-86b3-943e3160a3ad", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -35949,7 +35949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23f13c49-d26c-4449-81d0-37f4e96c9492", + "id": "3dbd9670-a12c-4c94-ade1-dc72056a3924", "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": "1423b08b-d473-4fe9-bfab-2daaa5dddaec", + "id": "449f03dc-ac7d-4fd6-bd12-874ddf349955", "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": "8d7f5706-5296-43ba-becb-742ecfa0a210", + "id": "13e6439f-ef16-4c85-89dd-c81507341e5f", "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": "213fb8ec-f077-42ac-8937-bd642b45f232", + "id": "632ad237-f00a-400c-942a-4a6ca012a22e", "name": "Too Many Requests - Returned in response to too many requests in 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": "b820bd82-75e3-4598-9fb5-61ecf1da3955", + "id": "0e854078-e8b0-4d87-a7f2-6689600d0bfb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -36175,7 +36175,7 @@ } }, { - "id": "fe6d2859-1640-420f-ad8a-7052553c8352", + "id": "949aa886-6d7f-4b6b-9d3a-15dbdf04ab05", "name": "List of Pending Certification Tasks", "request": { "name": "List of Pending Certification Tasks", @@ -36250,7 +36250,7 @@ }, "response": [ { - "id": "a97e0c80-8452-4ee4-9f80-c41571097457", + "id": "970b21d0-235b-4881-8555-2dd9257008f1", "name": "A list of pending certification tasks", "originalRequest": { "url": { @@ -36339,7 +36339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60d72803-59ad-4280-bcef-909591e9d79d", + "id": "3dcfd07a-1106-4074-b8ed-a9253bac19da", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -36428,7 +36428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44db33c2-e36d-4d74-aaab-1c761fabf506", + "id": "9498e710-c6d9-4bbb-8a0c-e432d5b47d5d", "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": "fd4ec3bb-e8fa-47f0-9589-e3325afc96cb", + "id": "235b56f2-f1a5-448c-b9ac-11189dd800ea", "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": "c3ca6b10-9131-440c-a85e-1e98bc64efd2", + "id": "881a84d2-bcd2-43a5-b0d1-70a93572610b", "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": "6965cd07-ed6c-454d-9577-65fcd0beeca8", + "id": "d241ca0a-7ac7-41b4-828e-32913952d72b", "name": "Too Many Requests - Returned in response to too many requests in 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": "3b0422da-033c-431f-ac31-342f6c66c41b", + "id": "3349e832-37d4-46f6-b9c2-d4ea7b335387", "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": "aadcda8c-dbe9-45cb-8fb6-fce90b4d6cf3", + "id": "aaf7f874-15c9-4eca-b76d-0a6d67dfa05d", "name": "Summary of Certification Decisions", "request": { "name": "Summary of Certification Decisions", @@ -36937,7 +36937,7 @@ }, "response": [ { - "id": "f69e6361-7580-4c0d-b331-dc45b8d2d5b3", + "id": "74230216-b563-4a73-8733-895775df1899", "name": "Summary of the decisions made", "originalRequest": { "url": { @@ -36992,7 +36992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0ceb60a-6fbd-4a4d-8bb4-6ef5b023dad5", + "id": "02370ff2-3066-45c7-839f-44faf8f72426", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -37047,7 +37047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e64a6e1f-7052-45cd-a393-b06fe8b3dc35", + "id": "7370be81-715d-4bd5-9d5d-b2dd4c0439ec", "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": "b3794119-8402-4f64-82b8-97f85fad335f", + "id": "16c97a07-47b5-4010-bee6-1f1720dd5daf", "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": "509c2642-5fc9-4707-9cef-fc2ce8ccf53a", + "id": "813a0a64-4c28-4a37-ad63-8591524e8708", "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": "0d21c3e2-1baf-4594-ac62-9941cf95d724", + "id": "0f933bf5-273f-4f01-811b-ecee1be1a430", "name": "Too Many Requests - Returned in response to too many requests in 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": "4293ac39-6563-4a93-a450-a1ecc363020a", + "id": "78c78c10-80d8-4092-b500-d4a56edee466", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -37328,7 +37328,7 @@ } }, { - "id": "8b83373b-3731-4284-940d-2c7d9486dbcd", + "id": "d2d002d9-9565-4143-be80-a8f9b4041a41", "name": "Identity Summaries for Campaign Certification", "request": { "name": "Identity Summaries for Campaign Certification", @@ -37416,7 +37416,7 @@ }, "response": [ { - "id": "f11e944d-5ace-4e00-b039-c68d2b6dee7b", + "id": "d5f8264b-a948-4d69-9bce-e44245b6d88a", "name": "List of identity summaries", "originalRequest": { "url": { @@ -37507,7 +37507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de552f35-7404-42e7-89df-c39a2c2e76ca", + "id": "e30556e8-6781-4c28-935d-21d016ed8aab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -37598,7 +37598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da6f9117-2b92-4977-80ad-1260e38099ce", + "id": "e9f80fe3-6930-4d4a-812f-481e72b97123", "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": "8d1e37cf-095f-4dc4-be9a-f4ba080fca55", + "id": "f6983077-9515-4696-b762-0e501e87fb3b", "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": "c7635ab1-2bc6-4131-8280-4cc3b6849757", + "id": "c39066cb-0ae1-4db5-99d5-373d385ff2c0", "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": "a627b649-92bf-4db8-a4a2-6a7072b33dc6", + "id": "f2284f3a-1a82-42c6-badf-5ce8269a5bfb", "name": "Too Many Requests - Returned in response to too many requests in 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": "328f5c97-e3e1-4a21-8fba-9853f9264d9c", + "id": "e1bbd394-3084-4db3-91ae-8cc1465f6aa5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -38059,7 +38059,7 @@ } }, { - "id": "9187b1b6-64bd-46b0-8d58-014d995e655d", + "id": "5ba1d8eb-1b0c-4f11-ac72-b03aae9832de", "name": "Access Summaries", "request": { "name": "Access Summaries", @@ -38158,7 +38158,7 @@ }, "response": [ { - "id": "384645a1-d2b2-422c-a84e-d30b0bd6b2a9", + "id": "9b78ec81-0a5f-4051-8e33-7a00ced97b41", "name": "List of access summaries", "originalRequest": { "url": { @@ -38250,7 +38250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "963b4ee2-6253-444d-b18d-83c93b245277", + "id": "2f91757b-5006-413e-bd51-4020a69039bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38342,7 +38342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46448aed-a08b-49f9-9d02-8c7fc81685e6", + "id": "fd1c4513-0ef9-4f7a-b556-80397476eb07", "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": "aac8c229-4d7a-4f1d-9099-17e0dbffe965", + "id": "3b234cc3-9353-4ae7-9a55-bb150aa5888a", "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": "e585eb32-2f32-42d4-85d6-34cfb87dc026", + "id": "90840d9c-3332-4ed9-8647-b5c382c8c42f", "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": "bbd68651-d9bf-4772-bb22-9205fd3aa990", + "id": "5f258e71-1c72-4ee5-b7f5-881f51f2a1df", "name": "Too Many Requests - Returned in response to too many requests in 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": "fb9cd58a-7cd6-4cb1-af77-28248d1f72ca", + "id": "a3573a20-c85a-4e1f-a282-23e93d4aa318", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -38808,7 +38808,7 @@ } }, { - "id": "45bf6890-f906-45da-942e-fd2adfa6bf35", + "id": "42516469-1ae6-4f3a-8da7-a387a6a23ba6", "name": "Summary for Identity", "request": { "name": "Summary for Identity", @@ -38861,7 +38861,7 @@ }, "response": [ { - "id": "44023c41-1572-440f-8426-80b073da8ffd", + "id": "9cbbb48e-0c0d-464a-a3c3-ed30b7cd2138", "name": "An identity summary", "originalRequest": { "url": { @@ -38907,7 +38907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30ded4a0-edde-421c-bf80-fab3587fe7a1", + "id": "8691eddd-b227-4c6d-bc1f-02fefc47e500", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38953,7 +38953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7508fd0b-c897-436a-84f4-ba5b55b3c72f", + "id": "f632fe17-28d1-48d1-af9e-bd955d423602", "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": "e1cf7977-13ca-4231-a866-83dc13827fd1", + "id": "5cf8c491-47f6-4988-be28-6c0575cba8de", "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": "ec1885fe-6e51-49c6-afea-28f1db3dd117", + "id": "81072831-8fee-44d9-b5e8-33c95b9dedfd", "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": "2e65ffb5-92dc-435f-ac9b-c40a8c12a4be", + "id": "6184476c-6946-4a64-9f6c-1501b436c53f", "name": "Too Many Requests - Returned in response to too many requests in 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": "e464b51b-c360-438c-aaa8-f47405756f8b", + "id": "d6d6cf20-ea94-459b-8944-fc38352d99f8", "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": "9dfa63eb-006a-473a-9e39-5f4f0bf0f42f", + "id": "ba23fff6-58fa-466e-ada2-454899938e1e", "name": "Create a Campaign Filter", "request": { "name": "Create a Campaign Filter", @@ -39237,7 +39237,7 @@ }, "response": [ { - "id": "51d8d7f8-eb85-46ed-a36e-411bb6cbefc1", + "id": "dbded45a-48aa-4a31-b378-d16d3ecc8479", "name": "Created successfully.", "originalRequest": { "url": { @@ -39293,7 +39293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2da12dcf-e7a9-48a6-b78e-d2a90eb59d10", + "id": "4625603b-fccd-46dc-8486-ef015b1c406a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39349,7 +39349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e2bb7df-e156-4def-964a-5db9bc660a54", + "id": "b85af586-e8ca-4ad0-b15e-e1cfa381a6e7", "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": "619c398b-ce92-4a8b-86f9-a23eff564322", + "id": "2691f227-5f93-4fa5-8db1-541877b6911a", "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": "d99467db-28a6-4f45-bc79-0848ee06118f", + "id": "817ed1d2-d088-4946-ae07-c28fb9a1232a", "name": "Too Many Requests - Returned in response to too many requests in 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": "cab46ef1-5abf-4feb-a3ae-d0eaff959463", + "id": "0e8cc1ed-18cc-4fdf-b18e-d113aebffcfc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39579,7 +39579,7 @@ } }, { - "id": "3ef40dd0-ef5f-4a19-8ea3-48b296c1e361", + "id": "726e9db7-06c5-4bcd-98d5-74ed53e58496", "name": "List Campaign Filters", "request": { "name": "List Campaign Filters", @@ -39636,7 +39636,7 @@ }, "response": [ { - "id": "6bd65c92-e0f2-4530-82f1-e765823ecc00", + "id": "51c5c540-ef52-473f-a999-f3ac7e9d2939", "name": "List of campaign filter objects", "originalRequest": { "url": { @@ -39707,7 +39707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "696eedc5-311f-44e0-abab-0d7fc6eeeb8b", + "id": "8e609d1d-cc9e-4990-8afb-a16be49fe992", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39778,7 +39778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2112c003-f5eb-4595-87e7-c8d3920c2a12", + "id": "c9d55a83-8ad7-46b0-b2b9-fe15a729e91b", "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": "61d1f78e-d33c-43c7-a852-23baf794f130", + "id": "d209292c-498b-429a-86d1-3a8ba822dd19", "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": "b40a892e-db3e-4bc2-91f7-da476e997056", + "id": "35d24ead-f1bb-4130-8959-84d517c63c6a", "name": "Too Many Requests - Returned in response to too many requests in 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": "d75d52b1-9ff7-470d-ae52-ac25ff4aeeb4", + "id": "51228e48-3de1-47b1-93fe-ae73f4a0120f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40068,7 +40068,7 @@ } }, { - "id": "f1e27c7b-c561-4a98-89e4-64abfec0a804", + "id": "262f0736-14a7-42b1-a506-8572e837c51f", "name": "Get Campaign Filter by ID", "request": { "name": "Get Campaign Filter by ID", @@ -40113,7 +40113,7 @@ }, "response": [ { - "id": "c7704f01-105e-4b1e-8f2b-0dbc489865c6", + "id": "f6b8092e-27a0-4aec-8ba5-325f1f11cbe2", "name": "A campaign filter object.", "originalRequest": { "url": { @@ -40157,7 +40157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5e4a2a4-5a29-4410-8754-c4946515ed90", + "id": "1a0c7b31-932c-4438-a216-bfbae03653be", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40201,7 +40201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84770c20-cdf0-4bba-a146-04370a90301c", + "id": "2b48b818-073b-4ca5-b6b1-47bf54468547", "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": "f910566a-dbcf-4d11-bfe2-80d2537e60e2", + "id": "43c2a1cf-fd25-492f-a033-f04139db453e", "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": "67905f8d-bf0c-44c8-ad6f-c383cea9f609", + "id": "7fbb4b1b-06ce-4974-a839-3721338d16a1", "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": "ae104115-3a5a-4bcf-ba45-3f3e162d87e0", + "id": "4c927140-e46f-4ae2-9837-d466a8294805", "name": "Too Many Requests - Returned in response to too many requests in 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": "7629fe6f-1354-444e-8d00-6ca8c90c4bd4", + "id": "429c30a2-9922-4075-82ac-9f6645aef255", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40427,7 +40427,7 @@ } }, { - "id": "aa46fd39-0eae-40b1-90da-2ed794d737de", + "id": "84ea4319-52e0-4515-998f-1a04781bb65a", "name": "Updates a Campaign Filter", "request": { "name": "Updates a Campaign Filter", @@ -40485,7 +40485,7 @@ }, "response": [ { - "id": "38e7a49b-4594-4161-9b9d-d3a47bc6df7c", + "id": "799868b2-3e76-4fb4-ac54-0aa95007c6eb", "name": "Created successfully.", "originalRequest": { "url": { @@ -40542,7 +40542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95488289-4a18-4761-bad9-430656fa0e0f", + "id": "4572a310-db64-4c37-b434-3ade9e123d5b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40599,7 +40599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b844a95a-4bab-4dd4-86a9-fcb008578bab", + "id": "1249488c-427f-4934-b20b-f21dd882b713", "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": "a903bca9-79b0-4a06-a9a6-24db211eb7c5", + "id": "6636a825-b7f8-418c-ad6f-7fb0cebad922", "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": "7eb535aa-ae41-4735-83ba-7f963a5d6d99", + "id": "44ecb11c-490b-4823-963f-2e452170691e", "name": "Too Many Requests - Returned in response to too many requests in 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": "896783ea-b672-4ac7-aa14-e4acbac6a5ae", + "id": "d672eef6-dbaa-4e4b-8ebc-dbc3fa8b7e58", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40833,7 +40833,7 @@ } }, { - "id": "65297c78-2d1b-40f7-b0fa-84f2a9b2cfdf", + "id": "d4736351-b058-46d0-b040-547584bd3db3", "name": "Deletes Campaign Filters", "request": { "name": "Deletes Campaign Filters", @@ -40876,7 +40876,7 @@ }, "response": [ { - "id": "09c3d5ac-ce71-48d5-ae59-954809ce92f2", + "id": "eb0159c7-b1a4-480e-bb66-47133cc67f46", "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": "fdca62db-30ee-49d5-9f55-2b8845ed1164", + "id": "06f063ac-52f6-431f-8e2c-9cb19d0dc0fe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40980,7 +40980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64846fc4-a7ca-417d-a7a7-3c59d6045338", + "id": "f7267d19-532c-4b08-9b0f-1637aed9be1a", "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": "19184ea6-940b-4083-ade8-7a0482df3e07", + "id": "d46cf3da-2878-4b9a-80fb-d69a5850e847", "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": "8896fb7a-49f8-479f-a53b-bbd95c0febbe", + "id": "9d6b4cf4-f372-4762-a7be-e15990a14019", "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": "5a0931aa-2d3e-4415-9307-0641bf579d1c", + "id": "8d84cf51-a125-4b32-b435-50f4b3266fd8", "name": "Too Many Requests - Returned in response to too many requests in 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": "154793d2-f5c2-43fa-94d0-fec1893cf43c", + "id": "6e5b55d9-43bc-475b-843c-70a02b62c8f0", "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": "3b89e38a-0e51-4b97-a8a9-6149c2863e0c", + "id": "1cc70b9a-fcf4-4774-9bcc-ea75ba8a3b4d", "name": "get Connector", "request": { "name": "get Connector", @@ -41328,7 +41328,7 @@ }, "response": [ { - "id": "6cce3882-0507-4e0e-a215-41864098929d", + "id": "3781b45b-1463-40fa-bfe0-9d761831c274", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -41382,7 +41382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e49e4997-603d-4ca3-8ae0-235689e4c664", + "id": "14d42e0b-5fd2-46c3-a714-9dc792ddc5db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41436,7 +41436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bb19b86-e427-46bf-8d3d-44ba3799a83e", + "id": "62009edb-54e7-4a55-a432-712ebba7648f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41490,7 +41490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e037106-0e24-4698-aa39-a54ad28aaa1d", + "id": "c4ad669c-7ab0-49d5-8166-2ff92d7dbecb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41544,7 +41544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "474ff91b-dec5-42c9-8851-634419ce14e6", + "id": "4fee41a0-0f7a-4c55-8864-049db142af86", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41598,7 +41598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa01f80b-751a-49e8-9fb3-898af6b8bec3", + "id": "fb9092e1-5d98-442f-8c69-5f2d5b63d7a1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41652,7 +41652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4935adfd-6517-49c2-a067-d01a69bc4a11", + "id": "9a87d156-a129-467d-a99f-c72d184a0d2a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41712,7 +41712,7 @@ } }, { - "id": "cb2f4e8e-f7c4-4bc1-9c53-6bda970d5067", + "id": "cba1750d-aec2-4881-950c-e62fcdc94841", "name": "delete Custom Connector", "request": { "name": "delete Custom Connector", @@ -41753,7 +41753,7 @@ }, "response": [ { - "id": "536fc164-1d1e-4ed1-a869-0d56b604064d", + "id": "c2c04660-3ff6-4edc-bac3-00d05dfeae72", "name": "The custom connector was successfully deleted.", "originalRequest": { "url": { @@ -41787,7 +41787,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f8328605-3761-46e0-8521-a27a236fb7aa", + "id": "08f0f8c3-fb29-40e1-96d2-c08219a4b01e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41831,7 +41831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c5470b2-0bb6-4c3c-88ef-6445f4b4aa3f", + "id": "54877344-caf3-4951-9176-ed5a7f7a0922", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41875,7 +41875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8c71193-7f4b-4b3a-9ec0-771114e6358b", + "id": "022f8220-997b-41a3-b9e6-608d4b53dea8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41919,7 +41919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9739a7b-f1f6-4b97-9f13-4e9df5bce5aa", + "id": "79c3baff-7588-41e2-969a-4d00e973f2c7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41963,7 +41963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a39dfba-5912-4661-b324-6d59dd06f2fa", + "id": "e188ff53-d120-4778-9505-5299abc9f655", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42007,7 +42007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ace9ed1-435d-4504-8e91-566fc43c088d", + "id": "7c0b2511-97a9-4245-bf6b-9b9f71a5a5cc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42057,7 +42057,7 @@ } }, { - "id": "1c6541db-fda8-470b-9d00-9171c0e9dd1c", + "id": "7bf5c496-67a5-4130-9279-d99f1f42df80", "name": "update Connector", "request": { "name": "update Connector", @@ -42111,7 +42111,7 @@ }, "response": [ { - "id": "5c1588a5-6e62-4c97-89ac-0447fcfc97b5", + "id": "ff2beea8-85e7-4171-a69f-17b0be5b5207", "name": "A updated Connector Dto object", "originalRequest": { "url": { @@ -42168,7 +42168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51fe5c99-9a7b-4837-afa2-7a5fb8850204", + "id": "c174bb88-b036-49a1-b97d-95b687f0b1d0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42225,7 +42225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95a851b8-dfd4-4255-9fa3-7945faa29fe6", + "id": "3b1ad038-84b5-47e4-b08f-7d7e3d3bd12c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42282,7 +42282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96a53466-5e53-4be0-a892-9f29c3562e9f", + "id": "a3704a96-1dfd-4eca-8486-f3357f5b541f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42339,7 +42339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70bc2364-9b67-43da-9eb2-3ba296e9dc7c", + "id": "dabff87b-5919-4259-a42a-49ea885ed7f8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -42396,7 +42396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "981b2a2c-4cb4-4bc4-bac3-2f719b74776c", + "id": "21be829a-236d-4fe9-94bf-3760bcabc378", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42453,7 +42453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fb37b3a-b44e-4f87-8b12-28f9f8ca68a4", + "id": "809ff3e2-0874-47b2-b934-3abe9c533e8b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42516,7 +42516,7 @@ } }, { - "id": "d09d618a-eb1d-4be0-98b2-fbad01679cfd", + "id": "15515d79-a934-428f-8c36-23eec071a1ae", "name": "get Connector Source Config", "request": { "name": "get Connector Source Config", @@ -42558,7 +42558,7 @@ }, "response": [ { - "id": "1748f798-f08c-4c40-b5ac-2f60dcb6dedf", + "id": "44d68189-e4b7-483e-b5aa-8afe516e8664", "name": "The connector's source template", "originalRequest": { "url": { @@ -42603,7 +42603,7 @@ "_postman_previewlanguage": "xml" }, { - "id": "627fb0f1-a3ba-4d85-bcf6-cefc248d37fa", + "id": "301a413c-d319-42ec-8e6f-e9a9945d1092", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42648,7 +42648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b163d375-96be-46ba-80d1-b28700c37f2a", + "id": "351f5403-20a7-492a-aea3-94f68b88b050", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42693,7 +42693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "331fcddd-7264-4116-9aa4-1d66881d8e41", + "id": "9285145f-47f3-4183-af52-0715e9ba6d57", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42738,7 +42738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9961177d-e35c-4109-afb3-e7f7525ac554", + "id": "68ce390a-cc68-42d0-ad45-20344ab428d9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -42783,7 +42783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4b1163f-5ec6-4c5a-bb2c-e29e02be253b", + "id": "7e189cd8-b1f3-4ca7-8fbf-827a54411676", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42828,7 +42828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05e08486-aa2f-4ce5-828a-359d9076a90d", + "id": "b34ec05c-f606-40ea-86ba-71afb9f70792", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42879,7 +42879,7 @@ } }, { - "id": "c8ca3b43-a239-42a8-bc94-350d86fbdedd", + "id": "3edaa3a4-14ad-48db-90c6-f0e71ea9a51e", "name": "put Source Config", "request": { "name": "put Source Config", @@ -42930,7 +42930,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolor dolore dolor", + "value": "veniam quis", "type": "text" } ] @@ -42938,7 +42938,7 @@ }, "response": [ { - "id": "ebeb12a5-f9b7-4b25-b6e2-3e5e9ed59ecc", + "id": "2a3a7b5a-c9bc-4380-9365-8e7cbd1ecc68", "name": "The connector's update detail", "originalRequest": { "url": { @@ -42981,7 +42981,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolor dolore dolor", + "value": "veniam quis", "type": "text" } ] @@ -43000,7 +43000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a318829-5366-47e6-9698-a7c53a90ab08", + "id": "1fae0b43-c44b-497c-89fe-fb8387ad8567", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43043,7 +43043,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolor dolore dolor", + "value": "veniam quis", "type": "text" } ] @@ -43062,7 +43062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e0327ba-60e7-4629-88fc-538caf675a91", + "id": "3316211c-425d-4f78-b579-76bcbd441873", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43105,7 +43105,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolor dolore dolor", + "value": "veniam quis", "type": "text" } ] @@ -43124,7 +43124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a780a4cc-c280-4c4b-bef3-288e6991f402", + "id": "5acc8381-c633-4008-93a1-137382ed17bc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43167,7 +43167,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolor dolore dolor", + "value": "veniam quis", "type": "text" } ] @@ -43186,7 +43186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99e956a5-e58d-4a4c-bef1-1ea38a476faf", + "id": "bfad4977-cf1f-4361-838c-7e5079a8a5f2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -43229,7 +43229,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolor dolore dolor", + "value": "veniam quis", "type": "text" } ] @@ -43248,7 +43248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "289b5061-0db9-4181-bb5b-1bd9b5aab927", + "id": "57e4fdbe-7aa9-4552-871e-1d3e1f9ca3cd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -43291,7 +43291,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolor dolore dolor", + "value": "veniam quis", "type": "text" } ] @@ -43310,7 +43310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b53fa230-bf41-4a8a-a4d7-9a798c884925", + "id": "93fbb125-b862-41dc-b755-bb776aa46309", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43353,7 +43353,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolor dolore dolor", + "value": "veniam quis", "type": "text" } ] @@ -43378,7 +43378,7 @@ } }, { - "id": "62dc3e33-3bc6-4189-b056-80ee7dff5d03", + "id": "73191102-8275-4ee8-8532-894d418c3b85", "name": "get Connector Translations", "request": { "name": "get Connector Translations", @@ -43431,7 +43431,7 @@ }, "response": [ { - "id": "f233335d-b1a5-429c-b898-bac84efa220c", + "id": "2754a655-dcf9-4a3b-9235-b8fdb2e9b7bd", "name": "The connector's translations", "originalRequest": { "url": { @@ -43472,12 +43472,12 @@ "value": "text/plain" } ], - "body": "ullamco Duis in cillum tempor", + "body": "in deserunt", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "c8e095e5-e2df-4909-bb40-22905032e697", + "id": "50e1fc28-0cfd-4161-ad34-3884e699a382", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43523,7 +43523,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3038e7e-9d5e-48c9-bc26-4152170a199c", + "id": "dade6fec-e9a4-4177-821a-43ff711c0b80", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43569,7 +43569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78a6b746-e91e-4a92-813a-7b3e359d472d", + "id": "82f4aae8-0cb3-48f0-bc5a-b4e28f88d63e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43615,7 +43615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4562185d-7d3d-4c35-8790-2d9af1c2aa99", + "id": "04a1ae37-f05a-43fd-8b55-601ef15ab7b7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -43661,7 +43661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5d07bdc-89b4-4918-b483-437547951e18", + "id": "6c55fc68-0f08-4b96-a599-3f28007f084f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -43707,7 +43707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49834cd4-4c58-42b9-8c30-da2843c9c7bb", + "id": "ea0339a5-5ff2-44f7-b1c0-8a4f5024ee21", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43759,7 +43759,7 @@ } }, { - "id": "b0fba668-3660-4ffb-b69c-bf46a446a505", + "id": "e799acdd-fb05-425e-a6bb-3f7737135be5", "name": "put Translations", "request": { "name": "put Translations", @@ -43819,7 +43819,7 @@ }, "response": [ { - "id": "e82705db-9cdb-41d1-8698-74c5e89ed5fe", + "id": "014730b7-7f0a-4e67-9ab7-403d9bd5f336", "name": "The connector's update detail", "originalRequest": { "url": { @@ -43872,7 +43872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66812e2f-b2bb-43ed-a641-ab4e0942315d", + "id": "c61d54ad-6760-41b8-b11c-5bbff4320366", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43925,7 +43925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e9ad296-08e1-4bd3-94ad-246457d5393b", + "id": "082a1ae2-2085-43fe-bcf9-a0584d436752", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43978,7 +43978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df056fea-b198-45f7-91ba-0e79ab22a822", + "id": "f9687d61-c11b-45c1-81da-1daaf8d45a7d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44031,7 +44031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fe8eb2f-c774-4771-96d1-78aa1cbaa41d", + "id": "acf62add-1ff7-4ef7-9c02-bfa85132b024", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44084,7 +44084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92c2aaf6-1830-4a7d-9402-8b10258b4faa", + "id": "9b6b4f24-162c-4e29-91b8-8917db753f29", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44137,7 +44137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adb88b0e-1dba-4240-b915-e4ac2b86761a", + "id": "ddd10396-aa8d-414d-a70d-71fb5535a63d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44196,7 +44196,7 @@ } }, { - "id": "ac52dfb1-854c-432b-ab7a-ef44290fefc8", + "id": "adc1c1c1-dd0a-4c9c-bd93-b6b5a7a48d5b", "name": "get Connector Source Template", "request": { "name": "get Connector Source Template", @@ -44238,7 +44238,7 @@ }, "response": [ { - "id": "8e41d944-5f21-497d-971e-b047bc4dfea5", + "id": "45042024-894a-4ea7-a57a-9b5cc60dcb5b", "name": "The connector's source template", "originalRequest": { "url": { @@ -44283,7 +44283,7 @@ "_postman_previewlanguage": "xml" }, { - "id": "140a2e23-0dc6-412b-a3f2-c28a361467a9", + "id": "26a8e9dc-2c72-41c8-9990-5b8a2b4f764b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44328,7 +44328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebd63104-08c5-48a9-a3ee-f89708a0954c", + "id": "a2f3468f-6c46-4a00-bf1b-5d51e08e05ed", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44373,7 +44373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43773d5e-c8c5-44c0-819e-90bf60ab0f76", + "id": "17dc10e9-b440-49f2-9a46-333aa26cd15a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44418,7 +44418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c4f1137-a28d-478e-bf8b-8d0f39b88853", + "id": "a47f40b5-e3b7-4bb9-b4cd-eed8d5f15ef9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44463,7 +44463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a39aee52-958a-4e55-956f-b2d885b4c0a6", + "id": "23b7ef43-da33-4f73-8698-0839b7357d6f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44508,7 +44508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2bee6bb-8dec-4583-88a2-4134962ff506", + "id": "d26d2636-b734-44ec-b542-66353642bbb7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44559,7 +44559,7 @@ } }, { - "id": "da509484-54e5-490e-86d5-fe0afed11d00", + "id": "86a78369-dcf7-488d-b816-2129fcb87755", "name": "put Source Template", "request": { "name": "put Source Template", @@ -44610,7 +44610,7 @@ "type": "text/plain" }, "key": "file", - "value": "veniam voluptate aliqua do", + "value": "esse sit sed", "type": "text" } ] @@ -44618,7 +44618,7 @@ }, "response": [ { - "id": "c6fc4c55-3785-433f-9420-13216ed035f1", + "id": "6e235493-5353-45d0-8110-a74d5e0e0b28", "name": "The connector's update detail", "originalRequest": { "url": { @@ -44661,7 +44661,7 @@ "type": "text/plain" }, "key": "file", - "value": "veniam voluptate aliqua do", + "value": "esse sit sed", "type": "text" } ] @@ -44680,7 +44680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40e1ce18-6539-410a-b5cf-b3505b33db64", + "id": "c74d99d4-ea69-4c10-b0d8-aab81b995d87", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44723,7 +44723,7 @@ "type": "text/plain" }, "key": "file", - "value": "veniam voluptate aliqua do", + "value": "esse sit sed", "type": "text" } ] @@ -44742,7 +44742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44dcb461-bd56-415c-bf6b-7252bff5ae0e", + "id": "58f55ba6-3d23-475b-9175-ad0a779f7ca5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44785,7 +44785,7 @@ "type": "text/plain" }, "key": "file", - "value": "veniam voluptate aliqua do", + "value": "esse sit sed", "type": "text" } ] @@ -44804,7 +44804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a335de2b-af1c-45ed-83ae-ee519d4b6a79", + "id": "0c163777-94b4-4265-99f4-d2845b15f5a2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44847,7 +44847,7 @@ "type": "text/plain" }, "key": "file", - "value": "veniam voluptate aliqua do", + "value": "esse sit sed", "type": "text" } ] @@ -44866,7 +44866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72c7e3a7-90ea-4087-b50d-5b8511e0e880", + "id": "aec761fa-c84b-452a-8f80-2656f1079bee", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44909,7 +44909,7 @@ "type": "text/plain" }, "key": "file", - "value": "veniam voluptate aliqua do", + "value": "esse sit sed", "type": "text" } ] @@ -44928,7 +44928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e5bd9a6-db5e-4e8d-aae3-4e2ddc90e7a0", + "id": "dac8bba5-8540-438e-8510-1f51b8ebc749", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44971,7 +44971,7 @@ "type": "text/plain" }, "key": "file", - "value": "veniam voluptate aliqua do", + "value": "esse sit sed", "type": "text" } ] @@ -44990,7 +44990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80725609-a8be-493b-b26c-9bb103b6bde8", + "id": "b05cee32-6e42-4517-88e2-893e5a0a253a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45033,7 +45033,7 @@ "type": "text/plain" }, "key": "file", - "value": "veniam voluptate aliqua do", + "value": "esse sit sed", "type": "text" } ] @@ -45058,7 +45058,7 @@ } }, { - "id": "21a3b6f8-620c-4e25-af51-802f7ee385ec", + "id": "707725c2-b137-42c0-afd9-18bf24660f34", "name": "get Connector Correlation Config", "request": { "name": "get Connector Correlation Config", @@ -45100,7 +45100,7 @@ }, "response": [ { - "id": "91cb2fae-aec5-4d89-9539-b89b661e3dbf", + "id": "3045d273-2d48-4c3b-aed0-542a3255b38d", "name": "The connector's correlation config", "originalRequest": { "url": { @@ -45145,7 +45145,7 @@ "_postman_previewlanguage": "xml" }, { - "id": "8cece62f-5c06-4510-ae25-ff85c3b56db1", + "id": "dee716bd-c7b6-43d3-81b0-41ca4e7145a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45190,7 +45190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6684baa-4f4b-463b-af63-3cebb6f39286", + "id": "0cddb370-1ba3-4052-bb72-98b33853f339", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45235,7 +45235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1b7dff5-ea0f-4a7d-a0d3-f620bd724a8c", + "id": "156bcc51-e6ba-417b-b447-15c0cba16f11", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45280,7 +45280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82f95a3d-f7e9-435e-8530-20a9969f5ecb", + "id": "8fbb7a5c-b2fe-4593-9958-d1c68f9f7056", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -45325,7 +45325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01ab3155-99cd-4fe8-a008-6ca92773d5c7", + "id": "27de3286-a3ed-4787-a818-a271021197aa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45370,7 +45370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1982305e-9147-4207-acff-6e0e641877a4", + "id": "42df0b6e-9298-4ad5-8a9b-0f3df5fc89ab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45421,7 +45421,7 @@ } }, { - "id": "78d7b6df-338f-4095-b84d-d2dc5830a3f9", + "id": "fc1534a0-e546-409b-84cd-0f9d1f4664cd", "name": "put Correlation Config", "request": { "name": "put Correlation Config", @@ -45472,7 +45472,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolore", + "value": "aliqua proident in", "type": "text" } ] @@ -45480,7 +45480,7 @@ }, "response": [ { - "id": "83a07efa-a4d0-460b-88cb-7561a774596c", + "id": "152c9e6f-d8d9-46ee-84f9-3143414ffdb4", "name": "The connector's update detail", "originalRequest": { "url": { @@ -45523,7 +45523,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolore", + "value": "aliqua proident in", "type": "text" } ] @@ -45542,7 +45542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75964b12-6c14-45ec-b95d-84f9e5e7a362", + "id": "61f6776b-edba-4998-8746-770ccfa76b0c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45585,7 +45585,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolore", + "value": "aliqua proident in", "type": "text" } ] @@ -45604,7 +45604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08009ffc-a50a-42db-8bfb-00b6307d28fb", + "id": "7cfce8d3-e4ed-41fa-9e4f-2e4fb2d921bd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45647,7 +45647,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolore", + "value": "aliqua proident in", "type": "text" } ] @@ -45666,7 +45666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36c2c29b-fd37-4662-b0bc-98fb0cb68f6d", + "id": "ac8fc927-6b39-4c06-bc5f-9dc651c7ce81", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45709,7 +45709,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolore", + "value": "aliqua proident in", "type": "text" } ] @@ -45728,7 +45728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "169ecbec-c20a-426b-ac06-f6f63138f6ab", + "id": "9dc1dc98-489f-4a26-ae34-42729d3675d9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -45771,7 +45771,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolore", + "value": "aliqua proident in", "type": "text" } ] @@ -45790,7 +45790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b4c023b-4989-4baa-a4b1-1505ee1ad816", + "id": "b2eff286-db7a-44b5-8523-f270197f843e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45833,7 +45833,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolore", + "value": "aliqua proident in", "type": "text" } ] @@ -45852,7 +45852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6577763-5bf4-40d6-9769-da097c97efbe", + "id": "b8c0f4d1-5176-4e77-8ace-875cbcc36a7b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45895,7 +45895,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolore", + "value": "aliqua proident in", "type": "text" } ] @@ -45920,7 +45920,7 @@ } }, { - "id": "2074c4c1-b59d-4e68-83ec-5d62c79ec900", + "id": "856c80f2-580d-48d7-9b89-d1408b8ecbe9", "name": "Create custom connector", "request": { "name": "Create custom connector", @@ -45962,7 +45962,7 @@ }, "response": [ { - "id": "7efccc69-d38c-4750-bab3-3697441f7741", + "id": "f1f8daf9-e7bd-44a8-8127-dc392b7f331e", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -46018,7 +46018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3612c4fa-411f-4a58-8aef-f798049c6218", + "id": "87c7e40d-a0b6-4364-81b9-ddc4486ce361", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46074,7 +46074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3ce62cd-bfb2-46df-9f2e-dd8084e90111", + "id": "8667cae6-3810-4177-b78f-834e2fc7d714", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46130,7 +46130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "845b0861-d9d0-43f9-b34d-31af7a4d0ae3", + "id": "91b1c07b-e1b9-436e-b8d9-ed3b95a492ee", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46186,7 +46186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f661493-2cb9-45c6-afe1-97973061c7fb", + "id": "1e898ed2-0cf6-456a-a1af-64cb57c83454", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -46242,7 +46242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "195b648b-71ef-4455-a402-d54122f34887", + "id": "5f39b715-5114-4a48-b0e9-1a1289d211c5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46298,7 +46298,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b04cc017-1fae-44b4-bcb2-aa32e0898327", + "id": "01e138a7-25e1-4cb6-94b9-64396c5e532b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -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": "a6cb3a7b-6627-4010-a373-e524d3caf49c", + "id": "13ac5798-7506-4912-a9b0-00511a0619b5", "name": "Get security network configuration.", "request": { "name": "Get security network configuration.", @@ -46396,7 +46396,7 @@ }, "response": [ { - "id": "14f8308c-17bd-481f-9dcf-f258771cb17c", + "id": "2b238ccc-a87e-4e64-9287-5b5dfe1adf12", "name": "Network configuration for the tenant's auth org.", "originalRequest": { "url": { @@ -46440,7 +46440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "167c02ce-5a5f-4700-9c0f-4d52ab3ad2d3", + "id": "b8c62a60-f997-4ae3-af95-06393b11b8e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46484,7 +46484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "307c096b-cf2e-4517-804a-df8cb4941677", + "id": "f446534e-524c-4996-bdf2-f923d7e4ed89", "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": "db1aaf47-e226-4f9f-a8f0-d1c30e368e53", + "id": "5cc40ac6-a68c-4952-b522-5cdd5af3101b", "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": "9f91c280-4968-4716-b5c9-9d231b9f00b1", + "id": "5fc3746d-adb5-4c7e-87cb-a71d4fd22289", "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": "e4383739-d03b-4103-943a-8db56cc72f22", + "id": "23bda298-34fe-4bfe-bcbc-793f78b9447e", "name": "Too Many Requests - Returned in response to too many requests in 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": "284c74da-aa2d-49ba-aa51-9746c0e70aa8", + "id": "d8771b38-811f-4951-a03c-d25526994767", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46710,7 +46710,7 @@ } }, { - "id": "08d871d7-9dcc-43fa-973f-538d9ef8d3c0", + "id": "1300c9a0-53c5-46be-8e2c-3f50530e6ffd", "name": "Create security network configuration.", "request": { "name": "Create security network configuration.", @@ -46753,7 +46753,7 @@ }, "response": [ { - "id": "b3498c94-cec1-4817-92fc-04f919e52666", + "id": "ab476a16-c860-4baa-b5ea-27c0d7fd3593", "name": "Network configuration for the tenant.", "originalRequest": { "url": { @@ -46810,7 +46810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b1f6e83-4e89-4933-895a-cf776c425566", + "id": "bb6e5104-2e90-43cd-b8b2-01c15ab1e034", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46867,7 +46867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bc7241f-3793-4b0b-bad1-f270f4a1ea02", + "id": "a5315644-6a54-4a60-ac6b-6ac4b350447b", "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": "28399e30-bdb8-43bd-a7b6-3a3d87554758", + "id": "1b459d27-f836-4a2c-a6a4-d4f12dfcdbc6", "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": "8ca1116a-b1fa-4770-9200-4f801c87708b", + "id": "a0f212b2-4d62-4809-88af-804561a4d7bc", "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": "915590a9-9ef9-4960-a596-11624a0da025", + "id": "670147b3-f6f5-4bc3-8eab-c0724559550a", "name": "Too Many Requests - Returned in response to too many requests in 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": "a830b9a8-ae77-42e8-a57a-d544f8b3a9a1", + "id": "e9772909-2b19-4a69-956c-7fac4cf69bbb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47158,7 +47158,7 @@ } }, { - "id": "44df01c1-5ffa-49d5-9125-316add460947", + "id": "413c9d9d-3598-40b0-a75c-1f46b927a297", "name": "Update security network configuration.", "request": { "name": "Update security network configuration.", @@ -47201,7 +47201,7 @@ }, "response": [ { - "id": "63386a5d-cb15-4085-ac85-e8565f3ae7c4", + "id": "bef9c1ef-32a1-46ff-8498-4c2c14b37cf3", "name": "Updated Auth Org network configuration.", "originalRequest": { "url": { @@ -47258,7 +47258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8b421b0-1fb2-4a04-b92f-00b082e5fc47", + "id": "5ec77e4c-332d-45e9-8151-40d8d68eb746", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47315,7 +47315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e28393b7-546b-4ba9-8ca4-672e9b0af99b", + "id": "a6feec7d-4548-4ab1-a76e-e856da924119", "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": "774c6048-d4fe-42d8-ac0d-d311e25b0ff0", + "id": "4f5b8d3c-5956-4439-8918-ab3ca13fd08a", "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": "562a1f65-759f-4022-b4b7-390fe2df122c", + "id": "41739116-caf3-4d51-b9ed-cc0fc441348d", "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": "28d637dd-c999-4c56-859f-a4e5e7dbebc3", + "id": "10017e2b-1078-4c8d-a57d-1fed72d2b948", "name": "Too Many Requests - Returned in response to too many requests in 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": "fb30439f-688f-4cc7-82eb-8606dcc8a3e3", + "id": "1930a929-49e0-4aa3-9ab3-5a9cd43bfd08", "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": "127281a1-42b3-47c9-bbac-1fd80f4bf2ef", + "id": "bce639f5-6826-4019-a617-b7fc2568ec2a", "name": "Set Lifecycle State", "request": { "name": "Set Lifecycle State", @@ -47667,7 +47667,7 @@ }, "response": [ { - "id": "5e7e3eb2-198d-464e-9149-a08b6da06179", + "id": "c74e2622-407a-430c-a45c-a4b9188ac267", "name": "The request was successfully accepted into the system.", "originalRequest": { "url": { @@ -47725,7 +47725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd473020-6125-44af-9861-2a993f502624", + "id": "c3703d9c-4f27-4ff2-8336-2c0af6ba01c4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47783,7 +47783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bab99f29-40d0-4d17-90c0-33ca1ddeac86", + "id": "ca954638-08a4-4d6a-bd2c-a30da996ab45", "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": "bcbc07a2-837e-4afa-84aa-5329f770f163", + "id": "63371fc3-32cb-4f0c-96ce-48121fdf6ac4", "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": "7e0c74e3-1521-4e15-9d1a-a2b3c98a663d", + "id": "c526d170-865f-4c9c-9dd8-d87efb8bdd0a", "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": "9e7d9a73-3ce9-4bb5-9e38-56acf34115b7", + "id": "faad7cc0-571d-41c9-aba0-4049c22ff901", "name": "Too Many Requests - Returned in response to too many requests in 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": "d7383039-58ec-4206-9b4c-6b3d187832d9", + "id": "104d0cc5-7671-4c81-9059-102b38693a05", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48079,7 +48079,7 @@ } }, { - "id": "c4d0e72d-0b7f-4b56-a833-dae581a5e2e8", + "id": "d2dd0606-45b6-4788-8c29-b637e29f7fcd", "name": "Lists LifecycleStates", "request": { "name": "Lists LifecycleStates", @@ -48158,7 +48158,7 @@ }, "response": [ { - "id": "5262e4e5-7c67-4176-960b-226a3a70e63b", + "id": "fac2a198-3417-4786-a02b-6144bbae415d", "name": "List of LifecycleState objects", "originalRequest": { "url": { @@ -48240,7 +48240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0775799e-9853-4d3a-bc35-fec83cc53bc7", + "id": "aa39f2b4-30ef-4229-b70d-1159f1f40480", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48322,7 +48322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a45a1df-d30a-4d16-9572-737464b92bd3", + "id": "fbc57da5-1c65-48e4-82ab-b1bdac87ad03", "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": "3e8d1b85-a537-4490-b2d9-035fd46bae51", + "id": "3f072a29-ee3b-4307-aa6c-ca8a9c370a97", "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": "df141146-cce4-4cf6-81b9-e71c8764790e", + "id": "5e24a690-dbea-4a40-ab7a-119722aeea3c", "name": "Too Many Requests - Returned in response to too many requests in 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": "c7743ebc-0cbd-434f-aa91-d16f9cd3631f", + "id": "12b7f33e-a5b8-4a81-a24a-4cad6599c97a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48656,7 +48656,7 @@ } }, { - "id": "db172acb-479b-46a5-b07e-a53ddf1996be", + "id": "3629c069-cf04-4b0e-a265-0150388e62d4", "name": "Create Lifecycle State", "request": { "name": "Create Lifecycle State", @@ -48711,7 +48711,7 @@ }, "response": [ { - "id": "ea78d60c-9a8e-4cab-b333-4089ce7982ea", + "id": "cc56d701-3599-470f-8b4e-85b4929326b1", "name": "Created LifecycleState object.", "originalRequest": { "url": { @@ -48769,7 +48769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6de07906-c27f-4eb8-9da9-7990c4ebf2d2", + "id": "fe4c4157-ece9-41cc-a4a6-e856f39e6e2f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48827,7 +48827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94d5b1e6-e948-433c-beb6-916fb23d36d0", + "id": "5bde1a3e-e4b2-45a0-b714-422e09daca9d", "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": "9828c8c6-5f0d-416f-be78-471902d8626f", + "id": "0712ca74-082e-4b93-a196-c874413ee99d", "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": "d3989cd4-6a2c-4749-9b84-ba404766d6b6", + "id": "899232fd-13a6-4198-8ed6-8222225d6f23", "name": "Too Many Requests - Returned in response to too many requests in 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": "beff06fb-af70-4861-9ae4-ff63402c15dd", + "id": "8da0d2a6-dc53-4603-925a-4bff3daf17d2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49065,7 +49065,7 @@ } }, { - "id": "520d6ddf-dcdd-4e17-936e-f4715afd1341", + "id": "ab00177f-ce69-48f4-8215-d62c11519209", "name": "Retrieves Lifecycle State", "request": { "name": "Retrieves Lifecycle State", @@ -49118,7 +49118,7 @@ }, "response": [ { - "id": "5c5cc78e-2e47-4a93-b266-80d7f9330fc9", + "id": "c02e5a38-4012-453e-8f37-7045392da372", "name": "The requested LifecycleState was successfully retrieved.", "originalRequest": { "url": { @@ -49164,7 +49164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9734535f-e099-4e07-b229-faba1faf18d6", + "id": "d56abb95-c522-453b-a92b-0dd303647216", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49210,7 +49210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43bca309-796f-429f-bc74-99e2f837a9fd", + "id": "e8364619-95e8-4ede-a624-4a95684e8fd2", "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": "79bcce41-eea3-4ded-b6da-9a625dec2989", + "id": "82746481-ee94-4983-9e49-ffed42faee8b", "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": "630324d5-6d1d-42e0-9471-c82d2ddf8d8c", + "id": "366c4a1f-b82d-42d6-956b-29df6cdf3306", "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": "0184f5ef-d491-481c-828d-5bab3420afb3", + "id": "e8a48dae-9a1a-4eb9-9148-e272934ffc1c", "name": "Too Many Requests - Returned in response to too many requests in 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": "39435721-d5d3-4775-9ff6-e43e891d8360", + "id": "699c1f9c-2ce1-4e05-a43e-21627077178b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49446,7 +49446,7 @@ } }, { - "id": "192c9265-e33b-4c8b-ba95-af03a465d046", + "id": "49636791-498f-4511-899c-81bf1cc296a7", "name": "Update Lifecycle State", "request": { "name": "Update Lifecycle State", @@ -49512,7 +49512,7 @@ }, "response": [ { - "id": "3a07a0a4-82a8-467a-a856-12d071e9625c", + "id": "3379f2c8-8106-484d-87bc-55696dc740c4", "name": "The LifecycleState was successfully updated.", "originalRequest": { "url": { @@ -49571,7 +49571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c1ed345-82d8-41a2-b8a6-cf7daaab397b", + "id": "80cff59e-9315-4377-8567-8bdf2fc8bfb0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49630,7 +49630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65883371-afee-4fdc-a5b8-ec88ac9c03aa", + "id": "3ef04f48-fc58-4bb6-a8ba-2c9856f41a81", "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": "7e660ae8-cc40-44c0-a2ee-59da2221c4bf", + "id": "a4594305-05a4-4c28-8cf2-ca9ab99f0472", "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": "091b0536-06e9-42bb-a729-f35d48f0fbc4", + "id": "94275616-230c-449f-bc8e-e0ae7963997b", "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": "3adc1795-8242-4a42-877b-69eefdc59520", + "id": "d253cb17-3eba-4c7a-b192-5ecf23dfacf7", "name": "Too Many Requests - Returned in response to too many requests in 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": "29f0fc5b-ab62-495a-937f-da57d6544fda", + "id": "f747344b-1d8f-487e-9aec-11c8afd6b938", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49931,7 +49931,7 @@ } }, { - "id": "01cb8267-7051-4873-a2c8-6a67d0d660c6", + "id": "fe90519e-490d-4243-a21c-5ef101409257", "name": "Delete Lifecycle State by ID", "request": { "name": "Delete Lifecycle State by ID", @@ -49984,7 +49984,7 @@ }, "response": [ { - "id": "26b017ab-6da2-49c7-a79e-d847e12ece0f", + "id": "312a679f-3c33-4c47-9beb-afee7e749d21", "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\": \"in aute veniam Duis m\",\n \"name\": \"Contractor Lifecycle\"\n}", + "body": "{\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"in \",\n \"name\": \"Contractor Lifecycle\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "70213458-bcd2-4315-b713-b4566c836ad6", + "id": "840244f9-ff5c-470f-bb59-56777e96f6c0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50076,7 +50076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8578960d-ec28-4996-81cf-87b1f955ec78", + "id": "f8ce61ec-5554-49f5-bfd5-880ab3fe339a", "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": "17ab3d7b-5076-4c01-93fd-25eb06ec2f59", + "id": "453ee71c-4c6c-4895-ba66-4b63549059f8", "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": "aea84cf4-fb3e-4cbc-9121-11fd3a029c74", + "id": "6265ec1f-fa3f-4947-af1f-4850cca534ec", "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": "aea1ee7c-346d-47b7-a0bb-9319dc9e2e4f", + "id": "78478c57-e505-4733-9950-3fa8cc62fc1d", "name": "Too Many Requests - Returned in response to too many requests in 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": "ec7c2c66-5218-46b3-a49a-316b9c310ed8", + "id": "2cbbda8b-3691-41ca-83f7-6a58c5bae9f9", "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": "b29f8acc-ec56-4a96-be13-1ff497610277", + "id": "5d329beb-63e0-4415-9ff8-c1e73830612f", "name": "Identity Profiles List", "request": { "name": "Identity Profiles List", @@ -50393,7 +50393,7 @@ }, "response": [ { - "id": "6c7d11b9-4103-4894-bce1-612f0c41101d", + "id": "e4aeb7c2-6f67-4d4d-8d72-866305e67580", "name": "List of identityProfiles.", "originalRequest": { "url": { @@ -50482,7 +50482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54203d57-0be4-4c41-baf2-f54d12ed09e6", + "id": "6522b8f9-3936-4532-9ddf-981e9323a8fc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50571,7 +50571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92e0edc2-2a35-462c-827c-b39c342e7c02", + "id": "9d8273b2-1354-4991-a99b-a8440eb07081", "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": "226b722d-5e1c-409d-b773-f7468b7e179c", + "id": "9c608dbc-ed8b-4700-b4e7-3d99c8fbd402", "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": "a8504ba5-1c08-4a50-9117-16abbaf119c8", + "id": "5f1fa3d6-d64a-46bb-acf6-568d08b424b8", "name": "Too Many Requests - Returned in response to too many requests in 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": "b5e3f3c3-88f5-417d-8d00-5adbe2a9cf25", + "id": "93ad7506-7926-4004-a021-5a0c75436d9a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50933,7 +50933,7 @@ } }, { - "id": "36f48631-80c0-424f-a465-b1b827d3513f", + "id": "82a89086-3818-4bb2-b653-af4448cd1337", "name": "Delete Identity Profiles", "request": { "name": "Delete Identity Profiles", @@ -50976,7 +50976,7 @@ }, "response": [ { - "id": "adbec0fb-c729-4e22-9ffd-c9f7aff15c2a", + "id": "c5683c6b-1af6-4a18-9a49-d5a0b7ae4209", "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\": \"1974-10-20T21:01:53.721Z\",\n \"launched\": \"1995-03-13T10:24:52.410Z\",\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\": \"1967-11-30T07:10:37.660Z\",\n \"launched\": \"1975-11-27T12:51:13.896Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5503e77b-2251-42fd-9ea8-e47dfaf1ee72", + "id": "e4cf54b1-6a2e-40b2-b227-0194294c2930", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51090,7 +51090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19e42e21-059d-4db8-ba66-9f26d9068ae0", + "id": "017e8151-edd3-44b7-8873-4b8eb4cd47ec", "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": "a6d3e6ba-7a6a-4eb5-970e-9d29e88618ca", + "id": "e4a99dfb-4a08-4fa3-a79e-c58c286c3d11", "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": "85a85af4-2389-4bb2-86ea-8821f2b0b60c", + "id": "f220d3b6-1f83-4e4c-9f3e-e2a18589a48e", "name": "Too Many Requests - Returned in response to too many requests in 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": "f7d21601-a027-4012-9ba0-09449e5cfe3d", + "id": "8c3f1908-912a-4693-b689-5ff0c5eb72f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51324,7 +51324,7 @@ } }, { - "id": "7891509e-fc44-4928-a884-fb118e21c7b3", + "id": "85d121bc-35b5-4730-8235-2e83d97b9ad6", "name": "Export Identity Profiles", "request": { "name": "Export Identity Profiles", @@ -51400,7 +51400,7 @@ }, "response": [ { - "id": "3604223a-008a-429f-8c50-4337ee4bc243", + "id": "ff8676ab-8088-4752-b195-fda7356335ae", "name": "List of export objects with identity profiles.", "originalRequest": { "url": { @@ -51490,7 +51490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26a615da-a523-41f2-a7e8-7227fe9472d0", + "id": "a5a3ec7b-6894-4ed3-88c1-0ecb68809c4c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51580,7 +51580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fad8bdfe-bb1d-4fd9-90ca-55faa4276757", + "id": "515066df-59b9-4d12-81aa-dea170c53416", "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": "6ca52af9-64a0-4fdc-b42e-8b7a20b2776e", + "id": "96e09ea7-4c37-4f08-92ce-8e8a1886efdc", "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": "d2f014df-9e71-4c97-9971-32a7acdf07cd", + "id": "66e7f8c4-b836-4509-8fa8-e51c5b0bd183", "name": "Too Many Requests - Returned in response to too many requests in 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": "b2cb631a-94d3-4faf-9030-acd3117bb3de", + "id": "bf89be9d-527c-4652-9aa0-f756f6c2f9c3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51946,7 +51946,7 @@ } }, { - "id": "b9dd2d8e-0e1b-490c-9f18-4cade7090f74", + "id": "eb90c285-077e-4452-9e27-4026ac7a1929", "name": "Import Identity Profiles", "request": { "name": "Import Identity Profiles", @@ -51989,7 +51989,7 @@ }, "response": [ { - "id": "71a671bc-8885-4ee3-b605-2f571121fbd7", + "id": "cb6e9c32-25a1-4e30-81df-f9b4f2dd2d3d", "name": "The result of importing Identity Profiles.", "originalRequest": { "url": { @@ -52046,7 +52046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ce43821-1135-4431-ba9d-abdd7e6e52ee", + "id": "e0890c72-7286-4141-aedf-4e0507dfa930", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52103,7 +52103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86d4a863-93db-40e0-96ae-41b23fde9d8c", + "id": "d9fac2d3-f17f-4d83-9912-41331bf69371", "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": "b4d8c637-490c-46b4-8d30-21f0c2c8c19b", + "id": "6e7fee7f-3e9e-48fd-b61c-1d2603dc1285", "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": "8aa3073b-cf73-4ead-97ea-3f35d7071edd", + "id": "691ffb85-c757-4a12-838c-5c7ff6ff3447", "name": "Too Many Requests - Returned in response to too many requests in 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": "043afacc-c968-478a-876f-dd1dcbdc6960", + "id": "145e8ae7-25ce-48d6-ade2-c43752414bf6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52337,7 +52337,7 @@ } }, { - "id": "8778f9f7-6716-457b-94bb-7ff109254e56", + "id": "cdf6826c-ab35-4b2e-8a34-311fcc3fedc8", "name": "Get single Identity Profile", "request": { "name": "Get single Identity Profile", @@ -52378,7 +52378,7 @@ }, "response": [ { - "id": "be97c25c-afe5-45de-8588-e6877c65512f", + "id": "56b67125-600d-45c1-8bd6-a58deebac915", "name": "An Identity Profile object.", "originalRequest": { "url": { @@ -52422,7 +52422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37d4bc1f-4f0f-47de-87e9-12287a1a01d2", + "id": "ba3f69c5-1017-484a-a33a-ce0e2773c3ab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52466,7 +52466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "537fa5d5-ccee-4bda-a390-0a38fcecc3a1", + "id": "efce3a80-9d47-4c7a-aedc-4da283da660c", "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": "cbf118cb-e797-4ffc-a657-da9e48acdd4b", + "id": "21857cf2-97ee-4fae-92bf-0ef6819b7181", "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": "b96004b5-ad9f-47a6-899f-a5ef019aa554", + "id": "5cec87b8-716c-40a9-b4c3-7e5505ebee58", "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": "12f0f181-ee6f-49c4-b816-99e2403ca7d6", + "id": "12c93d13-d2c9-4218-8117-3f64df21942a", "name": "Too Many Requests - Returned in response to too many requests in 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": "2608be67-8b9a-422c-8fe4-65e8f7ee8ae3", + "id": "88ea67f7-6159-47ca-8cdb-da566516118d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52692,7 +52692,7 @@ } }, { - "id": "ccc9c15f-2765-4465-80cf-db714da494be", + "id": "e4318826-9984-47d1-94b7-4ad949972b85", "name": "Delete an Identity Profile", "request": { "name": "Delete an Identity Profile", @@ -52733,7 +52733,7 @@ }, "response": [ { - "id": "db05aaca-5d66-4529-8239-c5bb5eb2d597", + "id": "90dd81cb-22e6-4dd7-98cd-6fb75ca1ff3a", "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\": \"2001-07-16T14:06:25.829Z\",\n \"launched\": \"1994-06-28T13:19:44.571Z\",\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\": \"1984-02-14T01:08:09.940Z\",\n \"launched\": \"1960-12-06T03:43:10.059Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "12586df1-c673-461f-89dc-2acb0c86db5e", + "id": "54c531f3-4a94-4497-a174-1462a76a21e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52821,7 +52821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21ead1b0-8882-441a-a735-9107453459eb", + "id": "a40c3c6a-6ab4-4861-96e5-f33f372cc26e", "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": "2ba3f173-a71c-4122-a9b0-f4dc2861c649", + "id": "f7afdc27-2f6d-4f13-ad6e-5f13d888ad15", "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": "65b95bfe-bba3-4f81-a994-55b41e57093e", + "id": "b515c2ec-8ed5-48cc-8756-d4f4f6105776", "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": "78117a99-a25f-4ece-8a71-6884cfdb671b", + "id": "d495d300-5c0c-4b1d-8730-4d405133b826", "name": "Too Many Requests - Returned in response to too many requests in 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": "a5740b28-f7bc-40a9-86ab-4cd0f83f8191", + "id": "6ec6ea5a-343b-4765-9b27-97bd6c2f59f2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53047,7 +53047,7 @@ } }, { - "id": "1228440a-bb30-4c47-91b2-128a847f00e0", + "id": "73415f01-3177-46e2-8155-1418bbc95662", "name": "Get default Identity Attribute Config", "request": { "name": "Get default Identity Attribute Config", @@ -53089,7 +53089,7 @@ }, "response": [ { - "id": "34bd62f5-cc5d-4a53-b9fc-44ec7cd87fbd", + "id": "88f176c1-4e55-44ef-88dc-31b157f27c2c", "name": "An Identity Attribute Config object.", "originalRequest": { "url": { @@ -53134,7 +53134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b013f824-4d5b-4d6c-b5bf-fb628ef3f240", + "id": "4c96820d-d8c3-4c18-9d8e-4eb41cf8f01e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53179,7 +53179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff38eb17-3a95-4220-9567-cfcef3915ef2", + "id": "0ff88953-8cbd-40b1-a3e8-a13add25efe9", "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": "2f1bdc2e-39bd-451f-98e8-11fb8a9f4ed3", + "id": "3b6ec428-9fc0-47e8-a3bf-523f9f6b8359", "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": "b5f36c36-7ff3-42a7-a480-5734a6c1b4b1", + "id": "621c5ddc-d297-4e5d-997a-2cd5c5a8af30", "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": "48fa66f9-ba7d-410d-b000-5c84707783cc", + "id": "6a4c9169-7520-4355-81fb-73b6f5b3c351", "name": "Too Many Requests - Returned in response to too many requests in 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": "4a211c45-f083-45cf-9f9f-bb6fe66afb49", + "id": "dd3fb2f4-bb24-464e-8362-d82cccc4d997", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53410,7 +53410,7 @@ } }, { - "id": "dedf2db5-e347-424b-914d-c8cbb856448f", + "id": "f5ce7db7-3d17-4c58-bfca-cf607c23bcc4", "name": "Process identities under profile", "request": { "name": "Process identities under profile", @@ -53452,7 +53452,7 @@ }, "response": [ { - "id": "7b8566ed-999a-49a4-aabe-116af4385128", + "id": "5e4248d3-4a82-4f01-b14c-f4d11d501940", "name": "Accepted status after refresh has launched", "originalRequest": { "url": { @@ -53497,7 +53497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "258b8d24-2b2b-4428-8820-ad69c94e5297", + "id": "47ee8a17-f6a3-4d71-92e2-3fd3ec0bc6ee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53542,7 +53542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "152a1550-fe72-4bb6-bfba-248b61378843", + "id": "356a1b87-3523-485e-96e0-47300565c396", "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": "b767968e-337f-4a5e-8753-768ab5cb4a58", + "id": "13ff959c-1b92-425e-b997-8e2510cbcb03", "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": "0dbfe86a-1f60-4a8a-add3-b968e8636392", + "id": "4003f1b8-6941-4723-935f-c015d7a45e96", "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": "4da860d3-f8b3-4cba-8e4c-9c7ed22321a8", + "id": "54bf7df5-9caf-4cbf-a2b8-d133bd0042d8", "name": "Too Many Requests - Returned in response to too many requests in 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": "89eb56d4-efa4-4e5a-81bf-c0d5a06f2eaa", + "id": "a07176d0-3209-4da9-9695-724af3b9e447", "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": "9f3a08fe-5844-4ede-a55d-a7c603c709d5", + "id": "b89e82f2-fc43-446a-b588-44fb9ce48253", "name": "Create Non-Employee Record", "request": { "name": "Create Non-Employee Record", @@ -53821,7 +53821,7 @@ }, "response": [ { - "id": "3aaee1bb-e84f-42dd-a2ea-470e687368f0", + "id": "28e76547-ba4e-45d2-aa02-a37163e99425", "name": "Created non-employee record.", "originalRequest": { "url": { @@ -53877,7 +53877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec6cf76f-3666-4fc3-bb44-d74cb86463c4", + "id": "1e6226d5-4d7f-4ae5-8a6b-1ebf21dbcda0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53933,7 +53933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "913691a8-6979-41d2-b615-2d07a6776450", + "id": "cc3f9aa3-21e7-4757-b885-f1d63b9bf1a9", "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": "7d5927d3-9746-4365-a257-0857e9ae49bc", + "id": "1231c9cd-c9a1-44e6-b4f8-9c40698d4915", "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": "17277789-3e25-4c57-8d3d-dbc80b5e8668", + "id": "cd4569f6-c64d-4990-b701-f1ef3c6fce6d", "name": "Too Many Requests - Returned in response to too many requests in 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": "25b3d5e7-acc3-4910-b530-3d8e0a83404a", + "id": "27e819e4-a0da-42be-9c69-2b636beb3c2f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54163,7 +54163,7 @@ } }, { - "id": "ebe9d972-62e2-4cb5-91ac-1deee545a86b", + "id": "dea9fb65-f906-4694-bff0-602965b511b0", "name": "List Non-Employee Records", "request": { "name": "List Non-Employee Records", @@ -54238,7 +54238,7 @@ }, "response": [ { - "id": "f71e7264-705d-4515-af43-99c3b28cc0c7", + "id": "8f527d50-0afa-48ab-bd11-678622d8e1c1", "name": "Non-Employee record objects", "originalRequest": { "url": { @@ -54327,7 +54327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7b8b0ed-8c7c-45db-b9b5-8cc3f6fb80ca", + "id": "17022be7-b16c-41fb-8c61-1074d1594fbf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54416,7 +54416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "665793e4-e98a-4681-9e7d-b2806fb260b4", + "id": "e3f89f46-3e31-4803-a7b6-68215ec12d97", "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": "ca5bf70d-3d9d-4c5a-ab96-f59cb01192a2", + "id": "a36940f3-9382-4654-a112-cd57854108e7", "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": "2049a05c-092c-4a66-b015-d684e7af9d08", + "id": "403b4e32-58dd-427a-9487-a193c05dd855", "name": "Too Many Requests - Returned in response to too many requests in 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": "0d31d585-c7de-4b73-8524-4eefcc123c71", + "id": "641b1505-07db-4c5f-bc23-0737abc1ef09", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54778,7 +54778,7 @@ } }, { - "id": "2db232ff-b4e8-4ebe-ac2c-ac49d1dca40e", + "id": "585d4685-6e9a-4e5e-919c-5496a19f8eb5", "name": "Get a Non-Employee Record", "request": { "name": "Get a Non-Employee Record", @@ -54819,7 +54819,7 @@ }, "response": [ { - "id": "e7ead832-1f0e-4d0f-b77a-f7e6ad93759a", + "id": "c282d7fa-34e8-496a-9909-5efabc7718a6", "name": "Non-Employee record object", "originalRequest": { "url": { @@ -54863,7 +54863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53743a64-9c04-4c4d-ae51-7c283717d531", + "id": "a2fd11b2-e11f-42c0-b82b-a6431c4f55a1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54907,7 +54907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af596ed4-19fc-4e82-8900-e258f1e0d8e6", + "id": "2b2ead33-d8ce-42d1-896e-a1e1ddeb8e7f", "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": "ba6977e6-67f2-4e5c-84a4-d7cf1eeb3e70", + "id": "5e59b95c-bdef-4720-a52b-4ab0ba0b6387", "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": "c9638f36-57c8-49b5-8375-d56ace8c14c4", + "id": "bcda4772-25ba-4f60-b1fa-cc149dd1966f", "name": "Too Many Requests - Returned in response to too many requests in 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": "29b7fcda-233e-4984-a64e-6cf793d62be4", + "id": "10b5520b-805f-4db2-b88e-e8ffcacfeae7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55089,7 +55089,7 @@ } }, { - "id": "4914049d-9518-4c47-9c74-a592e6173628", + "id": "cf6fc63e-da5e-47d4-8478-1b25f86ff652", "name": "Update Non-Employee Record", "request": { "name": "Update Non-Employee Record", @@ -55143,7 +55143,7 @@ }, "response": [ { - "id": "b5cd4560-61ad-4219-8258-e4d7b7147ba4", + "id": "1b23925a-06f5-4033-bb28-7c00362bae5c", "name": "An updated non-employee record.", "originalRequest": { "url": { @@ -55200,7 +55200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9668ff81-a7ea-4a49-89f5-17af496047b6", + "id": "8663c28d-e3d7-4ce8-a43e-611eb3e61054", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55257,7 +55257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca2cccd9-0428-41ba-9f38-5a2e0e7a10a4", + "id": "d0f2c4b1-cfae-4d91-8d48-6fb72f13cd3a", "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": "3be7db25-d388-4ccf-872c-d13c77fedc77", + "id": "dd3eec04-5711-43f8-b61b-97bba3a570be", "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": "97630ada-d14b-4dc4-89fe-fb8e6f274868", + "id": "c452e1df-099c-4dde-9802-9b74d0099055", "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": "015780de-f47c-4183-bdcb-932f0f62a20c", + "id": "5643f1a8-2327-45e7-93e3-010f8e4001a5", "name": "Too Many Requests - Returned in response to too many requests in 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": "32f2255d-91a4-4804-a286-0f63da32f077", + "id": "b4039a08-0f8a-4edc-9731-2bcef7d67c63", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55548,7 +55548,7 @@ } }, { - "id": "307630aa-22cb-44c3-a83f-e5c60a3451f9", + "id": "0f51fe75-0ccb-44d7-b67c-6d21998c0892", "name": "Patch Non-Employee Record", "request": { "name": "Patch Non-Employee Record", @@ -55602,7 +55602,7 @@ }, "response": [ { - "id": "21e06b8f-2cde-4f1f-a0b3-4506be9ca0a5", + "id": "b3ec19a9-531c-4946-a321-7cebfef59f38", "name": "A patched non-employee record.", "originalRequest": { "url": { @@ -55659,7 +55659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46e8f608-edbf-4721-9a99-c4726db14946", + "id": "f80e5e5a-e5e6-4ef8-8e1c-f101a75e3bda", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55716,7 +55716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4843ecb5-7160-44f4-9431-e23e6dd5866e", + "id": "51889d6c-ac77-44c5-8fa5-bc03d0ff051d", "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": "627cf7c8-e2bf-48f4-8cd0-4f720fe534fb", + "id": "22bd3d0f-b669-48e3-a6ad-b5a2b3665e89", "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": "7b1be8e5-cc99-44ef-b9c8-2724bde2a92e", + "id": "45c34e9e-21f8-443e-9bd0-98fb0d0b6a9b", "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": "257693da-d0ef-4ba4-87a6-73f855582a4f", + "id": "4c543450-2d4c-4d76-b033-b7e5856a5550", "name": "Too Many Requests - Returned in response to too many requests in 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": "af9a013c-6cd1-4e82-8035-dddc78d5978e", + "id": "140f067f-6caf-4185-a8d8-3f5643712c77", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56007,7 +56007,7 @@ } }, { - "id": "dc49f0f9-8b79-4872-b76d-ab4cf00080ab", + "id": "930852ba-dc5a-4863-ad65-a286e4e8c79a", "name": "Delete Non-Employee Record", "request": { "name": "Delete Non-Employee Record", @@ -56048,7 +56048,7 @@ }, "response": [ { - "id": "e9279fd9-c3c0-4dcb-b7bd-aef2c5a05275", + "id": "2b7a7be7-c44f-4e9d-b9b0-36eca6bfc7d6", "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": "c3bc2592-2fd5-46f0-ab23-5a9ecf42d29d", + "id": "10646c50-bad9-40be-b252-40cea3c06cd3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56126,7 +56126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ecd8616-0589-4495-8ff8-bfe262ba6c0f", + "id": "29bfe421-971e-4a00-b4c2-95d07f1a8694", "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": "9cc59bc8-ca9e-45bc-912c-b414a6ab5e2e", + "id": "f4f72c03-6f1c-4904-b486-750e2fb62244", "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": "78cd51cd-10f3-44b6-b7cf-233e39af7040", + "id": "96137283-6a3d-4706-b971-4c4e7054ca70", "name": "Too Many Requests - Returned in response to too many requests in 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": "d1532f15-ca8d-4ccb-b83b-356b196daaa7", + "id": "4a32bf8f-66b3-459a-a271-f9ddc802c849", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56308,7 +56308,7 @@ } }, { - "id": "087d1e97-9cd9-4f57-969c-f5b0b001c843", + "id": "2f147e8d-a5bd-4acc-a92d-fda0db408ae1", "name": "Delete Multiple Non-Employee Records", "request": { "name": "Delete Multiple Non-Employee Records", @@ -56351,7 +56351,7 @@ }, "response": [ { - "id": "26d5a51f-6bb9-4331-aa91-1e15f9ea1255", + "id": "c73c56b9-bf35-45bd-be4f-03a2174b8bce", "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": "9cb9879d-67fc-4dc4-a56f-a1bc1595258e", + "id": "7251963d-9dba-4d0c-9d29-eaa0275875ca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56455,7 +56455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a5c8d6c-760a-4e1b-ab4b-935501052e04", + "id": "2f62177d-bc11-4a4e-8e7c-fb1ebe66c4d1", "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": "dc8993cf-690b-457c-bd9d-0894b008b5a8", + "id": "ab6a218a-c80f-4faf-9234-c02f19f2ea37", "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": "6b797e87-b28f-4e98-add8-ff23ef0629c5", + "id": "324fbf11-b875-4c5d-8d80-e5fb064e3bc6", "name": "Too Many Requests - Returned in response to too many requests in 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": "42b68a32-0a5b-4198-a6ed-03d62d7942df", + "id": "60bdbf90-0439-4ae4-9e78-0e4232b1fd30", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56689,7 +56689,7 @@ } }, { - "id": "dc26aea8-bddc-47e2-b061-05ac0ce1227e", + "id": "8dcd296b-7ceb-447c-9a5d-469fadab6e50", "name": "Create Non-Employee Request", "request": { "name": "Create Non-Employee Request", @@ -56731,7 +56731,7 @@ }, "response": [ { - "id": "4eb3fb49-3252-4581-b2d0-e9dae56aa735", + "id": "75968b1a-fa06-4f67-9769-cc6d0a517ccf", "name": "Non-Employee request creation object", "originalRequest": { "url": { @@ -56787,7 +56787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6cdffcf-6005-4ca9-b0ad-7d3b7eb8c2ba", + "id": "17a3a978-778f-4527-b083-5c7e73fe3ab8", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -56843,7 +56843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1564f75c-6138-4693-8e88-7608081b133c", + "id": "913211ac-153b-4edf-99b0-d384007e5bb6", "name": "400.1.409 Reference conflict", "originalRequest": { "url": { @@ -56899,7 +56899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4833a2ca-1a7a-4c96-98d6-e455ba550214", + "id": "b993e22a-821d-4120-9b83-96c6c132989b", "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": "00db35c0-e1a0-48df-91c1-4f53868e6e48", + "id": "febb9e8a-8a7a-4d5b-b544-503d2b9e1443", "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": "45f88f94-c23d-4080-bafc-319151d3d60a", + "id": "49410eb3-8524-4d56-aaa2-1cf92fe18b18", "name": "Too Many Requests - Returned in response to too many requests in 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": "2ae8f1ad-c6ee-4de5-a83b-17f39a6ce616", + "id": "3548536f-6f08-4e29-bef5-477546ce4e87", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57129,7 +57129,7 @@ } }, { - "id": "3daf1b50-6efc-4e31-8757-356ffec1e335", + "id": "298b6c58-862a-468a-8559-95d6a7dd5fe8", "name": "List Non-Employee Requests", "request": { "name": "List Non-Employee Requests", @@ -57213,7 +57213,7 @@ }, "response": [ { - "id": "2e97697d-0f8e-40d7-b7e2-003a5a4d7ea1", + "id": "dac90425-2984-42ce-852a-c2c3d283515c", "name": "List of non-employee request objects.", "originalRequest": { "url": { @@ -57311,7 +57311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e36b24b-072a-4890-8e4c-9d279936399f", + "id": "18b07c7b-d1ac-47c9-8b1e-863efd5fdbf0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57409,7 +57409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62e62525-f012-47d7-b17a-24c167fad828", + "id": "2094e75d-79eb-4a3f-b225-4773969e9c04", "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": "0c8db408-fd83-4f5d-b3d0-87518eefe127", + "id": "8c8bd1db-e9ad-44fd-948c-a41c23ae3113", "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": "7b2953c0-29ab-4cc5-9d4f-40d76cd83e3f", + "id": "ad3b546f-a1ea-407e-9fca-5ea5d39ae93e", "name": "Too Many Requests - Returned in response to too many requests in 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": "016158e7-57e4-4336-bb9e-5b7cfe76c7ce", + "id": "d8e84b39-c0ef-423a-a55b-cbc442d8d2ea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57807,7 +57807,7 @@ } }, { - "id": "de887fe6-5372-4dcf-a0fb-b22da7fa1f5c", + "id": "f5be0451-9d91-4a3c-b866-034fb8920e8e", "name": "Get a Non-Employee Request", "request": { "name": "Get a Non-Employee Request", @@ -57848,7 +57848,7 @@ }, "response": [ { - "id": "99feb599-1b39-4bb9-b0b1-a620a81aa246", + "id": "4f2da23a-9e4e-4068-a18e-45adf0183190", "name": "Non-Employee request object.", "originalRequest": { "url": { @@ -57892,7 +57892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1125b6a-70ed-43c5-8515-1728d30b5a89", + "id": "6cb93182-dafb-4295-9561-880ec7332b90", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57936,7 +57936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f73c037-6608-4e4e-8e5a-32cff476ce8f", + "id": "2f6f2c34-23ca-4907-8029-d134fe05a65d", "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": "9ec2ed9c-e55d-41a1-bbfb-825f184af3b6", + "id": "7c1ea519-f59a-4161-9fe0-63c860dadee7", "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": "28c2e772-521a-467a-8bcd-7fdac161ecb2", + "id": "7e278fcd-9f39-4229-84db-c5b7c79530fe", "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": "b768b141-00d8-4f4d-9083-fa714175f867", + "id": "af63c24e-ff1a-4229-ba36-d672cbb01359", "name": "Too Many Requests - Returned in response to too many requests in 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": "4866b185-1e22-40e4-87b1-9f478b748c9d", + "id": "f2763bcd-f4c1-4ad7-bc71-0644f22c3bd4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58162,7 +58162,7 @@ } }, { - "id": "bb51eec7-2a23-4b25-8c93-56099d7313a9", + "id": "a84de434-14ce-4d19-aa28-1991ccdb7309", "name": "Delete Non-Employee Request", "request": { "name": "Delete Non-Employee Request", @@ -58203,7 +58203,7 @@ }, "response": [ { - "id": "3c82e266-2c23-4b8e-a4c3-61fc4343cedd", + "id": "4f6d7835-b529-4c3d-b1ef-62dbcd916359", "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": "f31e44ee-d563-493a-80d4-d269fe11dd02", + "id": "fa6c4f3b-c7c8-4e86-b117-4ad882fd1bec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58281,7 +58281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c5e8054-c285-4bd8-b3cd-6fd54e52297f", + "id": "539fd673-391a-49c8-a3b5-fd0bcd747b55", "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": "6e4e0904-cfc1-4176-9145-d7a4753ece94", + "id": "022525e1-8759-42ac-a50a-6603ff4f7702", "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": "529e048a-7e6a-498b-b105-26d437572a92", + "id": "9ccddf9e-c130-42e6-969d-b44f041484df", "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": "b9afccaa-f0c8-49f2-9bc4-b2ace268e5bc", + "id": "5f9663db-6a24-4464-9f7b-0afc998539ab", "name": "Too Many Requests - Returned in response to too many requests in 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": "e646194a-1430-48d5-9b78-fa2a7db6436a", + "id": "c9d5282e-53ab-4eed-8f2e-f3e72135573b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58507,7 +58507,7 @@ } }, { - "id": "66540a2b-e13b-4f95-9b2d-fe47bfb19366", + "id": "702dc1f9-0603-4930-8245-b3bd966142fa", "name": "Get Summary of Non-Employee Requests", "request": { "name": "Get Summary of Non-Employee Requests", @@ -58549,7 +58549,7 @@ }, "response": [ { - "id": "fce52679-f508-4bc5-b9c5-9c4c5bdbcc78", + "id": "5c94fe94-5ded-4afb-8601-6b445bfb0a46", "name": "Non-Employee request summary object.", "originalRequest": { "url": { @@ -58594,7 +58594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c564689e-6e89-4e38-94c7-f63ca55a65f8", + "id": "d9872594-e244-414c-9c76-9f050ec69576", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58639,7 +58639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bda6a0b-c9d9-4acb-9cea-29a99f9d9691", + "id": "0ed9e69a-ec4b-4f9c-94c7-25b6c361c06b", "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": "f12b11f6-b973-48d4-972f-81a6662253bb", + "id": "82f1e776-17a8-4d4d-87e2-3c80cf466972", "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": "c26d765e-def2-456f-8db4-41ef6e539d58", + "id": "4456c836-7866-4962-a367-481972d3c0d7", "name": "Too Many Requests - Returned in response to too many requests in 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": "b9af608d-6494-4043-ba28-be40ee30cdad", + "id": "b1e14501-3b98-4c4c-b529-ea7765db75c1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58825,7 +58825,7 @@ } }, { - "id": "486f4ecc-9cd2-49ca-aaab-f53a61c8ca99", + "id": "3b6b9858-0644-4246-b3bd-c582a3613e46", "name": "Create Non-Employee Source", "request": { "name": "Create Non-Employee Source", @@ -58867,7 +58867,7 @@ }, "response": [ { - "id": "98dd1513-24d1-4ff5-94d4-b6c960a0ad82", + "id": "3853dd23-5373-46de-b6f6-69eee5a9d724", "name": "Created non-employee source.", "originalRequest": { "url": { @@ -58923,7 +58923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66888d47-b4f4-4d65-856c-7758176b9aae", + "id": "c6c7b156-4c45-42c5-9151-03f7e1c9bd7c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58979,7 +58979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a618bf3-e02a-4cf3-8409-76c2d3b37ec1", + "id": "22a074ea-abdf-4d7a-8017-ab66ee7123b3", "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": "7121b050-1198-47e4-a55f-aa2eafa0fd9b", + "id": "ab4ae7d4-79e3-4718-afed-d2d7e9e51eb7", "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": "a9a7856a-d7f7-4717-bdc5-49219332b458", + "id": "17ea9df1-b8b7-48cc-ba2e-c5a1d86ffdfd", "name": "Too Many Requests - Returned in response to too many requests in 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": "269bab4c-794d-4506-a773-1d82760e3e25", + "id": "b8fbeabc-2363-45f8-a39c-9661abed64e5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59209,7 +59209,7 @@ } }, { - "id": "2d509b9a-956c-4529-b91e-fc2c1cdacb4a", + "id": "cfcf26a2-9fe9-4f34-9664-fe7f51f4a925", "name": "List Non-Employee Sources", "request": { "name": "List Non-Employee Sources", @@ -59293,7 +59293,7 @@ }, "response": [ { - "id": "14cc348b-3a4d-4905-8276-d029ea51bdb2", + "id": "c80ce7fd-095b-43ba-ab7f-579e9d91c062", "name": "List of non-employee sources objects.", "originalRequest": { "url": { @@ -59391,7 +59391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bcf85be-7dc6-49e7-9e90-4ec08f0225c8", + "id": "c74065a4-01ba-4aaf-8cde-5342de5f7cfa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59489,7 +59489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fabf563-0e3f-49bb-a3dc-80ca93c9255f", + "id": "60409094-eac4-4268-a17d-67d0c79fd385", "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": "a599d022-4dd2-41f5-8cca-455f8dd0a9c2", + "id": "10ef62be-3945-4ada-8a83-418c41efab7b", "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": "88f26262-63c0-4717-8dfa-9d0a9a9b56b1", + "id": "76c093f8-8103-4802-b167-c412f3fde287", "name": "Too Many Requests - Returned in response to too many requests in 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": "541883d1-4d00-47a1-9b94-b2cd20b2dd07", + "id": "e0d08d96-6927-4752-8ced-1bd29a66d6d5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59887,7 +59887,7 @@ } }, { - "id": "30d2fa04-bd9b-436e-a4e8-dbfe38b80d85", + "id": "d293fce6-4ed8-4987-9af1-632d34f96868", "name": "Get a Non-Employee Source", "request": { "name": "Get a Non-Employee Source", @@ -59928,7 +59928,7 @@ }, "response": [ { - "id": "c84c388f-9a0b-4937-b9d4-da385c61794d", + "id": "8b957eb9-773e-4444-9ca7-008bb8294720", "name": "Non-Employee source object.", "originalRequest": { "url": { @@ -59972,7 +59972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f858899-7f61-4436-95d5-48ef4921f52f", + "id": "16a7d75f-def1-4423-93b4-b131a3a74a43", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60016,7 +60016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0e28b06-73a5-4c00-84f4-3d553d6465a2", + "id": "1651ff68-b177-4395-9dc9-32734d417dba", "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": "d3c7c039-34d6-4646-8e7e-3150b23ff523", + "id": "6a972332-c4a2-48bf-841b-b6add9ce730f", "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": "83e9d547-7aea-49ce-b353-07e2a5b5e81a", + "id": "418f5908-295e-418c-bb6c-3d81b3ba23eb", "name": "Too Many Requests - Returned in response to too many requests in 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": "41de1e69-53b3-47fc-9f7a-04328fae517f", + "id": "42ae3152-4142-45b4-82db-68175e8a31ae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60198,7 +60198,7 @@ } }, { - "id": "c833bd59-65c3-475c-a4e1-ad0640a2f7df", + "id": "9ea69d38-e1be-4c0b-80ec-f493faf19670", "name": "Patch a Non-Employee Source", "request": { "name": "Patch a Non-Employee Source", @@ -60252,7 +60252,7 @@ }, "response": [ { - "id": "56745281-79e0-4843-ab9a-2f94fed66a2e", + "id": "7cba0b61-1fc3-4b30-ae36-7aece6243c9b", "name": "A patched non-employee source object.", "originalRequest": { "url": { @@ -60309,7 +60309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a322b7f7-f8c6-4e02-91c9-bca4ba0240dd", + "id": "852833ec-1d87-4d1d-aeb6-b25925f5aada", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60366,7 +60366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40f4a256-fddc-47c2-8a01-e93f483d9a6f", + "id": "cb479aa2-1f07-4789-8ef1-2291bd68cc41", "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": "8fcaac3b-f038-48b8-bb26-8e4a05699958", + "id": "091e59b1-5fe2-4be5-b2b1-4a8b6f75883d", "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": "5b676dce-76aa-461f-b33a-3a90f44e010c", + "id": "43498c35-4344-433a-8288-58bc4a70c708", "name": "Too Many Requests - Returned in response to too many requests in 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": "f4c7f05b-5960-452a-94f2-61163e16c67c", + "id": "ad1daad7-afe7-4e75-b58f-91590176d217", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60600,7 +60600,7 @@ } }, { - "id": "6b7aa8e7-9ef2-4540-ac2a-09fa078de56f", + "id": "1415bf84-f645-4a30-bdb0-30db98b348f0", "name": "Delete Non-Employee Source", "request": { "name": "Delete Non-Employee Source", @@ -60641,7 +60641,7 @@ }, "response": [ { - "id": "88993a36-a84a-42d5-80bd-85f0b61b5a10", + "id": "c6062bbc-a390-4ecf-bc05-213511ad0aa5", "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": "39debbd9-f10a-41eb-b9a5-cd71046fd842", + "id": "27d7e5c1-81c7-4319-b113-f6c92eab2a08", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60719,7 +60719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94ab964b-75a3-4958-a849-fdbad732fce3", + "id": "e0ff29a2-b796-4402-96bc-e91055854e77", "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": "84734b47-8c11-49f6-ae65-b6f1e306ee12", + "id": "282937c9-b43a-4c19-944b-b0d0a73e0524", "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": "d8717f79-8b13-4c3d-a5da-2f7875bab345", + "id": "603004b4-45e8-4f36-b53f-9503e92c7235", "name": "Too Many Requests - Returned in response to too many requests in 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": "6f50bd38-b59d-48b7-aa66-56ae988d3ea3", + "id": "8e104c48-7823-43dd-b63c-236a5f5c187c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60901,7 +60901,7 @@ } }, { - "id": "a7473008-b1a2-4f37-86a8-2b7f4e0ae23e", + "id": "046ab4b2-c08d-49ab-b91f-e5166c5098f9", "name": "Exports Non-Employee Records to CSV", "request": { "name": "Exports Non-Employee Records to CSV", @@ -60944,7 +60944,7 @@ }, "response": [ { - "id": "d3d02152-6aeb-48ba-834b-e7da7cef9cb4", + "id": "f36bebf6-1c4d-4739-9342-8df8427acd50", "name": "Exported CSV", "originalRequest": { "url": { @@ -60990,7 +60990,7 @@ "_postman_previewlanguage": "text" }, { - "id": "39e4fd46-f1e8-46aa-afd6-6890d618b874", + "id": "26a86817-8538-48f1-a6c2-343e1a61dda2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61036,7 +61036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0350770-484c-413f-b663-6040e19c7c40", + "id": "51183ddb-4674-4df7-9c73-20698a214c47", "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": "dec4a4ce-56b5-4b3f-b335-40f856b115e6", + "id": "792a75ff-fe88-47d9-923f-712f458c3876", "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": "fb5ebdf1-168b-4692-ab7f-a6a083770a23", + "id": "197310d0-81f1-4dbc-b04a-1fa4fd617983", "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": "88ce9019-d38a-47f1-a9f3-ba8d026c9d11", + "id": "77ae57f0-7df1-4466-bf40-09aa28cd9af5", "name": "Too Many Requests - Returned in response to too many requests in 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": "9dc0d8c2-2473-44ef-a97f-204f7b5d29b7", + "id": "e4ef4ccd-85e2-4e23-ac43-30aa978d2d68", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61272,7 +61272,7 @@ } }, { - "id": "7741a10c-c6d7-40ce-b597-1e37a028c798", + "id": "d3acbe71-933f-41cc-872d-948e213e6780", "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": "qui magna", + "value": "nisi adipisicing exercitation Ut ullamco", "type": "text" } ] @@ -61331,7 +61331,7 @@ }, "response": [ { - "id": "fc21b0f1-f22b-4645-af01-0b48a3d79fc1", + "id": "0b2358c2-ec00-458f-b4b0-33caddca7248", "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": "qui magna", + "value": "nisi adipisicing exercitation Ut ullamco", "type": "text" } ] @@ -61393,7 +61393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae189e4c-a160-482a-87ea-e668f5a19bea", + "id": "5cb05aad-dc65-4a71-bc41-602cdb2eae47", "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": "qui magna", + "value": "nisi adipisicing exercitation Ut ullamco", "type": "text" } ] @@ -61455,7 +61455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7eacde8-8f9e-498b-8b44-e75cad2b8b9b", + "id": "021cbcad-6dba-4cbb-b6fa-346f3f4cb5be", "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": "qui magna", + "value": "nisi adipisicing exercitation Ut ullamco", "type": "text" } ] @@ -61517,7 +61517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9980a0ac-2006-4b12-89a9-627e82a8c29c", + "id": "091b142a-7a0d-4d8b-b469-cac558741992", "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": "qui magna", + "value": "nisi adipisicing exercitation Ut ullamco", "type": "text" } ] @@ -61579,7 +61579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc22648e-f187-489d-8ab8-5a9aed729ea3", + "id": "d47485a3-2cfb-4aae-9f2e-2587d0e01ca5", "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": "qui magna", + "value": "nisi adipisicing exercitation Ut ullamco", "type": "text" } ] @@ -61641,7 +61641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c0df088-99f4-4029-9342-2c473cf672ee", + "id": "faf9861f-b8c8-4701-ae96-ae551198ce2f", "name": "Too Many Requests - Returned in response to too many requests in 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": "qui magna", + "value": "nisi adipisicing exercitation Ut ullamco", "type": "text" } ] @@ -61703,7 +61703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91e39998-a2d0-4cdf-8838-57a9a0371811", + "id": "a0602ee3-f7d2-4ff2-9f5c-1b025b5390df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61746,7 +61746,7 @@ "type": "text/plain" }, "key": "data", - "value": "qui magna", + "value": "nisi adipisicing exercitation Ut ullamco", "type": "text" } ] @@ -61771,7 +61771,7 @@ } }, { - "id": "437bb144-8a05-408d-bb95-495ad86870cc", + "id": "1821c9a4-bb9e-4f14-a049-c0de78e8714e", "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": "e2ce34b9-8d77-44cc-9ff2-7678ad014b57", + "id": "4acc8415-f456-443f-9d17-42247bbd68a8", "name": "Status of the newest bulk-upload job, if any.", "originalRequest": { "url": { @@ -61860,7 +61860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5ba39cd-9926-49ed-955a-7e14b1153de5", + "id": "aa1e9df5-593e-4104-9353-9be1618c9e11", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61906,7 +61906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8871a46-c502-4ea2-9943-5a79e082cceb", + "id": "fc065566-2feb-4c86-97cc-bb89696760f7", "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": "e7e3b883-feac-4366-a21e-74cc6de8a7d4", + "id": "3b4ee412-7226-43ad-ab52-a2f7a16466a8", "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": "d82179a3-e6bd-42b9-a36c-42d394e2087c", + "id": "dd3dfe45-0c0f-44f1-9ce6-163187f6f883", "name": "Too Many Requests - Returned in response to too many requests in 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": "ff283971-a140-40a5-a58e-156b48155b87", + "id": "fce3736e-f4ab-4d7d-aad8-ba409652fc69", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62096,7 +62096,7 @@ } }, { - "id": "f59f5850-8b71-4b3f-a6c9-763c0436aa2e", + "id": "2451d110-9fa4-4a8d-8275-e0312f452a12", "name": "Exports Source Schema Template", "request": { "name": "Exports Source Schema Template", @@ -62139,7 +62139,7 @@ }, "response": [ { - "id": "19b7675a-c656-4204-b73a-71ac23ff616b", + "id": "b0b052c0-9373-45a3-9b48-e8cbd32e7dd2", "name": "Exported Source Schema Template", "originalRequest": { "url": { @@ -62185,7 +62185,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c99f4739-1590-41a6-ba8f-54c92be60bc8", + "id": "61d0d8f9-6028-4521-ac38-0412633a44b4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62231,7 +62231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb9be06e-46f0-47a2-8172-fea579ca2fa8", + "id": "e9671216-847e-43d7-b03e-c9c12ac50317", "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": "77b48405-b63e-440c-a309-3a3529d45abc", + "id": "86b65d15-039c-4d93-b5a5-6008510e4a3b", "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": "6826e9eb-2496-46c6-82a9-00ad9acadad9", + "id": "4f8d9abc-254d-439b-bbdf-4cb1944cd619", "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": "78ee5ed3-1f54-4fd7-af25-10b40b4af75c", + "id": "030a426d-443c-49a7-971d-bfdf054e1edd", "name": "Too Many Requests - Returned in response to too many requests in 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": "05d477ee-e316-449b-8ec7-725812d8a646", + "id": "46d294fc-a58b-40a7-ac90-91067e1a6a16", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62467,7 +62467,7 @@ } }, { - "id": "251aaf04-3d9b-4bd4-9828-67ade51f19e6", + "id": "8f05f4b9-84b2-4781-927b-d10bdbd13711", "name": "Get List of Non-Employee Approval Requests", "request": { "name": "Get List of Non-Employee Approval Requests", @@ -62551,7 +62551,7 @@ }, "response": [ { - "id": "8dcd5b4d-b0af-4d64-809b-4be32156e0ab", + "id": "37197d03-2f10-418b-b121-6d402cfa0390", "name": "List of approval items.", "originalRequest": { "url": { @@ -62649,7 +62649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc36886b-50e7-418c-b4ce-651ae220a4e7", + "id": "3f8f8f8d-e61f-4260-b1d3-cb7c46d8d8ca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62747,7 +62747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0edbe9a-045c-4575-8baa-5bf5bc5608eb", + "id": "530078cc-3433-439e-8eb2-9a8b5c3a6746", "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": "b7443b12-76a6-4de3-bf47-5bdf19e842c1", + "id": "37db7638-ddce-4e2e-918c-edd5b0cdcc51", "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": "3718bebe-f106-42c7-a673-98d0be4070d5", + "id": "ecbf173d-1d48-482a-af0f-478839287cf1", "name": "Too Many Requests - Returned in response to too many requests in 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": "ba3bf1a7-b93a-49f9-bbb2-a49f62731b6d", + "id": "2b25cc96-6f29-4494-a734-60c75185032e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63145,7 +63145,7 @@ } }, { - "id": "1aed1d52-894f-445e-b9be-bc88b7e46bce", + "id": "f1cbb389-1306-4bce-947b-9968e76a8f1d", "name": "Get a non-employee approval item detail", "request": { "name": "Get a non-employee approval item detail", @@ -63196,7 +63196,7 @@ }, "response": [ { - "id": "a8151eca-2557-410e-a93d-683c72e6a814", + "id": "99d509e4-1280-4a34-b8e3-11007935d450", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -63250,7 +63250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f62fb7e-0b38-4351-8145-4c5b44bab205", + "id": "cea84b3f-fcb0-4877-b2a0-2c7892e81a3a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63304,7 +63304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f5a4197-9e5c-4b9a-8a27-1475926ef2a1", + "id": "1f1322ff-ee64-42d3-a568-e050e67d77d1", "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": "4ed21d8c-3e76-48e4-b31f-cd3c6dfb9b4f", + "id": "a9a39485-ae75-4038-8537-0018ac401823", "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": "0f7a3cad-e9b3-49ae-b852-1cdc93d60aef", + "id": "e2da68a2-fc2a-4cf4-a1ee-7e8eff5448da", "name": "Too Many Requests - Returned in response to too many requests in 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": "7ba2d8bb-c7be-41d4-a035-368c3d359d84", + "id": "a6aef7f6-99da-4f9d-90cb-602bf53cdf19", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63526,7 +63526,7 @@ } }, { - "id": "1a0d2d72-66df-4236-9fb1-77cecc9ac484", + "id": "6ba36c27-a89e-40f7-bba1-3c7a6e1509f7", "name": "Approve a Non-Employee Request", "request": { "name": "Approve a Non-Employee Request", @@ -63581,7 +63581,7 @@ }, "response": [ { - "id": "bd984474-e9be-413d-870d-0cdd66f4b4a2", + "id": "40b38b6f-1bfe-4e8a-9115-e1a5949f5759", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -63639,7 +63639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14a3a07d-895a-4e4a-9926-8515a2ae5b3d", + "id": "b5150457-bbf1-4797-9c82-fc29e26388b2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63697,7 +63697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68745cd9-f89f-448b-8b57-289abedcce13", + "id": "4061d9b8-1543-479a-b6f8-eebfa4ad9744", "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": "5bfb99c8-223d-4918-9702-05a34bae0b59", + "id": "e39a247b-9899-4b8f-adc5-7cb7d05e7ce5", "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": "d5ae44a3-bf7b-4000-bdce-dd52d09a6d0c", + "id": "93bcf87b-2379-4d96-b470-d9b5c4ea36fe", "name": "Too Many Requests - Returned in response to too many requests in 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": "0cf979c0-c865-4037-aa57-5c39da9532cb", + "id": "60ba630a-04d5-4fbf-935c-72007002780a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63935,7 +63935,7 @@ } }, { - "id": "8a1c5b14-1f98-4c1a-b963-99395300c2ea", + "id": "2ad02287-c804-44cd-aa3c-04c631792fef", "name": "Reject a Non-Employee Request", "request": { "name": "Reject a Non-Employee Request", @@ -63990,7 +63990,7 @@ }, "response": [ { - "id": "18590f47-8268-4a7f-8826-00c9cdb76b67", + "id": "d028e495-5715-476f-9a3e-8c73e3500a19", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -64048,7 +64048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66216db9-1ebf-4d34-8ada-d3305bc78b1c", + "id": "28d0598f-c741-4a7b-a707-430a901bc221", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64106,7 +64106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e74841f0-07d5-4063-8c71-6b78d1310916", + "id": "2c780c86-1404-4c77-a4a9-bddbde220a61", "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": "b24485a7-783f-43e2-91f4-797e2552030f", + "id": "6da6ef0a-64b4-4012-abbf-09ca7d89c56c", "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": "e629678f-aa34-424c-bdc4-12a2f3e61ce4", + "id": "6b07a619-0069-497b-a36a-336b25ab1226", "name": "Too Many Requests - Returned in response to too many requests in 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": "cc88f952-f725-4492-8877-e01baef54881", + "id": "02dcfb7b-5579-4f51-9530-771fbe5f2471", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64344,7 +64344,7 @@ } }, { - "id": "b1c22b6b-b66e-4607-817c-7a6eeb220968", + "id": "8b337717-6e41-49ca-9143-062e39e88de1", "name": "Get Summary of Non-Employee Approval Requests", "request": { "name": "Get Summary of Non-Employee Approval Requests", @@ -64386,7 +64386,7 @@ }, "response": [ { - "id": "11ea855c-37da-4f39-aafd-7fc75348507e", + "id": "665c1717-1477-4799-b4f7-91b1ee5632a0", "name": "summary of non-employee approval requests", "originalRequest": { "url": { @@ -64431,7 +64431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7532173a-9571-4652-a5e7-38114b71b9d5", + "id": "3c47e8ec-0000-40e4-8113-c9de015cc020", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64476,7 +64476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "304a900e-9217-4f56-88af-8f9966995d7b", + "id": "1b6073bd-5ed6-4fa5-8f9d-f681d9ce5903", "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": "08b4696d-8901-4546-864b-c4de0f5374ba", + "id": "0a0dec84-42a2-4165-9c51-8e396ed31580", "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": "2d4f6b36-253a-4a34-bcca-3417e8988457", + "id": "f54a416a-cd67-4b6b-861a-2018fe27060d", "name": "Too Many Requests - Returned in response to too many requests in 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": "41b77af0-7a27-4af2-90c7-7078cfd79e92", + "id": "90d90982-2f9f-4556-9f81-bf953c0a1ea7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64662,7 +64662,7 @@ } }, { - "id": "07e1acb1-e7f5-45d4-a015-571de53ea1dc", + "id": "5d9446a7-0775-4353-b440-819be50695d9", "name": "List Schema Attributes Non-Employee Source", "request": { "name": "List Schema Attributes Non-Employee Source", @@ -64704,7 +64704,7 @@ }, "response": [ { - "id": "7fb0c63e-16c4-4640-a77d-0ec3ebdbf285", + "id": "37592f2d-99df-423f-a1e5-1eb27db44acd", "name": "A list of Schema Attributes", "originalRequest": { "url": { @@ -64749,7 +64749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2df4661-802c-4128-8168-eb975e0767c6", + "id": "52602375-3588-4ef9-bf51-4a6702f70db9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64794,7 +64794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fcf8f30-4704-4ec9-ae0f-e6befd4943ed", + "id": "b225361d-cd06-4778-bd1b-306c62dfd8c8", "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": "d616ac9b-3f88-4296-94cf-14bde51f1ea2", + "id": "dae051e7-f6b7-45c3-b0c3-14d7687f2b26", "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": "8083974c-7e1b-4f5d-9426-0e6117d7d527", + "id": "f8d66815-4077-46e7-8cd9-ed4fcba6a29a", "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": "519ffff2-c9af-4c1a-b8d1-d01f10106e98", + "id": "cb3565c8-0a0e-4abc-a105-8f0a60a830b4", "name": "Too Many Requests - Returned in response to too many requests in 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": "55b15d69-aa2e-4898-a2aa-cfcf6908f425", + "id": "4f2e3611-1bfe-4535-ad0a-53d5f4eec547", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65025,7 +65025,7 @@ } }, { - "id": "aa8417f1-d211-4b4e-92a7-3e4123572f18", + "id": "0eada5bb-448d-4dcf-8289-0e08a364fb61", "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": "5ffd6833-4100-4851-9160-46a5423c9804", + "id": "c39cbb60-369a-464d-8d88-abca44e11042", "name": "Schema Attribute created.", "originalRequest": { "url": { @@ -65138,7 +65138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ff1aa12-9795-4981-b667-dc9d404d8f1b", + "id": "0c7a1780-a000-42a5-a849-bf05c3e9146f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65196,7 +65196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b78fd63c-ee7d-49cd-aa71-87c83afaaf5a", + "id": "b5db5074-8354-4161-99b1-6d43e9d385af", "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": "5f879eed-4728-4744-b131-c5d44880d41d", + "id": "f0fb784e-63f0-446b-87e8-33306e8259f6", "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": "5916b027-8375-4ddb-8c72-3fef13ec0123", + "id": "239c9447-e292-40b3-930d-9ef7c1ad82ed", "name": "Too Many Requests - Returned in response to too many requests in 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": "eec31bc1-cb43-445b-a8d8-02aa1018c9a1", + "id": "5b694663-ad38-4015-b64c-93834c774875", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65434,7 +65434,7 @@ } }, { - "id": "447f7c73-7ba6-4097-ad57-2f2d077c6ed5", + "id": "f4ac369f-f497-4fc7-ade4-d41a5b1e6f86", "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": "03146c2b-6478-45d0-8d8a-b9f2c9d2afc4", + "id": "727ae219-61c3-4189-be3d-112755b54710", "name": "All custon Schema Attributes were successfully deleted.", "originalRequest": { "url": { @@ -65511,7 +65511,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7324372c-48e1-4038-ad3a-465c4141e431", + "id": "4e0daa9b-6898-4158-8811-4ff728604b30", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65556,7 +65556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b049780b-e648-4177-9199-a339e681da6f", + "id": "60ecef18-d0d2-423d-9635-930ca3b1b109", "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": "9e5bf496-bebd-4c5c-922d-359c3ef15271", + "id": "9a934aa9-9493-4dc3-b724-d48d61399805", "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": "066c321a-5465-4c38-aa03-5fcaf2b998bd", + "id": "4e1eb58e-d791-49a4-9682-85ac1a5878cc", "name": "Too Many Requests - Returned in response to too many requests in 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": "793db472-d494-499f-b902-4063502842cb", + "id": "eed8050b-f14f-4d2e-a4e0-5df741a0cd7c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65742,7 +65742,7 @@ } }, { - "id": "7a78ef1d-98e6-454e-84db-53a51e2f3420", + "id": "149be05f-abe6-491d-a743-165ab4533f8f", "name": "Get Schema Attribute Non-Employee Source", "request": { "name": "Get Schema Attribute Non-Employee Source", @@ -65795,7 +65795,7 @@ }, "response": [ { - "id": "6cced44b-22ca-4066-bc28-239cce558d3b", + "id": "7c8149f2-e151-4266-8241-e8fc0e176379", "name": "The Schema Attribute", "originalRequest": { "url": { @@ -65841,7 +65841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8ae5c4d-5f31-4b29-8ba1-c87e1982c17f", + "id": "02200937-cf9e-46a8-a46d-74190489a5a1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65887,7 +65887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "793e9236-54ba-4093-84e5-4c4970b2ab4f", + "id": "debccce5-57b2-4335-98cf-4fba2c7c2e04", "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": "33af03fb-69e0-4194-9ebf-95a3a8263966", + "id": "29cf3aab-d25c-4dfd-bae2-98237f053ca4", "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": "b335846a-7d63-431e-acf9-9b8ca615ca61", + "id": "c6b11630-39da-4b6b-8ef0-e60e05b877fb", "name": "Too Many Requests - Returned in response to too many requests in 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": "aebe3cb0-ebbd-4cbf-8cbe-9aeb7fcc90ad", + "id": "4491e07a-b1cd-487f-8b7b-1508ed6973f4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66077,7 +66077,7 @@ } }, { - "id": "e4fdff70-3fed-4817-91f9-d71a74d90237", + "id": "c10beec6-7663-4a7e-ba1a-c0156160188e", "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": "b5097fbb-b0ef-45e3-bf4a-458f9cd0f052", + "id": "3468eba1-da40-4ed4-9550-995b87c5b90e", "name": "The Schema Attribute was successfully patched.", "originalRequest": { "url": { @@ -66202,7 +66202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "858b4a34-3c5a-426d-a55b-1b203f5bd521", + "id": "86b42c98-c518-42d4-935b-63fca22706ec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66261,7 +66261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc7257c8-2a1f-4f93-9e9b-f6f3b9285b99", + "id": "ca21111e-f19d-4384-a671-e5ed84ab77bd", "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": "c62281b1-f8bc-4dcd-805e-1db1ad5ac24d", + "id": "23d7d1e2-03d1-4fa2-b82c-4a15e8850c39", "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": "bf4768ba-7228-49d6-9f2a-94999c4f6481", + "id": "8d1f25a4-0808-40ee-9258-e823c7561da0", "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": "9250715a-30c3-4e50-9393-2719665d643d", + "id": "97059366-e7f8-4ce7-a313-e3feb21c2659", "name": "Too Many Requests - Returned in response to too many requests in 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": "bc75a6c4-6d79-4439-84df-1e7364b1211a", + "id": "c6bea547-ab75-4db0-b819-ae87ca89cca1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66562,7 +66562,7 @@ } }, { - "id": "07098be0-f440-42b3-aa04-49859c3a2709", + "id": "4b8af852-caf0-420a-9f31-0f878387b58d", "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": "9db49431-1e8f-4e00-b49a-34fec81fb6c4", + "id": "8a52ceb4-ec63-49d8-91db-5dee4a20073a", "name": "The Schema Attribute was successfully deleted.", "originalRequest": { "url": { @@ -66651,7 +66651,7 @@ "_postman_previewlanguage": "text" }, { - "id": "141dc898-8b6d-4e35-ade3-ebe681e7aeb1", + "id": "1fea3d06-2a0c-49b1-9f88-f752edde11dd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66697,7 +66697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84146229-f909-493e-97d2-63272e94b6c5", + "id": "89686942-f20d-4b6a-a27e-786937ed7d79", "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": "91b68adf-30cd-4232-8dad-201efff90b47", + "id": "64f7a2b5-9999-42cc-9a62-fa916623ef66", "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": "63b63fc1-24d8-4c97-af57-d1ad663c3d68", + "id": "bfaa2a80-60fe-4378-a015-2c3f87bd4152", "name": "Too Many Requests - Returned in response to too many requests in 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": "d1e6ca6d-4a57-4679-92b6-6c819f1cc5d8", + "id": "dc861f15-c181-4ff7-b352-0d96d4a8eded", "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": "5c190503-16c1-4487-a284-5d313e1b6d93", + "id": "ccbf2704-2338-4459-9ecf-a252bb03eb70", "name": "List OAuth Clients", "request": { "name": "List OAuth Clients", @@ -66932,7 +66932,7 @@ }, "response": [ { - "id": "a0eb3985-8bb4-4346-a2d2-a076230ce637", + "id": "5bfb9304-3dc8-4402-988d-8085ba1d33b6", "name": "List of OAuth clients.", "originalRequest": { "url": { @@ -66985,7 +66985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05f89be1-c9a9-471d-8f8f-622bdb8c5c79", + "id": "17d9bf80-9d13-442d-a47e-74fad29ed27d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67038,7 +67038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2777766f-5344-46c9-b8a6-6764bca26ee2", + "id": "27ceae15-cb6b-4177-8818-561646288ecc", "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": "6c78f2fe-92f3-4df7-b1fb-a145cead3582", + "id": "b25ec2a0-477e-44a5-aafc-bf0949df0e81", "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": "df764c3e-8fd5-4c25-bbf0-b5589c6081bd", + "id": "949dfb2e-d04d-4efd-a36c-506ba001df8e", "name": "Too Many Requests - Returned in response to too many requests in 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": "cbf9952a-408b-497c-be9a-30ff016c800d", + "id": "8bb2978e-ac78-4e61-8058-6d0927bd313a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67256,7 +67256,7 @@ } }, { - "id": "b232e0bc-abeb-4912-b369-9712b2a23c51", + "id": "1fd6ebcc-be74-40ed-8d65-a5e8bf41fd4d", "name": "Create OAuth Client", "request": { "name": "Create OAuth Client", @@ -67298,7 +67298,7 @@ }, "response": [ { - "id": "789ed5c3-c2dc-40ba-af4c-f55555a9e957", + "id": "0e9f2984-39f2-47d7-8472-f913fd83d6b3", "name": "Request succeeded.", "originalRequest": { "url": { @@ -67354,7 +67354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b3544fa-09ce-4017-bb95-36a87c741566", + "id": "2b625452-44ee-4070-874a-9bb5cbb5f65d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67410,7 +67410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98eedd13-d188-4272-8c3b-77512917760f", + "id": "c13a569b-12f2-49c8-91a3-9181dad9c473", "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": "b7dad906-9b91-45f9-880c-a0a75b70a329", + "id": "f15392ba-9ed4-4ded-a89f-b2f33fb9f5d2", "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": "9d5ff987-c406-4a69-b1a9-9f80a631018b", + "id": "b979a9c9-fc04-4c1c-af91-eb5ba04171f6", "name": "Too Many Requests - Returned in response to too many requests in 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": "21486053-926d-4ddb-9cce-127404590267", + "id": "4c08441b-5697-41d8-a8a0-32df478945a1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67640,7 +67640,7 @@ } }, { - "id": "86976876-4726-43c3-8fed-b8fe82a265a8", + "id": "7080ca40-0e2e-4486-80df-53222ca20a41", "name": "Get OAuth Client", "request": { "name": "Get OAuth Client", @@ -67681,7 +67681,7 @@ }, "response": [ { - "id": "d583d038-8063-443f-9b30-ca29adeacc4f", + "id": "0153c2de-957a-4003-a588-42461c6e6e6f", "name": "Request succeeded.", "originalRequest": { "url": { @@ -67725,7 +67725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9db27d7e-7024-4668-8b71-bdb30d1bc4c3", + "id": "85cd4960-ee60-4af7-97f1-e2ea2f9c728d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67769,7 +67769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df7493ae-fbac-41c8-a36f-c7de12b87c86", + "id": "01c6ed41-f37b-4987-bc47-e42b75f42065", "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": "0a701215-f1fe-413d-9abb-72e26a7e203b", + "id": "40c930c6-5092-4b4e-ae53-5fbad43160ea", "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": "32d2f748-596a-40a4-8037-fde75e021a2b", + "id": "1ed40021-cab8-44c2-bcc6-8c5eab30c920", "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": "1430aaab-7189-4a6a-9300-b210842fccf8", + "id": "88d8eb2b-808a-4f42-98a5-fa542f9fa6db", "name": "Too Many Requests - Returned in response to too many requests in 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": "4203397a-bffd-478b-9688-305d6381b3a3", + "id": "2e06776f-7925-4ac9-ab36-78c885e60a72", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67995,7 +67995,7 @@ } }, { - "id": "29de96bc-1aa7-4fb4-b503-53c4807370c0", + "id": "3c32505d-13cf-4f0f-b95c-83ca2ad71a8a", "name": "Delete OAuth Client", "request": { "name": "Delete OAuth Client", @@ -68036,7 +68036,7 @@ }, "response": [ { - "id": "97a8952d-a0df-4525-91b4-05d7cc14c30c", + "id": "82193c79-b177-402a-8fd1-12ffc143fa3a", "name": "No content.", "originalRequest": { "url": { @@ -68070,7 +68070,7 @@ "_postman_previewlanguage": "text" }, { - "id": "10eb66c2-4690-4fec-832c-1553c7540ff0", + "id": "0ef09305-adea-4718-878c-169944123fa8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68114,7 +68114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5260f5dc-bc81-4f4e-a950-4d54afa78504", + "id": "3a0b0eed-5ad2-43ba-bfe3-85ed6eeeee0d", "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": "8fa7a9f4-1b16-4b87-bf35-d5265ee9f8cd", + "id": "6d22f1d9-ffc8-4683-a94c-075f2d54b5f2", "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": "480e8dc6-4ca9-4225-8471-908466a6a3ba", + "id": "5f7f6b84-cc9a-4186-b953-0159c8874c58", "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": "432e1040-36b6-4e29-8ac5-8c8b3d4cad47", + "id": "0a0b59f9-bceb-4aa8-90a8-b3a547230039", "name": "Too Many Requests - Returned in response to too many requests in 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": "e15b3151-7b74-4f86-af84-1656fb8cfbe2", + "id": "5345a844-4a53-4888-a3ff-2835a1fc4557", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68340,7 +68340,7 @@ } }, { - "id": "f67de220-6b2d-4181-a4c1-b7b4263ba036", + "id": "94309946-5243-4f9c-b3d4-c6c05e631500", "name": "Patch OAuth Client", "request": { "name": "Patch OAuth Client", @@ -68394,7 +68394,7 @@ }, "response": [ { - "id": "72ee8102-92bf-4a2b-8d77-b1ebc724f057", + "id": "48ecced1-7366-4351-9d9e-8b74c0ff3978", "name": "Indicates the PATCH operation succeeded, and returns the OAuth client's new representation.", "originalRequest": { "url": { @@ -68451,7 +68451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c19f1f27-3716-4cf7-8d7f-f5a46e6f9925", + "id": "ab97776f-0da1-4066-9af1-fe0c07605a6a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68508,7 +68508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfae92f2-7217-4cbe-af5d-052cc6586d81", + "id": "6ce9b27d-b830-4c25-838a-f3c08e00503e", "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": "818cc638-c97d-406a-8ab5-1b0202998685", + "id": "f29f72d4-1804-4a85-a183-9f6c57ae02bc", "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": "b5627cee-4f0d-4012-8b3a-0cf263b9e838", + "id": "3114053b-981b-4c22-b51e-a065c42f705a", "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": "bab0266f-fe02-4101-83b0-84f0c32f6fb2", + "id": "7213964a-062a-4b5b-a320-940fbc3b669e", "name": "Too Many Requests - Returned in response to too many requests in 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": "d420a0e0-3ae9-4b3e-baa8-0793dc66d0bb", + "id": "4ca4ad0d-418e-4f05-9c0d-04997e959d4d", "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": "2ec779e1-7532-4eb2-b526-9b8f53e5e738", + "id": "b7dce596-84a5-4e03-aab0-1907aa741f25", "name": "Get Password Org Config", "request": { "name": "Get Password Org Config", @@ -68834,7 +68834,7 @@ }, "response": [ { - "id": "331b4433-1c0a-45d1-ba05-3a78fa8a4d5f", + "id": "797b6a27-2d2a-4c0f-98cb-c14cea1170e2", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -68877,7 +68877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "961637bb-b2b1-4fa2-9c63-2aef518d4b9c", + "id": "1fe49b90-1ac4-49db-81bd-d30893797322", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68920,7 +68920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98706795-1945-4e81-a721-5c73496060c7", + "id": "b0cf5451-e92f-4ee1-aa03-fee77f065ff5", "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": "0de6e57e-00cc-4af1-9548-69a41dc4c1aa", + "id": "fd35bef5-fc39-4475-b7f6-4fbb854933f8", "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": "06983e7b-a110-49fb-b76d-7e8044431906", + "id": "1ef2db9f-a55f-4ae1-8451-043c85f0f355", "name": "Too Many Requests - Returned in response to too many requests in 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": "0e131ef2-3ff2-45e8-8341-fcb6bc68a0cf", + "id": "cd8a1ef2-7542-44e9-a910-f31b2bf66e8b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69098,7 +69098,7 @@ } }, { - "id": "d471af67-b64b-4af8-b02f-5ec43ae1d624", + "id": "d517ebdd-6c66-4e72-831d-4d16146b0113", "name": "Update Password Org Config", "request": { "name": "Update Password Org Config", @@ -69140,7 +69140,7 @@ }, "response": [ { - "id": "6fef61c1-3dff-4dc5-81c8-a2c8dc89653d", + "id": "db33d469-5eb2-4e43-befd-894f00234891", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -69196,7 +69196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "251fb266-e696-481b-8076-0b9a3606c8fc", + "id": "8a89590c-278f-4aec-9a12-2d82e26f1126", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69252,7 +69252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a8afc45-d6f2-4ec7-a09e-11d968ff7bdd", + "id": "b8b48f47-532e-4cd2-8a82-5fef25326229", "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": "b1745ded-0fa8-4fc7-b0cf-4a0aa44f634a", + "id": "56588993-4c01-4e5c-ad04-de4780f13b60", "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": "8cf65246-c855-4d02-a6e2-922e803dba69", + "id": "37d89265-e226-41ec-86c5-f6ed075c2ba5", "name": "Too Many Requests - Returned in response to too many requests in 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": "e3bd8be1-3287-4b34-91a0-86b0b6affc66", + "id": "638c19a1-5fb3-4313-a734-d5f94661e542", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69482,7 +69482,7 @@ } }, { - "id": "cd740560-7170-4243-a1ee-a9c8a5a5d113", + "id": "d7b658ea-00a7-4b92-b453-e0d147ffc55b", "name": "Create Password Org Config", "request": { "name": "Create Password Org Config", @@ -69524,7 +69524,7 @@ }, "response": [ { - "id": "dca22122-844b-47c7-9902-747abed3a16d", + "id": "de26d148-0bff-43ab-b4da-3cc7041122e5", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -69580,7 +69580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5dfca726-6265-4cf8-a5f7-e19a58057b8c", + "id": "38c2e663-fc25-4bf7-bbff-d73b8d4f211b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69636,7 +69636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7f544f3-dafe-431d-89fa-33eef4996828", + "id": "cb712520-3855-494e-9be5-89d68e3a8253", "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": "a86ecb33-f203-4f5f-8804-fcfc32bac581", + "id": "8f08c4ae-2fed-4174-93d1-e132f6224a84", "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": "9e724785-1c47-4bd9-aa8b-14811c463fdf", + "id": "81bf56a0-e38e-42e1-83ea-7ea47e5dadf2", "name": "Too Many Requests - Returned in response to too many requests in 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": "cfb2f141-8330-4906-a882-eb4a3e094f03", + "id": "c6c1206b-7cb9-42f3-ba82-4967cf3ee40e", "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": "c9907946-a531-4fda-a44f-de402fdba4b8", + "id": "946cbdcd-1abe-417c-9de9-774e3dd259c0", "name": "Query Password Info", "request": { "name": "Query Password Info", @@ -69914,7 +69914,7 @@ }, "response": [ { - "id": "f090b553-450e-47c7-b225-f37b17eab125", + "id": "397d9e10-82c9-4e1f-811b-3957d9cc5459", "name": "Reference to the password info.", "originalRequest": { "url": { @@ -69970,7 +69970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5e21468-6432-423a-b09d-9b5a7c7ec4cb", + "id": "e4784095-a567-411c-9ac7-2070d5738f6f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70026,7 +70026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f88ff2b0-2b0d-4904-87ac-81d0d311801d", + "id": "2e15afa3-dded-47b2-9a1b-e6da060f3b68", "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": "863c165b-4872-419c-a119-1304d4011bde", + "id": "4ac6f344-f791-4919-aa85-b4e1149dcd34", "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": "ff17bd1f-4065-4399-8908-9a3e8a3e2ba8", + "id": "988c6f3d-303c-4ccd-9215-f2ea7f9c740c", "name": "Too Many Requests - Returned in response to too many requests in 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": "86ca2c4b-527e-4c1f-8668-25f06cd68799", + "id": "ab3dc8a5-ff1c-4023-9b27-c528ad76fd1d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70256,7 +70256,7 @@ } }, { - "id": "94c44bff-ac80-40f7-a733-d30049ee5398", + "id": "da27bc74-981a-4bb8-87ce-1a49bc6a7e1b", "name": "Set Identity's Password", "request": { "name": "Set Identity's Password", @@ -70298,7 +70298,7 @@ }, "response": [ { - "id": "b269e3f5-9d59-4b24-a112-c3ac83f22b85", + "id": "39e10fac-69ea-47e3-9cad-a5fcba3f7c1f", "name": "Reference to the password change.", "originalRequest": { "url": { @@ -70354,7 +70354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f101774d-a5e0-4840-8525-f6aaa7bc50a3", + "id": "c6a52377-626a-4ddc-8195-15ec4f75a936", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70410,7 +70410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9830cb8-204f-4185-b25c-56bd5b0f66de", + "id": "a3bd9245-1948-4932-a8c8-574e92645754", "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": "cac0233c-c1c7-4c35-a482-ec8916b6de3f", + "id": "3230ebce-f151-4065-a008-eca6ad15bbc7", "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": "3b88ac02-b65a-4084-aa9f-4799576fcd9c", + "id": "baf98522-3d83-4b8f-a5f1-a87787759153", "name": "Too Many Requests - Returned in response to too many requests in 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": "68f34e9c-69b6-4ec5-ad55-81e53af2272f", + "id": "b9c4aec5-b037-48af-8214-0ea344d0077d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70640,7 +70640,7 @@ } }, { - "id": "d74cad5d-7b01-4f5a-b24b-6dae6436cd14", + "id": "75ea4369-4f72-4b96-ad86-9717869b5975", "name": "Get Password Change Request Status", "request": { "name": "Get Password Change Request Status", @@ -70681,7 +70681,7 @@ }, "response": [ { - "id": "97bc74d6-f549-42bf-bd1f-f5e3fea2d8c0", + "id": "b4a13b0a-326a-45fc-9775-72e26f55c460", "name": "Status of the password change request", "originalRequest": { "url": { @@ -70725,7 +70725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b91eb09-f2b7-4a98-aef2-ee759aa0eeb0", + "id": "28367599-8b0a-4963-b86c-8433adbe49c6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70769,7 +70769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f6b73bf-8890-4341-a773-b12fdb8f1eda", + "id": "68614d85-49b7-44cc-a011-f9108c8540e7", "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": "28724c5e-0f55-494e-80b7-1f55504b933e", + "id": "97ce9916-9c69-4595-9c38-252e43e1952c", "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": "dc12debe-719a-4337-89bd-b453c0ff23cc", + "id": "2f6e9b58-85ef-49f4-ac11-887c2b72b35b", "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": "4878fea6-f631-4051-b454-658f5847065c", + "id": "d1108859-d9a7-4e3e-8120-715a04325ae4", "name": "Too Many Requests - Returned in response to too many requests in 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": "543f3819-8cf7-431e-859e-ce70f8693cd2", + "id": "c3908a47-d335-412e-a575-85227c3325a6", "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": "ce3acc25-73fe-4bc8-b17d-dfb6632a56ed", + "id": "2ef87385-7e29-4381-8ef9-a546d78af2b6", "name": "Get Password Dictionary", "request": { "name": "Get Password Dictionary", @@ -71030,7 +71030,7 @@ }, "response": [ { - "id": "0eace54c-890f-4b6a-acb7-9348548865b3", + "id": "88296a36-9137-43bf-9b46-77c8f1902852", "name": "A password dictionary response", "originalRequest": { "url": { @@ -71068,12 +71068,12 @@ "value": "text/plain" } ], - "body": "ullamco Duis in cillum tempor", + "body": "in deserunt", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "ebac0800-bb5c-4bfe-8ab2-f0b3e4eda108", + "id": "abe1af80-d543-40f2-9590-dd6d3d6918f3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71116,7 +71116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bcab804-1b6e-4065-a719-d3eff90d6b20", + "id": "d253011b-86a8-45a2-97d8-5262ad6330f1", "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": "4ec17787-24b1-4450-8dfa-9df1a3fc7e9d", + "id": "ae2a3e19-4365-4353-b403-b991c014e9f0", "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": "58252340-6d5f-4fec-bd7b-a875537737ce", + "id": "da4969ac-efb3-4059-9dc0-367ca13fa4ae", "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": "e17f531a-2756-4209-83e8-8246f65aaf7e", + "id": "1cd8c57c-b5b9-44c9-ad84-208e8722229c", "name": "Too Many Requests - Returned in response to too many requests in 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": "65644e78-3d34-42d8-9ce3-70f15e40b00e", + "id": "9af545cf-bdf2-45c6-b225-a2a0c0ff0894", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71337,7 +71337,7 @@ } }, { - "id": "a9945ca6-7af0-4cc6-96f8-7a50e928899a", + "id": "2f092609-f880-4379-a27a-7e63b3f57dd6", "name": "Update Password Dictionary", "request": { "name": "Update Password Dictionary", @@ -71375,7 +71375,7 @@ "type": "text/plain" }, "key": "file", - "value": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -71383,7 +71383,7 @@ }, "response": [ { - "id": "5e403b40-e935-49dc-a831-b845789f57af", + "id": "723fd98e-954b-4dc3-ab7f-0b65f5dfe6cf", "name": "Successfully updated.", "originalRequest": { "url": { @@ -71420,7 +71420,7 @@ "type": "text/plain" }, "key": "file", - "value": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -71433,7 +71433,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0a61a514-dae0-4ad7-9e14-125b4e1c5d4d", + "id": "2c3e610b-6f53-4ae6-b14a-434d8e17a18d", "name": "Created.", "originalRequest": { "url": { @@ -71470,7 +71470,7 @@ "type": "text/plain" }, "key": "file", - "value": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -71483,7 +71483,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c612d38c-7ee3-4ed0-8113-360580b094dc", + "id": "3779bbe5-1539-4895-813d-d3f169cd425b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71524,7 +71524,7 @@ "type": "text/plain" }, "key": "file", - "value": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -71543,7 +71543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "debc78ec-67c2-423b-8422-9fc7bbae87c3", + "id": "7641646f-83c7-4e39-99a0-5a228ecbd1f3", "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": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -71603,7 +71603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32371aa9-5047-4943-85fe-fc59b475f4d2", + "id": "077a65d5-485e-49d1-be8e-dd12878657f2", "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": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -71663,7 +71663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4501b38b-2ef5-425c-8cca-2bfde0d82ca1", + "id": "5bfd684d-aac2-40ef-bda0-6a39f996fdbc", "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": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -71723,7 +71723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b419490-d69d-4147-a4f2-d283e6a1ba13", + "id": "cc1e2d6b-6f61-4a2a-b5fa-c45388589eb6", "name": "Too Many Requests - Returned in response to too many requests in 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": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -71783,7 +71783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3764fa10-e667-495a-a7d7-2800d44eb66a", + "id": "5fab4e3c-a520-43dc-878e-29da4d434998", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71824,7 +71824,7 @@ "type": "text/plain" }, "key": "file", - "value": "culpa labore ad dolor", + "value": "minim laboris cillum nulla 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": "900543e4-74ae-4112-b1c6-45785c4b72b6", + "id": "d3904afe-a7f5-4ab2-8be8-b49d9c2a0cdd", "name": "Get Password Sync Group List", "request": { "name": "Get Password Sync Group List", @@ -71912,7 +71912,7 @@ }, "response": [ { - "id": "8ce78228-f21b-4713-a83f-b4ee8808fc9c", + "id": "b8d9889b-0a24-4b53-bec3-ba876ddb9fcb", "name": "A list of password sync groups.", "originalRequest": { "url": { @@ -71983,7 +71983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c0aecec-d77f-4cf4-b2dc-50fa1cf67176", + "id": "f1d41217-2223-446b-b758-5abe3917e51c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72054,7 +72054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df9c947d-d3f7-40db-aab8-815592243880", + "id": "e414a553-5c3a-4690-a7df-9f319e23386b", "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": "40211281-f685-4f39-a146-eb246938c317", + "id": "67b1c25f-0f72-4dcf-9aac-f64ba8dad0ab", "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": "f4f483be-1043-429b-9993-399b9687a47c", + "id": "de330455-425f-46e5-a03f-51470c2156cc", "name": "Too Many Requests - Returned in response to too many requests in 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": "70ab2ae5-1ab8-4a7a-be06-4db0807e4c62", + "id": "66f0438c-dcc9-4881-ab03-3a07843ceec0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72344,7 +72344,7 @@ } }, { - "id": "a12fa49b-455e-4fdb-8043-6ca34efc0f4d", + "id": "0241fcc5-faf2-43cd-8121-4fc0aabd29db", "name": "Create Password Sync Group", "request": { "name": "Create Password Sync Group", @@ -72386,7 +72386,7 @@ }, "response": [ { - "id": "91f54be0-bc65-4af8-abd6-a4ae031f63b0", + "id": "f9d89b97-2277-4e5b-87f3-cf5078474061", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -72442,7 +72442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e297d8bb-f1f3-4f2b-959a-3b5644a6591b", + "id": "63cfbfdd-8af5-4de6-9a07-03e09e01df51", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72498,7 +72498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bbba665-5f63-40a7-91ea-b0f3e328b7c7", + "id": "14cd357c-034a-4183-a4fd-c58b8f400587", "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": "71d1d3b4-e82e-46f1-a525-0dba8fab8a36", + "id": "acbfef20-6e8b-40ea-b1a3-24189d53c738", "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": "e37cb1e4-5fab-4093-a56c-c1c209976fe6", + "id": "d94beffe-f26c-4f68-9355-ec270803c6c7", "name": "Too Many Requests - Returned in response to too many requests in 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": "c2da1d75-06a4-459a-a883-437233b3cea3", + "id": "01118892-eeeb-41d1-aa9a-b435fb9259c2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72728,7 +72728,7 @@ } }, { - "id": "0ae65926-5380-4880-bfb2-d86b68570a01", + "id": "e9d1c454-93bf-4243-91d0-b57acc6f3f9f", "name": "Get Password Sync Group by ID", "request": { "name": "Get Password Sync Group by ID", @@ -72769,7 +72769,7 @@ }, "response": [ { - "id": "efc14c59-bf98-478f-82ee-e5a01ebdad2c", + "id": "7ca9536b-7a75-4fc3-9b89-637cb8327212", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -72813,7 +72813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9981b455-3ba3-4a0e-9c9c-04b62b80a5c6", + "id": "d74d86dc-5e85-4313-8ca4-04d21b112b55", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72857,7 +72857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c53c4ec4-bfdf-429e-b701-dee23208801f", + "id": "40537581-59d6-4de5-a8de-24551b17abf7", "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": "8edfc8c5-7e0a-467c-bca2-9818ee0a4bcd", + "id": "e83b16b5-92f1-4027-bff2-6e1a76eb2ce3", "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": "44be9083-bb8f-486c-b43b-4288521cb028", + "id": "3a316165-c0bb-4a1a-9d4b-62726f8601c0", "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": "ff1a47f2-7cd4-4086-ac71-bd8d8406c892", + "id": "d864c90a-a345-4243-a7ff-d1908fdb829e", "name": "Too Many Requests - Returned in response to too many requests in 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": "59000b43-a078-40ef-a3a4-b682b81389c3", + "id": "72753489-1866-4ed2-b4a9-a6b106dc2bd2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73083,7 +73083,7 @@ } }, { - "id": "187680a9-6c38-4232-b01c-289eaffb6fa9", + "id": "60871700-bb7a-4458-962e-c65d303402d1", "name": "Update Password Sync Group by ID", "request": { "name": "Update Password Sync Group by ID", @@ -73137,7 +73137,7 @@ }, "response": [ { - "id": "6c098956-f2b7-46b0-a1bb-1a6309f21f00", + "id": "85d91b3e-90e6-4e1a-ae7e-bda0a1d69345", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -73194,7 +73194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8be7f31e-4009-4ca2-af55-2c0b0fa957ab", + "id": "833f4127-060a-4f26-8ba6-e68041ed1e8a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73251,7 +73251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f96f1470-2501-4fde-b148-af89a8b68d61", + "id": "dbc24100-8e09-4b9a-8462-ed91217857a6", "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": "e3676563-f99b-468b-bda7-26f933c6b3c4", + "id": "7867f761-3be8-4022-b7bf-37ff11795fd5", "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": "e2c7aad9-7d3f-4290-8dca-44b06a82ef5d", + "id": "a5d46526-9f58-461e-bf9c-dc81d4f5d500", "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": "4fcd2ce3-c331-4fb4-8975-ea6c98036bc3", + "id": "e80c4e81-44f2-4edf-9f9f-7cb47730bac6", "name": "Too Many Requests - Returned in response to too many requests in 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": "d4e7a4d3-191f-486f-9c2f-bf4d76bc74fd", + "id": "928f6196-63ec-4ed7-b0ee-2f3b958ab60c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73542,7 +73542,7 @@ } }, { - "id": "a9d581dd-0fb2-475e-8302-9623f2c906d8", + "id": "9425ded3-aa10-42f3-bc76-bfbc59769e1a", "name": "Delete Password Sync Group by ID", "request": { "name": "Delete Password Sync Group by ID", @@ -73583,7 +73583,7 @@ }, "response": [ { - "id": "d2d30a9e-ccd4-46af-82be-e9d92815f236", + "id": "8c203212-8c0c-49a1-999d-4870697744ad", "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": "a9fe6580-6ebd-401d-b386-f6adda4a140f", + "id": "4b6e185e-41ca-437d-8c52-49f89fc13a75", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73661,7 +73661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36e5ce1e-e640-4146-9e58-016cd7657832", + "id": "167f4ac8-6123-47a4-97a2-5f61c6a06193", "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": "c307354b-ad18-47a3-a5e0-bb82deecb608", + "id": "9a362b10-b3b9-4de6-9a39-0b76bc69ad0d", "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": "33554ce2-e311-4e36-94b8-9c5adae0b8d4", + "id": "ba5e399e-a6f0-4d44-85be-9dbf6757eb16", "name": "Too Many Requests - Returned in response to too many requests in 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": "6fbd735f-6117-48ce-9060-8278e4f3496f", + "id": "5c62efc1-a877-4c45-b5fd-5de7f4b03d69", "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": "62ca4c22-fa83-430e-b095-1876fdc30a7f", + "id": "d8bfa5a6-c3ad-446a-b822-99740338c7ca", "name": "List Personal Access Tokens", "request": { "name": "List Personal Access Tokens", @@ -73897,7 +73897,7 @@ }, "response": [ { - "id": "e8f0309c-1fab-4326-a532-69575a6311fe", + "id": "f8949a24-3844-42db-a608-8b767a8fe449", "name": "List of personal access tokens.", "originalRequest": { "url": { @@ -73959,7 +73959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9acc72cc-abc5-4b60-9f09-6e68a9b84fd1", + "id": "7241adea-2392-4f7f-b48f-39f13881f9b8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74021,7 +74021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fe12ab5-b0a7-4122-a430-eae195259968", + "id": "e2387632-c444-4db0-ad44-5660c27ed5e8", "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": "57cf5468-42f3-426b-a70f-4d638b329d03", + "id": "9affc595-722b-485c-aefe-503667efb15b", "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": "eee3dcec-122b-46eb-9e34-7bce77f05000", + "id": "1bbcde49-782b-4ab7-afa0-bf6e5b0e71b4", "name": "Too Many Requests - Returned in response to too many requests in 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": "2a9d9f8a-4c8f-4c9e-9218-c05fa43ae5e2", + "id": "26e79537-d712-4e44-8354-69258959b8b6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74275,7 +74275,7 @@ } }, { - "id": "731ef90a-f4b6-41a4-baf9-e604028de123", + "id": "2db6157d-c3d2-4e2b-9fba-4d67673f7e87", "name": "Create Personal Access Token", "request": { "name": "Create Personal Access Token", @@ -74317,7 +74317,7 @@ }, "response": [ { - "id": "1bf46861-cc81-49b2-beeb-986037ca2d0c", + "id": "68cc6846-3d33-4f8f-9a2b-8504eae4bd65", "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": "d45244e2-5756-4d56-a620-4338c2f2165c", + "id": "c8f6c8a4-33f0-4080-b769-d259fd18df26", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74429,7 +74429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66d75a88-f318-422f-88c1-54d01d586415", + "id": "6c387386-b065-4cc7-8d6c-b2dae3d3c70e", "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": "f03731cd-7dd1-4e5d-a109-3e2b1cf0ecbc", + "id": "60a8abb5-04a2-4a81-a5b0-aff5ca9541ae", "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": "9c52134e-dbd5-4914-9f0c-86fe62cd3ece", + "id": "d1453b1a-03a8-4e39-8920-b68a5a6eab7e", "name": "Too Many Requests - Returned in response to too many requests in 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": "fb3c3181-938a-4ffc-b641-82af7aff1ffb", + "id": "5bb7f569-96ea-4500-ad26-7e07c7bb76b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74659,7 +74659,7 @@ } }, { - "id": "35cc3b1f-1919-4410-86ad-1aff432e8acd", + "id": "253d9fd0-5575-4fb7-bab5-a4c3003f420d", "name": "Patch Personal Access Token", "request": { "name": "Patch Personal Access Token", @@ -74713,7 +74713,7 @@ }, "response": [ { - "id": "4806cd69-de17-42cd-ad70-8a6bdd2395e0", + "id": "2be65688-4e53-47dd-912b-efe809547f99", "name": "Indicates the PATCH operation succeeded, and returns the PAT's new representation.", "originalRequest": { "url": { @@ -74770,7 +74770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f79bf9c-34a0-4ac5-b6db-03caf4d16f12", + "id": "630f44f4-daf2-45b6-b006-fbf11874b2b8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74827,7 +74827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ae5c50c-f700-468e-88b3-45e4e8f5f3b9", + "id": "291c4270-044a-4499-aa16-1859cec06d6a", "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": "432d1647-1e82-45e6-8bb3-4b8d674c49c7", + "id": "7cd9eb88-f92d-44ea-a13c-888ace2d6ede", "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": "b412f6e7-2fd2-4795-a2d7-a03f2099cb99", + "id": "109a9469-c807-4895-8c02-15c848eac001", "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": "dec698f5-657d-46d1-b872-424956bab277", + "id": "17c0b58b-cd61-43c8-83d8-0344e2200267", "name": "Too Many Requests - Returned in response to too many requests in 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": "35b442ff-c043-4791-b7fd-36fe45dc8937", + "id": "cbbfe79c-ee7c-445b-81ff-03c53d31c756", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75118,7 +75118,7 @@ } }, { - "id": "fc5e8f4e-38f6-4f9f-8940-b43181fa282b", + "id": "95d15306-f76a-438e-bc5c-cfa716f0f8b6", "name": "Delete Personal Access Token", "request": { "name": "Delete Personal Access Token", @@ -75159,7 +75159,7 @@ }, "response": [ { - "id": "092ec90c-8cf1-4ef3-8605-c03d3e89d0d2", + "id": "5bb54e2f-48a3-4684-8d9c-27ba335fb36a", "name": "No content.", "originalRequest": { "url": { @@ -75193,7 +75193,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b0db670e-83ef-47bb-aa56-27f0562146e1", + "id": "a3155e32-19aa-42b8-b049-3c942fe54bea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75237,7 +75237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49508501-963e-47aa-a778-44b4eaa29c38", + "id": "c9d90eb0-eb4f-4eba-a0f7-254109f78846", "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": "91a3e728-f88b-4c8e-b42e-de0493ae97fe", + "id": "c1a11c7a-b91a-46e1-8b29-e5a7010b235f", "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": "0f24cbb8-2262-44a8-8dd7-03f302228323", + "id": "448449b5-597c-415c-bd9d-962e8ad2b26d", "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": "4b9f1bac-32f2-4fd7-87ad-7f2a26028af1", + "id": "6d1550a4-9e56-4236-a108-a384c5712624", "name": "Too Many Requests - Returned in response to too many requests in 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": "5167d74f-62a8-44b9-9322-87178c7ad5cd", + "id": "7178b962-42e5-4dbe-8f20-bd5a0dd3e5a5", "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": "c3ee4b42-fc72-45c1-bf60-5dbfbae9b725", + "id": "0d3af1ee-a5ac-40d2-ab3c-0e7f690d1aff", "name": "Get a list of public identities", "request": { "name": "Get a list of public identities", @@ -75550,7 +75550,7 @@ }, "response": [ { - "id": "d15ad2b6-8293-4d34-8f3f-8954da4f7ecb", + "id": "e73ca524-2617-44bb-b076-a711b8a026aa", "name": "A list of public identity objects.", "originalRequest": { "url": { @@ -75648,7 +75648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1167465d-eb32-472d-8131-9a595699c6eb", + "id": "734882c2-3f89-4ef3-9aae-a77febdc42a0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75746,7 +75746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb9b7b8a-f912-443a-8097-6e08f8eff402", + "id": "763ebda0-eff8-40e4-bea7-0358aefbc18f", "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": "ee11ac6b-ed96-4e01-8967-6fb08f3ba81d", + "id": "19e8c7c7-ca46-49b0-9406-ffa9fe30955a", "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": "ced774b6-0242-4e96-aafa-337e52824899", + "id": "834ebb34-cd51-4a47-834e-df759c78c11e", "name": "Too Many Requests - Returned in response to too many requests in 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": "9a7002cf-5407-4356-829f-cd2105c212c5", + "id": "864b0d93-77df-4f84-9347-2ff1aea93bb9", "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": "5fbdd082-63a4-4d6c-bc1b-810482f45728", + "id": "0f5aa2a6-91b7-45bf-9733-6383f549c9d2", "name": "Get the Public Identities Configuration", "request": { "name": "Get the Public Identities Configuration", @@ -76179,7 +76179,7 @@ }, "response": [ { - "id": "8ba4f01b-0323-457d-ad8c-88a92f800679", + "id": "46c7988d-b5d3-4b12-b382-be2767dfe907", "name": "Request succeeded.", "originalRequest": { "url": { @@ -76222,7 +76222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5072f4a-2b82-4c3d-9f00-6b7ed01d082c", + "id": "e8fb64a0-884a-4fe2-9b18-5b436feb90da", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76265,7 +76265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64ada3c3-3761-4e9e-8bbe-7ef12dd71f3c", + "id": "de2ba6b4-a051-4031-b2a6-ce39e458e6c4", "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": "927d9607-b160-4c8b-8438-cdb1e06b808e", + "id": "472050d5-d83f-4399-926f-f510d43f4496", "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": "fa42da88-b24c-4bdb-94b9-fb0c64b544bc", + "id": "80ca08ce-438b-4172-bd92-c974fd729800", "name": "Too Many Requests - Returned in response to too many requests in 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": "643a1a19-aeed-48bd-be45-47492c04239b", + "id": "be62d916-1a75-40b0-98d2-7cf18020a43b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76443,7 +76443,7 @@ } }, { - "id": "01351a84-9d69-4f4c-b0ff-079310f10937", + "id": "66c48ced-b0de-44ce-a959-d56b8a92407e", "name": "Update the Public Identities Configuration", "request": { "name": "Update the Public Identities Configuration", @@ -76485,7 +76485,7 @@ }, "response": [ { - "id": "3eeb42c7-d07e-4181-ac22-5b3775f059a0", + "id": "e903b4a1-722b-473c-b042-8b41c8794777", "name": "Request succeeded.", "originalRequest": { "url": { @@ -76541,7 +76541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92fed967-10a6-4b88-bacb-b1a901080685", + "id": "9bd092ee-b7a5-4f6b-a929-96978b2ddd68", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76597,7 +76597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bd7fcf1-ba9e-4137-a1d8-dee245b89b86", + "id": "231b328d-2c3b-4942-821f-b3dc18aa3d00", "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": "eb1993c9-4967-4e17-a4e0-99a99d6d4dbe", + "id": "019fa74a-a148-4f44-bcaf-56992217839f", "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": "38cfd2dc-10f1-40a1-9ee7-3edc9769d3c1", + "id": "179c569b-3d9b-47e7-a090-2e563ce62a11", "name": "Too Many Requests - Returned in response to too many requests in 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": "88bdba5b-d7da-47c2-840e-2c12cf5fddeb", + "id": "071779c6-cff1-4100-a42e-0a16dc7c0945", "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": "98efe459-e3da-48ff-8798-3aee19a6ca81", + "id": "b64ddeb3-4a23-4c97-9407-1e65dca9f554", "name": "Get Report Result", "request": { "name": "Get Report Result", @@ -76885,7 +76885,7 @@ }, "response": [ { - "id": "98436013-73c9-4cde-ae31-1ce7b1ffa5b4", + "id": "dccdeac7-9044-4c43-992d-9f7e0235b8ca", "name": "Details about report that was run or is running.", "originalRequest": { "url": { @@ -76940,7 +76940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b5aad36-42ab-4564-b555-3df0a1ef003f", + "id": "6649f7b8-2da4-4bcb-837e-db11e3595e2f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76995,7 +76995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6169395f-949a-427a-b155-ea37d9f78886", + "id": "a9ecaa70-0333-4bf1-8a53-fe79af445de6", "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": "cd5cd6f9-5f47-4d9e-b980-31d6604f1ad4", + "id": "5194e9d5-1180-47a8-ac49-41f451a3bbbb", "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": "b9c929c2-6788-4895-8e30-303f41c1eac6", + "id": "60146a2b-c5cb-4ebf-896a-e0fc952fe132", "name": "Too Many Requests - Returned in response to too many requests in 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": "8aae30d3-6c15-437a-9464-2c66673f85f9", + "id": "09f834a5-a9a8-4b94-9855-330f8620b5b5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77221,7 +77221,7 @@ } }, { - "id": "c9cc7034-521b-4a40-8c15-3dcc60219eb8", + "id": "85c2e0bd-3ace-4543-b08a-2eda6e07b998", "name": "Run Report", "request": { "name": "Run Report", @@ -77264,7 +77264,7 @@ }, "response": [ { - "id": "8e1f4ec7-37f8-4580-8f6c-14b2b3c240bc", + "id": "8ca3a0d4-9c95-4369-97a1-a6980cf9016d", "name": "Identities Details Report task result.", "originalRequest": { "url": { @@ -77321,7 +77321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f370f34f-db92-40c3-aa49-fb2704600d81", + "id": "c4c0e8d1-4150-4dd2-8da4-1907436b1bad", "name": "Identities Details Report task result.", "originalRequest": { "url": { @@ -77378,7 +77378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "757ca374-bba2-4561-8700-768ca5e599a2", + "id": "bfc29162-a08f-4c49-88f7-d8af016eea96", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77435,7 +77435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "277e2792-275e-4d85-b34c-36f63d2c7d72", + "id": "6ddc0703-6eed-49db-8b19-6da1fa79c7e7", "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": "9a97af0e-ac77-42b7-a533-76307f934557", + "id": "a3e43683-29c7-4110-82ae-90b180c4be08", "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": "3b874992-cd61-4d94-aec9-e9172e347145", + "id": "eb6d8bf5-ff8f-49a8-9ec4-d15b4b5026f3", "name": "Too Many Requests - Returned in response to too many requests in 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": "84fa95d1-195f-475c-9a1b-b15386b18c3b", + "id": "18175cb4-4b00-45bf-9649-9810e9680756", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77669,7 +77669,7 @@ } }, { - "id": "757efe35-4278-4de1-b1ad-14b28137500d", + "id": "67382913-4d70-408f-9b4c-ac150fbfcf65", "name": "Cancel Report", "request": { "name": "Cancel Report", @@ -77711,7 +77711,7 @@ }, "response": [ { - "id": "75f7e7f9-8061-4599-aca4-3733a4452cb9", + "id": "f8a8c644-f678-4d8d-a92f-280365221ab8", "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": "360a9774-41a2-4c15-92c8-2cb9b386c96d", + "id": "7aa8e0c7-08b1-4165-b558-4e55026aa685", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77791,7 +77791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "042b82c6-b1b3-43a0-abbd-ba3704a3731f", + "id": "7b5b4965-7a87-483f-a473-1543396e9370", "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": "15db4361-82d4-45c0-8b99-f1cfc4d2b7e9", + "id": "412c4fdb-942e-4e4a-b111-83ec803d9728", "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": "44bbe69a-9cdd-4faf-9d30-e3fb65d58dbc", + "id": "08e20c61-1274-4732-af3d-ddc4923d4c12", "name": "Too Many Requests - Returned in response to too many requests in 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": "75b58a69-f931-4167-9c98-32a244f2e28e", + "id": "69885b0c-064f-47f3-a014-c5f0c95136ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77977,7 +77977,7 @@ } }, { - "id": "e662788d-e1a8-402c-bca1-898c11bb15fe", + "id": "e4cd7d8e-4077-4c3f-be39-26ae7fe170ec", "name": "Get Report File", "request": { "name": "Get Report File", @@ -78046,7 +78046,7 @@ }, "response": [ { - "id": "09246097-eee9-4578-bb6a-aee22843aeef", + "id": "28af84ba-f3fd-4459-92d8-3eb2fc36a733", "name": "Report file in selected format. CSV by default.", "originalRequest": { "url": { @@ -78122,12 +78122,12 @@ "value": "attachment;filename=\\\"fileName\"" } ], - "body": "ullamco Duis in cillum tempor", + "body": "in deserunt", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "66ee407d-caaf-4834-b9d6-dfd27a2c4866", + "id": "081d3224-301f-4898-95f5-8d96f0b7cad3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78199,7 +78199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca2c72de-2dd4-40dc-b6f2-d3673a2225fe", + "id": "dc6e3f1f-c377-4859-8610-5b0c8993032f", "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": "e725fd5a-bdf6-4597-9edc-4d8110767cfd", + "id": "3112c514-6b1f-4c0e-abea-22b66e4509af", "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": "3b5431a2-e0b7-439c-924a-73930274e1af", + "id": "24453fc2-a7fa-4502-b9bb-9b718111e58a", "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": "c7ed1aa5-d329-42b9-a311-b0602093e2c6", + "id": "35c68122-4666-4824-b58c-1f936288226d", "name": "Too Many Requests - Returned in response to too many requests in 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": "69e6f516-7ddc-4c1a-ac43-4eea32e681c1", + "id": "ff98bfd8-ddc2-42fe-a3a6-06ec42d20f42", "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": "a3e6a81c-abca-43cd-8441-fcdb7b772b5d", + "id": "8d853588-f0cd-4e47-b0ab-151423d2f061", "name": "Requestable Objects List", "request": { "name": "Requestable Objects List", @@ -78682,7 +78682,7 @@ }, "response": [ { - "id": "94f5f3b9-327a-45e8-b05d-aae46951ae31", + "id": "df2ac607-ee53-40e8-a5ad-fd1099235857", "name": "List of requestable objects", "originalRequest": { "url": { @@ -78807,7 +78807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aceea6d4-8e45-414b-ba80-5f46c65900f6", + "id": "4af3c97a-c978-4f7a-8a96-3b5f7c553e1e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78932,7 +78932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aeccf929-cfc7-4b0e-952b-f1544a2d8fba", + "id": "6fd66192-e529-4774-ba44-a9f8707d63cd", "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": "b1d56b4c-4ca6-4779-a1c7-9fc675c74e86", + "id": "ec03c945-1dbb-4a28-b686-124c7bbdeeae", "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": "728d5991-2c52-4c3f-9c5e-366030bb8e44", + "id": "38ff1738-4539-4f1c-9660-2d0af81af099", "name": "Too Many Requests - Returned in response to too many requests in 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": "99cbecc6-e4e2-457b-9b7a-82e90176ce94", + "id": "1d09e86e-b20b-4df4-b9d1-36f7b6470055", "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": "9720d3d8-b3cf-45b1-950b-bd747a1728dc", + "id": "c54e326d-9b52-4aa4-b834-7fff93368f36", "name": "List Roles", "request": { "name": "List Roles", @@ -79546,7 +79546,7 @@ }, "response": [ { - "id": "00b7bb1f-19cd-44b8-80ef-bf74742949b1", + "id": "7aa6dfea-eecf-4ab8-9ae1-f8be8da02b5c", "name": "List of Roles", "originalRequest": { "url": { @@ -79662,7 +79662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fecc4de9-02d5-4e0a-8990-100ee26fb35b", + "id": "bfab383b-4c01-448b-8bda-66fa5778009b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79778,7 +79778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd4655c1-35ef-4926-8c69-a9cc3200bbec", + "id": "037301f4-cf90-4624-a1f0-758890d0cfb7", "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": "5449fbce-2921-4a26-8a1e-68af41956bcf", + "id": "758a3197-f26d-4262-a954-04e977144866", "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": "580f5962-f554-4af8-a2af-8bd208f8b1a3", + "id": "4069e1ca-3127-4e1e-85a5-a3e31898816c", "name": "Too Many Requests - Returned in response to too many requests in 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": "5bd36962-39f5-4c75-9d61-db156f60f83a", + "id": "fabe4aec-3036-483c-89ac-101e391941fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80248,7 +80248,7 @@ } }, { - "id": "cd922fe8-ba44-4072-8b63-2d46b9856fd4", + "id": "16cebbc5-4406-4dd6-9399-84fd49c77122", "name": "Create a Role", "request": { "name": "Create a Role", @@ -80290,7 +80290,7 @@ }, "response": [ { - "id": "992c5db0-5abc-4076-b0c1-c758bc383699", + "id": "12fe4a8b-cc10-4274-9efd-1949570607f6", "name": "Role created", "originalRequest": { "url": { @@ -80346,7 +80346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8c229d5-c01a-43c7-be07-2f9602e741cf", + "id": "fc3fda33-1de8-44cb-a276-1c4b9517cd3a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80402,7 +80402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f966e00-c385-4b1a-af32-b294ff5856e3", + "id": "8db8bccb-d38c-41ee-960e-17e6c62ff57d", "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": "7eb0bb85-6076-456b-b9ef-e1b05214bf9e", + "id": "087fb51f-916e-46a5-8d43-65f1f7d3e374", "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": "045faddb-762d-41d6-bf6b-af2b879d0ad3", + "id": "5bfca0f0-7b4d-4172-bd24-d7df2b5a761c", "name": "Too Many Requests - Returned in response to too many requests in 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": "d691ecbc-be14-4e28-8eae-b2e9689fe5d8", + "id": "409f8f8a-fb13-4cdb-b2e3-a17578469b01", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80632,7 +80632,7 @@ } }, { - "id": "b88dd3b5-9a61-4bcb-8054-c8db12bf6c60", + "id": "51953305-5fde-43d6-8746-9c07f888e501", "name": "Get a Role", "request": { "name": "Get a Role", @@ -80673,7 +80673,7 @@ }, "response": [ { - "id": "f5a06778-5796-4162-a3a4-0017c1919b99", + "id": "e7c26d3e-1973-4ab0-abfd-239b554cef67", "name": "List of all Roles", "originalRequest": { "url": { @@ -80717,7 +80717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc85805c-d1e8-4903-b7bd-5937a105d4a6", + "id": "f3fd2ea5-ce2a-4690-97f4-6ea543fa9b35", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80761,7 +80761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86a30913-e8a6-492a-b71e-ca3a8b157d52", + "id": "15cb8996-1285-46d8-89a5-01b576296ffb", "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": "97504fdc-d2c9-4705-b251-e33a24b0b2a6", + "id": "55436a8d-1b80-43cc-a6f6-5f8df1016551", "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": "704cadb2-011e-423c-b7e8-a2043710c875", + "id": "354db4b5-8ef7-4c20-9566-c4062069e23f", "name": "Too Many Requests - Returned in response to too many requests in 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": "d80a3205-fd1f-4ae3-ae1b-0c41c4bf6b7e", + "id": "54708e23-f1d1-40e0-8a05-84b8598383a1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80943,7 +80943,7 @@ } }, { - "id": "ca220480-f284-43f6-9f1f-f67b92bbe988", + "id": "5aa3e28a-ec1c-47c3-816d-4f02fca7f159", "name": "Patch a specified Role", "request": { "name": "Patch a specified Role", @@ -80997,7 +80997,7 @@ }, "response": [ { - "id": "a0fd3c30-5b33-40dc-8888-e49fb20992a2", + "id": "6421c516-c8c8-4bc1-a4ae-294c82160cdf", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -81054,7 +81054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99abbe25-45b7-453d-bc72-c97dc9e830ee", + "id": "e26531f0-663e-4e21-9ee0-281dcfa2dc4c", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -81111,7 +81111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8785f0ae-264f-4ca0-9fa2-24b3c5c08d56", + "id": "abc26df3-eb90-48ba-9fcf-7818e00902f8", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -81168,7 +81168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85f660af-00f6-4152-ae60-54677ec73fb3", + "id": "9e5ee64a-dc0f-457d-b86f-12313894717d", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -81225,7 +81225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "873e1c7d-c4b1-418d-b6c5-08d143831065", + "id": "5580a8dc-0cef-4c8b-8962-2b2f8742477a", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -81282,7 +81282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "457867ba-b0e5-4446-b148-de80fa60e246", + "id": "f3c16566-9354-4e8e-b97e-d9ccee2264a3", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -81339,7 +81339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f858a612-e782-4612-8808-92ba8fe3a3bd", + "id": "fad8caa2-c5c6-4b84-840d-4c3627d7bc7d", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -81396,7 +81396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa120376-53be-4070-8baa-4559427f1b47", + "id": "a94398b3-391b-4823-aa04-bc3e8a1a1d47", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -81453,7 +81453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "230cbd3f-59b6-4600-bd92-fc7b6a701b96", + "id": "d6d8cb6f-a37a-4f2e-aca0-e78c47cee3d9", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -81510,7 +81510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16400312-d6bb-4eff-9784-c013a1c63055", + "id": "e58bcfac-ac18-46ad-aa88-b0c1623e311e", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -81567,7 +81567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3298a32b-455c-4ef0-a24c-5bd14fdd6950", + "id": "eb27a657-2e34-4175-af2c-bdbce9b6742d", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -81624,7 +81624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c71c331-4180-4d57-800f-aa2314e0b063", + "id": "7d618a1e-c0ca-48ce-8007-8da4379b055f", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -81681,7 +81681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0687ea3b-b724-4f67-8e75-dfb8df9fbae3", + "id": "c8bd935b-9552-4661-85ab-6a83bfe82cf3", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -81738,7 +81738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdff2c37-ccf2-4646-a97b-6be9e4c03660", + "id": "69bb094b-4537-45ea-a07f-bc8ae6b906c2", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -81795,7 +81795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0ab0caa-c382-4d43-a3a6-e839d089ca0f", + "id": "c29f364f-2961-452b-a92d-65a6b1b44d9d", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -81852,7 +81852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c72f4ce0-a252-4fe0-8170-24608c660244", + "id": "a8ff6e01-362c-45f7-94b2-6c9a46544532", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -81915,7 +81915,7 @@ } }, { - "id": "29ced42b-3078-4bfd-afd4-f57d0f4f7d31", + "id": "2ef247da-c1b8-40c7-931a-d6c4bc583351", "name": "Delete a Role", "request": { "name": "Delete a Role", @@ -81956,7 +81956,7 @@ }, "response": [ { - "id": "77e3b3e9-7779-42b5-88f6-9b40b6f64ba5", + "id": "dfbbea6b-59d5-4b3d-9c00-d3ae831f92f0", "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": "baa0ae45-20d6-48db-aa27-4cc7aca0dbc5", + "id": "e94e60a9-10cf-4fc0-baa2-8a3c22b903f2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82034,7 +82034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35686269-56cf-431f-815f-198f2e503242", + "id": "bf686353-3dd4-4358-b9da-b055abe7086d", "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": "1de3d9dd-899d-4fba-8ef6-8a418ce05a44", + "id": "17c4b827-352b-403f-b124-3d5c8f93c981", "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": "be70d3cb-c81a-435d-8c6b-66022d6e1215", + "id": "18568c8f-d0a0-4015-b78e-b23555bf3987", "name": "Too Many Requests - Returned in response to too many requests in 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": "dd4bbe7e-d205-45bf-85c0-ac22dd0ab50f", + "id": "c6cacb50-4fb5-485a-997a-3afe8da0363b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82216,7 +82216,7 @@ } }, { - "id": "6681784e-5b22-43d0-9382-b0b14e16decc", + "id": "1b4b02b0-76ba-4cc8-abbb-accd1299dc78", "name": "Delete Role(s)", "request": { "name": "Delete Role(s)", @@ -82259,7 +82259,7 @@ }, "response": [ { - "id": "c60fba94-1871-4241-a7b8-ca04d21f5032", + "id": "99a329a0-0e6f-49ff-a1c8-e8aaf5e53519", "name": "Returns an object with the id of the task performing the delete operation.", "originalRequest": { "url": { @@ -82316,7 +82316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ebd9933-7dee-403e-af1f-848af13c3f6f", + "id": "670b14a8-17f9-4d70-b93d-10c09020bb02", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -82373,7 +82373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f56c990d-4cce-4a31-9edc-930b9394dc1d", + "id": "8ce6cf27-e1c1-415a-aee8-00b3f209e49d", "name": "400.1 Role ids limit violation", "originalRequest": { "url": { @@ -82430,7 +82430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a7ee477-aabc-4e4a-ba7b-98e7b1ab140d", + "id": "b960bbff-ebc2-4023-b58f-d5c8fa4c77dc", "name": "400.1.404 Referenced object not found", "originalRequest": { "url": { @@ -82487,7 +82487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d514e5c-331e-4e46-9b33-04a47aecac12", + "id": "ff435c6e-c031-4230-a631-3085b5372290", "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": "a06c27f7-345c-42d3-982f-da1a98d5185f", + "id": "c847e4a4-aa81-4008-99d0-255a3e8337ad", "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": "775458e2-197a-468f-a4ee-c62948087c31", + "id": "b3147b46-1a83-45be-a820-2b74bc6eb803", "name": "Too Many Requests - Returned in response to too many requests in 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": "f3fc37d4-be13-42ab-a411-8f24242a664a", + "id": "36ba6bde-cf8b-4100-ad7e-9211da4640f7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82721,7 +82721,7 @@ } }, { - "id": "5bb18c2c-a464-4446-9d75-0a3a8d033f8f", + "id": "26ea0237-a1dd-4ec5-a6d3-f562deffffa8", "name": "List Identities assigned a Role", "request": { "name": "List Identities assigned a Role", @@ -82806,7 +82806,7 @@ }, "response": [ { - "id": "cf44c71a-21c0-4745-a8b1-a8ce155862b1", + "id": "70be10c9-a957-4677-9600-c1c2da831d65", "name": "List of Identities assigned the Role", "originalRequest": { "url": { @@ -82897,7 +82897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e1c6c06-fc96-4ae2-a46a-24cf5cada841", + "id": "589fe9d3-287a-4c2d-a9d2-447efd5059eb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82988,7 +82988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "211a6bb8-fdd2-40da-aa1a-2eaf5e4ff4ec", + "id": "7c6044a3-d1c5-49a5-82dd-b3c844a9edea", "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": "97bb326b-5dbe-4a7f-a742-47c213d05c30", + "id": "0493c195-a7e5-4635-acbe-9797279b4e99", "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": "bb01bb40-91d8-43ef-8761-a8d6e4d45fb6", + "id": "cba9e627-72f0-4a4c-8fac-510a438df91c", "name": "Too Many Requests - Returned in response to too many requests in 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": "842872a4-1e34-4755-aa0c-3b13699135da", + "id": "e0bdc8a8-4d16-4e4a-ab6a-35720a432efd", "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": "bcc88a88-7555-44fd-8971-8faba7a3f69d", + "id": "23c52a82-c708-4f21-8571-b780ccba364f", "name": "Create a saved search", "request": { "name": "Create a saved search", @@ -83406,7 +83406,7 @@ }, "response": [ { - "id": "892b0dc5-6c53-4f55-bd64-17adbb198514", + "id": "4e160de7-0298-4a35-89d7-547a6ca6e5ca", "name": "The persisted saved search.", "originalRequest": { "url": { @@ -83462,7 +83462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad84a39a-a74c-414c-a144-ac4c7c420c25", + "id": "4012639e-6efa-4312-b1ff-52f0217c7d8e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83518,7 +83518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7126455-8e33-4e4f-b5c1-6fe9ba55bc89", + "id": "5cdd5bdd-d980-4b8d-8221-c0950267a0e0", "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": "17c52930-38df-4a47-82f4-14a4e12e1f70", + "id": "78116498-d7b3-4dbb-9532-665804e57793", "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": "d33a5d3b-b481-44af-8093-df59b32657b3", + "id": "89cdf6a8-1edd-4607-93ae-a1c72950d12c", "name": "Too Many Requests - Returned in response to too many requests in 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": "dadc146b-9d2f-4dcb-ab98-d1bdfc67a5cc", + "id": "455eea46-2e67-4511-b7ba-b80ff93b6d8a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83748,7 +83748,7 @@ } }, { - "id": "04b32240-c989-492a-b92c-0e2ffecdbc20", + "id": "ccdb6d58-dba4-4603-8af4-d6515fe0d717", "name": "A list of Saved Searches", "request": { "name": "A list of Saved Searches", @@ -83814,7 +83814,7 @@ }, "response": [ { - "id": "ac48cf86-8bcc-44af-a099-95f07c3b8cca", + "id": "bbe79be6-08ed-4d03-880e-1f020770ff6c", "name": "The list of requested saved searches.", "originalRequest": { "url": { @@ -83903,7 +83903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2daf602-a19a-4ec2-a2df-06b5119ea951", + "id": "38fb6dd3-1419-47e8-ad5b-10fbb162c305", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83983,7 +83983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6df220e-41c2-4f73-a713-e85da4d865ba", + "id": "d663299a-0d47-46f5-80ef-e79487daa1f2", "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": "00a97574-bb9e-47cd-927c-0ebd31b916c3", + "id": "0483923b-af1a-4ebd-b894-552a453ee980", "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": "44d323bc-25fe-4eea-9c3b-e87a625459eb", + "id": "a55505ca-076d-479f-a578-a1122d183c73", "name": "Too Many Requests - Returned in response to too many requests in 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": "99def44b-c199-4301-bd60-7835226e4c82", + "id": "d06765fd-0853-42f5-8cd6-f822940aa167", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84309,7 +84309,7 @@ } }, { - "id": "7d584f23-0aa2-4081-8072-9c160c9bb230", + "id": "21034641-53c5-46ca-9e79-7bb05e18b098", "name": "Updates an existing saved search\n", "request": { "name": "Updates an existing saved search\n", @@ -84363,7 +84363,7 @@ }, "response": [ { - "id": "c808ef98-0d63-4b48-bc50-8563b99ad7e4", + "id": "ba0379f9-f985-4c79-802a-3cd98e0adf9c", "name": "The persisted saved search.", "originalRequest": { "url": { @@ -84420,7 +84420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58acf392-0cc9-4308-8e8b-f61c65812184", + "id": "dc05a8d9-5e01-426d-b8b5-7baf86978399", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84477,7 +84477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56cfc268-4859-4793-8722-f3115129c834", + "id": "639af214-9e82-4814-b122-67098f8b2b3e", "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": "3c2e55c8-a4a2-4a16-a342-151b6262f8c5", + "id": "b38e6e9d-6c10-40a9-b9cd-43b656617e4b", "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": "69cd976e-f406-4bd7-b953-64d4b8bc38f0", + "id": "494523e9-6e72-4777-b117-f0df93e53ccd", "name": "Too Many Requests - Returned in response to too many requests in 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": "7248464c-8516-4ebb-98bb-9720801ec7f4", + "id": "cb61f97b-c4d4-4772-ad3f-08e9c40e4b7e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84711,7 +84711,7 @@ } }, { - "id": "0545cb1c-3b68-4670-8fa8-361c95f49774", + "id": "7153a7ae-e7cb-4648-9509-061a3300c166", "name": "Return saved search by ID", "request": { "name": "Return saved search by ID", @@ -84752,7 +84752,7 @@ }, "response": [ { - "id": "db9612c8-99c0-4c3a-bfe1-4c43ff1f6db0", + "id": "6c388f89-a6d8-4dcf-ad64-5ea0355abd51", "name": "The requested saved search.", "originalRequest": { "url": { @@ -84796,7 +84796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5de04335-0fba-40ae-9b64-ec5c8752b350", + "id": "e4573508-172f-4c5e-87d4-dc86860085b4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84840,7 +84840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db06ed9e-049b-47a6-8871-f6a85472ca88", + "id": "ff8f9d0e-8d69-483a-b362-43c619dabcb6", "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": "bc996698-dec8-4612-8ace-4a5126e93690", + "id": "5e8ab1f2-5234-45f4-bfbf-5ca8a3c30aad", "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": "20c95620-e119-4355-85e5-7089c36d8976", + "id": "276dd3b2-6eba-4703-bff7-1b5ebb13d384", "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": "60b10324-0bb8-4b17-bd5a-31673ca8de87", + "id": "86ef4908-0f25-4de6-a975-2b600d78152d", "name": "Too Many Requests - Returned in response to too many requests in 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": "12052f17-30e1-420c-8ea3-a9279d339a45", + "id": "5cc3b5f0-2a0d-4bc6-a67b-a73aafd6c120", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85066,7 +85066,7 @@ } }, { - "id": "3c1baa65-47b7-4bee-9c2c-a65f7dc8427d", + "id": "bdc68b10-33fb-4adb-be3d-c98e764ece69", "name": "Delete document by ID", "request": { "name": "Delete document by ID", @@ -85107,7 +85107,7 @@ }, "response": [ { - "id": "833cd835-81b3-4179-93f8-0c12c57aa27d", + "id": "aeafa16a-5aa1-4de7-b7f9-87421dd5ba92", "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": "02a309bf-8668-4c73-830c-61e629e4affb", + "id": "46ec0715-398e-4821-8cd3-8309f06e5340", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85185,7 +85185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecba88d9-f629-45bf-81a1-57acf4e585c9", + "id": "1f8a892e-6908-45af-bcc8-2d7b48d0b57e", "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": "6dca8237-86f5-424d-bcf4-089737bbb256", + "id": "abe8ad2e-4c50-407d-bcb9-c0be344c8ff0", "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": "a44c8a4f-661d-4ac6-883f-4004c47bbefd", + "id": "681cf5e4-5ce0-483f-9b77-065b72334e24", "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": "59f69752-788c-45ad-a36d-3d7762d53243", + "id": "0b5e0c81-9bec-4676-aaef-01dc5bc66283", "name": "Too Many Requests - Returned in response to too many requests in 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": "1a373c22-22af-4238-add8-52c770584386", + "id": "3feb0565-707c-4e8b-95d0-44506299ab19", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85411,7 +85411,7 @@ } }, { - "id": "1b6034d0-6591-40fd-82ea-ddbf1b8ab4af", + "id": "88a617d3-a744-46e1-833a-52bfc12ee6a6", "name": "Execute a saved search by ID", "request": { "name": "Execute a saved search by ID", @@ -85466,7 +85466,7 @@ }, "response": [ { - "id": "d844b0e7-09f0-44c1-a231-0f6b44aaeb71", + "id": "b7449e2f-4063-406c-a733-c70c01f0d61e", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -85514,7 +85514,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9987944f-bd11-4918-b694-e80cae7cddcc", + "id": "abd72060-74b6-41bf-9e9d-d91ed38be73c", "name": "Triggered by Scheduled Search", "originalRequest": { "url": { @@ -85572,7 +85572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b75e2897-c194-49a7-8a3d-027900e2f2f4", + "id": "9887d99e-e0a9-45eb-b2c4-5d6f105f6aca", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -85630,7 +85630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f7acf9f-c497-49a0-b725-9d523e8de488", + "id": "7c1ad962-09ac-4c9b-9261-62169cc9fa77", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -85688,7 +85688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "015812bc-ca55-4ef6-b102-ac1e74d0a338", + "id": "831685ce-3895-4264-bd0b-38653e5d0fc3", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -85746,7 +85746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "728fa1de-5918-4209-ba17-046aa0bb7745", + "id": "ebc3b2f5-0782-4375-bb24-37b1ac679a13", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -85804,7 +85804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f37494e-26f5-4c9a-9126-6fb2f38ca49c", + "id": "0e0bbf87-796d-49b4-9e21-11e3e0d5b70f", "name": "Triggered by Scheduled Search", "originalRequest": { "url": { @@ -85862,7 +85862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "695df3be-5ae3-4303-84ce-81b5880e8246", + "id": "f7aec1a9-7932-4ea2-9381-d84e7487f31c", "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": "bd45d0a2-b925-4d99-957f-a68c54d9ece7", + "id": "3f9ad7ef-53d0-404c-aa07-9da2a1ed29d5", "name": "Create a new scheduled search", "request": { "name": "Create a new scheduled search", @@ -85974,7 +85974,7 @@ }, "response": [ { - "id": "7a2d5b9a-5ffe-4997-9448-e93d559d7162", + "id": "d6ee4764-ecf9-4384-b6b3-162903b03c8d", "name": "Daily Search", "originalRequest": { "url": { @@ -86030,7 +86030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39adf1a7-ac10-4c7d-901b-c038bd7e9f53", + "id": "e1c94bcb-5ebd-4f98-aefb-d070d7ca70e0", "name": "Weekly Search", "originalRequest": { "url": { @@ -86086,7 +86086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "954577a7-4fe4-4b5d-9057-12cc38eb9707", + "id": "7bf02a6e-c667-4c5c-983b-5504c1f9fd43", "name": "Monthly Search", "originalRequest": { "url": { @@ -86142,7 +86142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91a5ff43-dd9b-4460-a17e-93ca42af7006", + "id": "0f30cf36-dba7-4c4d-97e2-eb4570e8890f", "name": "Annual Search", "originalRequest": { "url": { @@ -86198,7 +86198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09b85bf5-eead-4635-b662-4b1f83baf7b4", + "id": "9ad0ed39-8006-4674-9cb9-2bc301f5a024", "name": "Calendar Search", "originalRequest": { "url": { @@ -86254,7 +86254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfde4802-0a8b-4c8c-91e4-7253f4d8c1db", + "id": "e2827940-60b7-4146-b5b2-07b484ee2e47", "name": "Weekly Search", "originalRequest": { "url": { @@ -86310,7 +86310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "109b786c-17c2-4dad-96fc-4b92a040ca77", + "id": "376117e1-686c-4020-afeb-46b218189857", "name": "Monthly Search", "originalRequest": { "url": { @@ -86366,7 +86366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85ea3da6-e4d1-44a4-892b-324f15927a21", + "id": "e0d12506-d968-463e-834a-b0a62a81a509", "name": "Annual Search", "originalRequest": { "url": { @@ -86422,7 +86422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e43c0855-2336-463a-a833-df8124fe851d", + "id": "f438d63b-a78b-4662-9b78-164a515990f3", "name": "Calendar Search", "originalRequest": { "url": { @@ -86478,7 +86478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "568fa373-0783-4944-8d61-94d151975a8b", + "id": "26be440f-76b2-4876-acd2-edf353b6ab93", "name": "Monthly Search", "originalRequest": { "url": { @@ -86534,7 +86534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "595f8528-a33e-4c90-ad52-2dc303bb41e0", + "id": "b8017d9d-0109-4345-b566-5064bbcb4c82", "name": "Annual Search", "originalRequest": { "url": { @@ -86590,7 +86590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87a20bd7-d46c-4d8e-97bb-f8dddf8dbffc", + "id": "d8ebb20f-a6d8-4791-a323-4e244e92afe1", "name": "Calendar Search", "originalRequest": { "url": { @@ -86646,7 +86646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "621988dd-8145-449d-8426-af93a58be0cb", + "id": "afc76fa2-69d4-4bae-ba2b-bbf48bdb0a8f", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -86702,7 +86702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "757e0fe3-d171-4fd1-9b05-5604f5f6fca1", + "id": "c8503b58-a657-482e-8755-d1f0eb92bf7a", "name": "Calendar Search", "originalRequest": { "url": { @@ -86758,7 +86758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3334c734-5545-4b37-bfff-76a6ddb2a231", + "id": "26803670-b7d7-4c44-a655-cf99c026f534", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -86814,7 +86814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b99e1e0-0a60-4369-a060-107214d4a016", + "id": "b3c9d6f3-a072-43b2-a74f-2c966cc5d358", "name": "Daily Search", "originalRequest": { "url": { @@ -86870,7 +86870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67812da1-806c-4abd-a43a-8bdb542b61ec", + "id": "22e912d6-4de4-40d6-a0f5-a9a54c0dcc0f", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -86932,7 +86932,7 @@ } }, { - "id": "41d9d747-6d62-4062-a1ff-c62c05411c5b", + "id": "25be3417-b79b-4244-992f-2f8a6facef8e", "name": "List scheduled searches", "request": { "name": "List scheduled searches", @@ -86998,7 +86998,7 @@ }, "response": [ { - "id": "c5b18ee5-676f-4d21-883e-18e20968f166", + "id": "3b416a49-9a81-447e-b87c-f21558467a9f", "name": "The list of requested scheduled searches.", "originalRequest": { "url": { @@ -87087,7 +87087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9ee5b6e-f8a9-44e0-9af1-1daf23b19153", + "id": "8d9ebf2b-0d5d-4f33-8f9b-82d5448a7407", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87167,7 +87167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c2b2831-9b18-4945-82aa-91327562a9b8", + "id": "e906c73d-c19a-42ce-bd8a-ca274ba9c898", "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": "5b7e32ca-97cc-4f1a-abc6-edc96bed2bc5", + "id": "a792fa60-762b-44e6-8d0b-e67c58018af6", "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": "007d1d02-4168-4220-a96b-66347c48b7b9", + "id": "05254011-7e9a-45ff-ab7d-a1c5ee39868f", "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": "1b72ccdb-24e1-4579-8983-03da114b4a9d", + "id": "2893e883-7d8c-47fe-a65b-4cd8cc753d51", "name": "Too Many Requests - Returned in response to too many requests in 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": "bcaa54e4-3a9e-4b59-800b-265eb197e7a7", + "id": "9e4dde74-09a3-4a19-96c9-8109ca590ac5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87573,7 +87573,7 @@ } }, { - "id": "c9dc2ec4-9116-49b8-b280-76f1353faa74", + "id": "8f2bac91-9804-4e1c-bb85-6a5b0f1e9e32", "name": "Update an existing Scheduled Search", "request": { "name": "Update an existing Scheduled Search", @@ -87627,7 +87627,7 @@ }, "response": [ { - "id": "a9388308-da11-491e-8c2a-7890a5c3a17f", + "id": "4187bfc2-dcf2-4582-88c8-7e595e7fae7d", "name": "The persisted scheduled search.", "originalRequest": { "url": { @@ -87684,7 +87684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "deff3ae8-f323-48be-b9df-f7f150316e50", + "id": "2afc3fe5-ee7d-4052-9efe-3720efba4a39", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87741,7 +87741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88abc69f-078a-4693-b072-5cdea2b2e193", + "id": "26be8a5f-ea78-42a2-aac5-bc845216bb79", "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": "854c7730-2866-47c9-a707-930790736643", + "id": "a17acad7-db40-468e-853e-dacbd2744e99", "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": "77d3ceed-b5a1-4492-8bab-0b52613dfbb7", + "id": "f02e378f-00bb-4232-b2ca-8fb4a5b9ec94", "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": "d4ff5966-6800-430f-a520-dd28f10c1427", + "id": "7e2930b2-a8f2-437d-86db-949f8ed9ad4f", "name": "Too Many Requests - Returned in response to too many requests in 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": "c07cef3e-0d3c-4fac-8f03-e4a712a4471a", + "id": "d9c554cd-a73e-4e68-8d5a-1ee575cbf980", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88032,7 +88032,7 @@ } }, { - "id": "3e3527d8-673e-4575-a834-0f0c2348f584", + "id": "36762b8c-afb7-4a13-99ba-2741f13fd9b6", "name": "Get a Scheduled Search", "request": { "name": "Get a Scheduled Search", @@ -88073,7 +88073,7 @@ }, "response": [ { - "id": "5009e89f-2d20-42ca-bbed-2c2c9b897447", + "id": "0e36a3ff-bfed-49b0-8933-740b2dc00042", "name": "The requested scheduled search.", "originalRequest": { "url": { @@ -88117,7 +88117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42b064e8-059c-4645-bb96-b450953fc751", + "id": "119cf368-6209-49fc-89f0-23cb025d3e11", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88161,7 +88161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ed2d80f-246a-46e2-ad3b-960f6308139d", + "id": "fc47575b-4bcf-45d1-a209-8bf37b6abe7c", "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": "c14ce7c4-ddef-4807-8c60-c414cb071f75", + "id": "af5e5ab2-047c-4542-a1ad-edc36648edf0", "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": "7b855bcf-dea9-4d86-ae56-ff15056e4fad", + "id": "6d461d65-6017-45b0-bc7e-0fea1a3217e1", "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": "c27a7c75-01c8-4f66-ba95-6a7938599cdb", + "id": "0a9ce1c3-8847-44ab-8b50-ebd5bcf109d7", "name": "Too Many Requests - Returned in response to too many requests in 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": "650ad710-6f03-4f12-8809-3d52976cb2a8", + "id": "b5a30126-f967-491a-8fa8-024a6e3a9c7f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88387,7 +88387,7 @@ } }, { - "id": "abdb9f47-adb0-40a2-be20-41e48d41040f", + "id": "91ebe0b7-01fd-4a26-a5ef-d3ef052b4b2b", "name": "Delete a Scheduled Search", "request": { "name": "Delete a Scheduled Search", @@ -88428,7 +88428,7 @@ }, "response": [ { - "id": "ef39dc01-54a3-43f5-8f83-33eb6b618b0d", + "id": "f3061bb9-f17a-456a-ae12-6f1c1bdec29f", "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": "65c917bb-3b2f-4ab6-ac0f-24a8501f6db6", + "id": "8b7c9656-8f88-4496-91c5-350b15707818", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88506,7 +88506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5e78649-ae4b-4532-93c5-29e5d2b802d0", + "id": "31dad487-661d-49bd-89f0-065bb696e2e1", "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": "101e0609-ca20-411a-88e7-c9743996ca17", + "id": "f671fb79-1296-4625-a3e0-ab38feda0b64", "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": "6ccf701e-57f9-47ff-84bb-8b939fe93982", + "id": "1109f71c-7b62-4254-bb9e-92971ceb6c6c", "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": "4feb6adc-19a5-4b88-abf2-1a305ac205e7", + "id": "31dbeed9-fc22-4527-95fb-762d5bf52b36", "name": "Too Many Requests - Returned in response to too many requests in 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": "95b1e3cc-7232-4e54-8c9f-f43641a53444", + "id": "38e5c03c-36d1-47d3-a596-1530f60e1a4d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88732,7 +88732,7 @@ } }, { - "id": "2e30f6a8-f2d8-49ac-9f3c-c1bc189c5b29", + "id": "be1a1e71-bf65-40ca-ac70-187fc1dacd9c", "name": "Unsubscribe a recipient from Scheduled Search", "request": { "name": "Unsubscribe a recipient from Scheduled Search", @@ -88787,7 +88787,7 @@ }, "response": [ { - "id": "d7bcc883-5f13-4631-87db-e74a8c7d11d3", + "id": "954ac6f0-fd8e-4ae4-b312-6c6ff6d8cc07", "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": "0e637b3f-dd6e-4929-9044-c284d5e43f7d", + "id": "f09d503b-810d-45b7-bcd2-e0cff2bbc0ec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88893,7 +88893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cde17a2-4909-4f9b-86ce-bb28bdf3009a", + "id": "bcc705ec-caf9-49b4-8aaa-5d0ea641c610", "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": "db3896f1-d135-4096-ae2e-4ac290d15875", + "id": "aa7da66e-a476-41db-a9c3-3f608cb52d02", "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": "9deda602-3016-4c32-8705-1e85d37070d7", + "id": "aea17219-f07e-4e33-aabd-b47b5c5081b8", "name": "Perform Search", "request": { "name": "Perform Search", @@ -89091,7 +89091,7 @@ }, "response": [ { - "id": "fff084bd-7e6a-4869-bd34-982a3067ae94", + "id": "85cbd9a9-3655-42de-8e3f-35b836c84afd", "name": "A collection of AccessProfiles", "originalRequest": { "url": { @@ -89184,7 +89184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46f19993-a6b9-4ccb-b9d7-8ecdafe8a9e3", + "id": "5321668a-b896-49c6-a8c4-72e0a183c5bf", "name": "A collection of Entitlements", "originalRequest": { "url": { @@ -89277,7 +89277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3afe4d38-76a5-49bc-885c-cd5dde271a4e", + "id": "1896ecbd-800c-4ed4-b37e-f677d2a323ec", "name": "A collection of Events", "originalRequest": { "url": { @@ -89370,7 +89370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f542e509-4269-4f1b-9714-dc36c85a4e19", + "id": "34a01eb0-5901-40e1-9ea4-32b572239d38", "name": "A collection of Identities", "originalRequest": { "url": { @@ -89463,7 +89463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "726f8192-bbbb-48bb-9481-2887108cab10", + "id": "bfb0dd02-72ae-4c3b-9bae-a8e65e97942e", "name": "A collection of Roles", "originalRequest": { "url": { @@ -89556,7 +89556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "545cf335-ce96-45a6-96c2-fbcfc63e951d", + "id": "77ae072e-f1f6-4038-8c22-be42ff4069f0", "name": "Filter with Exists", "originalRequest": { "url": { @@ -89649,7 +89649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9791ca0-6c4d-4f25-aaea-cd5ae12e6e07", + "id": "650c7c46-a7cb-458f-a55b-a5e04693ea30", "name": "Filter with Range", "originalRequest": { "url": { @@ -89742,7 +89742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b26e9dfb-ac32-4f64-8c3f-1e3bf6a5bb23", + "id": "3a69d91f-8ae7-4962-8e94-012d3e9bf4ee", "name": "Filter with Terms", "originalRequest": { "url": { @@ -89835,7 +89835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04029e04-9f75-4465-9903-233fc1fd2ee1", + "id": "1ae8918e-7e02-4039-a8c9-58f98682512b", "name": "Filter with Exists", "originalRequest": { "url": { @@ -89919,7 +89919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a3f685a-5bd2-45f5-8f9f-e8ab7ef95220", + "id": "c3b33c8b-5554-4aaf-93ad-9c395787250a", "name": "Filter with Range", "originalRequest": { "url": { @@ -90003,7 +90003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7349d9d2-8af4-4f3d-88fa-5553fe7d4108", + "id": "9c1fec05-fabd-4a45-98dc-83d2606b0400", "name": "Filter with Terms", "originalRequest": { "url": { @@ -90087,7 +90087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a61a122-6ba5-439f-8572-5926e206850f", + "id": "d1abf3fa-cb54-4a2b-8452-c728c8b1a21d", "name": "Filter with Range", "originalRequest": { "url": { @@ -90171,7 +90171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10566147-cf0b-4963-b58b-9949c08dc648", + "id": "de66a332-9dcc-4f17-817b-b79b35f650b3", "name": "Filter with Terms", "originalRequest": { "url": { @@ -90255,7 +90255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91aca514-49e8-450d-bbb8-130dc72be7bb", + "id": "3cece402-3b86-4ddb-a3a7-c99e76de29f4", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -90339,7 +90339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "983ff4c2-be0f-4aa5-991e-e28054f922c7", + "id": "ed6945e5-7de3-454a-a3e4-5ea14bf08d73", "name": "Query with Fields", "originalRequest": { "url": { @@ -90423,7 +90423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d32d805e-a3f3-4a57-b3b8-779ca55ae272", + "id": "c8c2d60d-2077-4848-8ece-68afd7dc19ec", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -90513,7 +90513,7 @@ } }, { - "id": "7788855b-2875-4626-9ee3-3053573bc4c7", + "id": "010d3c78-587e-4c64-a5e4-9ab082408a0c", "name": "Count Documents Satisfying a Query", "request": { "name": "Count Documents Satisfying a Query", @@ -90556,7 +90556,7 @@ }, "response": [ { - "id": "f19097bc-8969-4989-97db-5893af13a22a", + "id": "df81a04f-078c-4c78-b440-b92300e279da", "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": "22dc3ac9-8c73-400d-b7a0-6246e8e2dcf9", + "id": "234a3f42-5c20-4019-84b2-c95bbf7a99d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90670,7 +90670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4922a43e-6829-4615-b6f7-0b64f66f6839", + "id": "6ad58fee-c332-46e4-a244-c31720054cc7", "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": "685f2d6e-5e66-48a0-a5c0-b02da9287cc9", + "id": "5e71afdf-0a27-42a8-a31e-6c5cd45be508", "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": "e1686848-4667-4cfe-9aa6-fb1e67ba151f", + "id": "cbf33ee2-dab8-426a-b9b1-fd3ad897ed36", "name": "Too Many Requests - Returned in response to too many requests in 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": "ade050c0-cb78-4262-8725-60393d08ecd1", + "id": "99bfc6d8-7b9c-48e9-a06c-1aa23884dddf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90904,7 +90904,7 @@ } }, { - "id": "9c5eac77-a4fd-4dfe-8c40-32f0bd980634", + "id": "b26cccd3-cbde-4762-b84b-70484e98f9c7", "name": "Perform a Search Query Aggregation", "request": { "name": "Perform a Search Query Aggregation", @@ -90975,7 +90975,7 @@ }, "response": [ { - "id": "ca756dfb-3f02-400d-9926-57ecc5d5ad66", + "id": "230c0f0d-3841-4ec1-9bc2-2d1aa091c4dc", "name": "MetricAggregation", "originalRequest": { "url": { @@ -91069,7 +91069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92c0a729-4f3a-47ea-939a-6253394b83f1", + "id": "e765737e-45bf-498f-8847-9f5da1f1d402", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -91163,7 +91163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fc95f3d-b6f7-4cf5-9d74-6baed8542b6e", + "id": "82492df1-b111-49ee-95fd-535c799d60a6", "name": "BucketAggregation", "originalRequest": { "url": { @@ -91257,7 +91257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e962805b-8092-4b8c-9593-630316aca85e", + "id": "98443402-bb49-4be4-b9df-cd92005f30b4", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -91351,7 +91351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c09809f-2ed3-4d69-9b2a-f017cb191c3b", + "id": "af5d52c4-c2f9-4a17-be7d-afff300290c4", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -91445,7 +91445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb37c167-4680-4f08-b016-c1787f099527", + "id": "d999b2c5-be87-4f0c-8a1a-1171dfd75ce6", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -91539,7 +91539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4231f04b-d6ac-4bc3-85e8-39640484f049", + "id": "1154ba34-388d-4896-9dff-aa4a92fc14ad", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -91633,7 +91633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61af9d7a-b82a-403a-9a1b-667d853ac83a", + "id": "e7549141-0b4e-4a76-8992-442a00f04e39", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -91727,7 +91727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c99cd061-7730-4ed2-8674-bdf6d5c90347", + "id": "01a65513-d72e-4e15-a838-720e55429f91", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -91821,7 +91821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1aaac3f9-0152-4b37-b526-a7ae5691f3b3", + "id": "b603e68f-cbe0-4c37-87b4-60a067301382", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -91915,7 +91915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2edb778f-aa47-4e53-a2ad-68eb494d8476", + "id": "f5e3ebcb-dcde-4b3d-9d23-75533a6911a3", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -92000,7 +92000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97cb5797-6872-4bfd-8872-28aa2de23f01", + "id": "cc21d1f4-5cd5-4acd-9761-6353a6500633", "name": "BucketAggregation", "originalRequest": { "url": { @@ -92085,7 +92085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27c7414d-31bb-4688-bd86-939e8ae8fdaa", + "id": "c315303a-197f-4f3f-ad5b-1a33bc9f8d2c", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -92170,7 +92170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7763dce7-6b2a-4205-878d-df01bd4e9571", + "id": "95de0b70-b6f0-4e04-af17-bb65805a7697", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -92255,7 +92255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b16187bf-ab24-4718-b340-d282566f582c", + "id": "bcfa2962-9a80-43d1-ae66-830756546528", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -92340,7 +92340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c454542-9b9a-4508-b50b-377476e50e42", + "id": "77840c6d-1dbc-4ce2-bf4a-594e8c44fe1c", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -92425,7 +92425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fdcfb7a-621d-41fb-a096-927908fa158b", + "id": "2129d689-f8a5-4624-85d5-8c89256f5899", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -92510,7 +92510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ea2557d-9663-4cb0-8b74-94927ae30deb", + "id": "0997b22d-364f-45a2-90e6-33b32dfa60a9", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -92595,7 +92595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b658593-d12f-40a3-a876-7f189f3d4cfe", + "id": "00fed720-784f-4c9b-9c09-38d38eb4a437", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -92680,7 +92680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4a88c00-08c9-434b-88b5-4284dc70e25a", + "id": "df9decd2-4ba1-4d2e-8712-70ece21201b3", "name": "BucketAggregation", "originalRequest": { "url": { @@ -92765,7 +92765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58024073-a41f-4aa3-a649-7bb095c17302", + "id": "17c345b4-5157-4559-8208-7e551ece2a2b", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -92850,7 +92850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1142fee3-dcb4-46d2-89fe-17cdbdcb2686", + "id": "9b754f53-cf84-4059-b969-8b199cf96a73", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -92935,7 +92935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c550359-8e55-49d8-b3e5-11a2b565b2fd", + "id": "9f8b5d27-987b-4570-b63f-d3665db7b522", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -93020,7 +93020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "526d0082-fa91-4df4-bd97-fea6b23417ac", + "id": "2ceb3e34-aff0-4927-9472-3821dedc483e", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -93105,7 +93105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad5e14f6-ed0e-448c-bf8f-103c3fb9240f", + "id": "7ac382e2-88ae-4702-a36a-910cadd2a488", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -93190,7 +93190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de75e5cc-b5dc-4aab-94cc-6742eb3ce99b", + "id": "ac87b810-6317-4eb7-b2e9-384fbdd09387", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -93275,7 +93275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "686d3eeb-d5be-4c3c-9494-907e1d635ed7", + "id": "a1d70bc6-2db8-439a-83c1-4be102a4eac7", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -93360,7 +93360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "860a6216-8e6a-4929-b5b2-595a9312e71e", + "id": "c05247f9-253b-47a5-9fd4-db03e9214a56", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -93445,7 +93445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eefd5080-1ed0-406f-82e3-099bb9eec4e9", + "id": "39032c7d-9f49-49fc-be1e-a09a3072336c", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -93530,7 +93530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38554651-e85a-452a-9b3e-3f30eea01a36", + "id": "38c5f081-dc39-4929-867d-feb63b6eb0d2", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -93615,7 +93615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a024181-40f7-44f2-88b5-92e22d94820c", + "id": "217717e4-9468-4683-9a30-a256005dd824", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -93700,7 +93700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ac26a06-0835-4af2-9e29-8412cf5beef7", + "id": "2a13f0e8-ec7f-4ff0-b20e-7a56c5d8f533", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -93785,7 +93785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39f6ef04-e877-4b45-bf5e-14951b303c81", + "id": "59e49cac-ac06-4fa5-8168-45b66872bd88", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -93870,7 +93870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c53045b9-9eb6-40eb-b2f0-ba14545c5a45", + "id": "bd63035d-0403-463e-9806-9e9585d8a484", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -93955,7 +93955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0472516-eca1-49ce-a11e-134fc223bfb7", + "id": "aa6f00c6-1105-4072-ad2c-4d8dfd02ad3f", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -94040,7 +94040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb277261-36a8-42f8-a34c-3843c1963b35", + "id": "abaf3027-78b8-4fb4-9f72-e3a157b704cc", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -94125,7 +94125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b525335-034d-40e6-97da-2d0697a77ae2", + "id": "c0cee974-8223-45e0-aa4a-601f7ed8245a", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -94210,7 +94210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0104fcf8-5125-4692-a90f-78e0bbd7c714", + "id": "7d317956-ca1d-459e-b11f-67f6280c6b3f", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -94295,7 +94295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2f2c5c5-c781-4b92-aff6-66dc6a4c5640", + "id": "4c32208d-8dc0-47f7-9452-bb77ae5f5aed", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -94380,7 +94380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "596e4856-8109-476d-95c0-37aa69e1857a", + "id": "2bfb3d47-43c4-414e-a051-c4b8e9d0d03a", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -94465,7 +94465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "040fcbda-0e4a-4c9b-9288-5da14da66482", + "id": "2333eae1-00bb-4de0-9e23-8977e8356571", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -94550,7 +94550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c4fb9f9-c2b8-4be5-9f02-84183b6f6578", + "id": "e9feba37-f03b-4d81-9b11-d30d326e9d26", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -94635,7 +94635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "531dfc37-03a0-49db-9f35-9a0be896e4a5", + "id": "98da061a-9bbc-4311-bfd9-18b6685c0524", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -94720,7 +94720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4040f1a-2b7d-49f4-894d-02083cb1e0db", + "id": "caebd8de-a8d4-4fbe-8a42-f8952b3dbc35", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -94805,7 +94805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dce0bb46-82f6-4412-84ab-c463afefd1cd", + "id": "b89506e7-65fc-4ce9-9291-49bb0c136375", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -94896,7 +94896,7 @@ } }, { - "id": "1e3ad197-ea28-469b-8fda-6b19e8770eb8", + "id": "3ebc2e99-6e63-4647-b386-b40b37ee7d76", "name": "Get a Document by ID", "request": { "name": "Get a Document by ID", @@ -94948,7 +94948,7 @@ }, "response": [ { - "id": "7a5191ea-5627-4088-ba8a-b2e0ceac5b7b", + "id": "ec9f834b-3474-40e5-847d-98af346bc6c4", "name": "AccessProfile", "originalRequest": { "url": { @@ -94993,7 +94993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e42e509b-95f1-4d23-9295-31746b717d75", + "id": "a183afbe-79dd-44bd-9e21-a1dc61912da6", "name": "Entitlement", "originalRequest": { "url": { @@ -95038,7 +95038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df6e194e-ced1-429b-b1b3-27cef1894f3f", + "id": "ed525325-2f34-4258-8c83-b67b5e1777b7", "name": "Event", "originalRequest": { "url": { @@ -95083,7 +95083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c021d3a-4172-4be3-b4d9-3f1dfdfd727f", + "id": "928df6b5-e129-4e48-a3f3-e15a7e05acab", "name": "Identity", "originalRequest": { "url": { @@ -95128,7 +95128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "452c534d-1c77-4166-be6f-9967efb46a04", + "id": "26f72f73-ef35-471e-a5d9-0c0be9a3fa36", "name": "Role", "originalRequest": { "url": { @@ -95173,7 +95173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e202b24a-99b8-4a97-9661-77d1ad042fef", + "id": "a2ea575a-dc17-4b13-8fcc-18c1d53de12a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95218,7 +95218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02eee70c-c31c-4355-be7a-d38e61a86e3a", + "id": "ad9ae880-dbe5-45f9-aab7-493375e5605e", "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": "f104284e-9711-4aa3-aa8f-537b9ea5a844", + "id": "d5bfaa45-e548-4d4b-ad11-5a91108bed70", "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": "d89eb4d6-373f-4102-bc16-dee4c40f7194", + "id": "99eb722f-714d-4086-b9c6-483a535d8833", "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": "84afd3fe-d911-4311-a403-2d9277686b33", + "id": "6a0cdb35-63f4-41e3-a5e9-9f33f404163f", "name": "Too Many Requests - Returned in response to too many requests in 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": "9b76d196-a983-4cf8-a241-550cf7949641", + "id": "a28a5add-32ae-4879-b0db-016a8c00c99a", "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": "8e50ae8f-2cf8-4db9-9b65-67d111b1f9c6", + "id": "c3947261-96fd-450d-a32c-43c40d66a786", "name": "Create Segment", "request": { "name": "Create Segment", @@ -95497,7 +95497,7 @@ }, "response": [ { - "id": "0edbeb69-b04e-4c5a-8ef6-e5cc6db89eb0", + "id": "fb613bb0-064a-40b1-9ab8-f7ee6bc18ac3", "name": "Segment created", "originalRequest": { "url": { @@ -95553,7 +95553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba9767cc-ddda-48eb-9bfc-938b5303d5aa", + "id": "cea0ea36-ec8c-41c0-956f-0d83b7790835", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95609,7 +95609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89d1309d-e5a9-48b2-ba11-f2c2d8b79dbd", + "id": "92926902-dfba-47ba-9ca4-98383697444f", "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": "2261445b-e514-4767-a839-0747a63e8171", + "id": "331f7b5e-608c-4555-b59c-b78f696d38be", "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": "5963d2b9-c692-497a-b670-6d1dd89dbfee", + "id": "d2db7ac0-7063-4723-9332-b0c857f1584b", "name": "Too Many Requests - Returned in response to too many requests in 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": "58814581-ee57-47d6-845f-09169e693d5f", + "id": "3e34fa08-89f7-4801-8849-1dbc13ba143f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95839,7 +95839,7 @@ } }, { - "id": "63bea6b8-bc42-40e8-ab96-e06fc034ef51", + "id": "ca56f486-6265-4aa1-8d7d-67dd0b390386", "name": "List Segments", "request": { "name": "List Segments", @@ -95896,7 +95896,7 @@ }, "response": [ { - "id": "fccfa579-96dd-437b-8785-72a3ac85e0b1", + "id": "b0650f82-5b76-4ae5-8661-0504845f35b4", "name": "List of all segments", "originalRequest": { "url": { @@ -95967,7 +95967,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3100b6d2-a0e9-46dc-ab1e-70becd359762", + "id": "9a9800fd-51d3-4517-a49d-ac1411464110", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96038,7 +96038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28c0c662-1f0c-4e12-b7b8-a7baeaaf8dc6", + "id": "0cf146dc-78e7-41dc-aca4-ab392725071f", "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": "b82c5b9a-2b83-47ca-b1cc-be108830041e", + "id": "02ea5662-8469-4af6-a25c-96a38b19153a", "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": "97726e17-36d5-4f70-acb3-c2de5e0f0043", + "id": "98983a57-fa6f-4003-bf99-80bf7f23d421", "name": "Too Many Requests - Returned in response to too many requests in 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": "ca8639c1-b3ef-4358-9723-309554e01521", + "id": "9a5f958d-675f-4d6d-976c-ce819f67dd86", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96328,7 +96328,7 @@ } }, { - "id": "4eb59d64-3408-48c8-a969-23718804ac17", + "id": "85bc159b-950b-447f-91ef-fe2a22703d3e", "name": "Get Segment by ID", "request": { "name": "Get Segment by ID", @@ -96369,7 +96369,7 @@ }, "response": [ { - "id": "ceba31b0-eb38-4f2e-857d-1b2cbaf15aff", + "id": "035896f8-e7d5-467a-91c2-68f7c003eed2", "name": "Segment", "originalRequest": { "url": { @@ -96413,7 +96413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef10b037-20a6-42df-b930-b91791c24706", + "id": "3555c638-0b10-4153-b4d0-f5c470f1bc04", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96457,7 +96457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8827971a-9b42-4c32-bccd-f9650a36fd73", + "id": "28dbdb9f-2fd9-4776-9944-09f26d77d4b6", "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": "c208692c-9339-4dae-ae4c-bcd153cac9c1", + "id": "82a05a92-bd74-4490-a2a4-4288bece9bec", "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": "0adc145c-5701-44cb-aa93-cbe49c970e74", + "id": "d64bfc2a-06c6-4df1-8e0e-7f70a5c115e2", "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": "9ebc789b-3b20-4be1-8f40-a6adba38a7f7", + "id": "ebb2d733-359f-46f8-806d-d4e5a45ae2ed", "name": "Too Many Requests - Returned in response to too many requests in 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": "f4cb9cd7-2bd7-4502-9de6-05af76cd2e42", + "id": "3a44682b-897e-493d-932b-a0bded031fb5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96683,7 +96683,7 @@ } }, { - "id": "2f9e1057-9da4-442f-88c3-5de8a4844956", + "id": "f22de05c-4f8e-407f-a918-3f6da87d37f8", "name": "Delete Segment by ID", "request": { "name": "Delete Segment by ID", @@ -96724,7 +96724,7 @@ }, "response": [ { - "id": "87c26b73-477a-4e74-85be-8e79b5556145", + "id": "3f0623fc-e3a0-4bd9-9217-dc6dfd171c48", "name": "No content.", "originalRequest": { "url": { @@ -96758,7 +96758,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6c99b272-17fe-4711-9401-5cc189d132cd", + "id": "80c0f9be-4306-493d-96cb-54a5415c9ca9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96802,7 +96802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "450c1d4b-bcc8-42a9-a58e-6b358eb63b64", + "id": "593396c6-d5b7-411c-b1e0-e9d4cec24f89", "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": "b66b599c-f84d-41d5-a00a-33f196fae2f2", + "id": "f893d732-bf9d-413c-9ffa-10947a948643", "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": "069f4a7a-e84d-4d1c-9487-75fe94c32e4d", + "id": "b9fa34e5-0fce-4343-b09f-22cd1382ecce", "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": "916e4ddd-7e4a-4f5b-8b0c-70204fed1c7a", + "id": "e9145504-4696-4615-8ce5-2822ebbf6a15", "name": "Too Many Requests - Returned in response to too many requests in 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": "a7fd4520-7886-4b29-967a-62f0c95bc0b1", + "id": "24677bb2-8cc0-4be9-849b-d6861bb18ab7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97028,7 +97028,7 @@ } }, { - "id": "fa9f3358-b295-4b86-b0fe-30498cc9a4fa", + "id": "b802ea0b-b749-4b16-8961-57ac59f0add7", "name": "Update Segment", "request": { "name": "Update Segment", @@ -97082,7 +97082,7 @@ }, "response": [ { - "id": "5b4b12ee-7969-47ff-93e7-eeea2e7dac34", + "id": "7bca549a-78fc-47a1-bc87-08219fd38b48", "name": "Indicates the PATCH operation succeeded, and returns the segment's new representation.", "originalRequest": { "url": { @@ -97139,7 +97139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22c2469a-c5e4-40f8-b825-b3dfccc9f1a1", + "id": "744c9faa-ddb6-4b85-85d4-317e51eecb90", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97196,7 +97196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f65415dd-45a9-4203-9699-304b10ef1b09", + "id": "8e5397e0-79d6-448e-97d3-4fca36ecc136", "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": "09bf813c-8284-4bfb-9235-30605fffd883", + "id": "9374a77d-cf38-428e-a42f-bc5fa7dd998f", "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": "f1e5f36e-be62-4154-8453-d24d9cea9b5a", + "id": "d37ac66a-91da-4855-8d4e-f37314fb6ca0", "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": "b9a433e5-1b14-43c2-8a47-b27a363ad2a1", + "id": "5eea90ea-eaa9-4584-88e5-9f151342327a", "name": "Too Many Requests - Returned in response to too many requests in 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": "cd2a80d2-19de-4e84-9c6a-dc6f213e3a21", + "id": "5c205015-38a9-4012-8e86-3aeb14d2d3ab", "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": "c62cc68c-ba46-4bb9-a832-d597770c9464", + "id": "6e0f8a4a-ab40-4914-8913-1178028d4475", "name": "List existing Service Desk Integrations", "request": { "name": "List existing Service Desk Integrations", @@ -97568,7 +97568,7 @@ }, "response": [ { - "id": "e6adc250-0e4b-4e32-96a8-4bbfad84adec", + "id": "429b6dab-f4f7-458d-aba8-c8a6b73ed5e0", "name": "List of ServiceDeskIntegrationDto", "originalRequest": { "url": { @@ -97657,7 +97657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e22d903a-e6f6-432f-b30c-0aad4c223f4f", + "id": "e45641ae-bb4d-452a-b489-28bb53a56e2f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97746,7 +97746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4cddb13-3ee3-473f-8c20-d33b1b0fcb82", + "id": "464f72a0-3d45-43c7-9fd0-c02e4f0c3599", "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": "7501f90c-e9d0-40b7-aebe-5a641e95b695", + "id": "56990fc7-2b78-43be-8b4e-b37c167c5608", "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": "ed1a9d3c-6836-427d-b717-6f63eecdeaa2", + "id": "18da0a97-58c7-405d-bc4a-05d48edaca8f", "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": "9e2db9e3-75cf-432b-9035-a92c25b16fb7", + "id": "564c9ad9-2795-48f1-b98c-18712ef9477b", "name": "Too Many Requests - Returned in response to too many requests in 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": "976fb9d3-f2cf-4aa1-982c-aebe1805af5e", + "id": "230dcb6a-1b00-4bfb-9946-77223cbb3001", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98197,7 +98197,7 @@ } }, { - "id": "7af56001-e636-4fe7-8048-927277d0fee6", + "id": "e5671ed1-953e-4892-9713-f3b0ece18957", "name": "Create new Service Desk integration", "request": { "name": "Create new Service Desk integration", @@ -98239,7 +98239,7 @@ }, "response": [ { - "id": "ffcb735b-6f9e-4cc0-91e7-849e2aae1b42", + "id": "09b18c25-0adc-48da-8b83-55f4514adaae", "name": "details of the created integration", "originalRequest": { "url": { @@ -98295,7 +98295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff91a1a3-c57d-403d-83eb-619f9367c35b", + "id": "9366cd70-54a3-4b2e-b7ed-c15590b38439", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98351,7 +98351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "192c0e20-5d7a-4dbf-8c14-408b74170376", + "id": "a67b087d-52ba-4e06-a218-71756183391e", "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": "f2b546af-0a64-46da-b215-7317a8eef2e8", + "id": "4f077518-8e9a-4e1e-bbb3-8d3bfc3c85d0", "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": "3165deac-8a5a-4577-83ba-8f3532a9d983", + "id": "ca1b6cd9-eb89-4c1f-8790-03e29ae85df6", "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": "13992422-ab9f-40b0-99b3-187b0353def7", + "id": "b61ac638-96f5-47c7-b09c-d37cf8f3a048", "name": "Too Many Requests - Returned in response to too many requests in 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": "84b3cf12-548c-4825-8073-05c64771179b", + "id": "a713c228-5038-4182-b9b5-b616a6082647", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98637,7 +98637,7 @@ } }, { - "id": "cdb301d3-00e0-4423-893f-a48d65e15f67", + "id": "ad366348-f615-4534-a398-b3fd2e8e4d4d", "name": "Get a Service Desk integration", "request": { "name": "Get a Service Desk integration", @@ -98678,7 +98678,7 @@ }, "response": [ { - "id": "b0d616e7-016b-475e-92fb-e60acd0346c7", + "id": "da31668c-00a6-4b71-8cc5-e99484e3b141", "name": "ServiceDeskIntegrationDto with the given ID", "originalRequest": { "url": { @@ -98722,7 +98722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98df245b-f2c6-43ab-aabd-902e832fb85c", + "id": "cd6d8319-6135-41a0-8841-4f825c3eceae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98766,7 +98766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bddc6a5e-3506-4f00-94fd-dd45dc71f0b0", + "id": "5dd0f724-3424-4437-a1e7-c6d6d771e1eb", "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": "ced7d17b-8e2f-4224-b811-8177a81ceaaa", + "id": "83b67912-e062-41b9-a88f-a2b1ac2e35ad", "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": "340c1cc2-96e1-46fe-843e-56e224fc3784", + "id": "484c3a56-15a5-4054-94f7-9126573a397a", "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": "9c335181-78fa-4270-ba58-f611b8b7ddfd", + "id": "59943a9b-e159-4b62-b3e2-61f64286d9a1", "name": "Too Many Requests - Returned in response to too many requests in 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": "dcb11ad8-1e4a-41ed-9122-6f8ee67ec39a", + "id": "291a8455-5f75-4038-8c2e-2de75891df01", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98992,7 +98992,7 @@ } }, { - "id": "f1de5337-e1cd-45a3-8f62-37f4a74fc130", + "id": "73ded047-d4e4-4b9b-ad32-bfb4f9d5582d", "name": "Update a Service Desk integration", "request": { "name": "Update a Service Desk integration", @@ -99046,7 +99046,7 @@ }, "response": [ { - "id": "3ec92622-cf9a-47c2-b34d-d0f0cb8501a6", + "id": "a1f1efe7-6d01-4b72-a786-94aa3cb336f3", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -99103,7 +99103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d98e74f5-192e-40fd-81ba-a8ebe4659901", + "id": "b465885b-bb17-4205-bb0f-0d7e2f06ebac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99160,7 +99160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0df094ed-91e0-4895-bb3f-76ef425a4a29", + "id": "122a284c-064d-4387-b64a-b2d8caa634b3", "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": "3059611b-19d9-4e68-ad27-7996066b051f", + "id": "2adb1e2c-32db-4275-a7df-87793308a445", "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": "9368acbd-de9c-4a92-81d9-5cf0095d8da3", + "id": "c8616a6d-da1e-4817-99ad-8a17e53f5d10", "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": "daeba533-cba2-4e05-9aeb-01a7c8baeb1c", + "id": "1ff627de-7c1a-42f4-a165-6522cdc57c90", "name": "Too Many Requests - Returned in response to too many requests in 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": "292a4380-9f89-48e6-b7eb-12133aa4c999", + "id": "e27d0dd9-8138-4d28-81a9-0e7c5374f76c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99451,7 +99451,7 @@ } }, { - "id": "eca65ca1-c5a0-4bc8-bb23-16e9e118d5f7", + "id": "e1baac91-0160-4794-8330-7a92f8abe71f", "name": "Delete a Service Desk integration", "request": { "name": "Delete a Service Desk integration", @@ -99492,7 +99492,7 @@ }, "response": [ { - "id": "9e51b66d-0534-4bfa-9445-aff7801ffbf2", + "id": "e67c4028-105d-4214-920a-c51659074461", "name": "Service Desk integration with the given ID successfully deleted", "originalRequest": { "url": { @@ -99526,7 +99526,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f37292df-5e62-4764-8861-5e497072ca3c", + "id": "ac8e566a-c19d-4d4b-b909-3c586d84e7db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99570,7 +99570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8b1ecdb-1c32-4077-9cf8-a265a14b5d56", + "id": "99bafcbd-916d-47b3-8543-7deecc47036a", "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": "f1f16acc-8e6a-48f9-bc0a-97c78d1b330c", + "id": "67e1b0e7-6122-42bf-af6e-7194413ebae4", "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": "fd282de6-540e-4599-8f44-c150a7fb9e0b", + "id": "33038635-f26a-4686-ba13-303b6cf120ed", "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": "86e10f62-b7b8-4a8f-a730-b948043f57eb", + "id": "fe07b28c-84bf-4375-9b88-206a26766f71", "name": "Too Many Requests - Returned in response to too many requests in 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": "a323101c-8360-4c00-aa71-fb5deac71a30", + "id": "5d59b703-cebe-49e1-b7c9-eac78c2d29c8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99796,7 +99796,7 @@ } }, { - "id": "d97b3615-c39c-4ee3-be0e-7f8245a0d677", + "id": "1e10d27c-8b38-4e6a-8e57-a72413fe58f4", "name": "Service Desk Integration Update PATCH", "request": { "name": "Service Desk Integration Update PATCH", @@ -99850,7 +99850,7 @@ }, "response": [ { - "id": "536e3d4d-3f0f-4767-8773-3d0874022faa", + "id": "0443d431-ab82-4e70-ac40-de6270927763", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -99907,7 +99907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27030ec0-3ae4-4726-a924-95ea4bbc8cfb", + "id": "b63c8da7-e2bb-4281-a856-b465f436eba3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99964,7 +99964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fde2e7b1-e1ca-4316-9b5e-508351fb4aa4", + "id": "7b649bd8-a74d-4c60-ab1e-0c3729d7f570", "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": "21424720-f225-4506-865b-2b9914190bf1", + "id": "0f149c5d-a261-47d7-bc9e-25fa2af6e0b2", "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": "6bb836a3-0afc-4943-98ee-6c92b94c8a3a", + "id": "676cbc34-05a3-4494-b3c6-599811a92ba1", "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": "e7e44c72-b011-4cf4-b3b8-b0313ff96275", + "id": "dbfa2a26-7e99-4b3b-bc14-33691af66de8", "name": "Too Many Requests - Returned in response to too many requests in 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": "52fd1fb1-0777-4337-800d-ef4197ed30ef", + "id": "7aa806c7-f0cd-449d-b6e0-ac0679db804b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100255,7 +100255,7 @@ } }, { - "id": "83a5474a-3258-46c6-b58a-962286430421", + "id": "1ed98e60-df9e-42d8-b6a2-415851bfda18", "name": "Service Desk Integration Types List.", "request": { "name": "Service Desk Integration Types List.", @@ -100285,7 +100285,7 @@ }, "response": [ { - "id": "ed75c4bc-bb8d-4ac5-b132-cdbdc9210386", + "id": "cede505a-9103-4b11-837d-6415d169927b", "name": "Responds with an array of the currently supported Service Desk integration types.", "originalRequest": { "url": { @@ -100329,7 +100329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6692ec80-6ec2-4012-9406-606991133fb1", + "id": "8a65cbaf-0afd-4ded-afe0-f5e8cdad76ca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100373,7 +100373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a16c726-8cc2-49e0-90b4-1994e69a624b", + "id": "5b26eda4-ffdd-46d6-a2ef-ee7deeaa822a", "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": "703f1dba-17e2-469c-89c5-b18e3e4f929d", + "id": "bbee7bdb-6dc2-415e-b4ae-f5a0adde3f4c", "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": "d55dcf65-d221-475b-8392-899f345b8c26", + "id": "570d30fd-94b4-4447-9b39-b1538aa1820f", "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": "c7b68eda-c920-4b25-865c-41477eed24f5", + "id": "ff99c944-118d-4ba9-a29c-08f7fa38a66f", "name": "Too Many Requests - Returned in response to too many requests in 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": "f3cc6c5d-5dea-498e-b999-e81ff296c9f1", + "id": "53fd548b-6a5d-45c8-80ee-8ee6251f7e0f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100599,7 +100599,7 @@ } }, { - "id": "8bf787d4-676b-40e5-b2ec-a5f038573690", + "id": "8ec1cab6-4eec-4741-9d38-6cf232ec03b0", "name": "Service Desk integration template by scriptName.", "request": { "name": "Service Desk integration template by scriptName.", @@ -100641,7 +100641,7 @@ }, "response": [ { - "id": "2facf650-0ea4-425d-8a05-c6828b5e4526", + "id": "3d8e4ad2-c61f-4aa7-8060-84f915fa1922", "name": "Responds with the ServiceDeskIntegrationTemplateDto with the specified scriptName.", "originalRequest": { "url": { @@ -100686,7 +100686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcdbd8a0-3f28-41ac-813b-e9ea9dd4edbb", + "id": "60419326-7b03-459d-846e-b9889b932490", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100731,7 +100731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fba3fe20-f3e6-45e8-8f97-b06d43ec1944", + "id": "fa8c267c-86a0-437e-a4b6-3b9e7db815ef", "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": "93738f96-f782-4f6a-9ce7-9934b97ca65e", + "id": "637c296c-3f8b-485a-90ed-621d436415b4", "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": "d94f81ee-a8ec-4850-8b3d-8b3996363c20", + "id": "30d67b7e-557b-4678-a221-31c7c5cbe4c0", "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": "b5f2bdbd-f6a5-45fd-945a-d9df4f44e52a", + "id": "234f1a38-5b73-4b28-a374-ea25af4645ad", "name": "Too Many Requests - Returned in response to too many requests in 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": "c9d10094-29a9-4a0b-a356-2416a8ba3dac", + "id": "6a5ab5c8-194a-47ec-95f5-852354dbf161", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100962,7 +100962,7 @@ } }, { - "id": "994765c5-0001-4886-9118-54e15a50e87f", + "id": "4920f502-673a-4eac-910e-0020d7dcba36", "name": "Get the time check configuration", "request": { "name": "Get the time check configuration", @@ -100992,7 +100992,7 @@ }, "response": [ { - "id": "1a3ff336-b48e-40ea-955e-f5c7ab4c3908", + "id": "d7948971-3c34-4ee0-8beb-7c38c130c660", "name": "QueuedCheckConfigDetails containing the configured values", "originalRequest": { "url": { @@ -101036,7 +101036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05f493c9-b1ea-438e-bc00-18c29b9ad9cc", + "id": "0a00372b-4ed6-4e10-8a57-fb8499fc37ae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101080,7 +101080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d260478c-82f4-4cf7-b12b-0df69c8715d4", + "id": "e59d494a-d1c1-4814-baa1-3c23d87f2d5d", "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": "06c14fc3-1fd9-4e8d-ab3d-8aac9ce31cfe", + "id": "7bec71ea-2cc7-4033-9bd1-686652abfbdb", "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": "934834ab-527c-4206-b920-2a8c3ee07a3b", + "id": "af092bcd-f813-4a69-a0cc-51c89a0ee531", "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": "3ff8a674-67e3-4ff4-9c04-cd972e3e446a", + "id": "e265c2aa-d129-425f-9c72-a82939a8689a", "name": "Too Many Requests - Returned in response to too many requests in 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": "8f1fd22c-3221-405b-8063-70ed8469f76b", + "id": "027d696b-e0b4-436e-9034-9ef9cd065810", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101306,7 +101306,7 @@ } }, { - "id": "13465c4d-5726-49c0-b2d5-f93dc55592bd", + "id": "c63a6867-fdca-427e-9b0b-4bda8db1e270", "name": "Update the time check configuration", "request": { "name": "Update the time check configuration", @@ -101349,7 +101349,7 @@ }, "response": [ { - "id": "cd6378a5-fd52-47e4-8cb2-408b4850739f", + "id": "7cb24f56-6374-426c-a587-5eb25f9b8808", "name": "QueuedCheckConfigDetails as updated", "originalRequest": { "url": { @@ -101406,7 +101406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00a5b0f1-cd65-4b75-b2fc-cf513e23d3e5", + "id": "95646b82-452d-424e-9183-19416e7c90a2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101463,7 +101463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2a1ebb5-3a06-4b11-b4a6-9898646a6418", + "id": "18d9ab1d-fc10-4dc9-8c29-ec5cee239093", "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": "9b2dfd8a-8ccd-40aa-b359-78f5a2e8afa6", + "id": "eb44fac9-ceaa-4f65-8aae-ce6e90014239", "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": "f7585f93-b185-4add-b508-8741bb623f56", + "id": "9aec9a4b-5258-4467-9659-a674df6e200c", "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": "1b18fdb9-629d-4f77-ac99-725f40b2379a", + "id": "f031ff3b-7e4e-411c-bdf3-3a91f527cb55", "name": "Too Many Requests - Returned in response to too many requests in 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": "18a569ca-2937-4561-9f60-28c07245e989", + "id": "359ba4f0-1a76-4c3c-8f0f-c1d05f27de37", "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": "bbaab739-112b-49fb-acd8-c70e2829688d", + "id": "3d30271d-426f-4593-9159-961a7b599c5b", "name": "Create SOD policy", "request": { "name": "Create SOD policy", @@ -101802,7 +101802,7 @@ }, "response": [ { - "id": "d2537760-3aaf-4177-a9b2-87a88ad364fb", + "id": "19390e42-3e85-4962-b712-853b70a62672", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -101858,7 +101858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "817df34c-b076-4841-a508-613891bef787", + "id": "c1ef1e98-d3f9-445f-bacd-56a69240b8f9", "name": "General Policy", "originalRequest": { "url": { @@ -101914,7 +101914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cab7a2d-2202-4e5b-a59a-ab7d84a00ecf", + "id": "d75ad368-924b-4a59-94e4-d29d087cca01", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -101970,7 +101970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b070af9c-b1c1-445d-8447-485a3da8290e", + "id": "a287b2db-f0a1-43f4-984b-c3d26d16e489", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -102026,7 +102026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe03658c-5e49-4157-8ffe-60d6e42304bc", + "id": "f0356e1e-061a-4a5f-82ad-a462de635748", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -102082,7 +102082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75856a82-0384-4b24-9553-e68f2483f875", + "id": "0ca5a3d0-0176-4a9e-a42a-024c6cc154f9", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -102138,7 +102138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da085e94-d6ab-4705-9e16-f8f2735f49be", + "id": "549baf2d-cf1c-4fc1-93b0-d6787bce11a6", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -102200,7 +102200,7 @@ } }, { - "id": "b2b5ec92-26fd-4678-8492-a0db9548c24f", + "id": "83aa0b69-b769-4a01-a3aa-8203a3db52ef", "name": "List SOD policies", "request": { "name": "List SOD policies", @@ -102266,7 +102266,7 @@ }, "response": [ { - "id": "553ada08-da04-47da-9cdc-96d6f23a3cbe", + "id": "ac93d54f-eae0-4efd-963c-c38de62698f9", "name": "List of all SOD policies.", "originalRequest": { "url": { @@ -102346,7 +102346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8af22b90-10ee-424f-9d2d-d1bc5bdc7290", + "id": "b87d4335-165a-40f0-8b3a-c141ea9ba14a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102426,7 +102426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0f44828-84c2-4de8-a2dc-9a15005fde16", + "id": "2b984655-a322-4c68-97e7-4c459d825762", "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": "8d809281-f0d5-49f5-a93e-cc759d361d79", + "id": "1f3a952e-5c09-4c97-b247-f53f87307a0f", "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": "b8d3f28a-682e-4c54-be5c-d61483d6824c", + "id": "0cf7e74b-da97-4e0f-8cb8-734f73199838", "name": "Too Many Requests - Returned in response to too many requests in 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": "497ecd6f-a10c-4fae-bf89-d5a52f6438f7", + "id": "759cb3b4-6a34-4481-ae86-785e4e30e771", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102752,7 +102752,7 @@ } }, { - "id": "939a4761-0da0-410d-ba6f-159675dc3b44", + "id": "47291c59-fded-4b50-9987-7cc05cfaf1c5", "name": "Get SOD policy by ID", "request": { "name": "Get SOD policy by ID", @@ -102793,7 +102793,7 @@ }, "response": [ { - "id": "b0e65a10-5a4f-42ea-8913-3d32dcdb93f9", + "id": "49b81bc4-10f3-41a4-a6e7-d5d5e2786179", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -102837,7 +102837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85c41ee4-dbc8-4984-be02-2e00493462db", + "id": "153613c9-f5e1-4c0b-b95c-418b0456678a", "name": "General Policy", "originalRequest": { "url": { @@ -102881,7 +102881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dfa931d-4066-4b43-ba1d-92b26d79b443", + "id": "f0b545c6-2b15-4c72-b977-c5e734c792ec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102925,7 +102925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e16540d-182b-42bf-9ac5-20955fec8db6", + "id": "7b1101c7-b097-4789-87d4-1b7ae94e8788", "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": "7d9930db-4aee-4259-9576-71e7ca2b70bc", + "id": "77af6e39-7eeb-4920-9959-69a149c80971", "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": "7c4ca80b-d0d1-4d2f-815d-5b136612bb62", + "id": "8753032a-9e1e-49fa-a3b2-7f82668565b7", "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": "a6d5b8de-c0bc-447c-bb8c-34772ccd4404", + "id": "ccafedfd-243b-4573-bc39-d8d2c521f0ff", "name": "Too Many Requests - Returned in response to too many requests in 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": "9aa8462c-2a88-481e-84ec-907deec83c39", + "id": "d75abb49-e3fc-4eb9-bb36-44ba5b770e8f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103151,7 +103151,7 @@ } }, { - "id": "58703d45-5ffc-408b-a32e-98c94ae4fca5", + "id": "61cd1b9e-01b0-49a9-997b-d3303183e042", "name": "Update SOD policy by ID", "request": { "name": "Update SOD policy by ID", @@ -103205,7 +103205,7 @@ }, "response": [ { - "id": "69dd258f-4e31-4385-9b88-e4d7d69bc0b3", + "id": "2cd4f833-b1e9-4673-b390-7a1034e28617", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -103262,7 +103262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67f64341-10c8-471b-986d-34fc75ed457b", + "id": "9a3951a1-0ec0-4502-ad78-afc2855708bd", "name": "General Policy", "originalRequest": { "url": { @@ -103319,7 +103319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9e68307-fa87-4d86-86fe-feace6874009", + "id": "71adee20-a516-49e3-a19a-0f583e26e694", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -103376,7 +103376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "588a5e70-1e71-4fce-9f44-568efc96b511", + "id": "8bdb6977-622b-484d-ae53-b48264bfaec7", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -103433,7 +103433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72b27c5e-2757-492b-8e16-0bf7c50278ac", + "id": "3ddb24c6-fd38-461f-8635-975893dc934d", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -103490,7 +103490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c8b92d5-1a1d-434c-815d-0a8aacad589f", + "id": "8de021d2-a0b6-47fb-8fc5-0e0f20198904", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -103547,7 +103547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bff4e07d-c744-4e5f-8f88-f3c6b76dc90b", + "id": "382797ca-2e1f-4284-92bb-306b708ff916", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -103604,7 +103604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f11caf1f-cdef-44b7-8c1b-ca04a1d32723", + "id": "0a21376d-8ed5-406e-b710-b2c62f22223d", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -103667,7 +103667,7 @@ } }, { - "id": "553cf1c7-034c-4f24-a31c-92e49951ee54", + "id": "3630e3d9-a053-4834-80f2-f6a577dce574", "name": "Delete SOD policy by ID", "request": { "name": "Delete SOD policy by ID", @@ -103718,7 +103718,7 @@ }, "response": [ { - "id": "7176f196-3e5c-4f1b-9849-f4d346b2b6ad", + "id": "269b3979-3fbf-4aa0-93d2-ed08aa675259", "name": "No content.", "originalRequest": { "url": { @@ -103762,7 +103762,7 @@ "_postman_previewlanguage": "text" }, { - "id": "bda919ed-b8ac-4b60-8258-a8bbcf1b0423", + "id": "0956dfb7-69fe-4005-bc81-d9c283a402d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103816,7 +103816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0778ea63-1190-46c3-acda-5a79c5ed8360", + "id": "fe72641a-5f83-40a2-bcf6-54af3fdd454e", "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": "ae14dd28-2e13-47cc-997c-1880177fa5a5", + "id": "c8ad1b77-590b-4569-a431-ba332e4ba30c", "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": "a01a9d5d-4f09-4209-b94b-84b791243e39", + "id": "da1f0ae6-4251-463e-83b4-f93636532c3b", "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": "ac999059-37bd-44c3-a0de-68afa872eb8f", + "id": "01cc50fc-f8ce-4e0d-b962-b341e0096e1b", "name": "Too Many Requests - Returned in response to too many requests in 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": "72de77a5-ed7a-4c0a-bbdc-9648b25450c2", + "id": "31339532-00be-456e-863f-c508970bc6aa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104092,7 +104092,7 @@ } }, { - "id": "7829a0ef-b592-41ac-b6b2-76ec208092ba", + "id": "ad310ea8-29d9-4f57-aaeb-8f14b5e41847", "name": "Patch SOD policy by ID", "request": { "name": "Patch SOD policy by ID", @@ -104146,7 +104146,7 @@ }, "response": [ { - "id": "30030982-365b-4b41-a724-d315067bd56e", + "id": "8a2d7b7a-4993-4e74-b18e-92e822d52d1d", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -104203,7 +104203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8baf4bd8-8770-4f79-8efc-293e357b9d28", + "id": "599d7b24-aae4-4867-8d30-bfd7770ae0a1", "name": "General Policy", "originalRequest": { "url": { @@ -104260,7 +104260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68f978af-b17f-4bc5-bc5a-9548ad34b019", + "id": "f3de42d2-290c-4f19-9e1e-7680078e0ba1", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -104317,7 +104317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f501eac-ce2c-4936-aa47-fb3921113b92", + "id": "19f157e8-cf60-4113-aedd-e55bbc2e8631", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -104374,7 +104374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a27e938b-90df-405c-8b44-fb8ef145c2f7", + "id": "4dbbcfea-5452-4d76-9858-87e1db419553", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -104431,7 +104431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93d324a0-538e-4c7e-b130-69be1f0cf12f", + "id": "f34de973-da00-4d2f-bddf-91c19c5acdde", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -104488,7 +104488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dad2c3e1-e794-4a4a-813c-f476bf0be4d0", + "id": "56b3be2e-1d59-46d1-a6f7-1ecc7905cf07", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -104545,7 +104545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2711045b-58cc-4220-a901-ae490e559ab3", + "id": "cdb6b4cd-9f82-451c-bcc0-42f92cb87671", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -104608,7 +104608,7 @@ } }, { - "id": "84223f33-2d5c-4370-acd3-f8c3c9dfc727", + "id": "40b79f3b-f88d-42b4-97d2-04dd09b94c4d", "name": "Evaluate one policy by ID", "request": { "name": "Evaluate one policy by ID", @@ -104650,7 +104650,7 @@ }, "response": [ { - "id": "03933e6f-dcf5-45ca-bbc5-a0e49cee6173", + "id": "cba4dee3-4b7f-4070-88ee-f67643fcea39", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -104695,7 +104695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9665b03-b346-46f0-ada8-8b69ac7fefb1", + "id": "ee83bf5f-435d-4e4c-8274-da1f3e867d30", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104740,7 +104740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "653fc0d2-5381-45f1-b0af-8c72bb59285e", + "id": "12189472-c7fe-427c-98a3-3e6c51400856", "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": "99c984d0-364d-4dad-95d9-be178e2c8956", + "id": "11cfc3b7-e2c5-417e-aae9-99dd78ca40d3", "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": "c6ae7603-62fb-4c07-bf31-dcc79a012f98", + "id": "e00e63fd-5e40-40f8-8d93-07372db9cf73", "name": "Too Many Requests - Returned in response to too many requests in 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": "fd74690d-0d88-46aa-a860-e4a76178cba8", + "id": "257572ab-65c4-4ed4-b69a-4cbbe5933be3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104926,7 +104926,7 @@ } }, { - "id": "9f0eae5b-3ee0-4385-a49f-e7239fd2fbbd", + "id": "8fa185f8-e028-4b94-b83e-6e0f17acb442", "name": "Get SOD policy schedule", "request": { "name": "Get SOD policy schedule", @@ -104968,7 +104968,7 @@ }, "response": [ { - "id": "e3268ef1-542f-4c6e-87f3-23cb870516c6", + "id": "7a68bd17-acbc-46bb-b58b-ef3fabd24fde", "name": "SOD policy schedule.", "originalRequest": { "url": { @@ -105013,7 +105013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ec20322-8d83-45e0-8f3b-ffa5cc5b373f", + "id": "6ad8227b-cef8-4d41-8e49-d1b9dfef186c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105058,7 +105058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c83722d7-53a1-419c-86fd-ae7b2e989b91", + "id": "e8ae09a3-131e-45b9-8988-59166389959e", "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": "d7798ffc-ed8c-44b1-b419-134c40f9b1f6", + "id": "a204fa5e-0880-409b-90e7-13c24f63e2a1", "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": "0ef1b592-4e1c-4fbd-b37c-a5bb60e10bab", + "id": "d9d50395-7b5c-46e3-a27f-10b0d5656a21", "name": "Too Many Requests - Returned in response to too many requests in 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": "8a44a181-f4e8-4a4f-b219-03211fa55080", + "id": "3ef488e5-250e-4693-98f5-ffc57454823f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105244,7 +105244,7 @@ } }, { - "id": "ef7f2091-0307-4026-93e4-35dc939671ef", + "id": "d2a03487-f119-418a-b36b-563949b4627f", "name": "Update SOD Policy schedule", "request": { "name": "Update SOD Policy schedule", @@ -105299,7 +105299,7 @@ }, "response": [ { - "id": "8d861a2b-4c65-408c-ae3f-115aff8f0ccb", + "id": "5f78321f-c012-409a-8ffd-c7b0b0d71bc8", "name": "Created or updated SOD policy schedule.", "originalRequest": { "url": { @@ -105357,7 +105357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94c4bfa0-ba09-4873-9464-eea4cb065940", + "id": "e74dd330-7c2e-4728-9e90-d749f4a72b68", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105415,7 +105415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f73ac2d1-0959-49d2-b007-3cce34ecbf9a", + "id": "70e66f26-6ec9-4bc7-b605-38652b25e218", "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": "40ddc8d8-1431-4934-8ea8-a8ba7b2b7730", + "id": "faed5432-f27a-4ec9-b233-26d2e3b10313", "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": "5d6ebae8-c245-49dc-a94f-98a0e8f72401", + "id": "bcb5f9a3-0278-45ae-bb39-978ddb3b2535", "name": "Too Many Requests - Returned in response to too many requests in 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": "2fbb9aa9-e5f7-45d8-8c47-eebbbf4a180b", + "id": "b4b0b761-648e-4b39-b0dd-15f037acee4c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105653,7 +105653,7 @@ } }, { - "id": "036aef56-0fab-4efe-9658-1e3a3a3d3372", + "id": "5b1badda-302a-412b-a103-f2a6ee7f7d4c", "name": "Delete SOD policy schedule", "request": { "name": "Delete SOD policy schedule", @@ -105695,7 +105695,7 @@ }, "response": [ { - "id": "22a4d7ed-e623-4ec0-9425-0111f38cb45d", + "id": "6f6a40db-e7d3-4474-86b1-a0f1139be927", "name": "No content response.", "originalRequest": { "url": { @@ -105730,7 +105730,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1b0c7f33-745e-49f5-8528-873a9cf10db0", + "id": "2ed47fc4-bd8d-443f-9bed-24ac57493675", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105775,7 +105775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b706455-a8e2-41d0-a13c-d24d230ed095", + "id": "27aa58a9-c888-4707-a3b5-131d2d82cf9b", "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": "372575b6-61e7-4a92-860f-2548aa1974e1", + "id": "fa6de3ab-8af8-4240-bf11-5b5719fd5d34", "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": "61db8bfa-b5a3-467e-9144-91f52fc7b12b", + "id": "19f2d92f-9804-4ec5-840f-159e35cc841d", "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": "6ca2831b-0731-496a-94a1-b1073fcc50c1", + "id": "bad77846-1210-4f17-b5be-761393420ac2", "name": "Too Many Requests - Returned in response to too many requests in 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": "caf7bafc-c5d5-42c4-9ab7-c2eaea5857c1", + "id": "88ac540b-e108-4e81-b6ac-93d4e5fb6af1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106006,7 +106006,7 @@ } }, { - "id": "7910d0ee-f891-4c4e-bbaa-9e5c420793d2", + "id": "fbd08026-f985-4ec3-bb85-ad7bcc9dc4be", "name": "Runs SOD policy violation report", "request": { "name": "Runs SOD policy violation report", @@ -106049,7 +106049,7 @@ }, "response": [ { - "id": "5550060e-c43a-42cf-9f7e-ac30016654d4", + "id": "a135040b-f14e-4cff-a787-0f2db8316e9e", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -106095,7 +106095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3ac820f-839d-49ac-99ed-c036402763e9", + "id": "d38b36a8-771e-4288-ae47-155396d00828", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106141,7 +106141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4230fd0d-1d6a-40c8-9d6b-96a6b5418464", + "id": "ab581aa6-9cf6-4d60-ae68-e40740cb019d", "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": "895eacc1-3163-4536-95c9-5c9052c2d0d3", + "id": "62c01a72-201e-40b3-8e58-1e6902c9b5ff", "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": "887235b9-207f-4732-b759-104e4324b459", + "id": "cc4d4035-bc9b-44e4-9b21-c8426f0d65fb", "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": "cde7d602-fb2d-49be-9917-fe935f1eeae4", + "id": "23950a39-4685-42ca-8c2e-046c968d7a46", "name": "Too Many Requests - Returned in response to too many requests in 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": "61644cc9-dde0-4795-b939-20e4f1a30dd2", + "id": "bb0b7823-2a63-43ba-8ac3-385fb0651877", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106377,7 +106377,7 @@ } }, { - "id": "aeaf9be6-2fd0-4a3e-a042-092c738440d4", + "id": "534d6064-ed04-424b-a2e8-cf88dbeefc25", "name": "Get SOD violation report status", "request": { "name": "Get SOD violation report status", @@ -106419,7 +106419,7 @@ }, "response": [ { - "id": "2119319a-1f6c-436e-b2b7-96984d5e21e5", + "id": "700e67a0-aa96-45ac-827e-f17f972c1d26", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -106464,7 +106464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bad8dae-566e-4e27-b94a-2e89be8db015", + "id": "bb3bc6ce-49bf-485b-8778-7673aff5e20f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106509,7 +106509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8c8b104-04e2-4510-9914-2640bfbf15fa", + "id": "036a6c04-0fb1-462b-8bd2-7b45002fa056", "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": "3fb079c1-1a4a-43ff-8b15-4d274fdd2751", + "id": "30f6875d-8655-48cb-90b8-a7992d1cd87f", "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": "b13234a8-7b5a-4320-91f9-46a1d34c8fe5", + "id": "e6931a88-addd-47ad-a69a-80231013a82d", "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": "b29fa054-b5ab-4c4c-a811-30eb738dec7a", + "id": "3fe399f9-22a5-4a94-8f23-a745ea53b79b", "name": "Too Many Requests - Returned in response to too many requests in 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": "d232eee3-68bd-47dc-8d97-0e13829971aa", + "id": "c178d2a1-7fda-43b5-bd53-c276c2343450", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106740,7 +106740,7 @@ } }, { - "id": "0fdcf38b-7353-44a3-9f11-e760f8e5c0fc", + "id": "4d696f50-19a9-470e-a9e4-a9ab0d027053", "name": "Get violation report run status", "request": { "name": "Get violation report run status", @@ -106782,7 +106782,7 @@ }, "response": [ { - "id": "83551f6d-8387-46d0-9652-05bdbfb5045c", + "id": "9b2a366a-5b51-424b-883b-40290f80a219", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -106827,7 +106827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cf9308d-909f-4308-b99e-214d0b4cf3de", + "id": "e141eee0-30fa-477b-8cbe-7b6fdca28ca0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106872,7 +106872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0720e6b-c662-48a6-b2ad-5efd2af8b25c", + "id": "bf3a1286-7155-4326-9013-d6b83cc8e87d", "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": "d0167cd5-3712-4e1f-82bc-622bdeab4442", + "id": "1d7d5287-0c20-4ae4-914d-42c011a25acf", "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": "d3a5e9c7-fc10-4fe3-8226-69f9d57ef93c", + "id": "faf22721-b6ef-46fc-98b1-3ca849abeb2e", "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": "0257a2f2-30fc-4d76-91b6-c037d0872322", + "id": "7b926ae5-a0b7-4746-b9de-8335199b1c59", "name": "Too Many Requests - Returned in response to too many requests in 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": "85cda3f8-8099-4135-b73f-adffd64e7c0c", + "id": "0fb0fad3-cb13-4b12-bdf4-7dc2c34162be", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107103,7 +107103,7 @@ } }, { - "id": "4f299003-abc3-4a10-8c88-d409a85ecbc9", + "id": "17452442-4f05-49ac-9867-e2f944784b3a", "name": "Runs all policies for org", "request": { "name": "Runs all policies for org", @@ -107146,7 +107146,7 @@ }, "response": [ { - "id": "b003669a-ca27-48e6-af10-4a6c273a48b6", + "id": "128b9eda-11a9-4746-9059-a0e685d9a429", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -107203,7 +107203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64bde391-b3e3-4714-b74a-1950c2e285ed", + "id": "ff69eb48-4072-4dc9-8261-67ec83223324", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107260,7 +107260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5fe9e3c-05ab-4be7-9418-2096005ff3ed", + "id": "2e150cbc-eedf-46e7-9c33-6140425c2e54", "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": "d5d7f371-e1a7-42d1-b739-9ee0093de6ff", + "id": "9142b9ac-49d0-4b26-9e53-912ff1c7f2b3", "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": "4f3bfbc9-5bd4-49d1-9f2b-99c5aa92ba0c", + "id": "e2e08914-0cb4-40f2-b839-bb2c1decf81a", "name": "Too Many Requests - Returned in response to too many requests in 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": "addb275e-3eba-4831-bcae-44010481e354", + "id": "83cec9a2-9df0-40c6-8ef5-7b02d08e4283", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107494,7 +107494,7 @@ } }, { - "id": "a00d27da-d8a1-43ff-aac9-e0c93ed725c0", + "id": "9a815d79-16d0-46e1-b8bb-617c72435232", "name": "Get multi-report run task status", "request": { "name": "Get multi-report run task status", @@ -107523,7 +107523,7 @@ }, "response": [ { - "id": "cd3a9746-5599-4115-ae9d-54aadcf72a62", + "id": "59933d40-6093-4dad-9c33-a29eb919037c", "name": "Status of the violation report run task for all policy run.", "originalRequest": { "url": { @@ -107566,7 +107566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65eafd61-7064-4509-b242-234396176d8b", + "id": "06cdcc7b-1af9-47a4-b63d-10d3123d3b7d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107609,7 +107609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36270a04-afff-452e-b4c3-f4bff6fe5d08", + "id": "da56ef8d-0cb6-428a-9af9-0e95f4df73d0", "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": "bb23ba87-dd68-4b8b-a9fe-ad17cc491ecd", + "id": "74449c3f-3051-4000-908a-d49f4e7a2f8d", "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": "1de754ea-e3c2-49cb-a4b3-bef513e5f0a4", + "id": "1a0599d8-0387-41de-8ae7-6a0bc839e013", "name": "Too Many Requests - Returned in response to too many requests in 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": "32fcb7d5-0eb4-4499-ad74-2bde3bf991fc", + "id": "5b227a75-84ea-4a63-9d05-69256fdf50b2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107787,7 +107787,7 @@ } }, { - "id": "00e1b29f-daba-449f-a151-9b18149f1231", + "id": "c88a19d7-2d49-4acf-8a89-c046a345401f", "name": "Download violation report", "request": { "name": "Download violation report", @@ -107829,7 +107829,7 @@ }, "response": [ { - "id": "84c98be6-7041-4870-aa11-921ab5100af7", + "id": "945b843e-195c-4864-aa44-397b127722fe", "name": "Returns the PolicyReport.zip that contains the violation report file.", "originalRequest": { "url": { @@ -107869,12 +107869,12 @@ "value": "application/zip" } ], - "body": "ullamco Duis in cillum tempor", + "body": "in deserunt", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "a73b0f2d-1d9d-41a5-a32e-9d389f0a4e1e", + "id": "664229b1-7530-496f-80b4-2bef94e9c476", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107919,7 +107919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cc8005c-704f-43a0-b05d-be100c0546e0", + "id": "2571050f-9df6-4c1e-af6d-b8d133e9b4e2", "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": "6cbc27b1-0579-4123-844d-f58c62a3cc20", + "id": "126d2795-78aa-45f8-8072-94d157029b23", "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": "884dddb2-820f-44e1-82b9-9f61beb605b4", + "id": "b0b64382-f8c7-4976-a7a2-7d0550f89b43", "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": "22ba633d-beb2-4cd9-9ce8-193212d10294", + "id": "59a1bf78-bf6b-471c-af27-e108c7365707", "name": "Too Many Requests - Returned in response to too many requests in 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": "9405dba4-1666-4677-9197-2b3bfdfff900", + "id": "717f3d69-9e60-4c1f-9131-2a4bbd291e6a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108150,7 +108150,7 @@ } }, { - "id": "8449e8ba-0e03-4883-b885-f259b9a68b3b", + "id": "270700d4-65c7-4a03-a41c-cd85f910e474", "name": "Download custom violation report", "request": { "name": "Download custom violation report", @@ -108203,7 +108203,7 @@ }, "response": [ { - "id": "ec317036-b839-4a10-9004-ad4bbd49464c", + "id": "9f1c18e8-b3d6-432b-8295-a034cd26ecd9", "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": "ullamco Duis in cillum tempor", + "body": "in deserunt", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "c99da56c-9b49-4fc0-931b-5223dc071ab7", + "id": "b85f8c5d-3101-496c-ba1f-fe20e04d6337", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108295,7 +108295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccaa0a5c-bad1-4bf5-985b-73e435344071", + "id": "5f81100c-0d0b-446b-b957-e39b654e3ba7", "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": "94e1ce24-8ade-4aee-919a-edf5b29ef20a", + "id": "e44f9fcc-dd9c-4bdb-9d76-e62e3a3a6643", "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": "64837cdf-5504-41d4-8242-473b6de3ac11", + "id": "421d4c51-9325-4ddf-861c-4ecdafdc766e", "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": "001331e0-c85f-4c21-8ca8-3ec6d380c107", + "id": "867b918f-54ed-486c-a1c3-bcedd561f1a1", "name": "Too Many Requests - Returned in response to too many requests in 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": "9bcbe795-243d-47aa-af1b-9ac64599cb64", + "id": "23b2f449-6166-4294-8fb5-06e64da86fb3", "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": "f47b9ffb-882f-4fa4-a81f-44e49c5d64f7", + "id": "f799df01-1ccf-4d00-b4d5-64e992b773b9", "name": "Predict SOD violations for identity.", "request": { "name": "Predict SOD violations for identity.", @@ -108580,7 +108580,7 @@ }, "response": [ { - "id": "c24e30eb-a9a1-45ba-b9fc-f0720d702f63", + "id": "ba4ec858-05e8-456d-9d2f-e96764c63d23", "name": "Violation Contexts", "originalRequest": { "url": { @@ -108637,7 +108637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42063f38-0220-4bd1-8a5b-bfb4682adb52", + "id": "f4bacec6-6334-4a54-90f1-ca4f00f07d6b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108694,7 +108694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ae5a48e-bc0d-4647-a086-25b17bd5eca1", + "id": "b08e2181-7800-4338-81b1-807a93454781", "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": "16af720a-c772-4397-b68b-9457740364a0", + "id": "b2f3f5a2-3488-4c7e-be91-046559b56bc4", "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": "fcaf90cb-f43f-46e5-933d-b86f20208c37", + "id": "9a3bb1d2-f83d-48c6-bbb3-ed1454f4beef", "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": "3228a5eb-90fd-4495-89db-1f05bfd443a7", + "id": "032d5ada-5ccd-4ae4-8006-4800f33986f4", "name": "Too Many Requests - Returned in response to too many requests in 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": "9ca2e369-3f4c-4478-bfce-7708e0f97042", + "id": "e43ac69c-69fa-4943-b04d-32d7a8647206", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108985,7 +108985,7 @@ } }, { - "id": "f2364eed-8ec3-4422-9323-f9556073b5bb", + "id": "e4fb5c25-9078-493b-9a42-801baf03d372", "name": "Check SOD violations", "request": { "name": "Check SOD violations", @@ -109028,7 +109028,7 @@ }, "response": [ { - "id": "f103c804-0ae4-4667-a43b-5632a0f308a4", + "id": "9aed00bf-5849-4e24-9125-7c2a34993c1c", "name": "Request ID with a timestamp.", "originalRequest": { "url": { @@ -109085,7 +109085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d255b036-911f-4409-9b36-d45c3ebb1139", + "id": "26030793-f224-421c-b4b5-ee9c7f807e0c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109142,7 +109142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a32376a8-1898-4501-8887-4e24e345b552", + "id": "5948ea07-4541-4c78-a88f-bb518dfe7da1", "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": "a0d37f0d-abaa-4c5e-ae72-2d893abd39b1", + "id": "f35a0a5e-9d3f-4089-8d37-98735e43350f", "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": "b20ee985-581a-4797-94b8-7081d98310f0", + "id": "f48ebe45-a5ff-453d-9706-ef0c3c72e09f", "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": "0dc83fda-3d0c-4de9-8337-898bdaec9e28", + "id": "836d9c5e-21bf-457c-9c59-0ddc1fe5efc2", "name": "Too Many Requests - Returned in response to too many requests in 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": "6d93f2b5-624e-4ee2-8fb1-85be3743b827", + "id": "de793f90-d6f2-4790-9b2d-34e46240191c", "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": "65776aa8-69bb-426f-8c2d-465e53b76edc", + "id": "02e2f181-fe51-4a26-9e50-56284efc3cc7", "name": "Finds status of source usage", "request": { "name": "Finds status of source usage", @@ -109481,7 +109481,7 @@ }, "response": [ { - "id": "26391da2-5bc5-4bd2-9fbd-9a695aaf32ff", + "id": "09a5a6ad-0fc6-4d9d-adfb-23fdf2ab29e6", "name": "Status of the source usage insights setup by IDN source ID.", "originalRequest": { "url": { @@ -109526,7 +109526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73551d62-d4a2-4a85-93a4-9ec8e5afff49", + "id": "eeb1a1de-740d-493a-9153-a3bc196b6d06", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109571,7 +109571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aecf083d-8f0c-4cb6-9469-0b59a78d42ef", + "id": "de8ddc3f-9f5e-4f64-b4fd-a50cb3d4f8f4", "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": "92daceac-ac1e-4f8f-a76f-3a81b5c3f4f8", + "id": "4d899685-38bf-4a32-9ce7-f4f5c09adac1", "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": "512ba36a-c844-4c49-8472-d9af6802f016", + "id": "c455c73b-9704-41ff-a388-7552e3fdbacd", "name": "Too Many Requests - Returned in response to too many requests in 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": "a34a7368-2a61-41d1-abfe-c8a028885147", + "id": "2bff8edb-001c-4aed-83fb-b9ed0db9c7b3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109757,7 +109757,7 @@ } }, { - "id": "80c329a5-9ca2-4154-9c7c-8afc4afb8754", + "id": "10a72f00-3cb3-4ab1-a577-b3e216b38a92", "name": "Returns source usage insights", "request": { "name": "Returns source usage insights", @@ -109836,7 +109836,7 @@ }, "response": [ { - "id": "2985e5c4-4dad-44b7-8586-d959e54e8c55", + "id": "1df704e4-3617-4722-aa88-67e479efea23", "name": "Summary of source usage insights for past 12 months.", "originalRequest": { "url": { @@ -109918,7 +109918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0448ec19-ee69-401d-844d-6d2c0998f26e", + "id": "67be0df8-d625-428e-a3fd-75d7c3984881", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110000,7 +110000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e46db6f0-4496-4048-ada3-de5cfe8f38ed", + "id": "f36da820-4838-4ee3-a22e-d44ea286a050", "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": "1d99505d-cb22-4cd9-9a35-b06a687e7fe2", + "id": "ebb08118-1e4a-4902-95c9-f47bc3d023bf", "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": "01d3b805-5048-444a-a84e-1dc3d9f85fa4", + "id": "ad41af93-5764-424c-9f19-58ce32521e8c", "name": "Too Many Requests - Returned in response to too many requests in 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": "e363ce99-30f8-428b-8801-a4a52a7aedaa", + "id": "a79c90b3-bf84-484e-85bf-631a7ad6cd8a", "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": "1ea24507-d6da-4129-b2b2-f333b4cb6f80", + "id": "3ff09a7a-3049-415c-8436-41367ddc93d8", "name": "Lists all sources in IdentityNow.", "request": { "name": "Lists all sources in IdentityNow.", @@ -110424,7 +110424,7 @@ }, "response": [ { - "id": "296eed46-98fb-4561-b2d9-da82019e0940", + "id": "e493e288-2cfb-4beb-a630-02561b6990ff", "name": "List of Source objects", "originalRequest": { "url": { @@ -110522,7 +110522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c82429d-1be3-4962-91b6-8a561eb6ab00", + "id": "0208f22d-4500-4569-9a75-01c35f29a3fb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110620,7 +110620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac11325e-1a32-4a37-92ca-3911715fdd36", + "id": "57eda6b2-57e7-4b0e-b2bd-612e8a30e249", "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": "f1bd6ada-f08e-4156-b04e-4931ff23f1b7", + "id": "63f5431c-b1bb-4a66-89ac-f778ac4f3c29", "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": "7ac49e7f-f06b-4dd0-b6db-72b1f223e974", + "id": "feba3dc9-3457-4977-89d4-fed66fd1ff94", "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": "38eb22cf-898f-4a4e-b0e2-4dca4edfca57", + "id": "a5030c09-176b-41fe-8c76-ddb8c10f9dd7", "name": "Too Many Requests - Returned in response to too many requests in 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": "7e69de83-2722-40d6-b38f-a3f6d784e4ee", + "id": "181a7938-f252-4736-a4cb-1020056888f6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111116,7 +111116,7 @@ } }, { - "id": "4cd7513b-05bc-45cf-9235-6b2fab31cd55", + "id": "fa260ce0-5b17-44bd-b21e-16df6d0c3cd4", "name": "Creates a source in IdentityNow.", "request": { "name": "Creates a source in IdentityNow.", @@ -111168,7 +111168,7 @@ }, "response": [ { - "id": "386736bc-d3db-494a-a7ff-75f5795cdc2a", + "id": "644fd23b-b1c0-4a27-8c4f-4a12848699cb", "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": "278754b6-994a-4def-a1c4-9ea2cf0ecf3d", + "id": "814d742d-1c9b-47a3-af39-f600aa3490d5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111300,7 +111300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "309d6a6c-b08b-4cde-a94f-1f4d0216a1ac", + "id": "0a23cb35-86c2-4fdf-a438-e9aaf28b1e25", "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": "bde9821e-4a0b-4974-a275-ae995ae5a3f1", + "id": "598ceb5e-e5d1-4db9-ad82-ad8ac230a755", "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": "3f80f940-6744-476c-b8ba-822c9e708928", + "id": "f303177f-0b1a-4be3-a50b-6ef39a63e0c7", "name": "Too Many Requests - Returned in response to too many requests in 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": "31abcb8d-ac3f-4e30-a5bd-554fff67afe3", + "id": "cad202ae-167a-45a7-8060-b8fabc70b33a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111570,7 +111570,7 @@ } }, { - "id": "96bc14a1-533b-45ea-8fd1-3d3e3d114bb5", + "id": "176ca245-6f87-4e71-8772-886d2d7fac58", "name": "Get Source by ID", "request": { "name": "Get Source by ID", @@ -111611,7 +111611,7 @@ }, "response": [ { - "id": "b2e2c6c0-8f7b-48b9-8170-053d46fe424d", + "id": "9e1d18cc-26e7-4796-a3e9-23883e8e7b96", "name": "A Source object", "originalRequest": { "url": { @@ -111655,7 +111655,7 @@ "_postman_previewlanguage": "json" }, { - "id": "def1d547-957e-4037-8cfe-76e2d68ed683", + "id": "312d7d21-e946-4a9e-a2d7-361b084083e4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111699,7 +111699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c00ae7b-4a30-4fc1-8c9f-d8db6a5d6301", + "id": "93e8b0c0-fba2-4084-9e8e-b8cf295fe09f", "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": "520a915d-87ac-43ed-a685-58ea1c2882f9", + "id": "9c940798-0293-47a0-b1fb-50d3a8f92d49", "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": "f49f6e01-b94d-4819-9b29-9b38905a3366", + "id": "93baa8c7-aa59-4683-872d-fb3349f0c9db", "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": "9dafa57a-a8f2-42ad-a208-144cf8a0a214", + "id": "c1c0de57-619b-4318-af44-3a024e1997c0", "name": "Too Many Requests - Returned in response to too many requests in 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": "711c1f6f-ba71-4441-ad31-c43b54e7808b", + "id": "c07be5c0-1575-4b2e-a8c3-134f395f3f69", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111925,7 +111925,7 @@ } }, { - "id": "9ed82cc0-0268-4ef0-83b0-94265606c6ab", + "id": "e814aa8a-2e38-4664-b639-d765530cad9f", "name": "Update Source (Full)", "request": { "name": "Update Source (Full)", @@ -111979,7 +111979,7 @@ }, "response": [ { - "id": "e9a5a677-ac06-47d6-b0c1-499f7f387573", + "id": "2362ac34-24b0-4a9d-a1cb-8c416e8d6fb4", "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": "c22d9d06-96d7-48d7-a41f-44276a77f732", + "id": "0f7e496f-1ebc-49fd-9277-ec2248b3461a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112093,7 +112093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89037c6b-4f84-4f8c-92b1-7c9e699e7aa7", + "id": "f6a4b0a1-61f4-481f-855c-9ce556b1cadc", "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": "d19c67f5-cd47-4c9d-bdd6-efa649885403", + "id": "4b3a01a8-8179-48de-b8a8-e348f694c5e3", "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": "64df19b0-6887-40ed-9b83-70d013d9308c", + "id": "601d7a3e-a2e7-4879-8389-c25b218755c8", "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": "0d490dd5-259b-4409-acd5-3783d91f0588", + "id": "24829b83-53e2-4ef1-a3f2-692a03b5d3d0", "name": "Too Many Requests - Returned in response to too many requests in 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": "c189e549-ebfd-4770-bd45-7909609bbded", + "id": "c67b9a7f-5a02-4e43-9e87-90b67e89eb8a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112384,7 +112384,7 @@ } }, { - "id": "97b9e7fe-08fe-474c-96d2-97919fb268da", + "id": "4644d90c-7e1a-4ce9-9f0d-118d102aaffb", "name": "Update Source (Partial)", "request": { "name": "Update Source (Partial)", @@ -112438,7 +112438,7 @@ }, "response": [ { - "id": "56b943ee-20ba-4775-90ab-dde67745469e", + "id": "f4505a5f-89ef-40de-9d7c-d821f2e89fbe", "name": "Edit the source description", "originalRequest": { "url": { @@ -112495,7 +112495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b50c34a-d5c3-47fd-b346-a20196d97b72", + "id": "d6f4af3f-d44a-489b-90a3-5d74bc152d56", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -112552,7 +112552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e92bef8f-18ab-47c7-9c37-d48dff146386", + "id": "cbcfba52-0174-4da8-9d7e-b5ff56628758", "name": "Edit source features", "originalRequest": { "url": { @@ -112609,7 +112609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ba06f52-d570-466b-9e22-ca76aca12d15", + "id": "10d0f9ab-5ed7-4c9e-ba21-1fefd9e46f2a", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -112666,7 +112666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "960d354a-4093-43c1-ae81-6cf5e4a26a2e", + "id": "39cda0a4-f21f-4c20-b477-bdbc35bd9c59", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -112723,7 +112723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f437f498-ab85-4329-b76d-72b3771ff7bf", + "id": "468654f1-49de-4bc2-b29a-f69ed8c64766", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -112780,7 +112780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02be2b24-15d5-47b5-bb6d-6c39cd0de73d", + "id": "a51d05d3-0abc-4bf5-aa90-dd16b0bd84c2", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -112837,7 +112837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "585c40e6-18ce-4235-9b60-d5286d705a55", + "id": "83f122b0-c133-4d7c-b544-c38a285defd3", "name": "Edit source features", "originalRequest": { "url": { @@ -112894,7 +112894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4c7c5d7-a73d-44a5-8ae0-84881a41593b", + "id": "55d6c66c-e805-45aa-bf1f-19b27bbbee0b", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -112951,7 +112951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a28c0097-41f5-417b-b557-1343f6e68c2b", + "id": "00bbb21f-9ce6-454e-bb68-fe03568d7299", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -113008,7 +113008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d86241cd-96d9-4ee1-af78-108e1750e7b2", + "id": "bfb51a5e-177f-498d-b8c1-4c5bb8e20c6d", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -113065,7 +113065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b342cbe-a2a7-415b-897f-980cebcc28fb", + "id": "980abf70-b4b7-4b00-a725-f453285d9a72", "name": "Edit source features", "originalRequest": { "url": { @@ -113122,7 +113122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36fefb1a-e680-4aab-aff0-66e305b60d5f", + "id": "6112ea14-4aeb-48f2-a789-353d8b298092", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -113179,7 +113179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47f9dc60-bca7-40a2-95cf-3ef038f8faf8", + "id": "49d7b37a-09f0-4332-aa89-4c6fa9aa8ba6", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -113236,7 +113236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f3e0860-b7aa-4037-8c6b-b0ee71e87bf2", + "id": "025b2a4c-035d-4b23-b97d-5a8c8278fe0f", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -113293,7 +113293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f64ca296-3cc8-4724-815b-35fe63683122", + "id": "bb26d4fd-24f1-4747-a332-e9c61c8acdd8", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -113350,7 +113350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "579d7464-5b5a-4495-959d-afff9e3059d3", + "id": "e9d25b65-cc5b-499d-b09e-6fb6201eaa46", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -113407,7 +113407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e62b82e-5f8c-4ad5-bbb5-463df6ca15db", + "id": "defb482c-367a-4a30-8182-af131aa66493", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -113464,7 +113464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5dc2e10e-6217-4392-beb7-e1dc1921cf50", + "id": "8c21ee8e-8fe2-44a2-8a94-d6914a7a324e", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -113521,7 +113521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97e20d92-f349-4d3d-8d88-7a69cf62c7aa", + "id": "739b7305-601b-45fe-bbaf-c62881e2cc15", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -113578,7 +113578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2278e363-64f1-4547-b8f0-ba923e21b0c1", + "id": "1eaf4bd2-7945-4692-941e-3c0a0cb75687", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -113635,7 +113635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee23a1db-47c8-4109-a853-9f8f89da5f7c", + "id": "e82cdb87-0ee8-491d-94b6-e6e8a9bdbccc", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -113698,7 +113698,7 @@ } }, { - "id": "dbfbe7bc-f965-4a6e-a989-ced3bf677a27", + "id": "ecc8e7a1-44d4-4e26-a0c2-b30651744da3", "name": "Delete Source by ID", "request": { "name": "Delete Source by ID", @@ -113739,7 +113739,7 @@ }, "response": [ { - "id": "bbcd5abf-673c-4b29-949d-d586c1b03158", + "id": "1b4dfa1c-6b67-410b-91d1-f470d7e5c033", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -113783,7 +113783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdb75868-4c68-433e-aa19-da54f233d7db", + "id": "bfa230b9-655c-4807-8f43-80d80200fb8b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113827,7 +113827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c635c77-7a6c-4035-8550-dddef45a1df7", + "id": "e4dbef46-03a0-4768-8745-1ef757ce668c", "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": "03d34326-59e0-4390-a83c-9c98ee5114d4", + "id": "5fab721a-e203-4505-a040-d6d0d699c356", "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": "024aa674-54c2-43ed-8208-118aa417a162", + "id": "a3dceeb0-1163-4e87-b012-2afb8901e4ab", "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": "9c468a62-f1aa-4c5c-ba02-5ba3d6c554b5", + "id": "b1cc8ac2-971a-4631-9934-f61fe9831583", "name": "Too Many Requests - Returned in response to too many requests in 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": "4c040a34-93d7-4ad0-b987-34313be4a52d", + "id": "65d1e489-f264-45d0-a972-0a04208296d2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114053,7 +114053,7 @@ } }, { - "id": "02840f0e-ac59-4d47-8445-0ce3f4cf7057", + "id": "0f3b78cf-66b2-4a9e-810f-c84c69f9e80f", "name": "Lists ProvisioningPolicies", "request": { "name": "Lists ProvisioningPolicies", @@ -114095,7 +114095,7 @@ }, "response": [ { - "id": "770dc474-f0a0-4742-ba28-37bb2bbe2ba7", + "id": "7147f5c2-e688-4432-9b2a-e26a35cb07f4", "name": "List of ProvisioningPolicyDto objects", "originalRequest": { "url": { @@ -114140,7 +114140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b472038f-32af-4aae-96f3-390f014b5db7", + "id": "988d3be1-ad43-44e7-bcbd-18863d4531fa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114185,7 +114185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdfa37b8-9719-4be9-a1e5-0e400f742002", + "id": "e943b481-4b12-4a60-bb9b-d69d6b73f244", "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": "e395f055-7c14-49d0-8543-1e0838f2a04b", + "id": "139ec5fa-a2da-45f2-86f1-7022ede340d0", "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": "c4b6d56e-4390-49e8-8ba5-5a5eed71e375", + "id": "b6213ba5-a8ef-4b1f-b357-698c849fa51f", "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": "ebf92b8f-06e0-487b-9470-ec52f6324b23", + "id": "bfe6e0f1-786f-4e1d-a07a-f336ddd973a7", "name": "Too Many Requests - Returned in response to too many requests in 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": "50ecb005-291f-4941-969c-c45824b35581", + "id": "93b880c1-f1d4-4b57-990a-8933b2543a31", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114416,7 +114416,7 @@ } }, { - "id": "9b4981c1-88a0-4e34-8cd4-c96168e93a76", + "id": "136377bb-2bab-4f97-bb74-ede673e1ac99", "name": "Create Provisioning Policy", "request": { "name": "Create Provisioning Policy", @@ -114471,7 +114471,7 @@ }, "response": [ { - "id": "51b81c05-87a3-4181-8bd9-d28be407772c", + "id": "107ecf20-25dc-487a-a061-59cc800baa59", "name": "Created ProvisioningPolicyDto object", "originalRequest": { "url": { @@ -114529,7 +114529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "972b382c-73a3-4011-92b4-95bbf05f7215", + "id": "be9bd21c-05bf-40ea-8542-994d6b28c2a5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114587,7 +114587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3c3b9f4-65b6-47e9-8fd0-2aabb9fb7c09", + "id": "922201d2-f0f0-4b8c-896e-8d9e015c8591", "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": "b8a2eba9-25b0-4a86-8dbe-1340fd857211", + "id": "ad320e45-7829-4f87-9af2-38c9f6bcb2d6", "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": "0f64c9f5-cd48-4a71-9b59-6990c58abe7c", + "id": "3442d1a2-17f3-4061-9883-c618bfbaf1c2", "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": "d1d775b4-55b3-4602-bcc5-92e4a73b6526", + "id": "5a648845-7091-4c01-af3f-259d007cfaeb", "name": "Too Many Requests - Returned in response to too many requests in 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": "bbd6783c-8c02-422b-a32b-a6d528e5ea6b", + "id": "21f4c8dc-6fd4-4d5f-b99d-5a05165d148e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114883,7 +114883,7 @@ } }, { - "id": "efff6734-a240-4168-a4e4-bf04e83a86ef", + "id": "752c562c-5d51-4461-8557-59121b492f27", "name": "Get Provisioning Policy by UsageType", "request": { "name": "Get Provisioning Policy by UsageType", @@ -114936,7 +114936,7 @@ }, "response": [ { - "id": "2f387d22-37e9-40d6-b363-d358d862e1f3", + "id": "83056b3c-14d1-4a13-bea5-01b7ad955ef5", "name": "The requested ProvisioningPolicyDto was successfully retrieved.", "originalRequest": { "url": { @@ -114982,7 +114982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6de31a68-0a97-414c-8032-afdd4adfdc1b", + "id": "65acdf0a-689b-49be-9679-3c104ecdd9af", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115028,7 +115028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35d1fb14-5c34-4cb5-aacf-a8fe72ce6b03", + "id": "aa9b7058-78e1-48e4-9e35-d183775eb9eb", "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": "eb8b9578-ebb9-4224-a305-243941110a10", + "id": "d045e821-fef5-4075-8d9e-18ace0309ef3", "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": "6b50163a-34bc-46f6-a0c3-450496d209a4", + "id": "6ebddf43-1b67-4849-a8b5-a6e8817d2c9c", "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": "f783d43f-88c8-4610-80a5-eb02ce0353fc", + "id": "b16dfdcd-a211-49fa-9c87-447de367c1c4", "name": "Too Many Requests - Returned in response to too many requests in 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": "bebb683b-de5f-4009-8396-a32d2238b8bc", + "id": "bef7809d-016c-4e74-a261-5419ed9cd615", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115264,7 +115264,7 @@ } }, { - "id": "cd9c8c75-fe49-4f9c-930b-cbb214b794c3", + "id": "23cd2dba-651f-4a1e-8a03-609bb3db02ed", "name": "Update Provisioning Policy by UsageType", "request": { "name": "Update Provisioning Policy by UsageType", @@ -115330,7 +115330,7 @@ }, "response": [ { - "id": "63d9529c-227b-4cf1-8f15-370ca833c812", + "id": "7fe199a2-514d-4f2e-a83e-1a3638f2c4fd", "name": "The ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -115389,7 +115389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d96e062-0409-47d3-88b6-34d55dbb5d69", + "id": "9cb0f494-3386-45e1-a27f-3f19a1d392dc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115448,7 +115448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39f18cc0-50ad-4650-8f62-7c6bcfd02a32", + "id": "6be20cad-ef8d-41d5-827e-e3cea6616e1b", "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": "4d1e1b74-4c81-4672-8f97-719b6e8eefcf", + "id": "a69e817b-9ed1-4364-9826-8dab17f0ea35", "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": "bf367bcd-3bde-464f-b55e-a2e0ce7c6861", + "id": "59d45116-a342-4bcd-9195-1396ee95335b", "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": "59d539f2-9023-4c5f-bdd5-f863b4076b48", + "id": "d521f325-5e37-429d-bd02-ef8204066e68", "name": "Too Many Requests - Returned in response to too many requests in 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": "8166c658-b32c-4f2b-8720-9805186fbd6c", + "id": "89739d29-69f9-4d3f-aad3-e4a26adf8696", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115749,7 +115749,7 @@ } }, { - "id": "bf0f5463-1a34-40df-b723-fe11c5d94223", + "id": "80ed6e90-34d8-4181-a9a1-a1238be8b47b", "name": "Partial update of Provisioning Policy", "request": { "name": "Partial update of Provisioning Policy", @@ -115815,7 +115815,7 @@ }, "response": [ { - "id": "4d923e8c-dc42-4d5a-9824-11956c75e51a", + "id": "1a6f84d9-405e-4296-9250-f350eb17f324", "name": "The ProvisioningPolicyDto was successfully updated.", "originalRequest": { "url": { @@ -115874,7 +115874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6196a85-42c8-41ff-8d3e-d15abc32cd60", + "id": "b56f363e-1be5-4e50-b0c8-5bba62b968d4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115933,7 +115933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4e90464-1b00-43f9-83e9-c9754dd72bd6", + "id": "722a2d14-e297-43c1-8596-d75561f06f37", "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": "1fdcd89b-e188-4c7c-825e-f6767eb21594", + "id": "950c4cae-5fc3-42b6-b6b2-b9894d283eb1", "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": "85e8ac9f-e39d-41e7-8027-8f92970a7f76", + "id": "f7270b1c-db36-46ef-ace6-32c2d0a7dbd2", "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": "3ee50fab-0f77-4d65-908b-3ff8225c4bc0", + "id": "96114359-d4b0-4d25-a994-42c425a58c1f", "name": "Too Many Requests - Returned in response to too many requests in 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": "71adfd43-023e-443c-be08-9cd59c54bf73", + "id": "302ec3ee-ae0d-4cea-b9bd-a7ed0ce57be8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116234,7 +116234,7 @@ } }, { - "id": "8b5004d7-a0f6-4b9c-8b53-d77b35dbfab7", + "id": "cd3d7565-0975-4c3d-b424-b3abf7d0c4d3", "name": "Delete Provisioning Policy by UsageType", "request": { "name": "Delete Provisioning Policy by UsageType", @@ -116287,7 +116287,7 @@ }, "response": [ { - "id": "82a25993-98f9-4d27-a42c-40aa043712b1", + "id": "d024802e-4bd3-44f8-b050-a0e4de19e020", "name": "The ProvisioningPolicyDto was successfully deleted.", "originalRequest": { "url": { @@ -116323,7 +116323,7 @@ "_postman_previewlanguage": "text" }, { - "id": "47e4d7d4-50a8-41d5-9725-93f4dbe039ba", + "id": "5ffa7600-c7b7-4b0f-8444-d286803c2257", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116369,7 +116369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da562b91-23ce-4253-90e3-9869f378de1c", + "id": "28bfabaa-29d8-4d4e-aa8b-871aedc9bbe9", "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": "6ace3d37-be48-43e7-bd95-6e4e1a980c29", + "id": "b4b5297e-f812-4ef8-8052-92e5dc427bb6", "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": "b9ef5a88-7882-427f-ac37-24b79389a8a4", + "id": "9876840f-47e2-4b56-8ae3-9d49b4c51e16", "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": "24fb766e-cc40-4241-9321-e69eb79c6136", + "id": "860e7d6e-f8bf-404a-ae92-17404c23cbce", "name": "Too Many Requests - Returned in response to too many requests in 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": "442749be-8a40-48c9-8b24-f06bb2803c28", + "id": "c410571d-5276-4617-b794-1f80191b3b8d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116605,7 +116605,7 @@ } }, { - "id": "6e462e65-a61a-444e-a043-4445de07c97f", + "id": "e255ec02-69e4-4bb2-9d3c-912bc35b4f08", "name": "Bulk Update Provisioning Policies", "request": { "name": "Bulk Update Provisioning Policies", @@ -116661,7 +116661,7 @@ }, "response": [ { - "id": "492ef1ab-31eb-4b83-b76b-77c3f7744da1", + "id": "e06d1377-57ab-467d-8bdf-094d4f15ea6c", "name": "A list of the ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -116720,7 +116720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7e5cf94-603f-4d0e-ac60-7a4fdce8ba90", + "id": "e23058da-83db-49d8-84c4-117b23203fd1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116779,7 +116779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acc70e49-cc07-4c68-9814-c9e86f2dfee4", + "id": "343e40f0-e30f-477a-b3b5-1cd2e7229337", "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": "b56ceb89-080e-4564-9e6e-8feeba1fac7d", + "id": "9296d5e5-93cb-45c0-973f-bcd1309d4d52", "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": "3a04c22e-8ca9-4dc2-8ee2-a86fed6c7cbd", + "id": "aaa0aa4c-6b41-4ecc-9e83-cf469692a596", "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": "75bb9758-8f62-4f08-98c0-77f979ba5862", + "id": "eb680f02-5539-4a07-9995-ec1909427ac2", "name": "Too Many Requests - Returned in response to too many requests in 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": "ed06f4bf-5193-45e6-9994-59656aaecfea", + "id": "f2e3fc2e-7435-448e-b28f-66b330b27bca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117080,7 +117080,7 @@ } }, { - "id": "7a53bf22-a198-442a-be79-caacf87fb8a6", + "id": "c46c55aa-f16a-454e-bbf0-7c89b08cb82b", "name": "List Schemas on a Source", "request": { "name": "List Schemas on a Source", @@ -117132,7 +117132,7 @@ }, "response": [ { - "id": "d27f2df2-9f35-409a-993a-ec3d1b92e69e", + "id": "365e617b-c876-4e9c-bef2-0ed0500a2de1", "name": "The Schemas were successfully retrieved.", "originalRequest": { "url": { @@ -117187,7 +117187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd4448dc-6a50-4c49-b9da-ce9e51e22f46", + "id": "d4b2af0c-1c08-4431-b06f-c756b25b670f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117242,7 +117242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd6f51e9-2ce6-414c-8b4a-f798527f421e", + "id": "9fc1179b-4346-49b4-a84c-39ac480da827", "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": "3dadf44d-1d7c-4a32-96ff-393630d11ae2", + "id": "3dbf5044-b4d3-424f-a1d3-3acdddace4a1", "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": "2598c304-c2a4-4000-a17a-5d13e14914ef", + "id": "9e280aae-dfb7-4fa1-b67d-aed37b7e021c", "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": "2b8acbd6-7af0-4489-911c-ba742d8f27f6", + "id": "5681955f-34e7-4ca1-b268-f654c19bca0b", "name": "Too Many Requests - Returned in response to too many requests in 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": "180e9ae9-52be-4455-808e-44b6b39361cc", + "id": "254b2fcf-2cee-415d-9e10-3ab0c9a9ca76", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117523,7 +117523,7 @@ } }, { - "id": "8310223e-efd5-4ad8-8bb3-fc51bdde63e6", + "id": "d38f7e02-74be-4931-a093-ecd65af23dac", "name": "Create Schema on a Source", "request": { "name": "Create Schema on a Source", @@ -117578,7 +117578,7 @@ }, "response": [ { - "id": "d06c64e4-77ae-4f6c-8902-17807722f004", + "id": "9ad7ff17-13c4-48ac-9615-9528672b1f4a", "name": "The Schema was successfully created on the specified Source.", "originalRequest": { "url": { @@ -117636,7 +117636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59009109-259b-4dfd-8a8e-47e8090e23c6", + "id": "709f1124-c4b7-49a8-bdee-f254f1e6ac19", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117694,7 +117694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cdc07f7-02bc-49be-9968-e73dcf731fdb", + "id": "ebb71f24-3b4b-4bb6-8bb1-ad17004d48cb", "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": "29435257-f476-4171-b2ce-ab8a274672c0", + "id": "75155e44-469c-4b00-b296-db97afd95b43", "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": "586c73aa-04cc-4ff4-b1a6-a2dde6298192", + "id": "5e892c47-a1af-4e4c-b7f5-f90a1685a184", "name": "Too Many Requests - Returned in response to too many requests in 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": "e101fc55-83db-4e50-98f7-a6c121247575", + "id": "a26c8097-49fd-4b90-85c0-58775d416403", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117932,7 +117932,7 @@ } }, { - "id": "54fdb10f-b14e-4236-a1c9-46b096295351", + "id": "e0d3de88-f238-4e09-b0c5-226fc1ca3a17", "name": "Get Source Schema by ID", "request": { "name": "Get Source Schema by ID", @@ -117985,7 +117985,7 @@ }, "response": [ { - "id": "ea4b8f98-4e6f-4274-98ea-6c2f8f69c014", + "id": "0f7bdb10-0244-4905-98af-2b98732345ab", "name": "The requested Schema was successfully retrieved.", "originalRequest": { "url": { @@ -118031,7 +118031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2dedee8-9e79-4723-804f-43e77f92773e", + "id": "4b90bc6d-0cc0-4877-bfe5-5e32b55e55e8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118077,7 +118077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71802f15-946a-438e-a0ea-5f03a7496331", + "id": "2d1bda2e-781b-498f-a2cd-6b119b73e01d", "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": "fef1dc1d-319d-487e-b35b-7f8a4ef7131c", + "id": "0f76b4cc-0147-4231-b97f-b2acc935b9e7", "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": "ed96f653-e6c5-46f0-b3dc-73db3a221b40", + "id": "d89459cc-fd28-4961-b163-d04d07c35db7", "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": "d0adcc71-8216-456e-b2d0-e19316ccb32c", + "id": "387b3e17-db86-4e6e-a4ec-51b33331d10e", "name": "Too Many Requests - Returned in response to too many requests in 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": "c26da98e-3d48-4768-95cc-558fb8f31755", + "id": "8969e306-57e0-4b0d-afc9-f7f6bf013b8c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118313,7 +118313,7 @@ } }, { - "id": "ae99d4eb-e622-4b2f-bb75-5ba47eb4f41c", + "id": "8fdf3e4d-f412-4ee1-ae5a-9f7d695e61ba", "name": "Update Source Schema (Full)", "request": { "name": "Update Source Schema (Full)", @@ -118379,7 +118379,7 @@ }, "response": [ { - "id": "00dccb5e-66fc-48d7-873d-ba141f43755e", + "id": "df9bfc8e-56c9-4723-9500-636ddbfa5f05", "name": "The Schema was successfully replaced.", "originalRequest": { "url": { @@ -118438,7 +118438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78d668ee-eaa5-4c3d-8bd4-d21a73a02e60", + "id": "332f0ed4-96ed-44bf-b46c-95119cca573d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118497,7 +118497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30a5bb3c-acd9-4c2e-9bba-d3aac8e51398", + "id": "01eea4f1-c61c-4926-8ee3-32e9aee7221d", "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": "c088ecc9-8456-4e56-8bad-5590d235654f", + "id": "7bb00b2c-d39b-4d56-9a5f-e090365188f0", "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": "2787cf3b-5e03-49e9-860e-035c267f4762", + "id": "3037d0b0-08d7-4ac6-b1aa-b5e0660412c4", "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": "5c8be307-73f8-4b02-8fa8-6fe49fe7e479", + "id": "2daf8141-b3db-4c45-a8f0-508cb129a13f", "name": "Too Many Requests - Returned in response to too many requests in 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": "18d6be27-4b16-4a53-b920-e53e7e9a00e0", + "id": "3c0828c7-faee-434a-b14e-620fc5ecf5d3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118798,7 +118798,7 @@ } }, { - "id": "2005742c-2083-4f24-899e-8a4b9e8778a8", + "id": "d78759a0-42b5-45fb-8bb4-ae335aec00eb", "name": "Update Source Schema (Partial)", "request": { "name": "Update Source Schema (Partial)", @@ -118864,7 +118864,7 @@ }, "response": [ { - "id": "d567fd80-1e52-44f4-b9e1-3e3634300bab", + "id": "be3f3495-193a-4a8b-a41c-7e55b65b1e3e", "name": "The Schema was successfully updated.", "originalRequest": { "url": { @@ -118923,7 +118923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36804c2b-92b9-4e5e-bb5c-ea447c6810a8", + "id": "e7792924-94d3-4350-bc8d-d1d5219e0e4e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118982,7 +118982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2211aef3-2227-4840-b69d-6b36abcf414e", + "id": "22a62ddb-a772-47b3-9a39-5e208613fdbb", "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": "32ebb0b6-67d5-450c-a368-b388aaaf3d13", + "id": "9ccb3bf7-223f-4b04-b5d8-1708a2ac925c", "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": "ae4b3a78-dbb0-48d7-88cb-1e526c7f7013", + "id": "9521c8fc-94d6-4d76-aa38-f517f20b046f", "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": "5b7a773b-9b7a-40e0-a92b-7f9df90235d9", + "id": "cf0819af-0810-42a6-8454-9d197c7e9bfc", "name": "Too Many Requests - Returned in response to too many requests in 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": "c54893ca-ae23-4097-be06-c5e20a54b0ff", + "id": "af7cfb41-7c3e-4b15-bfa6-8741d217dfa3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119283,7 +119283,7 @@ } }, { - "id": "cad49da9-0656-489c-9d88-cc818b6548ea", + "id": "e80c822e-5f07-4f32-96e5-00f9a89a55d2", "name": "Delete Source Schema by ID", "request": { "name": "Delete Source Schema by ID", @@ -119333,7 +119333,7 @@ }, "response": [ { - "id": "22013318-eb4b-441e-889a-d0ef0e1e8866", + "id": "8a031a11-c8f3-4a98-8baf-56a1fe72fc0f", "name": "The Schema was successfully deleted.", "originalRequest": { "url": { @@ -119369,7 +119369,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0786ef1d-440e-4fc4-8109-a350c8e7f232", + "id": "563de399-b079-4952-8aeb-13bfba6c8ab6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119415,7 +119415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "354e0785-1045-4e62-9f98-581fb9b2c3cc", + "id": "a98ebaad-3657-4b72-a0b4-8d9c09b1b1bb", "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": "6b6fe45a-1bee-478f-afb3-2dee9d0929a0", + "id": "3aa5a001-f810-4f9a-846e-9739dfdb6d98", "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": "698e770a-a858-409a-a79e-c81cd6949627", + "id": "97863a35-d126-43e3-b50a-3d807a14b02e", "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": "5c33c11d-02cf-4b8d-b04b-56727ce1e9d2", + "id": "48251253-fd47-49bc-a761-48ed7c214f4b", "name": "Too Many Requests - Returned in response to too many requests in 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": "1c2bc60a-0af1-47a9-89dc-2c504cae5981", + "id": "d8c02616-1a2a-438b-928d-ffbaba485cbb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119651,7 +119651,7 @@ } }, { - "id": "590e9ae5-093d-4c1e-b510-bd735e5f6422", + "id": "d4a3162a-9670-4281-a5e2-db6fbdd39251", "name": "Fetches source health by id", "request": { "name": "Fetches source health by id", @@ -119693,7 +119693,7 @@ }, "response": [ { - "id": "c79cf0bc-c904-470c-b19d-aadaff3e3179", + "id": "39658cc2-2c9b-44ff-aa43-e3457adecb8f", "name": "Fetched source health successfully", "originalRequest": { "url": { @@ -119738,7 +119738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "124b762d-f515-4560-91fb-5a3ac3b1d4e8", + "id": "5da90884-6d5c-4a1d-a02c-0c852f198be9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119783,7 +119783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd1194e7-2c3d-4462-89cc-3e79ae4e7dfb", + "id": "d4091915-4540-4173-aadc-67aa6949ecac", "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": "c85ecf00-1303-4bed-a6bc-0b0b90489455", + "id": "023eea0c-b7d9-48dc-a10b-28067f8aa361", "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": "30fb9262-a02f-4ad3-b2c5-dc454439473f", + "id": "0cc38353-9496-4d67-a4b0-2224c153d554", "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": "9b191304-ae01-4b9d-8b18-376e7f8d08ee", + "id": "39d9d652-96b7-4b79-915c-772155615a3d", "name": "Too Many Requests - Returned in response to too many requests in 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": "698aad5a-548f-4ae2-8528-0714ccb786e8", + "id": "7fb81925-603f-4291-8f6a-68945a693eee", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120014,7 +120014,7 @@ } }, { - "id": "c8303203-d335-4d00-b282-1cacde7b9556", + "id": "fe071302-61ae-4103-8014-5f9b44b55a96", "name": "Downloads source accounts schema template", "request": { "name": "Downloads source accounts schema template", @@ -120057,7 +120057,7 @@ }, "response": [ { - "id": "411e384d-69ec-48ce-997f-cae035b84548", + "id": "b5a53a32-aa18-4b4b-b2b3-700b60c45781", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -120103,7 +120103,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7ba50dcf-75a3-4205-8b55-9a9b38bf76b3", + "id": "1ae96c52-a0f1-43e4-be64-654be511c4ee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120149,7 +120149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2289c677-6e00-4328-b5ff-b24b471a806f", + "id": "0842de6c-ce96-4552-a127-d6ff99a007c2", "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": "1d84bb41-f976-4899-b276-98232fb61b9f", + "id": "2a237018-5ffa-466d-b045-6c1e6255b6ef", "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": "2194fa49-4645-4568-81e6-c8a07714db85", + "id": "81fff8bd-f521-4c55-9046-af7f128a7cae", "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": "6bc929ba-4d34-46ea-ba9b-633829bfdee4", + "id": "67132a7d-78f6-49d7-9ec4-5b0f79d56cdf", "name": "Too Many Requests - Returned in response to too many requests in 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": "66411e4b-ebd3-491c-a9eb-ef751ba5285b", + "id": "cb5b4de6-64cf-456d-be5a-79417db345b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120385,7 +120385,7 @@ } }, { - "id": "1452e948-871e-42d8-a639-3096669c30f9", + "id": "ed2addc0-56f9-4db8-8dd9-005c91bd1068", "name": "Uploads source accounts schema template", "request": { "name": "Uploads source accounts schema template", @@ -120437,7 +120437,7 @@ "type": "text/plain" }, "key": "file", - "value": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -120445,7 +120445,7 @@ }, "response": [ { - "id": "ca465621-539f-4478-84db-da3d2f58c524", + "id": "4c8d492e-b6e1-4afe-9a68-726ed98a8e37", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -120489,7 +120489,7 @@ "type": "text/plain" }, "key": "file", - "value": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -120508,7 +120508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e135fe4-4618-431a-b7f5-4c9adc001d6f", + "id": "e9675a71-99f9-40b7-9120-60810fe017df", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120552,7 +120552,7 @@ "type": "text/plain" }, "key": "file", - "value": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -120571,7 +120571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "122fef7e-e124-4293-8c32-fb95ff597510", + "id": "61f344dd-fdd1-40b0-a7fb-d24005b4ad8a", "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": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -120634,7 +120634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9609e132-4894-457a-976f-722ea9e92f6f", + "id": "e247328e-196d-4175-ad31-257bbbf36a02", "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": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -120697,7 +120697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "049bad24-e236-4c12-bc14-55f4def5e23f", + "id": "f2526e3d-2d88-493f-81d1-eafec27676d8", "name": "Too Many Requests - Returned in response to too many requests in 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": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -120760,7 +120760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d7d0349-cb69-46fe-871c-ff40df4e8eec", + "id": "e763ed0c-97a0-45cd-822f-cc82061c5bf7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120804,7 +120804,7 @@ "type": "text/plain" }, "key": "file", - "value": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -120829,7 +120829,7 @@ } }, { - "id": "2e9ebbdf-cf7b-488f-a7d4-1732e043fdf9", + "id": "93c7caf2-273e-41fa-8f69-ab75fd540cfe", "name": "Downloads source entitlements schema template", "request": { "name": "Downloads source entitlements schema template", @@ -120882,7 +120882,7 @@ }, "response": [ { - "id": "c10cdf05-bcef-4ad0-87d0-d6b8117bf2d5", + "id": "0690a601-9336-45e7-ae01-f6a180b4142d", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -120938,7 +120938,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d6e5d574-ead1-4ca8-b791-731f99b0242e", + "id": "ad0740ba-c07b-40dd-9431-68d27755b9be", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120994,7 +120994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "349327ea-5b1e-44f1-8736-9b96ef7639ac", + "id": "a535a0a5-d005-4e24-ba17-663d7afa82e4", "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": "8ea71072-3b24-4472-9ce1-c2dbaa4ed77f", + "id": "63568590-cc01-4b80-8f26-5700a9f8e3d0", "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": "169ed423-c330-4423-89eb-1223713619db", + "id": "99535977-5725-4507-bd4f-288698b6aa36", "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": "6de13596-5066-4783-85e5-0d4ca6f89c0b", + "id": "076c3ccb-9c52-4c06-8022-735d13041ee3", "name": "Too Many Requests - Returned in response to too many requests in 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": "84503d95-b5a4-4d7c-b942-eceacff1bb7b", + "id": "89ba4cfc-0fee-4d24-9c92-2c5d8b5b5a7a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121280,7 +121280,7 @@ } }, { - "id": "d970964f-0495-4bd1-9ff9-cca569a4772b", + "id": "b3ddc460-48ce-41a2-b332-29fc86e831fc", "name": "Uploads source entitlements schema template", "request": { "name": "Uploads source entitlements schema template", @@ -121342,7 +121342,7 @@ "type": "text/plain" }, "key": "file", - "value": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -121350,7 +121350,7 @@ }, "response": [ { - "id": "eb2b1980-edbc-4efe-94cb-90d1bcb58f58", + "id": "64dc9574-14bb-4256-8ba3-340b3bb0cde7", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -121404,7 +121404,7 @@ "type": "text/plain" }, "key": "file", - "value": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -121423,7 +121423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d3a0af8-4fda-470e-be7a-c09cbf7f10d8", + "id": "c0ae0803-262a-47de-97ce-19ce3524f423", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121477,7 +121477,7 @@ "type": "text/plain" }, "key": "file", - "value": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -121496,7 +121496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bd5963b-049b-4dd8-84a5-01f97fbeed11", + "id": "653ad358-bc35-412d-85af-6f22199f8564", "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": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -121569,7 +121569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b96b37e9-f86a-4001-bc16-40375355ca44", + "id": "601b91db-21b7-450c-8b97-6e85617f4aad", "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": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -121642,7 +121642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d228dfe-3aa4-4ce1-893a-220213885b0b", + "id": "e206ee8c-3277-4648-9b74-d195f75dd850", "name": "Too Many Requests - Returned in response to too many requests in 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": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -121715,7 +121715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94d7716e-0e5e-485d-bf74-e8de38e54ac3", + "id": "1736942f-28ab-4553-ab8a-2f48d166bb56", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121769,7 +121769,7 @@ "type": "text/plain" }, "key": "file", - "value": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -121794,7 +121794,7 @@ } }, { - "id": "2fd0c2ce-358a-4408-a192-a39b3fd88bae", + "id": "5519019b-3a73-4d43-9700-1e7149a6fe6b", "name": "Upload connector file to source", "request": { "name": "Upload connector file to source", @@ -121845,7 +121845,7 @@ "type": "text/plain" }, "key": "file", - "value": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -121853,7 +121853,7 @@ }, "response": [ { - "id": "1ed9a471-9745-4574-8b8e-cf5385796f9e", + "id": "86b95b93-c683-4eae-9d21-441421aa901d", "name": "Uploaded the file successfully and sent all post-upload events", "originalRequest": { "url": { @@ -121896,7 +121896,7 @@ "type": "text/plain" }, "key": "file", - "value": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -121915,7 +121915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "562a30e8-ab53-4634-96ff-9d64eb267438", + "id": "7fb3cc62-a8fd-47ce-93b0-93f92ef5b7d5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121958,7 +121958,7 @@ "type": "text/plain" }, "key": "file", - "value": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -121977,7 +121977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46fec666-bec7-499c-b508-10819598ccab", + "id": "c5109c3d-fb4c-4313-8c81-afbd71be6df2", "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": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -122039,7 +122039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0d390d2-4266-44bd-b9ee-f72b739ea9b1", + "id": "79b612df-5baa-4716-9c1e-e2032303afb5", "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": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -122101,7 +122101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "267e6fbf-1e39-4f18-8151-23f56fb6ba28", + "id": "671fd853-6677-47d3-b017-318fd272ec7d", "name": "Too Many Requests - Returned in response to too many requests in 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": "culpa labore ad dolor", + "value": "minim laboris cillum nulla Ut", "type": "text" } ] @@ -122163,7 +122163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25387f52-fb5d-490d-ab48-6341891a5187", + "id": "82004148-de67-42f1-b503-a6b364dfb7ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122206,7 +122206,7 @@ "type": "text/plain" }, "key": "file", - "value": "culpa labore ad dolor", + "value": "minim laboris cillum nulla 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": "675986ee-a942-47e8-bc59-c141f221b976", + "id": "32fe44ce-26c9-4a4a-8061-6b0a0dd711c3", "name": "List Tagged Objects", "request": { "name": "List Tagged Objects", @@ -122303,7 +122303,7 @@ }, "response": [ { - "id": "7db2d5e4-e76e-46af-a669-7ccddc3a944e", + "id": "8d4ed0e3-3296-4dca-ac8b-15704c319b5a", "name": "List of all tagged objects.", "originalRequest": { "url": { @@ -122383,7 +122383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4bbb7f9-22cf-47de-a12e-226e98200538", + "id": "2fb2b9a4-d03e-4402-912e-cf74a5553c84", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122463,7 +122463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4825b59-a7ef-4ed8-adc0-228e8813fd58", + "id": "3aafabb2-8f06-4c2f-959c-598a2bebd51c", "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": "bdcb1617-59f5-4e82-b0a1-9416d1ccd3ff", + "id": "d64f0699-e20c-4e4b-89fc-c9ba3f526bf6", "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": "8a3d02ad-743c-4d71-be3e-597df39bcd27", + "id": "ca310d32-cd4a-4351-be59-127449f402a3", "name": "Too Many Requests - Returned in response to too many requests in 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": "e8c997d2-1e5c-45be-85cb-caafcbf2622f", + "id": "311a2b85-1042-4cde-ba94-4dddd49b6e77", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122789,7 +122789,7 @@ } }, { - "id": "df09dd8c-813a-4909-94e0-eb39971e5046", + "id": "3e6e7ea1-ff2e-4c90-9f2c-29620f3b8c6a", "name": "Add Tag to Object", "request": { "name": "Add Tag to Object", @@ -122831,7 +122831,7 @@ }, "response": [ { - "id": "020d06d4-491d-4b79-a0f4-6ecb90d3094a", + "id": "7eacc532-e055-4b1d-97c1-3f2a96f0402d", "name": "Created.", "originalRequest": { "url": { @@ -122877,7 +122877,7 @@ "_postman_previewlanguage": "text" }, { - "id": "edfc6d6f-240d-457c-8458-1cf868fb25b0", + "id": "70fb30f7-5342-487d-8283-ed265802010b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122933,7 +122933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baadd576-78f0-4e20-8df0-c956b0bbb002", + "id": "e67b941e-9492-44fa-9eda-8c8518c8fb02", "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": "fa7d6c91-df6a-4296-bb36-2074e555adb6", + "id": "7c4b193e-7ed5-45ef-ac59-d4d76f2474d0", "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": "2608b3ef-102b-4372-9077-0a50c6f616a8", + "id": "05f86c28-d2c2-403f-bdde-499dd641b2d3", "name": "Too Many Requests - Returned in response to too many requests in 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": "8fb56f1e-85c6-4f5c-b343-2a719d1ecc1c", + "id": "fb23afc8-a5ad-49ca-94da-6bee9c564224", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123163,7 +123163,7 @@ } }, { - "id": "5fd6fbc5-bc3d-48c4-a3c9-7ef6923730cf", + "id": "62e3c73e-8d90-439e-ad3b-0ac69ae742a7", "name": "List Tagged Objects by Type", "request": { "name": "List Tagged Objects by Type", @@ -123241,7 +123241,7 @@ }, "response": [ { - "id": "63f35334-1bd1-41da-a11e-25a8cc650add", + "id": "8bb16235-7e94-4bd6-bd03-2313791ab94f", "name": "List of all tagged objects for specified type.", "originalRequest": { "url": { @@ -123322,7 +123322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45735ce8-b999-46fa-bb59-d7fa95689237", + "id": "2ada0ba8-f845-4316-9d00-a9e7583a8e20", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123403,7 +123403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e589d0de-ec23-4808-aa0e-548eb8973984", + "id": "3b6a0b31-411d-49a4-813e-aa123abc77ce", "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": "e7490e26-49d9-4e28-949b-372f68bb91af", + "id": "d78f412a-1303-4fa4-abe9-aa75abbd1bf6", "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": "09297048-e927-46cc-9f99-312c5b502c31", + "id": "0df38fa5-a464-466f-95dd-59a5a43f688c", "name": "Too Many Requests - Returned in response to too many requests in 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": "42b55320-4c17-4f04-ba8d-27ada2dbc38f", + "id": "d26f1c09-51f0-4fca-a752-46e379a2ee99", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123733,7 +123733,7 @@ } }, { - "id": "2a1078e6-0250-4474-8ba7-c144971833fb", + "id": "3f7953cc-143a-49e1-8faf-4bf6f8863914", "name": "Get Tagged Object", "request": { "name": "Get Tagged Object", @@ -123785,7 +123785,7 @@ }, "response": [ { - "id": "303c65f7-f3b5-47cd-b7b6-39f63a589707", + "id": "40fe31af-7c9a-4373-8d3f-6a1fc88d9670", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -123830,7 +123830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9658bbc5-6d9c-4167-9bce-cec5c46ed0ea", + "id": "44c165ef-407f-4569-916c-d068c595b4dc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123875,7 +123875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0622fb1-2b7a-4cbd-baed-2897927dfd60", + "id": "57c6f7b9-3202-4596-a23d-074a6649850e", "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": "3487ff30-114d-4286-94d9-d836c50a5416", + "id": "968868ca-5281-44b8-b154-63a46d99bb6b", "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": "fd6b4b32-f5c9-4212-b832-953a88c33127", + "id": "f04f6664-a83b-4ca4-a25b-146c24a26b95", "name": "Too Many Requests - Returned in response to too many requests in 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": "a37792b2-a3ad-4865-bcc5-1797fa498847", + "id": "dcd0f89d-3e9a-4074-8d71-84cdbbd073d9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124061,7 +124061,7 @@ } }, { - "id": "e85f7af4-a127-4bfa-845b-00f5f2398c06", + "id": "15b0e761-a618-4c46-8333-9c295cb8ab88", "name": "Update Tagged Object", "request": { "name": "Update Tagged Object", @@ -124126,7 +124126,7 @@ }, "response": [ { - "id": "99291fcf-f7e1-4d11-9d0d-1935597250eb", + "id": "9a11d1ba-be8a-44e3-b4b8-8edf7e027af3", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -124184,7 +124184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c6182be-138a-4eae-9139-26e5ad32d886", + "id": "9b2016b9-5a52-4cd0-9809-f7d34ba78ef5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124242,7 +124242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e74c0ecf-bb09-4aec-8761-f2ce9395ee9e", + "id": "694109d9-f7c9-46f5-8c6c-e09c0eac7592", "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": "ec5c987f-1d2f-4dd5-ae98-d9244ec2f7ab", + "id": "8e02a253-bf3b-43f8-8ee9-99d549d97f1b", "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": "064e9670-2a9a-48e1-bf26-ebfeccb1aef5", + "id": "37e07fcc-9713-4fe4-bb01-550db8a14d6f", "name": "Too Many Requests - Returned in response to too many requests in 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": "9a432f68-77b6-4062-9f44-4cf728968894", + "id": "95b548b2-ae8b-4203-96a3-0d0d036160c3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124480,7 +124480,7 @@ } }, { - "id": "d185d1ff-7fbb-40f6-b4cc-e892cb189df3", + "id": "fb5c141d-f2cd-46ab-9901-7f18ffb3b3af", "name": "Delete Tagged Object", "request": { "name": "Delete Tagged Object", @@ -124532,7 +124532,7 @@ }, "response": [ { - "id": "edbb3c1e-c783-489b-9e83-e85f7aa5bce4", + "id": "bd711084-5302-4538-9142-d08f210c9f42", "name": "No content.", "originalRequest": { "url": { @@ -124567,7 +124567,7 @@ "_postman_previewlanguage": "text" }, { - "id": "63dcc931-80b8-4244-afc6-32a919bede86", + "id": "b8bb77cf-eb0d-4161-bc27-3b4cf344502e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124612,7 +124612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8700ac36-8fc5-444c-9cd5-a84f10116d9b", + "id": "d50069b1-7b43-4535-b894-5fb55f39b888", "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": "bee08774-b580-44ab-a2be-e7f95abf076f", + "id": "a8f7c531-88e3-4a3c-b472-5ef2c3582b49", "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": "35f9c139-89fa-43ab-903e-5d4706852e82", + "id": "7f8b2257-db35-4bb1-bd43-5d56f2fe041c", "name": "Too Many Requests - Returned in response to too many requests in 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": "03bf72d3-846f-4b53-8813-4bac91544a25", + "id": "5d610620-15b3-4268-a022-176d8537983c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124798,7 +124798,7 @@ } }, { - "id": "6a415086-6ef9-4c3a-90ef-60ee13dea0be", + "id": "011ccda1-c4a9-4e13-ae65-33358ad1342a", "name": "Tag Multiple Objects", "request": { "name": "Tag Multiple Objects", @@ -124841,7 +124841,7 @@ }, "response": [ { - "id": "98f2be2a-1b29-4722-9961-6022dddc0243", + "id": "36483eee-0975-498f-8690-356cbe938274", "name": "Request succeeded.", "originalRequest": { "url": { @@ -124898,7 +124898,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e17a24c-30ff-4a2f-9b0b-76bf7237f6a6", + "id": "3d71f43a-aca8-4dfd-bcaf-37f781e3e18e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124955,7 +124955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98d4e35d-41a2-41e2-b5f5-0a8f37534c42", + "id": "bba79060-944a-4443-ac62-664951d53f1d", "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": "c43c5687-ba8f-4258-b1c8-c4a0a291e076", + "id": "ed0bec1f-6597-4c69-a55b-969c26069195", "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": "66d257b4-6e65-426c-8d68-0c6603585517", + "id": "4d84538d-36c9-478d-a9b9-6292dda55114", "name": "Too Many Requests - Returned in response to too many requests in 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": "c6931975-7f08-47e7-979f-5f6397cedd82", + "id": "3c2ebefd-877d-4485-9733-5448f612773c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125189,7 +125189,7 @@ } }, { - "id": "5b55f236-1fd9-4434-8d53-481951aa3f46", + "id": "a54e571d-223e-4847-8ce6-ffe2e4db2d78", "name": "Remove Tags from Multiple Objects", "request": { "name": "Remove Tags from Multiple Objects", @@ -125232,7 +125232,7 @@ }, "response": [ { - "id": "f493be11-ea37-4f76-adf9-4c3afc60f912", + "id": "8813026e-451e-4b7c-a7f6-cb291edfde06", "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": "ae96194e-4e1a-425b-a9db-b1870d4e7d09", + "id": "a0a390f8-a8b7-4b38-b62e-59dbd99a3557", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125336,7 +125336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "debfb81e-cfa4-417f-be31-e2d6ec10049c", + "id": "18c5de56-79c1-4c7a-bc56-fe799e82ec87", "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": "5b07170e-1340-4eba-8d5f-0cad2d4766e8", + "id": "e8e5290f-a95e-4742-97db-f430600c4cb4", "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": "b800fbe5-6ad3-4980-a749-f5db81b795ca", + "id": "8eeae1a9-131e-4efa-b5f0-81c3e1e1fcfb", "name": "Too Many Requests - Returned in response to too many requests in 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": "d847f741-cf9e-4a5d-a8e5-6510d17daab5", + "id": "e896aca1-50bb-4212-be05-0bb5fdccd40b", "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": "1f62d406-82c3-4e50-a0a5-01ad7e1819cd", + "id": "4f6a6e5f-914b-40d9-9b75-3d3be3e6c491", "name": "List transforms", "request": { "name": "List transforms", @@ -125651,7 +125651,7 @@ }, "response": [ { - "id": "590c1005-b660-4169-930c-ca0e514c3590", + "id": "e2d40775-e5db-480d-bf39-fc8dc7695759", "name": "A list of transforms matching the given criteria.", "originalRequest": { "url": { @@ -125740,7 +125740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fe29364-3e1c-4a8f-93fc-b101229a98cf", + "id": "25b71fd8-2b63-48bb-bb11-d2c58d826c87", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125829,7 +125829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6187bfe3-0295-4a9c-a3c2-5e6c686a37be", + "id": "37fd1461-1bea-4e09-8fd0-fd022250c875", "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": "12efeb40-ca60-4a97-8880-24eca7222082", + "id": "3866536c-8aee-436a-bbd2-7c06235c4a90", "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": "7f2bc2fd-e9c0-418d-8b20-75582b4b611f", + "id": "8486fe0c-3c24-40dd-8ac1-431c67865b6f", "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": "37fb9939-ff1b-4866-8a8f-977977efa7ad", + "id": "991ce06e-7fcb-4f35-8af4-b4cfab592393", "name": "Too Many Requests - Returned in response to too many requests in 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": "5c8792e2-2d57-4eef-b867-c7d0a2b07c10", + "id": "8fdbd294-77e4-4713-8c5f-1d18c146bdcc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126280,7 +126280,7 @@ } }, { - "id": "87d89b3c-f49d-4f70-9193-714b4ec66cbe", + "id": "c35f87f1-4222-427d-8524-70f6bc4827e6", "name": "Create transform", "request": { "name": "Create transform", @@ -126322,7 +126322,7 @@ }, "response": [ { - "id": "c7156813-2673-4099-a630-1b7f50806275", + "id": "c856acb6-ad4c-4281-8df2-fd48ce216d8c", "name": "Indicates the transform was successfully created and returns its representation.", "originalRequest": { "url": { @@ -126378,7 +126378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81fbb4b1-3fc2-4c83-9b42-4b2376122fce", + "id": "8564c9f1-ab79-46f7-a9fb-cbf176748196", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126434,7 +126434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a5ad204-b3e1-4f41-8be7-c1a8abd1d530", + "id": "d1c614f8-56ad-45d9-8fcc-4a4dd36aa4d6", "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": "e3920bf4-5ade-4d24-bfcd-246eab6e27ba", + "id": "51a81ae1-3721-48a4-a5a3-7f8be724ef35", "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": "e3da7d1b-a275-4d1d-8f7a-f0541ff65f4d", + "id": "c38c4dee-32c9-472b-8167-e5eae9909744", "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": "daa4d89d-df44-4e29-b632-b1833c6dfd8c", + "id": "14668ea1-8b5f-4236-8fd7-9970e9c216eb", "name": "Too Many Requests - Returned in response to too many requests in 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": "c0ecc679-9ae7-44c9-adcf-bab4376ce7ad", + "id": "a1423e9b-3d97-4c31-95cf-f0bc05e0c664", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126720,7 +126720,7 @@ } }, { - "id": "1f02fb32-bd1e-490d-92de-c14a5d42a7a7", + "id": "b4c7966d-24b0-4244-97d3-b65b01af7836", "name": "Transform by ID", "request": { "name": "Transform by ID", @@ -126761,7 +126761,7 @@ }, "response": [ { - "id": "a494e26a-8793-4017-9dc3-118531aceafd", + "id": "cc96c28d-da41-4bfe-b882-7a545cec11d1", "name": "Transform with the given ID", "originalRequest": { "url": { @@ -126805,7 +126805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e5dd690-cc92-4db2-aab7-4fcd87bc024b", + "id": "99cc04e5-71e8-47c2-88d1-d0afef6c74f5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126849,7 +126849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2537beca-07c8-496b-90f4-e91a366fcb5e", + "id": "dc3ce893-8dfa-49a9-81d6-e75f82eb10cf", "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": "71e3c8ae-409c-497d-95f8-fcb4bfec8a75", + "id": "85bed21c-bef4-4209-8792-6807d3fe1a9e", "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": "b8c121e4-4334-42f5-82c0-28f320b6ea52", + "id": "486bee32-20de-443e-8b4a-199b1b6389ca", "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": "d099c007-5ff9-41b5-9a1b-f58198558256", + "id": "22924bfd-b168-426b-b98c-ff91fc2f142a", "name": "Too Many Requests - Returned in response to too many requests in 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": "41bb7828-3020-4fec-99ab-c3d77ab6e4ea", + "id": "f39fca80-9343-4c8d-9087-097a1c31e8b7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127075,7 +127075,7 @@ } }, { - "id": "234f326f-1dd4-4cd2-8080-a008e5d12c57", + "id": "0c3c4f8d-1a6b-477c-aa89-13fbfe1255ad", "name": "Update a transform", "request": { "name": "Update a transform", @@ -127129,7 +127129,7 @@ }, "response": [ { - "id": "fcfc690a-5cf6-4f87-8430-54a0bea8b185", + "id": "b6285a90-d920-49b8-b94d-f1ce11710eef", "name": "Indicates the transform was successfully updated and returns its new representation.", "originalRequest": { "url": { @@ -127186,7 +127186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5996c2a5-a952-452e-8792-38fa955b2717", + "id": "a641e559-a980-4ef9-85f7-0fbd68d1b46c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127243,7 +127243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09c6ee98-33ef-4302-95bc-75719c2191fb", + "id": "1186bc0f-ae73-4af5-bfa0-1cf42be21193", "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": "c6ec1743-426b-4444-9814-39d683d53aa7", + "id": "b29e96c1-a452-41b4-92ad-32853ba329d1", "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": "618130b5-2d59-466b-b075-60948c8852f5", + "id": "ab227a21-cca3-4687-a0fd-73f56fb1e321", "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": "db47bf6a-b58d-402c-b32a-a2b32981548d", + "id": "f9cefe07-ad9c-4d83-8af5-ec293862cdaa", "name": "Too Many Requests - Returned in response to too many requests in 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": "cc2a17cb-415e-4859-9853-e297994a0aa8", + "id": "d3a2d4b2-e73b-42d4-b22d-e03a3d889cf2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127534,7 +127534,7 @@ } }, { - "id": "ca48255e-2ac3-4386-8f0f-67df306f46c7", + "id": "13939301-848a-43ee-b1d1-8384e7071daa", "name": "Delete a transform", "request": { "name": "Delete a transform", @@ -127575,7 +127575,7 @@ }, "response": [ { - "id": "e52fa20d-88db-40a6-a50b-050b0e23598e", + "id": "3a65a909-7fb8-4cb3-9285-9f48ae819a6d", "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": "55d82b12-d459-433e-90a5-d23019efc437", + "id": "e2c7d0a8-f705-4d7d-82db-6fd58d2d1bdd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127653,7 +127653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e24a3b53-1206-42cb-862b-f0a84712f16e", + "id": "39700a5e-5599-4485-a354-956b2c6e8222", "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": "28d1f882-b601-4e9d-8f94-ded2ef9adeec", + "id": "1f1f7d1c-f852-4d5d-bd4c-a7b92f11c682", "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": "d85e2793-3d84-49c5-ace6-fb1e12529c79", + "id": "456e7dda-bba7-4162-97db-f5196012ed72", "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": "0b93155a-8540-4c5f-9a4c-0199a9b9d8e4", + "id": "0bd98746-80bf-4ca6-b5c0-5146f2cb1de8", "name": "Too Many Requests - Returned in response to too many requests in 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": "ed18d78d-44f2-4eeb-b123-20a1111db5fb", + "id": "f6eb361f-3f43-43dd-95bb-a8fba93e18d4", "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": "b23adf70-5ba0-4a35-8f6b-8c25bb3e81fb", + "id": "ef65d4ad-dbc9-4d77-a91a-2640b1a0e3c1", "name": "List Work Items", "request": { "name": "List Work Items", @@ -127951,7 +127951,7 @@ }, "response": [ { - "id": "2bfdd494-3783-45e6-8292-595064471c03", + "id": "c935fb4c-2a62-45b7-8574-947138344463", "name": "List of work items", "originalRequest": { "url": { @@ -128031,7 +128031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84606d6c-6d14-4e0b-9d98-3e07a83e47e7", + "id": "9946b470-ee68-42ce-b195-c22e701928db", "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": "a15012bd-6c8c-45b2-a35f-bd053df0e2b3", + "id": "ca37bcb7-1a63-457c-8bcc-cc659cfdc5a8", "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": "4e01fbba-70e2-4415-83d4-1ddc58921b0e", + "id": "3f584e21-05d1-40c0-987c-4b798d6ad884", "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": "0220a6dd-016a-4db6-be0e-6f1cdde3240c", + "id": "173806f1-0839-4968-9d23-500ef2a51ac9", "name": "Too Many Requests - Returned in response to too many requests in 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": "8909f4b5-eec6-4995-bb33-bb3c51e0b53d", + "id": "92fd6f38-5bb9-4e52-8b85-e56dd140e7a6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128437,7 +128437,7 @@ } }, { - "id": "f83d2ddd-cb8b-460d-84a1-9977b7665b83", + "id": "c91405d7-7ff3-4ddc-991d-cdc5e70e7b31", "name": "Completed Work Items", "request": { "name": "Completed Work Items", @@ -128504,7 +128504,7 @@ }, "response": [ { - "id": "9e6c2b17-9a02-4a03-876a-08811ad7020f", + "id": "e30097b2-579b-4bc9-ac33-d92468a67225", "name": "List of completed work items.", "originalRequest": { "url": { @@ -128585,7 +128585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "876dbb72-0ddb-42b7-9cc4-4d09b927fc8c", + "id": "f0b72c50-4f4f-42eb-a7d0-1f580673b7b3", "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": "746ff2da-3f61-4ac5-a532-a3c74826c50c", + "id": "38596ac0-dd16-4369-909e-2faf76a32ca6", "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": "7baf80ee-f16e-4d14-ab36-90f058998f43", + "id": "1fa271e8-7cb3-40f3-99ef-a2b0aa66be36", "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": "cbcbee69-f929-4fa5-ae1d-2faa51da0fc6", + "id": "7359011b-3e36-4691-8238-20eee0022bba", "name": "Too Many Requests - Returned in response to too many requests in 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": "2757dd87-d59a-4171-9e9d-d53f57e3b952", + "id": "d9aa7149-3a98-4d9d-9048-6c7ac7c48d4b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128996,7 +128996,7 @@ } }, { - "id": "21d9b979-4533-4ad0-9eca-6751ad0144e1", + "id": "6939adc2-3f8e-4fe4-b9e1-d9818f011fe6", "name": "Count Work Items", "request": { "name": "Count Work Items", @@ -129036,7 +129036,7 @@ }, "response": [ { - "id": "e964e69c-531c-460b-be0a-49202112eadd", + "id": "b97cf15d-4158-4865-898c-68def7b1daaf", "name": "List of work items", "originalRequest": { "url": { @@ -129090,7 +129090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e4742d3-11c3-4d95-873a-7853ae7b60f5", + "id": "35617fdb-95a6-4554-b58b-de1f1d913297", "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": "ecf09a7a-759c-4b55-99d2-43c6cdda997c", + "id": "a41c44fd-b9ca-4ac2-bca4-b43fca562273", "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": "389cf621-d48b-4401-b634-0d069894de22", + "id": "0ebf26bc-67ad-4f74-b1ca-1b923d13e537", "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": "e35e006f-c87b-42d5-b2f5-86f18c59664b", + "id": "15db9d5d-62c2-443f-8dc3-266c1e95ed90", "name": "Too Many Requests - Returned in response to too many requests in 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": "2fac83cd-5253-4f37-89dd-ebc606521ef0", + "id": "dc8de847-c564-420a-939c-c453242700da", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129366,7 +129366,7 @@ } }, { - "id": "72014f87-1b08-45f4-8a24-e2d936012926", + "id": "25054dc9-1867-42b0-909d-55076cf7453b", "name": "Count Completed Work Items", "request": { "name": "Count Completed Work Items", @@ -129407,7 +129407,7 @@ }, "response": [ { - "id": "6dec7c64-ee35-4278-be60-3721a43055ea", + "id": "ac07127e-908c-43d0-8a3e-c69cd5bc56a3", "name": "List of work items", "originalRequest": { "url": { @@ -129462,7 +129462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f90fb2c4-2930-46e0-a1e6-13d4535bb5ed", + "id": "76c1d047-11a4-46dc-865e-c664d444ac48", "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": "40cf37e3-9fcc-48fe-837e-bc1f51986c6a", + "id": "27869517-11ab-4843-99c4-4c9580a07e02", "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": "e18e5adf-7bfe-44de-846a-30e8bb4abd1a", + "id": "9ceb759f-8d22-4f5b-a2db-e559b7015785", "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": "dca18739-d883-4e47-9bf1-6e4685f9d411", + "id": "5a964cb0-2444-47df-b671-1b539241e591", "name": "Too Many Requests - Returned in response to too many requests in 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": "b1511836-3bba-4b4b-923c-5354750bb2ce", + "id": "75a4cbb1-34aa-4c0a-b1b7-3321d43088ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129743,7 +129743,7 @@ } }, { - "id": "678b74e6-b44a-4563-89dd-f82a80a4ea2a", + "id": "07f7ee8a-b96b-4b1a-bf3c-685b8c304e40", "name": "Work Items Summary", "request": { "name": "Work Items Summary", @@ -129783,7 +129783,7 @@ }, "response": [ { - "id": "26e16553-3588-4dba-852c-775af6667e3f", + "id": "4dc76ef5-b225-4417-b62f-3c6289ac3b7b", "name": "List of work items", "originalRequest": { "url": { @@ -129837,7 +129837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19a30bb0-898a-48f9-9ec7-b5bd3cf261b6", + "id": "a4656e81-986b-4647-808c-72d14bcfeef8", "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": "bf3285d7-cc49-43e7-8c8c-7375632bc117", + "id": "7dc5415b-718d-4b6c-b6f4-d90c335779f0", "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": "84f86414-804c-4b75-888f-e58f8e9c8a20", + "id": "9dfb4632-8501-43bb-a979-a4b058b4aab9", "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": "157f3740-eda8-4d1f-963f-841e88fc4613", + "id": "af886f33-844c-4009-ac17-7aa31fa9efd3", "name": "Too Many Requests - Returned in response to too many requests in 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": "9bbeb97d-7bdb-4833-a7c3-0abdeb73f2ca", + "id": "05e37307-7fce-4037-be75-6d6ff3e1087c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130113,7 +130113,7 @@ } }, { - "id": "e3f95dc4-d820-40b7-9fea-cd4524981e5b", + "id": "b8f0a404-fece-495f-9401-84f6fc1e8a29", "name": "Get a Work Item", "request": { "name": "Get a Work Item", @@ -130154,7 +130154,7 @@ }, "response": [ { - "id": "66e26f21-9947-4b6c-82e9-ccde2485c387", + "id": "02632e30-269a-4d90-b2d7-23a46297e6d3", "name": "The work item with the given ID.", "originalRequest": { "url": { @@ -130198,7 +130198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00df871b-8568-493a-a641-1b87f0c160e4", + "id": "06ccc4f1-4e6f-4dd9-ba7f-f20a463318a1", "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": "61b4129a-53af-4f48-8ae9-5a8737ec0a5b", + "id": "921c6648-102e-4970-ab9e-996fb3503c55", "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": "dda00b97-9d6f-4a36-8c87-eb7217977556", + "id": "8f0087a1-e68f-44a9-bd59-c7c62c1f2597", "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": "96b5d47b-4fd6-491a-b546-cbe2b624f0d3", + "id": "b4aeaaf6-f7d2-4199-b540-788696e2f8ed", "name": "Too Many Requests - Returned in response to too many requests in 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": "51610d18-f5ba-4237-bc88-5b30a6da57a3", + "id": "a45859da-4dd3-4aff-b8fc-c4ec355b1ba2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130424,7 +130424,7 @@ } }, { - "id": "74f2b8ad-78e4-4c9a-8159-cd56ac2fcea7", + "id": "b14abd6d-d8c4-412d-9788-2520e11b64de", "name": "Complete a Work Item", "request": { "name": "Complete a Work Item", @@ -130465,7 +130465,7 @@ }, "response": [ { - "id": "7fe75fed-a50d-40d2-afab-a1d666b5e46e", + "id": "614b9f00-b623-4367-8a80-b1a6cffb8755", "name": "A WorkItems object", "originalRequest": { "url": { @@ -130509,7 +130509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "122d7715-5dad-4a2c-a46b-fc640a9146d0", + "id": "4396f973-d9e5-4ed8-8946-f26b6e33fa07", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130553,7 +130553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f04233e4-912f-4080-883f-5aa46524cef3", + "id": "3534a3d6-a23c-4127-ba17-5a2f94db09cd", "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": "a3dfa204-11ea-46ea-b177-b0af855c2c55", + "id": "e0923063-77fc-4baa-ac8d-f8097ec55ef4", "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": "4ff7bd2e-fc8f-44a0-91b5-d717e8e4b1ca", + "id": "6c331bff-dd20-409f-b288-1b103d79557e", "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": "8131ed8b-98a7-4f20-9620-9d8b2f9387d9", + "id": "c99c1937-c42f-423d-b254-33bf9f766a3f", "name": "Too Many Requests - Returned in response to too many requests in 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": "6c0b2421-6e53-4311-b9d7-8013e06b795e", + "id": "82264ca9-c827-4659-83ef-0622e79de720", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130779,7 +130779,7 @@ } }, { - "id": "7c954578-8c66-4b8b-9d56-4138471cbab9", + "id": "c9148277-320c-4749-83d9-c8a92d5a9824", "name": "Approve an Approval Item", "request": { "name": "Approve an Approval Item", @@ -130832,7 +130832,7 @@ }, "response": [ { - "id": "2283219b-5b66-4732-928b-67bc1e988252", + "id": "ce3f87f9-0a37-448f-b3ba-240eb2cf7d58", "name": "A work items details object.", "originalRequest": { "url": { @@ -130878,7 +130878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bf1384d-aa44-4d30-97da-29a24b0eb218", + "id": "f83fc1fd-d25f-4061-9b33-8726d21bcb7e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130924,7 +130924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e826686-f6ba-4b96-a20f-6adc87f6e167", + "id": "e4edc411-d634-4433-9852-dd7a1c8dcb30", "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": "1a4d6298-94b5-44b3-bfbe-dca4a5202fe7", + "id": "cbe56d67-b973-4ebd-bc31-9c16fccf481c", "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": "211d9c68-8491-4fff-81e6-14881438e92e", + "id": "10f0bed1-12b6-4c0e-bc1e-c73b9099dab3", "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": "bf31ed7d-bc3f-424e-8edd-e3d72c5eabdc", + "id": "efcfcff8-2904-4032-9b0f-795ef6b23727", "name": "Too Many Requests - Returned in response to too many requests in 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": "f1539221-12bb-443c-a0f3-b533a2a7a572", + "id": "90541002-b7ff-4aad-926e-b081b8594f3d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131160,7 +131160,7 @@ } }, { - "id": "da59c6b6-ecdd-450c-b64e-765bcc2e9fc1", + "id": "0383b94b-261f-4d56-ae37-6e6b9e24d509", "name": "Reject an Approval Item", "request": { "name": "Reject an Approval Item", @@ -131213,7 +131213,7 @@ }, "response": [ { - "id": "b4ac27ee-d1ab-493d-a3c5-93c2bdd935e1", + "id": "f5c8628a-413f-400e-b419-2ceb56a70e08", "name": "A work items details object.", "originalRequest": { "url": { @@ -131259,7 +131259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "319752d5-5951-4bef-9647-4e108aeba066", + "id": "b9e6da44-2d40-415c-8d01-ad2e3f18a8b6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131305,7 +131305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd9e351f-7a99-4694-817d-ca487bed0266", + "id": "a19e5679-d02b-4f95-b1b9-cce1d1bc0b56", "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": "34d33e80-6441-407c-a623-1ac0b673b36f", + "id": "82d331ff-9669-488f-97de-3ec69b43f61d", "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": "be311d19-ccc9-40a2-be3d-17cedf8ee8ef", + "id": "6eccd2e6-bfea-436e-877b-b2b014d9accd", "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": "dd7d8e5e-9ffe-4375-9d9f-48eb8ebf7b1c", + "id": "6568d44a-2cbc-4d1d-b57f-0d60894c7008", "name": "Too Many Requests - Returned in response to too many requests in 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": "b7ba01fa-8b5f-4ba5-afc1-0dbf602a1037", + "id": "2eaf5a84-6a31-4376-855f-b9c8da5a4716", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131541,7 +131541,7 @@ } }, { - "id": "dd9c308a-ff30-4c57-b3b7-b4e9f02b7527", + "id": "9ecc5948-3675-4fb8-9332-c410fe9404d7", "name": "Bulk approve Approval Items", "request": { "name": "Bulk approve Approval Items", @@ -131583,7 +131583,7 @@ }, "response": [ { - "id": "08b52a53-32c0-49b2-982d-92bf24935859", + "id": "ca1e89ca-c86d-4e6d-bad8-ba5f9c6af541", "name": "A work items details object.", "originalRequest": { "url": { @@ -131628,7 +131628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ed7f6e8-ee47-4ff2-b52f-0eeb1faa8c92", + "id": "a1bb08f8-e5f1-4179-98e9-851ff2f875d6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131673,7 +131673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e299d47c-ccce-408c-87be-3190f9a4b92e", + "id": "2dee5dd0-a6d1-41a9-b837-e15a2d3bd950", "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": "41176877-d8e9-462e-870d-6bc6cd54febf", + "id": "45fafed7-9f95-493a-9eea-7b0f9bbbbfa1", "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": "d0b28cf8-cdd6-40ce-9ebf-a17e38490162", + "id": "0e64e231-8561-4f6b-a6ba-9515b850d9fe", "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": "d0802782-2849-4977-b353-1b846cacf850", + "id": "41ef9103-7734-419e-aef1-f032e41bdc03", "name": "Too Many Requests - Returned in response to too many requests in 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": "b9fb2327-d52f-4612-ac89-b838c4822203", + "id": "dfd2726c-273e-40db-8738-ef8c2b3b4bd9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131904,7 +131904,7 @@ } }, { - "id": "909623ca-f401-4c9c-8db4-aa940f90ce82", + "id": "5046b0ac-4e76-4f85-9a69-be58eb36b87f", "name": "Bulk reject Approval Items", "request": { "name": "Bulk reject Approval Items", @@ -131946,7 +131946,7 @@ }, "response": [ { - "id": "cb2833cb-15e7-45bb-bc83-d6305bb0ab75", + "id": "3b59c87c-480b-4759-8ba4-086fa063526b", "name": "A work items details object.", "originalRequest": { "url": { @@ -131991,7 +131991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc91681b-8b83-4629-b522-0a8c8a24953e", + "id": "edb1e704-f31b-48b7-80ca-a1397824716c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132036,7 +132036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad3384d2-327a-4a12-a83c-69cfa522bf5e", + "id": "5340aac3-a3b9-4357-98a4-8b9057795f50", "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": "7cadff1c-326c-453b-bfd8-d178cb535380", + "id": "b836ae59-b507-41c6-abd2-9138b47484c6", "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": "48b4d7ef-9584-4776-93c6-ec568db5ceb3", + "id": "5c3f7c75-3fd8-4cb5-afd7-d7f9200e141c", "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": "4c33328d-756b-492f-86d5-eec52cd76b3c", + "id": "ff44355d-1d67-4993-9add-fc2a67506bb8", "name": "Too Many Requests - Returned in response to too many requests in 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": "4238d082-6f1d-4201-b657-f6847b194ed9", + "id": "84461f33-2b8c-4bb3-84d6-0f9d76f3a8a4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132267,7 +132267,7 @@ } }, { - "id": "4cce9adc-7312-4315-8f1a-0355ae0a72b6", + "id": "7ce46ccc-e25e-4a57-96dc-233ef4d8a72d", "name": "Submit Account Selections", "request": { "name": "Submit Account Selections", @@ -132322,7 +132322,7 @@ }, "response": [ { - "id": "00c45bc2-e3c5-483c-9635-e7af8baae38b", + "id": "47ecef99-ace3-4b76-8667-30266e284b98", "name": "A work items details object.", "originalRequest": { "url": { @@ -132380,7 +132380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "827fd8a5-5677-4ad9-b9c1-b3ec84efac44", + "id": "04cbe239-0b8c-4218-b4f5-0ca370ab5735", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132438,7 +132438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ba0cdf5-d788-4c55-90b5-fe85ee268673", + "id": "56922953-d260-40b4-a4fa-08a0b31de29e", "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": "4f77c925-3527-4f9f-b537-a8b46de73032", + "id": "ebca267a-6e0d-4bbb-a357-ba84375191c1", "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": "cdc818de-743d-4cb4-988e-c5eb89c20942", + "id": "08ffe883-081d-4ad2-b042-3044e97e3997", "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": "f5765b4c-6460-478b-ba1a-e1191ab4910f", + "id": "36f3b24a-4d2d-4834-8874-ee24607636f3", "name": "Too Many Requests - Returned in response to too many requests in 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": "181fcf22-80cc-4f14-a3b0-32aa57eaa640", + "id": "f21572ac-eb3f-49b4-9848-bb7e4cc52fdb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132740,7 +132740,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": "49f92203-e093-4f13-8719-c5a27194c521", + "id": "889a121c-207b-444b-87b2-51b1206abe30", "name": "List Workflows", "request": { "name": "List Workflows", @@ -132769,7 +132769,7 @@ }, "response": [ { - "id": "2845c36f-1c8d-47f4-87ba-231e4a5bf0b8", + "id": "28c84940-84ce-4816-87a5-eff6bcbd672d", "name": "List of workflows", "originalRequest": { "url": { @@ -132812,7 +132812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b53aafc4-25d5-43a3-b972-1bf9594604d3", + "id": "408dfacc-5d47-47ee-b809-5317095df33e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132855,7 +132855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f0e8ca0-17ad-447f-8e3d-0861694b8d55", + "id": "dc616a89-e39f-4d92-b9b2-0614ae0e1da5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132898,7 +132898,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9ca717f-ad1a-44ce-9094-a1e1dfaac188", + "id": "08340199-8fbe-4734-8b9e-4421f9fdd021", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132941,7 +132941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27eaa113-b328-4e7e-99eb-5eac2d90c5b4", + "id": "e47b4335-b8bb-49d4-bda7-475cfab2c5be", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132984,7 +132984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3266a0f5-8fff-4c7d-ad46-47ea3dd96972", + "id": "b770db54-2290-45b2-9dd4-6a7cb0fac67d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133033,7 +133033,7 @@ } }, { - "id": "742ba7fc-7d55-4497-84b3-b26a12b4313d", + "id": "5f417676-1eff-4014-a369-b6d94bd8a059", "name": "Get Workflow By Id", "request": { "name": "Get Workflow By Id", @@ -133074,7 +133074,7 @@ }, "response": [ { - "id": "e621f9fa-8a2c-49da-9ff9-ab324b11bdfd", + "id": "c502a415-f9c2-42d9-a954-8955ffe7d617", "name": "The workflow object", "originalRequest": { "url": { @@ -133118,7 +133118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b8266a2-b611-43b7-88cc-f9d0c9f017ac", + "id": "e2bafc5c-18d5-40fb-88fb-4fb9fc4f7458", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133162,7 +133162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dbd0a1d-3daf-4372-a77d-17ecb38406e0", + "id": "c031eb92-b00b-40c0-bc9f-6aae79e9726c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133206,7 +133206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de1e448b-43ea-44d5-ba2a-acab2b9d51e6", + "id": "ed604438-c7fe-427a-9913-47f18bc9a453", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133250,7 +133250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "712b9453-f6d9-40c0-8a8d-bbe718973a45", + "id": "c029049c-804c-429f-9771-a0b95e05145c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133294,7 +133294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7682bf54-6d46-4e95-b0cf-df0fdac0befd", + "id": "16e852cb-4ea7-49ed-a182-cc68e4f7f772", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133344,7 +133344,7 @@ } }, { - "id": "22d48ae8-65d8-46ab-8c03-7c09c951b7fd", + "id": "6a43691b-20d3-40ae-b511-6c91f4368f49", "name": "Update Workflow", "request": { "name": "Update Workflow", @@ -133398,7 +133398,7 @@ }, "response": [ { - "id": "b4ffbda1-df72-4e5b-bdc3-71e872da73e5", + "id": "9e236b6e-5360-41a3-9622-cc1c75ae83c5", "name": "The Workflow object", "originalRequest": { "url": { @@ -133455,7 +133455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d88fffa-474b-4b91-bd5b-642a8f06e23e", + "id": "310cacb0-c31c-449d-86f9-b3821cd0a78f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133512,7 +133512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29ea99ba-51e1-4e84-8ddc-7d1eb1808c54", + "id": "ed44fe14-a76b-4992-88de-0f01e32e0d8d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133569,7 +133569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efd06ed8-e0ed-483c-a465-77ea0ebb4489", + "id": "3cfc96c1-befc-4b75-b8f9-d9f76eb1ee12", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133626,7 +133626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7dd42403-b9ac-4fa9-85e2-b67b3c5b1b20", + "id": "199a0b9f-44b8-4448-afc7-396e4e0af97c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133683,7 +133683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c193c75-8120-48d2-aaea-89c6cd2cb02b", + "id": "a72f6be4-aab0-4091-be16-7be2da3474ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133746,7 +133746,7 @@ } }, { - "id": "4e0fe4f5-87ea-4a5a-90a3-b4f97151b56b", + "id": "4e8209e9-4c66-403e-93ca-3b761dd5927b", "name": "Patch Workflow", "request": { "name": "Patch Workflow", @@ -133800,7 +133800,7 @@ }, "response": [ { - "id": "d9af2610-eb3f-4b6c-b817-a85f35c49c80", + "id": "249c633b-bdd8-45f9-879a-fa12ac436864", "name": "The Workflow object", "originalRequest": { "url": { @@ -133857,7 +133857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23b6a36d-c635-4db8-8763-f81130f5b953", + "id": "21e34239-9e89-41aa-ad9c-1dd633c36cd8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133914,7 +133914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78076825-e393-42d4-8a11-588e4feaee90", + "id": "ee2daea9-7b14-4f32-8ed6-2cb598f6ecac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133971,7 +133971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d169b401-ba4a-41e3-a391-5a83a0581c01", + "id": "1a53ab97-a609-4b30-93d2-b8348ddbe377", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134028,7 +134028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aae8a6ea-5000-46fd-92b1-350f568ca701", + "id": "356cf5e7-cc34-4587-a9e6-76a8197fe1a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134085,7 +134085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a45e66f1-b121-4ac1-9a44-81861ab4e6b2", + "id": "c62ec7fd-f3ea-462f-bedd-6f62ca1c4978", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134148,7 +134148,7 @@ } }, { - "id": "0b2fe8f8-d36d-4c33-9e24-414ea6f4c435", + "id": "29ca73bd-2ae0-4f64-9f80-1e5b0b3c3591", "name": "Delete Workflow By Id", "request": { "name": "Delete Workflow By Id", @@ -134189,7 +134189,7 @@ }, "response": [ { - "id": "e33634be-07f1-44d1-89a3-95774f8c157a", + "id": "0c790c50-9088-40c0-9e71-ba0ca7895241", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -134223,7 +134223,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ae1b7ac0-a36c-43ad-9b95-31a6d8d04507", + "id": "f332756c-1894-4e14-9caa-12c4a71bbfb3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134267,7 +134267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "167d916f-b19c-4e2c-aab4-aba382b2e68e", + "id": "9fa486d7-3d41-45dd-8e1e-f2b4bacb0673", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134311,7 +134311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39016dec-effd-49d1-83a9-53b8cd5969b4", + "id": "c1bc70bd-241f-4878-a0d6-cb75c98b41ef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134355,7 +134355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29838326-9f16-4e48-9a25-59a4927b9ed6", + "id": "68ccfe8b-90fe-4685-97fd-bb96955b2762", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134399,7 +134399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e488323-0dc0-43a5-b765-3c899becf12d", + "id": "c3dcd491-e144-4064-9b9a-038d7ae1d6f2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134449,7 +134449,7 @@ } }, { - "id": "c098ed26-5ed7-43c0-97cd-7295694912c3", + "id": "11e31560-d76c-42e1-8daf-6e5ab67220c7", "name": "Create Workflow", "request": { "name": "Create Workflow", @@ -134497,7 +134497,7 @@ }, "response": [ { - "id": "3256bed7-abd9-4aa9-b2b1-07d65ee12694", + "id": "10833730-1e45-4e7b-981c-d10dd3705219", "name": "Event Trigger", "originalRequest": { "url": { @@ -134554,7 +134554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3411983-ba16-439a-866f-39a182b397fa", + "id": "5e7bae70-08d6-489a-b96a-b23764018309", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -134611,7 +134611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b988075-0ec4-48ce-8ccb-f4659f3787fe", + "id": "1b22e8a3-860b-443f-bbd1-c7a8c3c5c6ec", "name": "External Trigger", "originalRequest": { "url": { @@ -134668,7 +134668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f863cf6e-2116-4a4b-80d4-9bfad8bca5e0", + "id": "b36cd223-18f4-4667-869c-c72989119eb5", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -134725,7 +134725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "945b4508-89b0-40b3-b3a1-7915f10d9d5d", + "id": "4a4ed172-aa13-4fee-90ac-71044a104d85", "name": "External Trigger", "originalRequest": { "url": { @@ -134782,7 +134782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e16c52ff-3358-4fb8-8a3d-709c7a529714", + "id": "a3e3cc0e-5466-4319-8512-c00919094a55", "name": "External Trigger", "originalRequest": { "url": { @@ -134839,7 +134839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6a546b5-da4f-4bae-9f00-d5a4f5bb842b", + "id": "397c5694-89ae-49e1-a17a-a8de7fe90a42", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -134896,7 +134896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d79c1dd2-285d-43b1-8045-fdfc4cd6ddc5", + "id": "8fa712f8-df7d-449a-983d-2cb5eaae119c", "name": "Event Trigger", "originalRequest": { "url": { @@ -134953,7 +134953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1cbdb7a-1bba-4704-821e-d026aedbb48e", + "id": "87cc7b17-f1c9-43dd-9983-e2b8b70ffaa7", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -135016,7 +135016,7 @@ } }, { - "id": "82fa0379-4922-461d-9adf-bbd769d132d7", + "id": "fd0e5521-6773-4360-a9e6-4a1aeaeab1fb", "name": "Test Workflow By Id", "request": { "name": "Test Workflow By Id", @@ -135071,7 +135071,7 @@ }, "response": [ { - "id": "ac194c30-5cf3-4811-a808-a72d9f9bab5b", + "id": "d5291e04-5117-4f56-8681-d53ca8e003de", "name": "The Workflow object", "originalRequest": { "url": { @@ -135129,7 +135129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b60eb573-8001-4eb0-9dc2-04b466783514", + "id": "0eed074d-faa8-43f7-b1a8-5a8715f924af", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135187,7 +135187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39964fb6-0373-447c-9bf6-43001172e8ff", + "id": "3a37b127-66df-4ad3-85c6-4c45fd2ec78a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135245,7 +135245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9be1586a-d904-473d-9e55-bbd5e56836b5", + "id": "2b7fd061-cd24-4e98-b29a-69ad1b975f5f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135303,7 +135303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db73dab3-847b-4004-bc4b-ac18a27118c9", + "id": "0bac1e57-d77a-4ccc-ae45-557eb1fef0b5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -135361,7 +135361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68350c14-4495-4e8d-86a4-b8a8e1c8de2b", + "id": "05b015e3-f7d3-4b2d-b8ae-06a4c62b6737", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135425,7 +135425,7 @@ } }, { - "id": "98f28fc8-15c7-4ab7-bd36-16955d7f1244", + "id": "7624cbc4-b51e-4786-a7b0-321df902d536", "name": "List Workflow Executions", "request": { "name": "List Workflow Executions", @@ -135504,7 +135504,7 @@ }, "response": [ { - "id": "9d00850d-77f9-4e9b-8386-b445389ee80b", + "id": "71f19637-80d0-4420-9e51-aaf0a52955a6", "name": "List of workflow executions for the given workflow", "originalRequest": { "url": { @@ -135586,7 +135586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f857a78-9605-420e-9c44-955cee957114", + "id": "d4e251b1-d33b-41d9-944c-b3c05be07ba3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135668,7 +135668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3f89f1d-310b-4b3a-be38-cc04cf04945b", + "id": "b398d9d0-529d-4b79-8717-8eadab12f660", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135750,7 +135750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a3bcbc1-4149-496d-b59b-f2c288f66cf5", + "id": "de7b3051-c811-4471-9ea6-e7b59887f247", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135832,7 +135832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27f58c2c-a4c8-4a89-b3a7-1aa6a460c9b1", + "id": "6c590cab-87ea-4dbb-9ff8-ac6fd02091be", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -135914,7 +135914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd70f077-3c81-49db-ac9f-ccaa380e36db", + "id": "089e53be-9af4-4881-8795-85470cfb0dd8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -135996,7 +135996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c5ec905-b0cd-4d26-8cbf-839878e6aae6", + "id": "db10ef3f-31ea-4580-9975-aa694fe35756", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136084,7 +136084,7 @@ } }, { - "id": "dec8e7f8-ebc5-4d79-9aa1-8e84b6f87d53", + "id": "5693a074-c23f-44e8-a6f1-84d30363c17c", "name": "Get a Workflow Execution", "request": { "name": "Get a Workflow Execution", @@ -136125,7 +136125,7 @@ }, "response": [ { - "id": "85180c0e-12a2-463e-89d6-02dd411c857a", + "id": "dcd5c34b-9ba8-41a0-bfdf-c4250c5787a1", "name": "The workflow execution", "originalRequest": { "url": { @@ -136169,7 +136169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02bdbe79-1b44-4760-8eb8-62f668f19fe1", + "id": "e2f4a092-ab26-4b87-8fce-83e69ec05a52", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136213,7 +136213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "523b2dba-e102-4376-84d1-2b7faf58661e", + "id": "35dc632f-7e69-4b27-b12d-b71032e6e7b2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136257,7 +136257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efdc5898-5dd4-4d93-a758-4dcae91aaf20", + "id": "8a86653b-4f05-4268-bcd4-a16c2a4a9df1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136301,7 +136301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7aa8371c-944e-466e-b737-501f05dc0dc6", + "id": "af20ff09-3f73-488b-97b2-8e01d4bb6b68", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -136345,7 +136345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f1d6d51-fe07-41eb-ba29-01507d6e9b54", + "id": "f6b5c42c-32db-4010-8fc5-753370b9dc59", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136389,7 +136389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c9c8e88-d476-4a8e-96cb-6101b8daa642", + "id": "c5164c91-378a-4e39-986b-65da7b37febe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136439,7 +136439,7 @@ } }, { - "id": "85da1dae-a5d2-4bfd-9710-8ba4376d92f4", + "id": "2838c0f8-7065-48e1-b493-7ec434d2a770", "name": "Get Workflow Execution History", "request": { "name": "Get Workflow Execution History", @@ -136481,7 +136481,7 @@ }, "response": [ { - "id": "87c3cbff-b752-4c57-aef5-a363837844a2", + "id": "6b523e03-84da-43f7-85f4-0dedac610911", "name": "List of workflow execution events for the given workflow execution", "originalRequest": { "url": { @@ -136526,7 +136526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d10c559c-5ee7-49a8-94f3-38d950f60f8d", + "id": "587608b1-8b94-4186-815e-4dc2933ef57a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136571,7 +136571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f03b88ae-b78c-45e2-8824-494242ba772e", + "id": "0b889cd0-b1b9-4c0d-a91d-3709683dfdf9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136616,7 +136616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7ee68f6-093c-47cb-b0a8-20450bd56333", + "id": "982e1bc4-8eff-480e-aef3-8bc5f4ca2c27", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136661,7 +136661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26eef683-f23f-4b60-8f0a-4fda610cadce", + "id": "9b2d1ab5-9654-4bba-8e0a-70164944635f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -136706,7 +136706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d90000a-0110-4716-becf-663ae1ad900a", + "id": "311bacc8-0aca-4ac5-ba1d-4084bbc23a53", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136751,7 +136751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba5b3bb1-b338-4478-88fa-65e458fa1f70", + "id": "78ff50ac-116d-4f90-b83c-e35f93793a3d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136802,7 +136802,7 @@ } }, { - "id": "1cc44dc5-235f-4a9f-86f3-02889ed57f5b", + "id": "f21714af-b31e-413a-8c46-bebb0bc63e27", "name": "Cancel Workflow Execution by ID", "request": { "name": "Cancel Workflow Execution by ID", @@ -136844,7 +136844,7 @@ }, "response": [ { - "id": "bd03c5d9-3faf-4759-b214-b0034dd12aa6", + "id": "7c06e074-3b9e-45d5-96bf-4c4e8a60c6dd", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -136879,7 +136879,7 @@ "_postman_previewlanguage": "text" }, { - "id": "29266107-90f3-4b78-94f5-c8c64516120e", + "id": "87d594dc-48a6-4690-902c-5d997f5ebd72", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136924,7 +136924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b3bd7fd-8e51-42ba-9533-80cee9f8d9ac", + "id": "862aa5e1-0848-414b-b1bd-31fba3be28dd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136969,7 +136969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ba35716-e302-4319-b9a3-0b7a17977158", + "id": "529fe01b-d978-47f4-8249-edf135b23031", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137014,7 +137014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fbca6b8-2d17-4fc6-9b87-4c26325cad2e", + "id": "b118a86f-a773-4984-8a2e-c087cb087191", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -137059,7 +137059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51c17a02-a1f6-4abe-aa78-5fb5691985ab", + "id": "5b2c42ca-0fd8-4d21-bc19-2fb87de195e4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137104,7 +137104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e61d3934-924b-4146-b448-abafc4af7cee", + "id": "f4c310d4-ffb6-4491-9317-9d71652820d5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137155,7 +137155,7 @@ } }, { - "id": "f3e8240a-26ac-4a8f-b938-2ddba8595ae2", + "id": "f996180c-08f0-4141-b3d3-6fe29914d972", "name": "List Complete Workflow Library", "request": { "name": "List Complete Workflow Library", @@ -137203,7 +137203,7 @@ }, "response": [ { - "id": "83c05592-b4aa-408d-8cd2-bbd636637966", + "id": "507f7871-f416-476d-8eb6-57e94e9b0423", "name": "List of workflow steps", "originalRequest": { "url": { @@ -137265,7 +137265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4de2a1b8-fd11-4916-8b57-afa9b8f8d99f", + "id": "5bcee121-21b0-4fb4-9e7b-c0acf3881b02", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137327,7 +137327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9871e94b-5709-4aeb-8563-80c43bbf2a36", + "id": "00bd9574-2546-4c4a-b2db-744686cd6f91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137389,7 +137389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f085b373-6aca-4a8c-8316-162bede4eb49", + "id": "7f8ddf15-3ee3-442c-a3c2-32b16ac98b12", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137451,7 +137451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3b143b9-9e1e-4edb-b4aa-dba118900cf5", + "id": "6644f4ca-f2a2-4264-a27e-414f85490351", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137513,7 +137513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "090f2e16-cde0-4207-94a1-c0f44e7bbe82", + "id": "d5e458ed-43e9-4678-afcb-0f1db50374cf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137581,7 +137581,7 @@ } }, { - "id": "3a9f6f56-52d2-4c2b-9772-529e0d5f3aa5", + "id": "606bd270-8235-4906-8bec-a2db7d2ce40f", "name": "List Workflow Library Actions", "request": { "name": "List Workflow Library Actions", @@ -137639,7 +137639,7 @@ }, "response": [ { - "id": "21ad01ac-b2ed-499d-b421-c7f3e603ed40", + "id": "9aee418e-d424-4eb5-920e-b7e3c949c74a", "name": "List of workflow actions", "originalRequest": { "url": { @@ -137711,7 +137711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "716e4221-134d-4013-bac2-9c28a11ac164", + "id": "ce85cf23-82ed-4659-853e-dd55986ee1d3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137783,7 +137783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "303ab6ca-1441-4e37-af4d-d76bb2f19063", + "id": "f65a85eb-4b6d-4399-ad9b-8d83bc246d1a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137855,7 +137855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ddb69f9-7c47-402a-b372-692220e1fdff", + "id": "b024841a-a5ac-45f7-8ee5-5e9d0e00b286", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137927,7 +137927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0543b1b5-dce2-4d54-82e0-335647689c37", + "id": "3fa6491f-01e3-40a4-a9b0-4efc099a8d7b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137999,7 +137999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28544270-3b37-4c11-a68e-f37babd1fd87", + "id": "46cdfbc2-37d6-4c3b-948d-101daa8c8427", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138077,7 +138077,7 @@ } }, { - "id": "5f4d9a78-0c06-493e-831e-14b2f5dc56e3", + "id": "51950f5c-0730-45ad-935b-f15c307ee120", "name": "List Workflow Library Triggers", "request": { "name": "List Workflow Library Triggers", @@ -138135,7 +138135,7 @@ }, "response": [ { - "id": "9627e091-9db0-42ce-979a-e727740ec3da", + "id": "469d4965-83a4-4f3d-9854-349e1627bf4a", "name": "List of workflow triggers", "originalRequest": { "url": { @@ -138207,7 +138207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60e69b48-4771-4606-9058-50fb55675d4a", + "id": "94abf3a1-45b3-4d54-bf0d-b6124e43b0bb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138279,7 +138279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bda2f9fa-c952-4918-a204-8bf12c6ad081", + "id": "70550e97-1d93-46b0-b00a-91d831cd3f5c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138351,7 +138351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb105d85-7db8-4b82-9072-34a94cfb0be1", + "id": "68e56682-f41a-4db0-926c-08a959bb8119", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138423,7 +138423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7a6b8ec-7f6d-4de9-8abe-739ff5a5b864", + "id": "c9e270cd-3a78-4ef3-9702-74f83be8f8a2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138495,7 +138495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "452bc4f3-4c65-426c-9e86-b5203bd00710", + "id": "ceda0619-0aa6-4381-8f66-5b500fa5c087", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138573,7 +138573,7 @@ } }, { - "id": "4190e9c9-40cc-4b37-b8e7-c8786a274576", + "id": "0467d16f-99d0-4aec-ac6e-957f0fc34a66", "name": "List Workflow Library Operators", "request": { "name": "List Workflow Library Operators", @@ -138603,7 +138603,7 @@ }, "response": [ { - "id": "93ae2d3a-dd91-4328-84a7-313721cd3bf8", + "id": "a5798cb4-9154-4148-90dd-bca9cde48f43", "name": "List of workflow operators", "originalRequest": { "url": { @@ -138647,7 +138647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5d76ce9-f737-4326-ba38-4c63393ea9b8", + "id": "8e06d2ae-4085-4ec8-a17b-7fa72835d13e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138691,7 +138691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05718788-494d-4ce4-aac8-66f23b26ff6d", + "id": "39ba8528-8b53-4cbf-9d50-d38233393047", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138735,7 +138735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a1bc61a-7464-4ace-879c-37022c06a204", + "id": "62dfae71-edee-4a83-a734-b0393971bd09", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138779,7 +138779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "754738ac-0110-40ce-80ff-7ed2fcad9ea3", + "id": "4375493c-2ac6-4866-85f4-fa14958b6468", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138823,7 +138823,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2e15f8e-989b-4a7b-9c6d-d32517f93f37", + "id": "57ff90a9-2e3c-457a-8477-2748fd42006b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138873,7 +138873,7 @@ } }, { - "id": "e31fed2a-cbba-4b20-927c-b1987f20b4a1", + "id": "d28da50a-44e0-4e5a-a6fb-5dd13acc13f7", "name": "Generate External Trigger OAuth Client", "request": { "name": "Generate External Trigger OAuth Client", @@ -138916,7 +138916,7 @@ }, "response": [ { - "id": "d9b30fd1-2f83-44c5-8e92-0088b3915a26", + "id": "10689623-e76f-449c-baed-f7cfabd08866", "name": "The OAuth Client object", "originalRequest": { "url": { @@ -138962,7 +138962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f57246cb-a37e-4ea9-8dbe-42b50379adb7", + "id": "87ed27ab-132c-46e2-b6fa-f95e035f02e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139008,7 +139008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2297bc9-77d3-43c5-97d1-1604b93b9ad5", + "id": "7311d19a-51b5-4933-bb0f-5307c278e04e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139054,7 +139054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6afd09a1-f1f3-4c5c-82fc-1613e0d910fd", + "id": "0d84f4ae-3cfc-40a3-b5d7-c3882c027621", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139100,7 +139100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "559c1765-ee6d-40eb-92f4-7ec8162cbb55", + "id": "6356751f-25eb-4ba7-935e-bff3de32d387", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139146,7 +139146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee932536-eadf-4268-8a35-963ff5fec79a", + "id": "080b5459-0d9a-440f-8966-ddf54678f95b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139198,7 +139198,7 @@ } }, { - "id": "becf2315-d307-437c-aa54-c8825cc68ef4", + "id": "bf82bb67-f9fc-424d-bffe-81de1eea938a", "name": "Execute Workflow via External Trigger", "request": { "name": "Execute Workflow via External Trigger", @@ -139254,7 +139254,7 @@ }, "response": [ { - "id": "3b8d2330-2e5e-4f4d-bfd3-5f9a8167d5c0", + "id": "c2b0b1d1-f624-4719-b2d8-225eaa0ca7b1", "name": "The Workflow object", "originalRequest": { "url": { @@ -139313,7 +139313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5495e6c2-195b-4b42-b203-0f783fe9dff1", + "id": "4ca77183-4d24-40d5-9081-d96747bcf6ff", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139372,7 +139372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01ca774f-63fa-43f8-921e-e003b8b80d05", + "id": "a551e4dc-c5b9-4030-ba22-92f2fb0ffab4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139431,7 +139431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c495ab01-0e5a-4cba-9be3-d3d906c79f00", + "id": "1f029841-45e5-4b2d-b786-f01746198e29", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139490,7 +139490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3191291d-6a8f-4fd5-a535-2126c843fe98", + "id": "30a700d8-a1a9-405d-ab0e-bcadb01fbecb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139549,7 +139549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4e3ebe8-a3dc-4bc1-8906-8a17651332aa", + "id": "588a5cbc-d3f8-44ab-ab21-f96b4ac1403a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139614,7 +139614,7 @@ } }, { - "id": "9478159d-3039-4361-9a4b-f38e4ced1833", + "id": "93033f5c-9df4-4a03-bbf1-71d9f688baf1", "name": "Test Workflow via External Trigger", "request": { "name": "Test Workflow via External Trigger", @@ -139671,7 +139671,7 @@ }, "response": [ { - "id": "b412fc19-6179-4358-a1d3-1b71057c09f8", + "id": "862dec1e-6e9f-46a5-9ab3-e84ce96c7d39", "name": "Responds with the test input", "originalRequest": { "url": { @@ -139731,7 +139731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c12cda83-def1-4efe-bd83-a083c430d45a", + "id": "21f15054-36d3-4377-b22b-4a6b94cae78f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139791,7 +139791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4df5f4d0-5b79-4ba0-8fca-4b71a9926999", + "id": "f00cc4a8-5414-4e9e-8134-bc4e90eb8453", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139851,7 +139851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46a29794-b2ed-44b2-93be-73cbe2edbbd6", + "id": "7e02dccf-1cc2-42df-a849-851d2266cd06", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139911,7 +139911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "001de9f5-7c96-4ec6-ac5d-b7c7fb0990cc", + "id": "1c0a6a37-63ca-4268-98a8-0ac7fa8cd440", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139971,7 +139971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94bafe65-cffc-4287-aa1e-51a8bb114161", + "id": "75d461b1-eb8c-4868-8a78-2ea29b7abc2c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140117,7 +140117,7 @@ } ], "info": { - "_postman_id": "f7cde596-2f73-4d08-be7c-b1eb7233e2e2", + "_postman_id": "a64e08c6-0cb5-408d-96da-5b6940de71d3", "name": "IdentityNow V3 API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": {