diff --git a/dereferenced/deref-sailpoint-api.v3.json b/dereferenced/deref-sailpoint-api.v3.json index 8e6759a..7700e19 100644 --- a/dereferenced/deref-sailpoint-api.v3.json +++ b/dereferenced/deref-sailpoint-api.v3.json @@ -56577,563 +56577,6 @@ } } }, - "/connectors": { - "post": { - "tags": [ - "Connectors" - ], - "operationId": "createCustomConnector", - "summary": "Create custom connector", - "description": "Create custom connector.\nA token with ORG_ADMIN authority is required to call this API.", - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "title": "custom connector create request", - "type": "object", - "required": [ - "name", - "className" - ], - "properties": { - "name": { - "type": "string", - "description": "The connector name. Need to be unique per tenant. The name will able be used to derive a url friendly unique scriptname that will be in response. Script name can then be used for all update endpoints", - "example": "custom connector" - }, - "type": { - "type": "string", - "description": "The connector type. If not specified will be defaulted to 'custom '+name", - "example": "custom connector type" - }, - "className": { - "type": "string", - "description": "The connector class name. If you are implementing openconnector standard (what is recommended), then this need to be set to sailpoint.connector.OpenConnectorAdapter", - "example": "sailpoint.connector.OpenConnectorAdapter" - }, - "directConnect": { - "type": "boolean", - "description": "true if the source is a direct connect source", - "default": true, - "example": true - }, - "status": { - "type": "string", - "enum": [ - "DEVELOPMENT", - "DEMO", - "RELEASED" - ], - "description": "The connector status", - "example": "RELEASED" - } - } - } - } - } - }, - "responses": { - "200": { - "description": "A Connector Dto object", - "content": { - "application/json": { - "schema": { - "title": "custom connector response object", - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "The connector name", - "example": "name" - }, - "type": { - "type": "string", - "description": "The connector type", - "example": "ServiceNow" - }, - "scriptName": { - "type": "string", - "description": "The connector script name", - "example": "servicenow" - }, - "className": { - "type": "string", - "description": "The connector class name.", - "example": "sailpoint.connector.OpenConnectorAdapter" - }, - "features": { - "type": "array", - "description": "The list of features supported by the connector", - "nullable": true, - "items": { - "type": "string" - }, - "example": [ - "PROVISIONING", - "SYNC_PROVISIONING", - "SEARCH", - "UNSTRUCTURED_TARGETS" - ] - }, - "directConnect": { - "type": "boolean", - "description": "true if the source is a direct connect source", - "example": true, - "default": false - }, - "connectorMetadata": { - "type": "object", - "additionalProperties": true, - "description": "A map containing metadata pertinent to the connector", - "example": { - "supportedUI": "ANGULAR", - "platform": "ccg", - "shortDesc": "connector description" - } - }, - "status": { - "type": "string", - "enum": [ - "DEPRECATED", - "DEVELOPMENT", - "DEMO", - "RELEASED" - ], - "description": "The connector status", - "example": "RELEASED" - } - } - } - } - } - }, - "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." - } - ] - } - } - } - } - } - } - }, - "security": [ - { - "UserContextAuth": [ - "idn:connector-config:create" - ] - } - ] - } - }, "/connectors/{scriptName}": { "get": { "tags": [ @@ -62745,6 +62188,563 @@ ] } }, + "/connectors": { + "post": { + "tags": [ + "Connectors" + ], + "operationId": "createCustomConnector", + "summary": "Create custom connector", + "description": "Create custom connector.\nA token with ORG_ADMIN authority is required to call this API.", + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "title": "custom connector create request", + "type": "object", + "required": [ + "name", + "className" + ], + "properties": { + "name": { + "type": "string", + "description": "The connector name. Need to be unique per tenant. The name will able be used to derive a url friendly unique scriptname that will be in response. Script name can then be used for all update endpoints", + "example": "custom connector" + }, + "type": { + "type": "string", + "description": "The connector type. If not specified will be defaulted to 'custom '+name", + "example": "custom connector type" + }, + "className": { + "type": "string", + "description": "The connector class name. If you are implementing openconnector standard (what is recommended), then this need to be set to sailpoint.connector.OpenConnectorAdapter", + "example": "sailpoint.connector.OpenConnectorAdapter" + }, + "directConnect": { + "type": "boolean", + "description": "true if the source is a direct connect source", + "default": true, + "example": true + }, + "status": { + "type": "string", + "enum": [ + "DEVELOPMENT", + "DEMO", + "RELEASED" + ], + "description": "The connector status", + "example": "RELEASED" + } + } + } + } + } + }, + "responses": { + "200": { + "description": "A Connector Dto object", + "content": { + "application/json": { + "schema": { + "title": "custom connector response object", + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The connector name", + "example": "name" + }, + "type": { + "type": "string", + "description": "The connector type", + "example": "ServiceNow" + }, + "scriptName": { + "type": "string", + "description": "The connector script name", + "example": "servicenow" + }, + "className": { + "type": "string", + "description": "The connector class name.", + "example": "sailpoint.connector.OpenConnectorAdapter" + }, + "features": { + "type": "array", + "description": "The list of features supported by the connector", + "nullable": true, + "items": { + "type": "string" + }, + "example": [ + "PROVISIONING", + "SYNC_PROVISIONING", + "SEARCH", + "UNSTRUCTURED_TARGETS" + ] + }, + "directConnect": { + "type": "boolean", + "description": "true if the source is a direct connect source", + "example": true, + "default": false + }, + "connectorMetadata": { + "type": "object", + "additionalProperties": true, + "description": "A map containing metadata pertinent to the connector", + "example": { + "supportedUI": "ANGULAR", + "platform": "ccg", + "shortDesc": "connector description" + } + }, + "status": { + "type": "string", + "enum": [ + "DEPRECATED", + "DEVELOPMENT", + "DEMO", + "RELEASED" + ], + "description": "The connector status", + "example": "RELEASED" + } + } + } + } + } + }, + "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." + } + ] + } + } + } + } + } + } + }, + "security": [ + { + "UserContextAuth": [ + "idn:connector-config:create" + ] + } + ] + } + }, "/identities/{identity-id}/set-lifecycle-state": { "post": { "operationId": "setLifecycleState", diff --git a/dereferenced/deref-sailpoint-api.v3.yaml b/dereferenced/deref-sailpoint-api.v3.yaml index cd33b4b..c3529a9 100644 --- a/dereferenced/deref-sailpoint-api.v3.yaml +++ b/dereferenced/deref-sailpoint-api.v3.yaml @@ -43493,414 +43493,6 @@ paths: - locale: en-US localeOrigin: DEFAULT text: An internal fault occurred. - /connectors: - post: - tags: - - Connectors - operationId: createCustomConnector - summary: Create custom connector - description: |- - Create custom connector. - A token with ORG_ADMIN authority is required to call this API. - requestBody: - required: true - content: - application/json: - schema: - title: custom connector create request - type: object - required: - - name - - className - properties: - name: - type: string - description: The connector name. Need to be unique per tenant. The name will able be used to derive a url friendly unique scriptname that will be in response. Script name can then be used for all update endpoints - example: custom connector - type: - type: string - description: The connector type. If not specified will be defaulted to 'custom '+name - example: custom connector type - className: - type: string - description: 'The connector class name. If you are implementing openconnector standard (what is recommended), then this need to be set to sailpoint.connector.OpenConnectorAdapter' - example: sailpoint.connector.OpenConnectorAdapter - directConnect: - type: boolean - description: true if the source is a direct connect source - default: true - example: true - status: - type: string - enum: - - DEVELOPMENT - - DEMO - - RELEASED - description: The connector status - example: RELEASED - responses: - '200': - description: A Connector Dto object - content: - application/json: - schema: - title: custom connector response object - type: object - properties: - name: - type: string - description: The connector name - example: name - type: - type: string - description: The connector type - example: ServiceNow - scriptName: - type: string - description: The connector script name - example: servicenow - className: - type: string - description: The connector class name. - example: sailpoint.connector.OpenConnectorAdapter - features: - type: array - description: The list of features supported by the connector - nullable: true - items: - type: string - example: - - PROVISIONING - - SYNC_PROVISIONING - - SEARCH - - UNSTRUCTURED_TARGETS - directConnect: - type: boolean - description: true if the source is a direct connect source - example: true - default: false - connectorMetadata: - type: object - additionalProperties: true - description: A map containing metadata pertinent to the connector - example: - supportedUI: ANGULAR - platform: ccg - shortDesc: connector description - status: - type: string - enum: - - DEPRECATED - - DEVELOPMENT - - DEMO - - RELEASED - description: The connector status - example: RELEASED - '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. - security: - - UserContextAuth: - - 'idn:connector-config:create' '/connectors/{scriptName}': get: tags: @@ -48053,6 +47645,414 @@ paths: security: - UserContextAuth: - 'idn:connector-config:update' + /connectors: + post: + tags: + - Connectors + operationId: createCustomConnector + summary: Create custom connector + description: |- + Create custom connector. + A token with ORG_ADMIN authority is required to call this API. + requestBody: + required: true + content: + application/json: + schema: + title: custom connector create request + type: object + required: + - name + - className + properties: + name: + type: string + description: The connector name. Need to be unique per tenant. The name will able be used to derive a url friendly unique scriptname that will be in response. Script name can then be used for all update endpoints + example: custom connector + type: + type: string + description: The connector type. If not specified will be defaulted to 'custom '+name + example: custom connector type + className: + type: string + description: 'The connector class name. If you are implementing openconnector standard (what is recommended), then this need to be set to sailpoint.connector.OpenConnectorAdapter' + example: sailpoint.connector.OpenConnectorAdapter + directConnect: + type: boolean + description: true if the source is a direct connect source + default: true + example: true + status: + type: string + enum: + - DEVELOPMENT + - DEMO + - RELEASED + description: The connector status + example: RELEASED + responses: + '200': + description: A Connector Dto object + content: + application/json: + schema: + title: custom connector response object + type: object + properties: + name: + type: string + description: The connector name + example: name + type: + type: string + description: The connector type + example: ServiceNow + scriptName: + type: string + description: The connector script name + example: servicenow + className: + type: string + description: The connector class name. + example: sailpoint.connector.OpenConnectorAdapter + features: + type: array + description: The list of features supported by the connector + nullable: true + items: + type: string + example: + - PROVISIONING + - SYNC_PROVISIONING + - SEARCH + - UNSTRUCTURED_TARGETS + directConnect: + type: boolean + description: true if the source is a direct connect source + example: true + default: false + connectorMetadata: + type: object + additionalProperties: true + description: A map containing metadata pertinent to the connector + example: + supportedUI: ANGULAR + platform: ccg + shortDesc: connector description + status: + type: string + enum: + - DEPRECATED + - DEVELOPMENT + - DEMO + - RELEASED + description: The connector status + example: RELEASED + '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. + security: + - UserContextAuth: + - 'idn:connector-config:create' '/identities/{identity-id}/set-lifecycle-state': post: operationId: setLifecycleState diff --git a/postman/collections/sailpoint-api-beta.json b/postman/collections/sailpoint-api-beta.json index 7ababea..dbc4002 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": "c4ac8ef4-377c-4557-bca6-9be29148a958", + "id": "f761c299-14a7-48c3-8db5-71ad0a353acc", "name": "List Access Profiles", "request": { "name": "List Access Profiles", @@ -107,7 +107,7 @@ }, "response": [ { - "id": "1c0f2d6f-86f2-4b0a-914d-dc42307d803a", + "id": "7384a8d1-0056-4be6-8410-094d7cd6fb4a", "name": "List of Access Profiles", "originalRequest": { "url": { @@ -223,7 +223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d8d8f52-3a4c-4540-91ab-2c64e0f38b7b", + "id": "2d464aa5-75a3-4d5a-a61b-19a675ddb272", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -339,7 +339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09706364-a994-4b4e-9f57-eed497d2a082", + "id": "e04aff1d-d94b-4855-b3cc-40aac8106f1d", "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": "1631a499-f82b-4f25-a67d-774aeeb3a24f", + "id": "4d926358-fa8a-4324-a9c0-0203b74ed239", "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": "0e8d810b-012e-4905-a41f-29477c463321", + "id": "9ebe9711-e8b5-4881-b2e8-7ec95b670a54", "name": "Too Many Requests - Returned in response to too many requests in 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": "39dc73b4-71d3-49d9-84c2-07da3d6e69c7", + "id": "4707f7af-5ffd-442a-9ca8-123e0e6b4f69", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -809,7 +809,7 @@ } }, { - "id": "99a71d4c-4845-4e7e-8e87-459b9e511fa4", + "id": "225042a3-33b6-4030-bd7c-bf45e6e69100", "name": "Create an Access Profile", "request": { "name": "Create an Access Profile", @@ -851,7 +851,7 @@ }, "response": [ { - "id": "2b603483-ac5f-4382-af40-ed996a913774", + "id": "684c926d-3fe4-4d95-ac9e-8be7a7e3aab1", "name": "Access Profile created", "originalRequest": { "url": { @@ -907,7 +907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c25aa32f-ce3d-4c21-ad91-83355ab23c9e", + "id": "040716ce-84ae-4551-993e-5c311e7e85e7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -963,7 +963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86121a49-63aa-44a4-b4f7-2d7e6b51f200", + "id": "27cead2e-182e-4a28-9edc-aacdcbda21d6", "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": "f0310455-610a-461f-8bf9-3fb71fe5c51e", + "id": "3b7638b3-3b92-4a0c-ac20-c442e2069433", "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": "df59d0fd-ffc2-4546-bd75-84dfdd39d78c", + "id": "aeeaff5a-ea98-44ab-acd7-d5044cc91967", "name": "Too Many Requests - Returned in response to too many requests in 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": "c6b52da0-a56a-49b4-a31a-a6d9154e9149", + "id": "40a8ee34-3a2a-46b8-a1df-8de0d76e1188", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1193,7 +1193,7 @@ } }, { - "id": "25c73ce3-7571-4988-9c3f-b21e757129ba", + "id": "5081253f-00ec-4156-8560-20614dc45ee1", "name": "Get an Access Profile", "request": { "name": "Get an Access Profile", @@ -1234,7 +1234,7 @@ }, "response": [ { - "id": "03eec1b7-c9c0-4b20-9ef9-8dce167fbe5e", + "id": "00da9920-68fd-4411-9a67-b3f68bbe846b", "name": "An AccessProfile", "originalRequest": { "url": { @@ -1278,7 +1278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac302d0a-1135-4ae3-84c1-e208f6f6dd83", + "id": "4e21bf24-dae4-4817-b02c-ed4040915d65", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1322,7 +1322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2345ed96-d3d7-4a31-af83-a195c81765d0", + "id": "e7278298-aa66-4db6-bcf5-1505da2adf07", "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": "69341c52-6b8a-45fb-9d91-f45dd72bfbad", + "id": "349b2924-6513-4449-9c87-f7d7bab1bc32", "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": "8797fac2-3b56-4252-871b-49d0e3f0e4ec", + "id": "41c693b6-20c3-4995-84b1-751e2d23c2a3", "name": "Too Many Requests - Returned in response to too many requests in 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": "3fff1a6e-bc7a-4a74-a562-8225144f72e4", + "id": "031e23be-cab1-45bc-8cfa-639307861e73", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1504,7 +1504,7 @@ } }, { - "id": "b4ed09fa-8f64-4f20-bce9-d2e2c2f2be5a", + "id": "bd9b28e8-1cac-40b8-9a93-2fd103bf47b7", "name": "Patch a specified Access Profile", "request": { "name": "Patch a specified Access Profile", @@ -1558,7 +1558,7 @@ }, "response": [ { - "id": "43e85a5a-7251-4184-aa3c-c747f1bbaf12", + "id": "658b953b-702b-4470-a8a7-14877de90e5d", "name": "Add Entitlements", "originalRequest": { "url": { @@ -1615,7 +1615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d507b3a3-380b-45d5-9888-c9a6fd12dd36", + "id": "985bddc3-2899-4265-88d1-6fbb61dc9b70", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -1672,7 +1672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92714475-cd3c-498d-87c7-fb1a66300ac0", + "id": "1a91d781-55f9-43e1-a048-57cb32670823", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -1729,7 +1729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3d61f96-0bb2-4356-9748-8b5fcdda07ca", + "id": "b6797d6e-e41a-4230-9723-db0543d158fc", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -1786,7 +1786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca7fecc1-28d3-4579-ae59-b4bfd41d8153", + "id": "488ced44-a229-4020-914f-0d1bea87c76c", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -1843,7 +1843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29dca232-a07f-4d70-98db-401f11ea83d2", + "id": "9848ae06-9763-4af6-a0aa-c8976899935a", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -1900,7 +1900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91d1d553-c6d7-42fe-80a2-ddd0fe2474db", + "id": "12641129-e3e1-409c-af04-22309c732d5d", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -1957,7 +1957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09d1b4a4-a401-44af-b957-087b7ced8552", + "id": "177a7a62-f285-466a-94ff-2436346fd5d0", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -2014,7 +2014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6aa455ac-3f0f-4981-8e0d-a5362c677c62", + "id": "4259dbe5-d045-4800-9823-fbfa964b1fb9", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2071,7 +2071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "166bc59b-3b37-4389-8b3d-5407ce2ae891", + "id": "98667ae4-d6e3-4fcb-ab42-8154e96e61e2", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -2128,7 +2128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c12d6625-26d9-4a1b-af7c-aa5ce11cbb64", + "id": "c70a838a-0d8c-420b-b3f5-88a55ae7f592", "name": "Add Entitlements", "originalRequest": { "url": { @@ -2185,7 +2185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca33ff13-e0b3-4576-aba2-31829f931de7", + "id": "2a0c49f5-fe06-4fd1-a233-dd4eb38cb7f7", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -2248,7 +2248,7 @@ } }, { - "id": "84069e83-9639-418b-88ee-56edba4cb24e", + "id": "0e42c5da-0931-416e-984a-74c2e1694f87", "name": "Delete the specified Access Profile", "request": { "name": "Delete the specified Access Profile", @@ -2289,7 +2289,7 @@ }, "response": [ { - "id": "96f96c42-d955-451c-ac2b-b2655aa0af0c", + "id": "06077f4f-9f64-42d1-af85-49c8bd5ce335", "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": "5aaff68c-f36c-4380-a9e6-43f203aa40cf", + "id": "152af40c-5d64-4123-a9b3-1a36d32f32e5", "name": "Returned when an access profile cannot be deleted as it's being used.", "originalRequest": { "url": { @@ -2367,7 +2367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9499b47-2217-43f4-a817-3bc064bc8c0b", + "id": "c2599545-bed7-48f4-b237-819dccfdad64", "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": "195edc78-da7d-4c9c-83e0-e33dea1b1fce", + "id": "8fbec09c-015b-405f-a788-2906da665b48", "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": "b5a426d7-ad72-4e75-8c24-5770f2c8eedb", + "id": "bc4c27dc-0d87-4aac-bcb1-b28231644beb", "name": "Too Many Requests - Returned in response to too many requests in 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": "5aa29f5e-bcf4-4360-9377-506250d61263", + "id": "2f73c051-68df-4209-bf52-b635a6d6499a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2549,7 +2549,7 @@ } }, { - "id": "90462fd5-5a44-40c7-af20-fc59e593fd16", + "id": "b1771e30-6417-4b3a-a474-712c7a96ee06", "name": "Delete Access Profile(s)", "request": { "name": "Delete Access Profile(s)", @@ -2592,7 +2592,7 @@ }, "response": [ { - "id": "3ba02080-8cdc-485f-9054-6983ef1c24bb", + "id": "3c04599c-c862-4490-9146-7e90e005323e", "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": "7d0179f9-a4c7-4fe5-b36b-64460f5f360b", + "id": "23d6262e-6983-4845-a548-63be9921e33f", "name": "Returned if at least one deletion will be performed.", "originalRequest": { "url": { @@ -2706,7 +2706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af9af01a-bd5b-4624-9214-f8f1772b1518", + "id": "a89a4cf5-cb67-4edd-9b7a-cbbe0dc39824", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2763,7 +2763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15e5848e-d855-4028-a944-bd69d9475c56", + "id": "fd1f0e5a-8c72-4d85-b053-471c03c62e19", "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": "dc6060e2-1dd3-4693-926b-a5f23c49fb28", + "id": "56c2eb19-fd97-420d-ad74-48104db109a5", "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": "9e464d30-c258-4bb9-a714-2d286ef9c193", + "id": "cb2e9990-aa20-4574-85c5-32a2cc851ff0", "name": "Too Many Requests - Returned in response to too many requests in 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": "ecd58158-4cc8-4641-9b45-fd52947108bf", + "id": "e61d1a2c-02e2-4444-9c12-a338deb92147", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2997,7 +2997,7 @@ } }, { - "id": "b36ed8c4-31de-4390-a53a-2c20ecc40d05", + "id": "afd216dc-c316-4634-a374-aff51b9a94da", "name": "Update Access Profile(s) requestable field.", "request": { "name": "Update Access Profile(s) requestable field.", @@ -3040,7 +3040,7 @@ }, "response": [ { - "id": "ec69c86f-55bc-4bc9-85e1-16f78dabe467", + "id": "5dedf5a3-edec-4f68-86a6-a7e077e84120", "name": "List of updated and not updated Access Profiles.", "originalRequest": { "url": { @@ -3097,7 +3097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b379576-6753-43c6-bde5-b3486eb4a58a", + "id": "8f9f7938-0428-4492-8384-e5de8fad3816", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -3154,7 +3154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ee7f561-21c0-463c-ba58-b7136fb296f3", + "id": "96de54fa-465b-4702-b103-c547d65dc34b", "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": "5b753735-7487-4330-bd3a-cc0e8a1e9db3", + "id": "a08ad7ee-055f-44ae-8abb-b1a646d3a93b", "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": "71e4d765-b5f4-454f-b6ba-d96dd7ac7fb4", + "id": "259d087e-ec03-4e10-a405-526194222351", "name": "Precondition Failed - Returned in response if API/Feature not enabled for an organization.", "originalRequest": { "url": { @@ -3325,7 +3325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8f4ba5f-9cb0-4471-aacf-1480b880af5d", + "id": "e6192134-234c-4a96-99fa-7cb5f1aab5f7", "name": "Too Many Requests - Returned in response to too many requests in 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": "fabb2933-3d3f-4aee-a64e-2f3caed61f84", + "id": "ed3961d1-3d3d-488d-88b7-24fe21817a68", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -3445,7 +3445,7 @@ } }, { - "id": "61e94d92-c259-4852-90f5-e27bdf37070a", + "id": "56ae1f79-f3db-4d10-a347-fc8aa1e2bc20", "name": "List Access Profile's Entitlements", "request": { "name": "List Access Profile's Entitlements", @@ -3533,7 +3533,7 @@ }, "response": [ { - "id": "8456d446-28ad-4825-9958-5b64d9030344", + "id": "85d45114-0cc4-4965-ade9-90f9afe316a1", "name": "List of Entitlements", "originalRequest": { "url": { @@ -3624,7 +3624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f03eee0-30da-456c-bd86-9ffded33e99f", + "id": "635bda37-a246-4d14-bf47-e45bcfd28ec2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -3715,7 +3715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f87ed505-3dce-4c3c-9eed-26419cc369a3", + "id": "641f1302-1888-427e-b845-cd8693a6ed80", "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": "52e93a9f-11ea-4a13-8267-400eaf7c03cb", + "id": "f7656bf4-66ba-47da-a19a-70c6074e5412", "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": "7cb00b80-5e3d-4f5c-b0bb-1af554106311", + "id": "f581860b-2f99-43cc-8675-4b44fc86b2a9", "name": "Too Many Requests - Returned in response to too many requests in 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": "172b7c78-b0b1-4005-9c83-66976fcf49d4", + "id": "b17929c7-f876-4e78-9170-e9dcf40616f4", "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": "2ee79e63-e563-4d65-a838-42ba3805c66f", + "id": "b64dca91-1994-4039-929f-104b8d3e6c38", "name": "Pending Access Request Approvals List", "request": { "name": "Pending Access Request Approvals List", @@ -4115,7 +4115,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -4151,7 +4151,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -4160,7 +4160,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -4176,7 +4176,7 @@ }, "response": [ { - "id": "6b7957db-caf7-4c97-bbd5-05d61dc0f959", + "id": "cc817048-59fb-45c7-b973-455942c1ae15", "name": "List of Pending Approvals.", "originalRequest": { "url": { @@ -4195,7 +4195,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -4231,7 +4231,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -4240,7 +4240,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -4275,7 +4275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f8a9a68-65c0-4f87-93a7-8413c00a5832", + "id": "05aacf4e-297a-453a-a985-3aa02c37d449", "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": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -4330,7 +4330,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -4339,7 +4339,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -4374,7 +4374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65cdf364-6c42-4cb1-ab01-37c5843ae522", + "id": "00c6d93d-e49f-44b4-b6fc-cf4246c23878", "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": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -4429,7 +4429,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -4438,7 +4438,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -4473,7 +4473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd60da3f-cec5-4eff-94a7-ef59b469a85b", + "id": "94d0a917-e4b5-4459-9f3d-a860d9228921", "name": "Too Many Requests - Returned in response to too many requests in 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": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -4528,7 +4528,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -4537,7 +4537,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -4572,7 +4572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b37206c-6e14-48e2-ae02-5b58b718c911", + "id": "215d5d22-981f-4ae9-9235-bb9cb04dad7b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4591,7 +4591,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -4627,7 +4627,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -4636,7 +4636,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -4677,7 +4677,7 @@ } }, { - "id": "f6572307-4d54-4157-9604-e198ee807add", + "id": "110b914c-2dcd-453b-a1a4-c0fe2fcad7ed", "name": "Completed Access Request Approvals List", "request": { "name": "Completed Access Request Approvals List", @@ -4701,7 +4701,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -4737,7 +4737,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -4746,7 +4746,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -4762,7 +4762,7 @@ }, "response": [ { - "id": "c07d4cc8-bede-497f-a5cc-ed4e1fdf161b", + "id": "30353bf0-4a0e-4472-a135-b6754ba8e61e", "name": "List of Completed Approvals.", "originalRequest": { "url": { @@ -4781,7 +4781,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -4817,7 +4817,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -4826,7 +4826,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "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\": \"commodo non incididunt\"\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\": \"in\"\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\": \"ipsum sint\"\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 adipisicing\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a2158dd6-ce83-4df5-bfa9-3269a7543f3a", + "id": "e0b66b02-0034-49ed-ba8e-deb9f6a3e40a", "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": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -4916,7 +4916,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -4925,7 +4925,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -4960,7 +4960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03078d62-b201-44e4-b3f1-f9f394ceb77a", + "id": "e0872000-6cac-40c2-b50b-7e1e51e7543d", "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": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -5015,7 +5015,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -5024,7 +5024,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -5059,7 +5059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de706e1d-9840-42c3-b7ad-ff79e948e650", + "id": "f4e07536-6fc6-433b-9fbc-00caff5a9b63", "name": "Too Many Requests - Returned in response to too many requests in 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": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -5114,7 +5114,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -5123,7 +5123,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -5158,7 +5158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f915a7a3-a498-4bd4-a14a-5f7c28821735", + "id": "53a56918-d3a1-4057-85af-54325cce4323", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5177,7 +5177,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -5213,7 +5213,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -5222,7 +5222,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -5263,7 +5263,7 @@ } }, { - "id": "59d2968b-0b68-4a2b-be3a-52f310f14f9d", + "id": "a31a1f1f-f4ee-4b4e-99ed-e906e97fa9d7", "name": "Approves an access request approval.", "request": { "name": "Approves an access request approval.", @@ -5318,7 +5318,7 @@ }, "response": [ { - "id": "1c199065-715a-46a2-8c94-b8288c52f6ca", + "id": "d4b09a0d-a661-4e06-9270-a14cbbc7d731", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -5376,7 +5376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abcdb2e4-b660-4b64-b7a5-b0fadff6c187", + "id": "d85d3915-b90e-45c3-8741-ff4336a313db", "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": "f0c06f3d-20b3-496e-869b-c4fd872314cf", + "id": "bf1123e0-d65a-4253-bef0-07511f2fcf65", "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": "33b34e38-af31-4070-849b-4d0b49d7affb", + "id": "b6456d76-23e1-4bb6-b48c-135d6c2096f5", "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": "b5ded5dc-dd7c-419e-b72c-1e975013cfdb", + "id": "9f9ffc93-3a53-4143-97c9-28097409b048", "name": "Too Many Requests - Returned in response to too many requests in 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": "495aa3fa-93d4-43b9-8482-fc94b0e0e955", + "id": "125ce626-4ab0-4e6f-96fb-1c0257793bbf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5672,7 +5672,7 @@ } }, { - "id": "3a9f7957-ab68-4a8c-8183-4d94ebd1bcfe", + "id": "8bf13a88-3533-4720-9021-520f79aedcf1", "name": "Rejects an access request approval.", "request": { "name": "Rejects an access request approval.", @@ -5727,7 +5727,7 @@ }, "response": [ { - "id": "9357b80d-8c2b-4f76-8818-f4fca3e24504", + "id": "5c6f3ee1-5368-44de-93ca-a9fdedbb850b", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -5785,7 +5785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd2e5d28-b2b5-4483-9b74-af0b1e14c384", + "id": "e1857863-fdda-465e-b6c4-ab2a7a477a77", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5843,7 +5843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50bb74f2-bbc8-4067-a8f5-c5faf5dfbe94", + "id": "124aa89b-70c3-454f-a20c-993895f9eada", "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": "847b9f99-f5a4-44cf-bbf5-a5411d4012b8", + "id": "d37b3911-d358-4242-81f2-d9ab6012fb12", "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": "0237994e-e662-4e9b-b00e-92d747ca4077", + "id": "104e38d0-9188-4eb2-93f6-32bb6baf4085", "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": "93763483-131a-46ae-9d54-ee18510cf5fe", + "id": "75e29feb-b970-4a5e-96f8-6c19187e1e4a", "name": "Too Many Requests - Returned in response to too many requests in 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": "d492bf56-1d64-4047-bf99-d34ffc216bd9", + "id": "f2d73893-43ab-4507-9450-9ff666c8fbab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6139,7 +6139,7 @@ } }, { - "id": "9bac4a7a-493a-4262-9fa5-317617e790bf", + "id": "0f768781-e9fe-4695-9f51-c4c3da2f5e29", "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\": \"dolor non adipisicing dolore\",\n \"comment\": \"in velit magna\"\n}", + "raw": "{\n \"newOwnerId\": \"do anim aute\",\n \"comment\": \"consequat non irur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6194,7 +6194,7 @@ }, "response": [ { - "id": "1e68b96e-7cad-498a-9650-8dc00b9de902", + "id": "f811f3e6-ff56-433b-aa9d-5af20e3e8165", "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\": \"dolor non adipisicing dolore\",\n \"comment\": \"in velit magna\"\n}", + "raw": "{\n \"newOwnerId\": \"do anim aute\",\n \"comment\": \"consequat non irur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6252,7 +6252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7810ea1-3bf8-4e79-a468-c7ef0667903b", + "id": "e6affc59-a356-4a65-a855-30728521581b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -6288,7 +6288,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"dolor non adipisicing dolore\",\n \"comment\": \"in velit magna\"\n}", + "raw": "{\n \"newOwnerId\": \"do anim aute\",\n \"comment\": \"consequat non irur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6310,7 +6310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b09e38fd-fa9d-4475-9952-d95289428f43", + "id": "6efdc91f-6dcb-4fca-af1f-7dc96175fd27", "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\": \"dolor non adipisicing dolore\",\n \"comment\": \"in velit magna\"\n}", + "raw": "{\n \"newOwnerId\": \"do anim aute\",\n \"comment\": \"consequat non irur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6368,7 +6368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bc5eb8d-4fe3-43bb-bb11-64bb76479fe7", + "id": "393ae04c-f57a-4f0f-a521-dc3c02874695", "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\": \"dolor non adipisicing dolore\",\n \"comment\": \"in velit magna\"\n}", + "raw": "{\n \"newOwnerId\": \"do anim aute\",\n \"comment\": \"consequat non irur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6426,7 +6426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c0082ed-68e5-4ea8-aa15-10e6dffa9b5d", + "id": "e1d5a3fb-2aa2-4a9e-8464-a0039b1a4c84", "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\": \"dolor non adipisicing dolore\",\n \"comment\": \"in velit magna\"\n}", + "raw": "{\n \"newOwnerId\": \"do anim aute\",\n \"comment\": \"consequat non irur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6484,7 +6484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "648ccf2c-3412-4945-904d-f647b908fd41", + "id": "1ba5cea6-f2a0-4a4e-8c8c-424bfd15d524", "name": "Too Many Requests - Returned in response to too many requests in 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\": \"dolor non adipisicing dolore\",\n \"comment\": \"in velit magna\"\n}", + "raw": "{\n \"newOwnerId\": \"do anim aute\",\n \"comment\": \"consequat non irur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6542,7 +6542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f481ebd-5667-4b0f-8698-b5a617adbcd2", + "id": "79cb9fc5-0c76-48f7-a223-462dd84c9651", "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\": \"dolor non adipisicing dolore\",\n \"comment\": \"in velit magna\"\n}", + "raw": "{\n \"newOwnerId\": \"do anim aute\",\n \"comment\": \"consequat non irur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -6606,7 +6606,7 @@ } }, { - "id": "87a5f4f6-494f-4dd4-8a90-92faecaf2bcc", + "id": "a87de231-222e-4780-bae7-e2dcd295d861", "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": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -6639,7 +6639,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -6655,7 +6655,7 @@ }, "response": [ { - "id": "9876522a-cb00-405f-ba7f-ce6da6bde68c", + "id": "f2f770a9-cda8-42f9-bb8a-442fdafc5f3d", "name": "Number of pending, approved, rejected access request approvals.", "originalRequest": { "url": { @@ -6674,7 +6674,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -6683,7 +6683,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -6713,12 +6713,12 @@ "value": "application/json" } ], - "body": "{\n \"pending\": -88273276,\n \"approved\": 63832619,\n \"rejected\": 31577612\n}", + "body": "{\n \"pending\": 39473752,\n \"approved\": 81283866,\n \"rejected\": 68482013\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d0c6d687-0afa-44e0-9d99-822e71919324", + "id": "61b4dee8-fdf4-4d35-b2f3-6d723881d6ae", "name": "Client Error - Returned if the query parameter is invalid.", "originalRequest": { "url": { @@ -6737,7 +6737,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -6746,7 +6746,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -6781,7 +6781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3d4eb9b-1ee2-492c-b761-0200d3ba667c", + "id": "070f4d29-0689-4f0d-9450-00cc18fce21c", "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": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -6809,7 +6809,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -6844,7 +6844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67d18766-072b-4b6c-99c0-2e63875e85d0", + "id": "d79cc3c2-a11b-46e2-935f-1282d932ab40", "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": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -6872,7 +6872,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -6907,7 +6907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff617c58-90e7-46d8-9727-687c2759ca65", + "id": "38e3b166-d9f0-4804-a047-1c8139081b4b", "name": "Too Many Requests - Returned in response to too many requests in 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": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -6935,7 +6935,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -6970,7 +6970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d06e0b3-3899-4953-a629-ceefd5b95124", + "id": "a4d2d8cc-c5e3-4e27-8e6c-d248d1fe5268", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6989,7 +6989,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -6998,7 +6998,7 @@ "type": "text/plain" }, "key": "from-date", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "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": "7784d275-a4da-4965-b0d6-8670474c55b9", + "id": "8e0e7291-27d1-4019-a422-d60b536b912b", "name": "Submit an Access Request", "request": { "name": "Submit an Access Request", @@ -7087,7 +7087,7 @@ }, "response": [ { - "id": "00808d85-e640-4911-9e35-de1ea49c6065", + "id": "7736a9ed-de23-4ad1-95ec-e0406b36dfc8", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7143,7 +7143,7 @@ "_postman_previewlanguage": "json" }, { - "id": "362a6013-df3d-4ab3-827f-ccb9736ebffe", + "id": "e36798c3-c5e4-47c1-a4d4-a05ce4e8691a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7199,7 +7199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc2ba165-00c5-4756-a0f9-2abdb5734e26", + "id": "85d8f26d-a423-4624-bae5-c4aacb036542", "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": "cd5187dd-69c7-48e7-a097-f6ee4b921ec7", + "id": "16c4e6ce-a3aa-4a6b-a978-0c78ae446c89", "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": "7d0bc83a-e78f-49c2-b446-d6ec7da11501", + "id": "8b915444-9193-458d-85ae-943218fe357e", "name": "Too Many Requests - Returned in response to too many requests in 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": "c420ab2f-1c51-4432-8114-aa3ccaf52963", + "id": "2726db77-5998-47ea-8fd1-08812ae85bdd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7429,7 +7429,7 @@ } }, { - "id": "714fd13c-7847-48c1-ab55-6ff3d50d8d09", + "id": "d88d1563-723e-4e2c-aa3c-1044b6cdc4dc", "name": "Cancel Access Request", "request": { "name": "Cancel Access Request", @@ -7472,7 +7472,7 @@ }, "response": [ { - "id": "adb98e37-85ff-4f8e-82ae-60bf75107a25", + "id": "766d016f-1c4a-4d8c-af96-655052cfce3b", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7529,7 +7529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c228ac9-7947-43c8-914f-d55061eda592", + "id": "eca7a8f1-bb51-4522-8c4d-e05eb2e43d9e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7586,7 +7586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6504b346-ee3b-4ce2-a04f-c9748073769a", + "id": "099d3f00-9571-4c52-b694-d5b41b802367", "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": "0fd9e549-0788-4fbd-8368-5b5747e2af34", + "id": "5a9d999c-3c6b-4b13-9e40-b5160ee1fff5", "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": "e7de48a2-fbf8-48a9-9ebc-b70b1eb62c49", + "id": "3c2b528b-a513-44bc-a602-434a7b70540c", "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": "af96e28b-0ede-44a0-94c2-8ae90f232a42", + "id": "939be06f-ac2c-41d1-98dc-46eb60a8a0ab", "name": "Too Many Requests - Returned in response to too many requests in 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": "1495fc00-70bd-4e0f-9096-222312d6a050", + "id": "2dde87ca-fadb-46e0-9f4e-7fb1c579b17b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7877,7 +7877,7 @@ } }, { - "id": "4798b3b3-c3b2-4ac3-a65f-8190055f2df9", + "id": "25949ce3-738c-47ee-84f4-2baccf5a43e3", "name": "Close Access Request", "request": { "name": "Close Access Request", @@ -7920,7 +7920,7 @@ }, "response": [ { - "id": "f3a178f2-c095-4cb1-a931-8ef5651df4c4", + "id": "b0e51d58-e9b6-490c-8cbf-bcd1220feef1", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7977,7 +7977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dea491c0-713d-4f2f-bf5d-6bf606a0c9e6", + "id": "724e07e9-9e7b-424d-b923-3421d03903a8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8034,7 +8034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d23b372-ac54-4761-8dbe-4219d32eafcb", + "id": "8e069834-740a-4390-a83d-256b11ad6112", "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": "82731caf-dd85-4483-800f-571ecd07ac80", + "id": "412a3d1e-76aa-485d-b71d-045260c9ab11", "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": "63de968f-bcef-474c-b314-38666bf040fd", + "id": "043015ac-080d-4d16-a5ff-a70f1b055985", "name": "Too Many Requests - Returned in response to too many requests in 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": "0a957a2b-7ba7-4ffa-8fc7-fa20cfcb58f4", + "id": "782b3d8d-b21a-4e97-9476-75f82e67182d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8268,7 +8268,7 @@ } }, { - "id": "af50b2d4-3f27-43a2-9252-7cee8fd970af", + "id": "16b0582a-e879-4113-bcf7-f8288b2d8397", "name": "Get Access Request Configuration", "request": { "name": "Get Access Request Configuration", @@ -8297,7 +8297,7 @@ }, "response": [ { - "id": "32d913fd-6401-4e77-95be-3571e8a60cb9", + "id": "6e3d785a-65b1-42c6-afcd-87f744198fbd", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -8340,7 +8340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "689f85bf-7e5f-456b-b482-94d4c32d8425", + "id": "cfb18ebf-05fb-4079-bbaf-bdce735be6d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8383,7 +8383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "848949ed-4e9b-456b-84e4-6746dba61efe", + "id": "27eca0e5-78a1-4777-bf5f-fe5d74bbe741", "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": "e45e8afa-94c3-4160-ac12-5e88c3502323", + "id": "658f1228-6bae-4fe6-83c7-0ec3948e8a53", "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": "7c32b0fe-ce23-48af-bae7-74d2d2050379", + "id": "f6e318f9-55f7-4076-b0d5-692fb791ca2e", "name": "Too Many Requests - Returned in response to too many requests in 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": "c5f61573-8eeb-4c7b-a275-b3f361ab0bcf", + "id": "56357279-7639-4791-95d0-e84aa52f3d75", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8561,7 +8561,7 @@ } }, { - "id": "b5b55a27-3567-4d64-97cb-22a8ebb95c1b", + "id": "35e1a7e7-17c3-49fb-82c2-b181cb79646c", "name": "Update Access Request Configuration", "request": { "name": "Update Access Request Configuration", @@ -8603,7 +8603,7 @@ }, "response": [ { - "id": "dd12a8fd-2fb0-42ce-b21b-1db38326ebdd", + "id": "00664807-a6d4-414f-8150-84c547a3f03c", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -8659,7 +8659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a12f6e31-2095-44c0-a2d1-88c6aa272e68", + "id": "48b19ade-5ff1-4aef-ae86-56555f3a5511", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8715,7 +8715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d0ea8e4-2897-46b4-9b83-11496c58c56e", + "id": "cd288f72-e46a-49c0-90d0-810fbf4c5d30", "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": "964e5c20-2b73-48e2-95a4-2174180ae568", + "id": "8fe10f50-6740-4775-af43-a1b6336cd4ea", "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": "506562f9-b172-4591-b6f1-1489f643787d", + "id": "d9cf42ab-b325-4df8-81f0-cff74ae3554d", "name": "Too Many Requests - Returned in response to too many requests in 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": "568eb87c-2404-4459-bc9b-bb782e82da06", + "id": "4f745f74-a9ca-42bb-88bd-9465507bed12", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8945,7 +8945,7 @@ } }, { - "id": "49c93741-95a3-4da1-a91f-cb06465b1b3a", + "id": "94a9cf4d-49eb-43f6-a95d-996858d71a2c", "name": "Access Request Status", "request": { "name": "Access Request Status", @@ -9056,7 +9056,7 @@ }, "response": [ { - "id": "8fe5ad6b-c575-4d9d-9aa4-24a213006950", + "id": "9ec369db-6cef-451b-8a06-ac8e714f54ca", "name": "List of requested item status.", "originalRequest": { "url": { @@ -9181,7 +9181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e31e717e-a0ac-4020-9f53-9ccae58f7638", + "id": "5917c4c5-a3c1-44a3-b990-778af8b92cb3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9306,7 +9306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97a0c4d1-6657-44c4-ba43-3bd10537b660", + "id": "96bec4b4-d4d0-4936-9e12-380f834a0002", "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": "7953494e-debe-4769-83f4-b61f0d709e93", + "id": "a8385349-df20-4a6a-8fb1-ce1a3560980f", "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": "d0e95fe5-fac8-44e4-8ebb-bcb9190fd4a1", + "id": "4f142917-3e6e-4cba-a3e3-70f11acb4476", "name": "Too Many Requests - Returned in response to too many requests in 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": "7ad0780a-f2da-4c2d-9265-13a4df8fe8ca", + "id": "466652b3-44a1-4a51-aba6-b3e9fb5048ca", "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": "2746690d-39a7-45d3-ba11-9a1ad4bd4630", + "id": "bfbf80ff-b50c-41eb-aeb5-2b732f0b5d06", "name": "Return access request identity metrics", "request": { "name": "Return access request identity metrics", @@ -9883,7 +9883,7 @@ }, "response": [ { - "id": "22e332c6-3c17-4016-99c0-3eaf932bd85f", + "id": "30374241-48a0-40da-a818-ecd60e7b82bc", "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": "45cd423d-d055-4656-8300-14eea2087cfb", + "id": "50178e80-2c08-47f0-87ce-f7e47fc41750", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9979,7 +9979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77716507-0f44-4aeb-b939-f92a4f75737f", + "id": "293af415-b642-4c27-9c15-4d85eb38a21c", "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": "1fa79f82-8891-42fc-87a5-d4ffddc920d7", + "id": "2d61e508-bc0f-42ab-b853-0fe0a1203ec0", "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": "a431edfd-5f36-4736-8420-c4b3ae8076dc", + "id": "3bcbcb43-8993-4ef4-83d1-9cf7f1d272d6", "name": "Too Many Requests - Returned in response to too many requests in 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": "b51e4eaa-f3bb-45d1-beb3-aa5708c5bd1a", + "id": "8bd84c6d-9cba-4d8d-9592-38b0e087fdbf", "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": "8cce04db-f3e9-40f4-8bcf-47f51493aec5", + "id": "57e8932f-3955-45dd-95dd-3ee139be8a0f", "name": "List Account Activities", "request": { "name": "List Account Activities", @@ -10206,7 +10206,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10215,7 +10215,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10224,7 +10224,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10233,7 +10233,7 @@ "type": "text/plain" }, "key": "type", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10269,7 +10269,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10278,7 +10278,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -10294,7 +10294,7 @@ }, "response": [ { - "id": "9c1367e1-a136-43f3-9616-da44b7d569e7", + "id": "b84a19a1-c0e8-4a40-a866-e4ececc81768", "name": "List of account activities", "originalRequest": { "url": { @@ -10312,7 +10312,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10321,7 +10321,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10330,7 +10330,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10339,7 +10339,7 @@ "type": "text/plain" }, "key": "type", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10375,7 +10375,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10384,7 +10384,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "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 \"esse_b\": \"eu in in\",\n \"anim_dbb\": \"voluptate aute ullamco dolore\"\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 \"dolore__\": \"incididunt qui\",\n \"cupidatat_cb\": \"ea dolore\"\n },\n \"cancelable\": false,\n \"cancelComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"2c9180835d2e5168015d32f890ca1581\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"completionStatus\": \"SUCCESS\",\n \"type\": \"appRequest\",\n \"requesterIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"targetIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"errors\": [\n \"sailpoint.connector.ConnectorException: java.lang.InterruptedException: Timeout waiting for response to message 0 from client 57a4ab97-ab3f-4aef-9fe2-0eaf15c73d26 after 60 seconds.\"\n ],\n \"warnings\": null,\n \"items\": [\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n },\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n }\n ],\n \"executionStatus\": \"COMPLETED\",\n \"clientMetadata\": {\n \"dolore053\": \"fugiat nisi\"\n },\n \"cancelable\": false,\n \"cancelComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n }\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"2c9180835d2e5168015d32f890ca1581\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"completionStatus\": \"SUCCESS\",\n \"type\": \"appRequest\",\n \"requesterIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"targetIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"errors\": [\n \"sailpoint.connector.ConnectorException: java.lang.InterruptedException: Timeout waiting for response to message 0 from client 57a4ab97-ab3f-4aef-9fe2-0eaf15c73d26 after 60 seconds.\"\n ],\n \"warnings\": null,\n \"items\": [\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n },\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"FINISHED\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n }\n ],\n \"executionStatus\": \"COMPLETED\",\n \"clientMetadata\": {\n \"nulla_5\": \"in ullamco ad magna\"\n },\n \"cancelable\": false,\n \"cancelComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a53ac2ef-3f57-408f-90e8-1edbabb463f6", + "id": "05be1b6d-5e03-4abf-92b4-0403d9efd188", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10437,7 +10437,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10446,7 +10446,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10455,7 +10455,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10464,7 +10464,7 @@ "type": "text/plain" }, "key": "type", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10500,7 +10500,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10509,7 +10509,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -10544,7 +10544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72814423-f79b-47b0-9dcd-4805d081dfd0", + "id": "488fbdf8-8e96-4725-aabe-f2ee2837909e", "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": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10571,7 +10571,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10580,7 +10580,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10589,7 +10589,7 @@ "type": "text/plain" }, "key": "type", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10625,7 +10625,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10634,7 +10634,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -10669,7 +10669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b17885a-283e-4f24-8380-434079c362e4", + "id": "b7132671-3805-492a-9d42-418a9f429bc7", "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": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10696,7 +10696,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10705,7 +10705,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10714,7 +10714,7 @@ "type": "text/plain" }, "key": "type", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10750,7 +10750,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10759,7 +10759,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -10794,7 +10794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8efddf97-c40d-402a-a448-e8649e2d24dc", + "id": "9ca70b5e-a9c1-4274-b03d-17b47b28756f", "name": "Too Many Requests - Returned in response to too many requests in 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": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10821,7 +10821,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10830,7 +10830,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10839,7 +10839,7 @@ "type": "text/plain" }, "key": "type", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10875,7 +10875,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10884,7 +10884,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -10919,7 +10919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3506b723-0658-42c4-93c0-d048ac14fb53", + "id": "515456b2-5cf7-43f3-8dc9-8f40330dacb5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10937,7 +10937,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10946,7 +10946,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10955,7 +10955,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -10964,7 +10964,7 @@ "type": "text/plain" }, "key": "type", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -11000,7 +11000,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -11009,7 +11009,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -11050,7 +11050,7 @@ } }, { - "id": "2aeefef9-4e9e-4445-b3dc-c8e6e6e3e692", + "id": "9f532ead-d6fd-4c32-b7e8-26a4294aa909", "name": "Get Account Activity", "request": { "name": "Get Account Activity", @@ -11091,7 +11091,7 @@ }, "response": [ { - "id": "d814012f-8e9a-4fa0-b178-5eb44e6ab6c9", + "id": "8aea710b-2cca-4452-8d90-e4dfabce9206", "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_de\": \"eiusmod aute ut in ea\"\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 \"minim__\": \"aliquip eu l\",\n \"fugiat_a\": \"exercitation ullamco\",\n \"labore_260\": \"qui id occaecat ipsum\"\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": "80c59a9f-e8a1-4b42-ae49-050553f832d4", + "id": "d3eb958a-9af7-47c8-b123-e24bf9d1b450", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11179,7 +11179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cb64e54-b094-4d16-80bc-582b020bc1bc", + "id": "b0d1dc05-a013-4e7e-899f-685a22bb185e", "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": "7e86e325-0987-45a9-a306-c4c72823df44", + "id": "82709bdd-f50a-4c2f-aa27-567c44422876", "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": "14d4e864-2f5e-4b1b-bf20-ed3b6748b770", + "id": "b6deef4f-1eef-4f5d-9b68-78448003c0f5", "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": "2ee84e1a-7f57-4fb5-a04d-d76d11de7ffc", + "id": "e81490e2-91bf-461f-a533-fdab5155749d", "name": "Too Many Requests - Returned in response to too many requests in 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": "4bf1552b-8a97-4ae7-910f-c2c4d7c31907", + "id": "eff7abbe-cf84-42a9-baa9-1f3a77a4e956", "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": "17e67c03-53dd-4160-b3e1-18fad6dd49eb", + "id": "a693d7ff-fb02-4bf0-86aa-6c03d239f420", "name": "In-progress Account Aggregation status", "request": { "name": "In-progress Account Aggregation status", @@ -11453,7 +11453,7 @@ }, "response": [ { - "id": "aa3264c3-26b9-436d-a3e7-3b477e5ef4fb", + "id": "53f092f5-95ae-4912-ba92-46daf49595cf", "name": "An account aggregation status object", "originalRequest": { "url": { @@ -11498,7 +11498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41cd58bd-4737-49a9-b0ee-e4849151772d", + "id": "5fe792a4-445d-43c7-97f0-5704cb1382f7", "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": "624b97f8-3d02-4877-81d1-ca69011512b8", + "id": "0b2bcc41-ed93-4885-84cf-bca0bb72b91d", "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": "1ce5ad97-9859-465e-a1c2-f5eaf6c5cf3e", + "id": "7b1fc3ac-876f-42b0-9ef7-e9e95a836829", "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": "8bf26e3b-1c1b-4532-a008-b47f99c0336a", + "id": "8d1ee7b3-0af8-4253-b79f-139b5cb75e55", "name": "Too Many Requests - Returned in response to too many requests in 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": "b242ded0-44d3-41ab-afa3-5d6fe403c701", + "id": "ff75c945-a0b9-42e8-93c2-0e92a71f0e71", "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": "0764c01c-7070-4100-b1ec-a111f1a8a27a", + "id": "b8b60007-a28d-4aa0-a2fe-a64f67beeb1f", "name": "Returns account usage insights", "request": { "name": "Returns account usage insights", @@ -11814,7 +11814,7 @@ }, "response": [ { - "id": "4a6f056e-407a-45e0-a41b-288684e7aef2", + "id": "0c59ab8d-41fe-4631-94f2-94552d2533cf", "name": "Summary of account usage insights for past 12 months.", "originalRequest": { "url": { @@ -11896,7 +11896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e648550f-dc91-43c1-94a4-a5c57113b091", + "id": "4069ebb4-a491-49f1-bcbc-9cc89a6ee212", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11978,7 +11978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed169f5a-c12d-4517-80f3-a3ab7d855624", + "id": "c2ee0fb6-f4bc-4364-b713-32545016316b", "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": "e5b80318-9f13-4175-bfce-90e6c8906638", + "id": "27e90dd0-9735-4bf9-80f5-44a0163d7eec", "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": "1d980bdb-92f5-4e02-8cea-7e0d2d5e35b3", + "id": "e61e60d0-955d-42af-9102-7cdfe785b78b", "name": "Too Many Requests - Returned in response to too many requests in 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": "0b981574-b40a-4166-ab2b-a441c76779dd", + "id": "05f2c7ad-0de4-4265-bc0c-a71e9115615e", "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": "38857d52-4b5c-4ccb-a7ff-8ac82cabf986", + "id": "f7203280-c6f3-4bf3-9af1-8223ade18f8b", "name": "Accounts List", "request": { "name": "Accounts List", @@ -12402,7 +12402,7 @@ }, "response": [ { - "id": "86e785ac-8119-46bf-b27a-186d499c4a02", + "id": "57d8ea79-2439-4887-85a5-2bc0198d7555", "name": "SlimAccounts", "originalRequest": { "url": { @@ -12500,7 +12500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b202581-5332-448f-a8e4-89e236be7955", + "id": "e8f71286-f498-4434-b60d-16bd300ca22a", "name": "FullAccounts", "originalRequest": { "url": { @@ -12598,7 +12598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6151e0ea-b54c-473d-8166-f7ad76d8d5a2", + "id": "679db0e2-6a14-4a02-840f-7a430b3fe1d3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12696,7 +12696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff00547a-3f96-4de6-9d7a-6edf4515a46e", + "id": "f2406dba-2e29-48a8-8100-c4c6e5e8c7a7", "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": "9d567298-bf95-4c95-b662-c1a86c1ffd0e", + "id": "4fdd1ba2-0744-4af8-96bb-e565e72a56a3", "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": "d475dbe1-e1c1-42f5-a5f2-16006e014e34", + "id": "16f126c2-5ae7-4106-acea-fe18172abd18", "name": "Too Many Requests - Returned in response to too many requests in 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": "55e42316-9f5d-4135-8e3e-3f764424d7f6", + "id": "fc9e63f5-a65a-4179-aa9e-24118870974b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13094,7 +13094,7 @@ } }, { - "id": "4fd24ac2-e6d4-4f40-82eb-5b9bc715db54", + "id": "113505a2-3ecb-4205-bd84-c0b364f3dc89", "name": "Create Account", "request": { "name": "Create Account", @@ -13136,7 +13136,7 @@ }, "response": [ { - "id": "63c56706-eb94-4ba1-a3e7-c65e14cebdbf", + "id": "fdac3331-5d1c-4da2-b8d0-40db386c9f01", "name": "Async task details", "originalRequest": { "url": { @@ -13192,7 +13192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fc91c4f-2e2a-4d23-9909-d2faaf05e8be", + "id": "4b9bbf02-547a-4123-9806-4dd6690789ff", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13248,7 +13248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15e364af-9770-4a06-a898-5ed49ac8dfa1", + "id": "b7ea6920-b8f3-45d0-8cd9-3192b9a5dd7f", "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": "e583e3f2-856a-4010-a95c-c8f2a473d69e", + "id": "63f905a2-2e63-4680-9cdd-4a2fed30e73c", "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": "4e8c590f-f322-4e30-b561-e343a2f7ead3", + "id": "04b91801-8a20-4246-9794-b1ba009a041d", "name": "Too Many Requests - Returned in response to too many requests in 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": "1bd81e66-a530-4e05-b567-17d8897c1f0d", + "id": "2b2b020f-3357-4092-bda8-ae71518a2287", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13478,7 +13478,7 @@ } }, { - "id": "61155399-0672-4ea5-a31b-ddce33c2c15a", + "id": "74317079-5e58-4b25-94e6-866571df7ba2", "name": "Account Details", "request": { "name": "Account Details", @@ -13519,7 +13519,7 @@ }, "response": [ { - "id": "6f9af228-4cfc-4a36-8e96-0e21e49a90e0", + "id": "dbca59c9-bb33-4f3e-80a4-aeb6a720640d", "name": "Account object.", "originalRequest": { "url": { @@ -13563,7 +13563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26b8a946-0520-480f-8eec-4ddfb2ee4da7", + "id": "e4bfb667-a187-4230-9ef3-90fd70494ca1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13607,7 +13607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa77fbd7-0df2-4908-bbae-edf8738aa8de", + "id": "89428777-3785-4662-94d5-0c7921a73e78", "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": "ca772cb6-ed2f-41fa-9a44-bfeb02be72e6", + "id": "eb9d8651-c325-471d-8a4a-8b158c609e1b", "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": "d8e1b708-1485-437d-848c-df1442d82076", + "id": "eb816b10-fb9a-4b55-926b-75bc6923f22f", "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": "90c91ea3-3500-48ef-8949-0bab84a922c0", + "id": "fef67124-66bc-4d98-9ddf-23d169f1e588", "name": "Too Many Requests - Returned in response to too many requests in 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": "4ca463a0-45db-41d8-b80a-8f41973a121d", + "id": "605340b0-9b85-47d6-af14-3f64c9ba2c41", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13833,7 +13833,7 @@ } }, { - "id": "fc64e385-6e42-4884-a2ce-e7ce59f184cf", + "id": "2d2a88bd-e781-4b9b-afbb-c790c53643b3", "name": "Update Account", "request": { "name": "Update Account", @@ -13887,7 +13887,7 @@ }, "response": [ { - "id": "22893a5d-ff9c-413e-9b8e-6752f759ac75", + "id": "a7e3e12d-ce67-49ac-a1d3-3025d789faaf", "name": "Accepted. Update request accepted and is in progress.", "originalRequest": { "url": { @@ -13944,7 +13944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "606721ff-4a80-4eb6-9635-1df5526b802c", + "id": "ef64c21d-2cca-4760-8af4-bbdfe84b3083", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14001,7 +14001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d64c0f0b-fc43-4e7d-9c55-bc7b44d5c2e8", + "id": "287e5b77-f246-4c86-8fea-fd23d4e65a3f", "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": "c8355099-44ec-415e-b383-5a0c10d610ed", + "id": "1697cf1c-380e-4178-b3d5-7d6a821a8a0d", "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": "ee7748f6-7f30-4607-9aa5-f88eec4eded4", + "id": "be06f256-e988-4758-a32e-53049d377ebd", "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": "136c1ae1-2789-424a-9e4d-9c8e52a7e840", + "id": "6a79397d-a2f7-4293-b6ee-91a5b69f8739", "name": "Too Many Requests - Returned in response to too many requests in 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": "4bf4c6ba-42a0-4304-9057-9dbe07654ef8", + "id": "9eaccb3b-6f20-40bd-a059-db34a3791955", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14292,7 +14292,7 @@ } }, { - "id": "c885ac3f-81b3-4603-8337-18475f06364b", + "id": "1fdcaef8-3f2d-4d6a-a477-58bdb43b80e7", "name": "Update Account", "request": { "name": "Update Account", @@ -14346,7 +14346,7 @@ }, "response": [ { - "id": "681e7081-1f3f-4c17-b9de-7d9c0bcef340", + "id": "6c763191-a174-4f00-beff-1e333682a4bb", "name": "Async task details.", "originalRequest": { "url": { @@ -14403,7 +14403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bbb8070-82e4-4548-8816-a45c34e18331", + "id": "fcd481f6-c3a8-4733-bd19-8b863095c7b8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14460,7 +14460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d841930-be70-4b97-9ea3-7466f223e00d", + "id": "0cb13baf-088b-4d70-bca0-308f950ac931", "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": "a901b096-9426-4e6d-b650-b76ae246e56c", + "id": "2feb0f95-4551-4305-ae49-6cca61cf0486", "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": "d302a54b-ba8b-4d31-b32b-6eb7b58dc2e7", + "id": "4e99dc2e-e680-42c6-867e-c230d430de4d", "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": "4375a137-3927-4b8b-bdd8-07d4336cb5d6", + "id": "a232e82a-7dea-4fc2-94f1-18caf1181086", "name": "Too Many Requests - Returned in response to too many requests in 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": "7888b6a2-36c2-41a1-873e-032db563f674", + "id": "6064410a-db44-4d0a-982c-d655742288f9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14751,7 +14751,7 @@ } }, { - "id": "5a050a0a-02bd-463f-9273-ab8f6ed5441e", + "id": "0e98e518-0f6e-41fa-84b7-6c3850aca998", "name": "Delete Account", "request": { "name": "Delete Account", @@ -14792,7 +14792,7 @@ }, "response": [ { - "id": "e6ab72d9-f8b3-4dc6-8352-db48c7aa03ed", + "id": "9fe46e47-fa8b-4755-a9c5-9a57d962a80a", "name": "Async task details.", "originalRequest": { "url": { @@ -14836,7 +14836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00bcf6fd-dcc9-4222-b45c-42616f3c8ac7", + "id": "26576148-e197-4191-93b1-7d13be673b85", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14880,7 +14880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ee0ac6c-354f-47c9-a1ed-103a7a905c84", + "id": "9776f461-7079-4c02-b8d9-7085622a73cb", "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": "60abd2bb-c9cc-4e7a-b879-708a7e5c707d", + "id": "baa011c9-2fad-409e-85e1-80e49fa93d55", "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": "809ff48b-c58f-4eb0-87f2-a2f1abc17514", + "id": "74fcfb2b-ee3d-4340-928e-da092007e075", "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": "114ac360-d6e1-4b49-91ab-fe8de7fa9041", + "id": "1ffd7c85-6130-47bd-af18-20e2eefc1b98", "name": "Too Many Requests - Returned in response to too many requests in 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": "86b9d080-b868-408e-b129-5939d49d5db2", + "id": "bfa9d30a-171e-46ef-8c83-4f351a6378bf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15106,7 +15106,7 @@ } }, { - "id": "d0f96db8-7441-49fd-b81e-28885f9bae3c", + "id": "1042baf8-df90-4912-bf20-6c40e31f6a8e", "name": "Account Entitlements", "request": { "name": "Account Entitlements", @@ -15176,7 +15176,7 @@ }, "response": [ { - "id": "4e68b8d2-0636-4676-ac08-435d69aa4e79", + "id": "e62fa9b9-c963-4d7f-a066-d98656c3ce98", "name": "An array of account entitlements", "originalRequest": { "url": { @@ -15249,7 +15249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67671ad6-a748-4b26-ad40-e4d1f736ac2a", + "id": "3145a40b-d6c2-4f9b-a7a2-f0b6945bc76e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15322,7 +15322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87f1da1f-f1c6-47f1-b00a-2e228009e0e5", + "id": "566501ad-0a2c-4143-8ffa-180c3ef0daab", "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": "d0fbd2b4-eab8-48fb-9f82-dbe7e3316a58", + "id": "31ae312a-60ed-4e1c-8860-e89a7cff933f", "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": "0442139d-c8c2-48b1-8678-b61acbad33db", + "id": "def1d394-a631-4e0d-8d9a-b6fb462b2e76", "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": "84f167c9-d222-4c94-a5d8-ef4337aaedc4", + "id": "b9d86f4e-f89f-4b4a-a978-44cd4af362bd", "name": "Too Many Requests - Returned in response to too many requests in 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": "7e427eb7-aad3-44c6-9930-c993cd9df459", + "id": "9cc78f1b-f9f1-4817-8ddb-54c288ebda20", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15693,7 +15693,7 @@ } }, { - "id": "83749420-9f95-4d63-9f07-5d410ab56d0e", + "id": "e9c39b81-c594-4a63-a3c2-d48c242c31cd", "name": "Reload Account", "request": { "name": "Reload Account", @@ -15735,7 +15735,7 @@ }, "response": [ { - "id": "a777fcbd-44e1-44a5-8835-b49d20d42a9f", + "id": "a18ffc33-a519-4cb6-841e-a2666450bc80", "name": "Async task details", "originalRequest": { "url": { @@ -15780,7 +15780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eeadba12-aaff-4aa8-919b-3dbb026d2b3a", + "id": "1de11f18-4c9c-437f-9fb8-f3e219fd0014", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15825,7 +15825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "155fe020-4c92-4555-b4ef-0fe8e89819cf", + "id": "f6871661-2d2d-4acf-bdab-a760d166dcc6", "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": "425e1b33-2dc4-4e3b-ab50-da8d23684b35", + "id": "c2496a16-77d8-468a-81bf-816f9e92c6d7", "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": "03dc3768-00b9-4ca0-b9cb-986244c9dd1b", + "id": "be3bc41f-7dee-42c5-9576-1fbec56f377c", "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": "a0a33e5d-8f1d-4e6d-b468-d6e78a3efcb0", + "id": "a358df4b-bb6c-4750-a8ad-44f6f07b752c", "name": "Too Many Requests - Returned in response to too many requests in 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": "fde8b82b-0833-4eb9-9be6-c68548dc9030", + "id": "b1136887-be2d-429e-b7c6-e2d1e58cb2d0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16056,7 +16056,7 @@ } }, { - "id": "dfb6df65-a952-4c3a-9b88-826e4a197cff", + "id": "18999bfc-cf17-4459-a49b-a67250d5188f", "name": "Enable Account", "request": { "name": "Enable Account", @@ -16111,7 +16111,7 @@ }, "response": [ { - "id": "e145f064-929a-48de-9bcd-2299eca4b402", + "id": "aeaa7b16-44fb-4a69-b6d6-d9dd996394df", "name": "Async task details", "originalRequest": { "url": { @@ -16169,7 +16169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1de6afee-bd9e-4f6f-b2e9-e186b6a80f9e", + "id": "b8e0a876-86c3-49e1-82ee-9cddc6eddefd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16227,7 +16227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffc15673-165a-4605-b40e-0ef2db91b9d5", + "id": "e6277290-5ac6-4d95-a8dc-3d3ebac59550", "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": "f2215643-91e9-4d74-925d-fe0004df8d21", + "id": "7fed7a36-3723-4294-89f7-250b04b077cb", "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": "088da6a7-2b5d-4785-9e66-1a4ee0fc92ce", + "id": "788ec272-a28e-4774-a06e-a9d3a601b587", "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": "02bd6fa2-5dc6-4fde-94bd-414c11ba7b1c", + "id": "e07ac566-83e0-4801-b9b4-1d99c00777e5", "name": "Too Many Requests - Returned in response to too many requests in 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": "9b2974c0-4c31-494a-8247-d59592bd3bb4", + "id": "6f09c731-62ca-4c9e-acb3-f4f12949caf9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16523,7 +16523,7 @@ } }, { - "id": "84feac5d-b618-46b5-a8b5-7cc6792d3015", + "id": "43c178dd-7d9a-4a23-bd49-3955500fe2fd", "name": "Disable Account", "request": { "name": "Disable Account", @@ -16578,7 +16578,7 @@ }, "response": [ { - "id": "a56bd0bc-4c6c-42b2-88de-47154657ac68", + "id": "dd398909-4b9d-422f-9de9-401562d847b6", "name": "Async task details", "originalRequest": { "url": { @@ -16636,7 +16636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "391118c6-7139-4700-9387-eaa0c725ccbd", + "id": "c393a3f3-0c2e-4dda-bc42-47918aeebb06", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16694,7 +16694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10a24011-6b29-490d-88c2-6a375f13c1c0", + "id": "d8755272-83b3-46cb-abd4-691b9ce234e4", "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": "b5d8900d-dfec-4c65-bfd6-090ab81850bd", + "id": "43900da1-6ee9-4e05-ae12-516426b834cb", "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": "fd939c61-9309-40cd-b7f5-4a56ce63ef52", + "id": "53d61e2a-f3ad-49c4-824c-7861e4035216", "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": "fb6a1943-57f5-48e2-b2cb-445e6caa0117", + "id": "5facf53d-7822-4c18-b504-4d514778b740", "name": "Too Many Requests - Returned in response to too many requests in 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": "914e8523-1241-42c1-85c7-8cefe6a0072b", + "id": "be4a3072-972e-4c90-bd88-420ea287c95f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16990,7 +16990,7 @@ } }, { - "id": "4eece893-5e07-480b-b49f-77fbf2618ac9", + "id": "59ae29d3-2a74-44bd-9bf6-8bac7f398afa", "name": "Unlock Account", "request": { "name": "Unlock Account", @@ -17045,7 +17045,7 @@ }, "response": [ { - "id": "c563dad2-dead-4211-9763-b12dce98eb44", + "id": "5fd4ff6b-cc41-43cc-8007-824e811dd22c", "name": "Async task details", "originalRequest": { "url": { @@ -17103,7 +17103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f8ac946-41e4-487b-aee4-e5c862627020", + "id": "46b910c3-bb0a-4a52-85c5-2172ab3c5063", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17161,7 +17161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f11546ce-105c-404a-8722-2a79170b434c", + "id": "49c0708f-8a00-4547-8057-1177ca8acc37", "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": "cbf95a06-2d26-463e-9a16-b3103e05d026", + "id": "b9b4eed4-f0fd-4528-87b3-43d9b7f22770", "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": "8629aa32-ff66-41e5-ac93-d9fe0470ff5a", + "id": "407da03b-c969-4526-809a-3466d2b8b0c5", "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": "f8bb1081-4360-4130-a890-17347eac8870", + "id": "1a9cdf70-1454-493b-86bc-2e582867cbd8", "name": "Too Many Requests - Returned in response to too many requests in 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": "49ff9e2f-a934-4db9-9fb9-8b046c1edfba", + "id": "190cb008-7d29-4e00-8c14-3bb661063c62", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17457,7 +17457,7 @@ } }, { - "id": "96db5b8d-5052-4369-b0df-8590111bc666", + "id": "30585d1e-b373-477c-9703-2a68e980fff6", "name": "Enable IDN Account for Identity", "request": { "name": "Enable IDN Account for Identity", @@ -17499,7 +17499,7 @@ }, "response": [ { - "id": "7652d9bd-5b82-423b-95e7-440387628435", + "id": "f00a5524-c7a6-4efb-a751-efad6f9492c9", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -17544,7 +17544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6e4bc10-30f7-4a67-8fa8-4e216719b872", + "id": "019bd45e-ecfb-4124-af95-a2e18d26d662", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17589,7 +17589,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8a76731-0d83-409c-99a0-13689d7f9642", + "id": "ad78338f-3cfc-447a-914b-b62b33f25b29", "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": "7bdc040b-5833-4ab3-88a5-8e8adebf9db3", + "id": "f3a1fd74-2381-4722-8c76-014cc3fb7b9e", "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": "0b547a1d-2a6d-4d18-a9c3-8b9fd764daed", + "id": "14bc5d93-92c1-48ec-8dce-165a8f05ab7f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -17724,7 +17724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c66c138d-4dc6-432c-9558-3954768ba48f", + "id": "5a0a9a03-8381-4167-a92f-5b5c14245c1a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17769,7 +17769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03ebf1d3-9036-4727-bcad-d3168f607e1b", + "id": "8f7aec2a-a6fb-4bb4-9e5f-f607fa2a7f44", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17820,7 +17820,7 @@ } }, { - "id": "42214b0a-caeb-4ccb-b0a0-abe865d33f9d", + "id": "6d1377fa-56b0-4523-81c2-394671555a98", "name": "Disable IDN Account for Identity", "request": { "name": "Disable IDN Account for Identity", @@ -17862,7 +17862,7 @@ }, "response": [ { - "id": "0ba1674a-aca4-4b17-880b-244dbb0cf18c", + "id": "8065b7b0-0bb4-432c-b797-97ebd37fe00c", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -17907,7 +17907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81c5f2f2-2538-4a52-b07b-5df358b59572", + "id": "df8c3ef4-4553-47ed-bb85-f868135651ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17952,7 +17952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65bc6f33-4933-418d-864d-25b2fc24c8a5", + "id": "3edf85a8-c75b-4899-9f4d-1c0ac43f1fad", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17997,7 +17997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df57cac5-0bb4-46de-a326-825deae4fc30", + "id": "797347a3-ccda-4103-b500-03aa1709a400", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18042,7 +18042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "201c054e-bf6a-40e9-a150-cddebfe7dab3", + "id": "48910428-6658-4869-bb8e-c2eeb4e5caae", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18087,7 +18087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b323b90-4c48-4101-baad-1a6c67d7a671", + "id": "0b9670d0-a89c-4538-b464-e03eb390a022", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18132,7 +18132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74e81b82-7272-4f19-a8b6-8b2f64abfcd7", + "id": "1bb00058-0a15-4eb9-aa37-efed2f96a4c3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18183,7 +18183,7 @@ } }, { - "id": "51cf1f8a-a573-4878-a106-731816bd18db", + "id": "7b0e9183-fd7a-4a9c-9079-4b581ac014df", "name": "Enable IDN Accounts for Identities", "request": { "name": "Enable IDN Accounts for Identities", @@ -18226,7 +18226,7 @@ }, "response": [ { - "id": "961f2930-d8de-4a6d-b6dd-02b26057a6a0", + "id": "f54b8d56-f73e-441e-a8fe-9d481b22ab5e", "name": "Bulk response details.", "originalRequest": { "url": { @@ -18283,7 +18283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b6cc549-9fb2-44a3-bb61-2066b30468b5", + "id": "eb0c40b7-9ced-4e3e-b00d-6c3d7f3a447b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18340,7 +18340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8126a382-9da7-405a-9395-99c32ed8331a", + "id": "292b0f51-e01e-4621-90e7-69bd36165a64", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18397,7 +18397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd9431d8-1418-47f4-98f5-34477a95ff1e", + "id": "4c779441-9e13-4f27-acc4-de804a57f407", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18454,7 +18454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbfeb5cf-d5d5-4392-8e1b-f602928996ec", + "id": "2baf45c0-f469-4653-98ef-51ed2009e881", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18511,7 +18511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ec7fc90-b4f0-4bca-ad97-634711859b2a", + "id": "66491d2f-cae9-405c-a88e-9a6da368b13f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18574,7 +18574,7 @@ } }, { - "id": "8d74c8bb-0a6e-4b9f-a34d-f5af13c7dfc3", + "id": "8d20ec7a-9cc2-4529-a972-709705afaa15", "name": "Disable IDN Accounts for Identities", "request": { "name": "Disable IDN Accounts for Identities", @@ -18617,7 +18617,7 @@ }, "response": [ { - "id": "498d3d58-e5ec-4c62-8694-656968caf87b", + "id": "1d6b7545-b79e-4a36-bbdb-c90111763235", "name": "Bulk response details.", "originalRequest": { "url": { @@ -18674,7 +18674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c04d638-a818-4702-b9ad-7b77640028d1", + "id": "ff233c84-c26e-4f2e-ba34-c7eec4520ad5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18731,7 +18731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acfbdc3e-1987-4e2f-a397-72b19895d407", + "id": "b73c7354-ee11-420d-8d90-41fafda43ab0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18788,7 +18788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af657122-81d9-4c05-acb7-632fb343d9ed", + "id": "ae86aa5e-7e4a-4d89-9cf2-f0fd1f4e0fae", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18845,7 +18845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5feb5d67-692a-411a-8233-ad5a87a5e75b", + "id": "a9d71b0e-cc43-4be3-940a-051d57afe900", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18902,7 +18902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1fb994d-aa04-48a0-a02c-f177a03209ac", + "id": "c19cc3d4-bb6c-4067-bb88-fcdd5d72143c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18971,7 +18971,7 @@ "description": "Use this API to implement certification campaign functionality.\nWith this functionality in place, administrators can create, customize, and manage certification campaigns for their organizations' use.\nCertification campaigns provide IdentityNow users with an interactive review process they can use to identify and verify access to systems.\nCampaigns help organizations reduce risk of inappropriate access and satisfy audit requirements.\n\nA certification refers to IdentityNow's mechanism for reviewing a user's access to entitlements (sets of permissions) and approving or removing that access.\nThese certifications serve as a way of showing that a user's access has been reviewed and approved.\nMultiple certifications by different reviewers are often required to approve a user's access.\nA set of multiple certifications is called a certification campaign.\n\nFor example, an organization may use a Manager Certification campaign as a way of showing that a user's access has been reviewed and approved by multiple managers.\nOnce this campaign has been completed, IdentityNow would provision all the access the user needs, nothing more.\n\nIdentityNow provides two simple campaign types users can create without using search queries, Manager and Source Owner campaigns:\n\nYou can create these types of campaigns without using any search queries in IdentityNow:\n\n- ManagerCampaign: IdentityNow provides this campaign type as a way to ensure that an identity's access is certified by their managers.\nYou only need to provide a name and description to create one.\n\n- Source Owner Campaign: IdentityNow provides this campaign type as a way to ensure that an identity's access to a source is certified by its source owners.\nYou only need to provide a name and description to create one.\nYou can specify the sources whose owners you want involved or just run it across all sources.\n\nFor more information about these campaign types, refer to [Starting a Manager or Source Owner Campaign](https://documentation.sailpoint.com/saas/help/certs/starting_campaign.html).\n\nOne useful way to create certification campaigns in IdentityNow is to use a specific search and then run a campaign on the results returned by that search.\nThis allows you to be much more specific about whom you are certifying in your campaigns and what access you are certifying in your campaigns.\nFor example, you can search for all identities who are managed by \"Amanda.Ross\" and also have the access to the \"Accounting\" role and then run a certification campaign based on that search to ensure that the returned identities are appropriately certified.\n\nYou can use IdentityNow search queries to create these types of campaigns:\n\n- Identities: Use this campaign type to review and revoke access items for specific identities.\nYou can either build a search query and create a campaign certifying all identities returned by that query, or you can search for individual identities and add those identities to the certification campaign.\n\n- Access Items: Use this campaign type to review and revoke a set of roles, access profiles, or entitlements from the identities that have them.\nYou can either build a search query and create a campaign certifying all access items returned by that query, or you can search for individual access items and add those items to the certification campaign.\n\n- Role Composition: Use this campaign type to review a role's composition, including its title, description, and membership criteria.\nYou can either build a search query and create a campaign certifying all roles returned by that query, or you can search for individual roles and add those roles to the certification campaign.\n\n- Uncorrelated Accounts: Use this campaign type to certify source accounts that aren't linked to an authoritative identity in IdentityNow.\nYou can use this campaign type to view all the uncorrelated accounts for a source and certify them.\n\nFor more information about search-based campaigns, refer to [Starting a Campaign from Search](https://documentation.sailpoint.com/saas/help/certs/starting_search_campaign.html).\n\nOnce you have generated your campaign, it becomes available for preview.\nAn administrator can review the campaign and make changes, or if it's ready and accurate, activate it.\n\nOnce the campaign is active, organization administrators or certification administrators can designate other IdentityNow users as certification reviewers.\nThose reviewers can view any of the certifications they either need to review (active) or have already reviewed (completed).\n\nWhen a certification campaign is in progress, certification reviewers see the listed active certifications whose involved identities they can review.\nReviewers can then make decisions to grant or revoke access, as well as reassign the ceritifcation to another reviewer. If the reviewer chooses this option, they must provide a reason for reassignment in the form of a comment.\n\nOnce a reviewer has made decisions on all the certification's involved access items, he or she must \"Sign Off\" to complete the review process.\nDoing so converts the certification into read-only status, preventing any further changes to the review decisions and deleting the work item (task) from the reviewer's list of work items.\n\nOnce all the reviewers have signed off, the certification campaign either completes or, if any reviewers decided to revoke access for any of the involved identities, it moves into a remediation phase.\nIn the remediation phase, identities' entitlements are altered to remove any entitlements marked for revocation.\nIn this situation, the certification campaign completes once all the remediation requests are completed.\n\nThe end of a certification campaign is determined by its deadline, its completion status, or by an administrator's decision.\n\nFor more information about certifications and certification campaigns, refer to [Certifications](https://documentation.sailpoint.com/saas/user-help/certifications.html).\n", "item": [ { - "id": "465cd6e5-5d9b-4e3f-8bb1-80316fe2ce79", + "id": "8d874b35-77d3-470f-9219-aefc02528b4a", "name": "List Campaigns", "request": { "name": "List Campaigns", @@ -19055,7 +19055,7 @@ }, "response": [ { - "id": "04341390-9618-4d84-b87a-e68dc1da4b23", + "id": "8938175e-2e10-4543-aeb0-88877e91db3d", "name": "Slim Campaign", "originalRequest": { "url": { @@ -19153,7 +19153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "032f31da-9448-41fb-a40a-18887af247b7", + "id": "e3f94638-9c44-4735-ba43-f55e8eb83c87", "name": "Full Campaign", "originalRequest": { "url": { @@ -19251,7 +19251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45c361f4-2278-411a-8042-1a057e7f7e08", + "id": "15e3bf44-6d09-4b28-9a3d-aa961eff5ede", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19349,7 +19349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35ac0017-e40f-495b-aaaa-5e06d98b5ac5", + "id": "5ba474ad-dd06-47b5-8002-f45fffa825f2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19447,7 +19447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31e2483f-27af-4d17-89ee-f5052c2e8800", + "id": "5b6e6ca8-257d-491b-8064-7730be1cea44", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19545,7 +19545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e02ef32-974b-4c83-98ea-c89705720723", + "id": "90264d5b-64e6-4c99-b86d-376aa0bbaa8e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19643,7 +19643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4978d7c7-665e-4fab-9f4e-6cf94f17c3f3", + "id": "2d9a0a46-fee4-4855-924a-8cd88f2ced15", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19747,7 +19747,7 @@ } }, { - "id": "2ae82cd4-8c8a-436b-bb34-e07de3ef3e7d", + "id": "a1ce26e0-c7a9-47d6-882f-a68a9384e377", "name": "Create a campaign", "request": { "name": "Create a campaign", @@ -19789,7 +19789,7 @@ }, "response": [ { - "id": "37e34d6c-6def-4aa6-8d75-2c51367b1be2", + "id": "b2dd55f2-54ce-4d35-89ed-e99f89607170", "name": "Manager", "originalRequest": { "url": { @@ -19845,7 +19845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97a41616-95c0-4a63-a5f3-2fd529cbe26a", + "id": "0ccd252e-f26f-49bd-8dde-5c131aa8b7b0", "name": "Search", "originalRequest": { "url": { @@ -19901,7 +19901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0027ccc4-78bd-4a44-a2a7-e7b09538575e", + "id": "b81a1360-7678-4d9a-b355-a6eee9f07cce", "name": "Source Owner", "originalRequest": { "url": { @@ -19957,7 +19957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "914f3084-7559-4d69-a00f-6ea60bd0fb5f", + "id": "b8b4e5fd-d37e-4883-9278-714e3603cfde", "name": "Role Composition", "originalRequest": { "url": { @@ -20013,7 +20013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "996b9876-6a94-4c66-b7b0-f26348e07915", + "id": "6af7809a-8881-4e43-b08f-4d2d32ee6cac", "name": "Manager", "originalRequest": { "url": { @@ -20069,7 +20069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20a82cad-f2da-4b7b-af1c-b1551b63a822", + "id": "d72ac62f-1918-4dc4-9e61-bf665e0784ff", "name": "Manager", "originalRequest": { "url": { @@ -20125,7 +20125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3252026a-81f9-48ae-b6b3-e6be831c4e75", + "id": "e75cefb0-42c8-463c-be7e-847924424167", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -20181,7 +20181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d84f0485-4e89-46e5-a33e-ac005fa757c3", + "id": "0e8a3b11-6397-453e-92c9-96f186231339", "name": "Manager", "originalRequest": { "url": { @@ -20237,7 +20237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90cebb16-8efd-4d88-a22a-a94ab100e903", + "id": "c5e8ad5c-f56a-407f-ad5f-9efdbccd00c5", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -20299,7 +20299,7 @@ } }, { - "id": "661f1be2-cb95-43b4-9ece-a44a84d2d46b", + "id": "74b1cb5f-33ca-4324-9af6-0fd22f6e72b2", "name": "Deletes Campaigns", "request": { "name": "Deletes Campaigns", @@ -20342,7 +20342,7 @@ }, "response": [ { - "id": "fdbd125b-a9c3-4e3d-b528-db3c723a4391", + "id": "f8bb4f17-c46a-470a-af71-2afdb0b5232b", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -20399,7 +20399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d292dbc-5b96-4a33-86b8-f5599865f5f7", + "id": "bf7550e0-3807-40cf-85ca-e25e9a914228", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20456,7 +20456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba33de30-a037-497e-8f7f-9d59511f546c", + "id": "4c742084-5dc7-483a-ac50-780701f78da5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20513,7 +20513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f1b9d39-c5b1-401d-ac0a-647bd77de162", + "id": "7c778c12-06b2-43a3-a1f5-68c4ccc5dfac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20570,7 +20570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5eb6533-4eb4-4f3c-8f3f-112332b984ea", + "id": "66810d51-d88f-46ef-adfe-e68a74f0ee53", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20627,7 +20627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fb183f8-0987-42f1-a59f-682e34e05d18", + "id": "e988590a-c674-4b3a-8c1a-4b8706701b97", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20684,7 +20684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca35de1f-9488-4475-a570-e683256119e5", + "id": "4083e353-3cef-483c-be8a-adf318b247f5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20747,7 +20747,7 @@ } }, { - "id": "954ef843-296b-455b-bcaf-6ed23e446ac8", + "id": "ce2a8bbe-5d3a-4b18-b15c-47f5ece4eb47", "name": "Get a campaign", "request": { "name": "Get a campaign", @@ -20788,7 +20788,7 @@ }, "response": [ { - "id": "282c911b-0980-4509-890f-5adf5c4a0a2b", + "id": "d631f7e4-c265-4851-a2c0-1c8e173ba273", "name": "Manager", "originalRequest": { "url": { @@ -20832,7 +20832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78e8d931-3612-41b4-8fa0-2cdecde8e80b", + "id": "67806a0c-932e-4186-bb0c-95353999db2f", "name": "Search", "originalRequest": { "url": { @@ -20876,7 +20876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af35bbf2-44e9-4fdf-9c71-4d2a0ef9536d", + "id": "8a7de1f1-add2-482c-9075-825b765970f9", "name": "Source Owner", "originalRequest": { "url": { @@ -20920,7 +20920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38de076f-2d69-4f62-94bc-b4a97de103e3", + "id": "b063c5bb-9a57-41f2-9f82-74332c7ad5cf", "name": "RoleComposition", "originalRequest": { "url": { @@ -20964,7 +20964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6598d7c3-5e19-4d04-98b6-7ab4e79cb76f", + "id": "ad043572-545f-4e64-9e54-45b615425b1d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21008,7 +21008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0285f091-c67e-4276-b33b-e4a74dd33e6d", + "id": "047b3959-04b9-48f3-9761-3ba296f9066b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21052,7 +21052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a79b90b3-475e-481e-83aa-d31db8519ddd", + "id": "647377b8-fb78-4b4f-bf1f-c6c8d6b793ca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21096,7 +21096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "240b1e2f-fb45-4cd8-9c6e-4bde0590c786", + "id": "47d93263-2bd3-4d65-bc28-99f1a6464ac6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -21140,7 +21140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1634928-ab2a-4346-a6d4-e5ee434ad7af", + "id": "893c93e9-ccb1-48a4-8c6c-2be775db5ed7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21184,7 +21184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d9b199c-9dba-4781-8ea3-84fb0307c645", + "id": "f162ec62-cd07-4653-b4f5-89d51f53e292", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21234,7 +21234,7 @@ } }, { - "id": "c9792e42-69f4-40a6-a139-32852e3ef60e", + "id": "c4e2ec51-41ed-47c5-a705-0b838cd8e61e", "name": "Update a Campaign", "request": { "name": "Update a Campaign", @@ -21288,7 +21288,7 @@ }, "response": [ { - "id": "c9e6768c-2497-4d42-a540-d1c1df13dfbd", + "id": "81c697d9-1a2e-48bf-8f43-97e1c69ad9dd", "name": "Manager", "originalRequest": { "url": { @@ -21345,7 +21345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e29183dd-e37d-4c6f-8e2d-74d37fb8f0d3", + "id": "634c9540-7510-4cde-afdc-303146bf939b", "name": "Search", "originalRequest": { "url": { @@ -21402,7 +21402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e70895b-1a5d-42d1-ae69-5a87bc46fb4b", + "id": "7492b341-526d-47ea-a8b6-03c4f23c5eb8", "name": "Source Owner", "originalRequest": { "url": { @@ -21459,7 +21459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "044e99e4-83cb-456f-8866-a246645e9e56", + "id": "7456b985-f656-4f75-b57c-dec4953364ac", "name": "RoleComposition", "originalRequest": { "url": { @@ -21516,7 +21516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "677f8067-4475-46ed-a6ba-02aabe952781", + "id": "8a50256e-6aed-41f7-a63b-91ec3a298e51", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21573,7 +21573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a8b66e6-6514-4382-a9cd-63f072b673cc", + "id": "980d8078-3bda-4c51-b0bb-f0d26e63b4be", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21630,7 +21630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2252adc5-4cf7-4f96-829e-825fd2484d25", + "id": "f5c05b70-e45e-44fb-8177-75dc277405c0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21687,7 +21687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37270acc-60b1-4a43-9703-d05bc891f68e", + "id": "876337ab-cfad-4976-ad10-04b5b4bef3dd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -21744,7 +21744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1d294b1-1fe4-4b77-b34d-350a8b6abc3d", + "id": "d145efee-f43f-4064-b4b1-72719202e42c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21801,7 +21801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d4e9323-ac91-460a-991b-110d529a8347", + "id": "fd8b0994-a0a5-4b85-8545-8f026071209d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21864,7 +21864,7 @@ } }, { - "id": "e2287668-b79c-4303-86c8-601953277bc3", + "id": "46de3f16-3cdb-44a4-83e6-1e3c04022b3a", "name": "Activate a Campaign", "request": { "name": "Activate a Campaign", @@ -21919,7 +21919,7 @@ }, "response": [ { - "id": "fbea4397-0872-4e44-b302-921147edc121", + "id": "4eeb3821-3edc-43fe-ac4c-1ff9cc6c85df", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -21977,7 +21977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5c11157-32a8-40b2-9fe7-e868330ff471", + "id": "65c8b630-16bc-485e-a12b-a299195d03f8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22035,7 +22035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "869bd455-de64-4f56-a4ff-6dd516d2faff", + "id": "67574f20-8639-45bd-a9ef-dac8ebdfc92d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22093,7 +22093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c041500-a3ed-4ef0-ae47-24c4ff3bf6f7", + "id": "19df583b-14f2-4e98-8c52-e85d9c67c6b2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22151,7 +22151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80dbd8e7-05b1-4cd2-b348-74507f59f096", + "id": "11af7d2f-f4ab-4b68-8d5b-95bcc414f2c2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -22209,7 +22209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99011f1a-4a1f-4d19-a0d4-56eea3a5d806", + "id": "1d9f0e5f-0f8c-4476-acfb-2ccd342d0f27", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22267,7 +22267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7a5b962-035f-4134-b708-c3ce3fe74721", + "id": "1032ef5e-a5b1-4bbc-9266-3cfe6766ab8d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22331,7 +22331,7 @@ } }, { - "id": "d07cfb51-cb71-4361-bd2c-fdc1541cb85e", + "id": "4cd7dc61-580b-4820-aa23-41cbaaa4dcee", "name": "Complete a Campaign", "request": { "name": "Complete a Campaign", @@ -22386,7 +22386,7 @@ }, "response": [ { - "id": "46555f2b-0cfc-475d-9970-01e13bbfb1bb", + "id": "afbe5cec-5532-430d-8e70-b72cc43d03aa", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -22444,7 +22444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fb4584e-b1d4-4e89-abfb-e3861d4e2293", + "id": "2eb7fa52-d6aa-41e1-b015-c8d6e03770a3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22502,7 +22502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c625b9a9-2c80-475e-9f14-cee138dcb6bf", + "id": "c9cd229f-6b51-429b-8817-a8685e1557c5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22560,7 +22560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a9fac2b-2cda-4dbe-bca4-614f1109391f", + "id": "1b5b2ecd-f050-4551-a9d7-5a7366312fbf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22618,7 +22618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3bf3090-d899-4d94-bff0-d8ae86c6bba3", + "id": "c1ce8dd9-6a4c-4837-a91d-1d9a91277280", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -22676,7 +22676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90c2fbc3-fef0-4439-9828-2004082d364d", + "id": "99a37ac7-8c38-43a2-92d3-9458588a74f4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22734,7 +22734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "046fc7d8-43d0-441a-8aad-627fc07f8acb", + "id": "b7462e4b-0d05-4035-a4a5-dc4784ec11ea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22798,7 +22798,7 @@ } }, { - "id": "e0716c26-0919-4691-bea2-435966f0893d", + "id": "6307e8b5-0046-4441-94a9-e0d0c36ea4c3", "name": "Run Campaign Remediation Scan", "request": { "name": "Run Campaign Remediation Scan", @@ -22840,7 +22840,7 @@ }, "response": [ { - "id": "ca7b4769-582e-484f-b2df-be11156289c7", + "id": "f3523dd2-fce3-4c35-8c59-713ce901840f", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -22885,7 +22885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44998688-935f-4a1a-a0e6-eb58858718f3", + "id": "13a3694d-5815-47d2-8463-5365ac828d5a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22930,7 +22930,7 @@ "_postman_previewlanguage": "json" }, { - "id": "612a219a-8234-48de-9775-7d9ef2a3ebd9", + "id": "2358d022-965e-4dd1-a3b2-9151e17c513f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22975,7 +22975,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b004fa3-2099-43b6-9d7b-3fade444ab4b", + "id": "d7b2839c-e320-4356-a9a3-e425b164a184", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23020,7 +23020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a166e83d-8ba1-40da-b247-52a2da84e12e", + "id": "90bd99ac-177f-4ad1-ae12-3d22e6312a3f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -23065,7 +23065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39d28b3f-7253-44c1-8fcb-ce34cfd2eb5d", + "id": "a5371358-9369-4a99-a622-4d48506d42cd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23110,7 +23110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd6202f4-97fd-4ef7-a018-c040c726b44e", + "id": "43da2eb6-8c81-4796-b96e-05cfc989b939", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23161,7 +23161,7 @@ } }, { - "id": "a5bb051f-f5bb-4010-a354-dfa299b38436", + "id": "4910e553-2186-4a41-8c9c-a19bb8bfec10", "name": "Reassign Certifications", "request": { "name": "Reassign Certifications", @@ -23216,7 +23216,7 @@ }, "response": [ { - "id": "76f51093-b71e-4da9-aa41-a59a35aa74f4", + "id": "416b57bf-1f88-43a5-b82a-5ec433701fff", "name": "The reassign task that has been submitted.", "originalRequest": { "url": { @@ -23274,7 +23274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbbb64f7-a661-46f7-b7b6-e325f8c25bdc", + "id": "cdbee6b1-7533-4a45-b50a-f9c1a012fc7c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23332,7 +23332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aab5ec9e-d2f0-4f96-9a1d-9cfed32c32aa", + "id": "cc94a3de-3149-4010-92f4-c5dca3dd49de", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23390,7 +23390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2a54cf2-89ee-4502-af8f-3aaaf3dd1841", + "id": "6b7759a0-75e5-454f-9cfd-0d8fa0f22938", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23448,7 +23448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aef7c17c-f810-4fc9-bc89-e2f2f0c28d3e", + "id": "544beb62-7224-456e-80b5-4b59bfe5d0a5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -23506,7 +23506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b8f84ce-2150-4c08-961e-f625979ba4ca", + "id": "4396565c-7338-421b-8914-d67775d911dc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23564,7 +23564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae6f24b3-62ae-4f5b-98d8-03b7d279d6e2", + "id": "87bd22ae-74d8-41f0-ac0d-eff37d9ede12", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23628,7 +23628,7 @@ } }, { - "id": "937e9691-ee67-4ffe-8a72-b14919754f35", + "id": "2ecc3e7f-9de7-488c-accc-f92f89705888", "name": "Get Campaign Reports", "request": { "name": "Get Campaign Reports", @@ -23670,7 +23670,7 @@ }, "response": [ { - "id": "14bf6d9b-808a-4214-b803-520e89badf04", + "id": "63b078dd-5f95-49ea-88fd-e5c382cd6c49", "name": "Array of campaign report objects.", "originalRequest": { "url": { @@ -23715,7 +23715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f05f7bc-b704-4128-81a8-58fdc04b154b", + "id": "f41140a1-e611-4c47-8310-4e5ec92f1a8f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23760,7 +23760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ed0a46c-54fe-4411-8896-8b137aab1391", + "id": "d0b30ca9-8297-436e-bea7-40e8715b351b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23805,7 +23805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f74b2f5d-313f-47e1-9cf4-6fa2c9d7295b", + "id": "4c5d3c43-60e8-46dc-9c6a-07d683c64951", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23850,7 +23850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aaeafd1f-97ae-4f0f-82e9-f2183aca2168", + "id": "bacfaec6-e4bd-4db6-84e2-3a7da03ae4a8", "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": "88a68b4e-1f36-4ae8-b86e-451e157a0407", + "id": "faee00a8-d155-4826-bafb-4a761455ed83", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23940,7 +23940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea2ee5de-9a17-45b5-b077-72f48e5889f4", + "id": "38f6dcc3-56d1-49e9-b90f-5cc2b8815916", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23991,7 +23991,7 @@ } }, { - "id": "b0e9f789-e1b4-44d3-a6b1-b6b9e0ce3888", + "id": "2ad6aa9e-5391-43d8-9966-d53da411a49c", "name": "Run Campaign Report", "request": { "name": "Run Campaign Report", @@ -24044,7 +24044,7 @@ }, "response": [ { - "id": "43328bac-c2d4-42f5-a91b-8201a5540966", + "id": "b25ce1d9-7119-4415-8cc5-1c8840d506cf", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -24090,7 +24090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a002bdf5-4aae-4017-ac60-5f0e669ae3e4", + "id": "1a174ed0-8fe1-4fcc-a134-cbb326f0af81", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24136,7 +24136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51c6cb9e-f2bb-4bbf-bdb9-4dd356e129ad", + "id": "4aaa2f62-5358-44cd-a135-cf40596655f7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24182,7 +24182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5c49bbb-f066-42c3-8a24-bfd211959b6b", + "id": "fecccd73-81b4-4f8b-90e9-2e8e69b07d4c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24228,7 +24228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14771690-371c-464c-9208-0c11b366bbf0", + "id": "cc39bb18-d6c9-4d7f-896c-ec9f4a8b473f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -24274,7 +24274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8440f668-1a63-4ccb-9a96-a730bc441fd9", + "id": "c8ca9fed-034f-4fd3-88ea-b5ed31acf0b1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24320,7 +24320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84e94e19-c1e5-44a1-b8d5-6258ca2cf61f", + "id": "09193179-f411-4a81-9117-87e588670792", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24372,7 +24372,7 @@ } }, { - "id": "68b14ae8-517f-414d-a76e-e569b27eeb40", + "id": "4f52dea3-281b-4032-a456-7410608e363b", "name": "Get Campaign Reports Configuration", "request": { "name": "Get Campaign Reports Configuration", @@ -24402,7 +24402,7 @@ }, "response": [ { - "id": "88e4ce5a-2c36-41e4-8980-b5990ecacc46", + "id": "e5e5853b-7aa6-494a-bac1-b4b50ebb0a0f", "name": "Campaign Report Configuration", "originalRequest": { "url": { @@ -24446,7 +24446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d506cfb-4b3b-4d35-bbcc-9b4d4bc583e2", + "id": "77125e24-53c1-4743-a913-ae91d9f73f6d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24490,7 +24490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6037338-d3cb-4fc3-992b-1e1ca0c65716", + "id": "d5de3b97-e699-4cb8-84c0-c2f6faf9d5a4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24534,7 +24534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8180edfb-4048-4b6a-a1bb-24e1ed4d1b37", + "id": "842aa33f-0b3c-4b46-9957-e5fdfc09fb85", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24578,7 +24578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fa78e72-49f1-4d6d-80ca-1a07f8fd0b47", + "id": "965957b4-0fa2-4f5e-a008-90b249847703", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24622,7 +24622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a474ef00-39a7-41f7-9385-f26cca2cc9c8", + "id": "1bfebf92-a400-4495-af83-bc1511270e5e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24672,7 +24672,7 @@ } }, { - "id": "6ff8e8fb-833e-49c1-968a-65a564f6525c", + "id": "9f74cb31-9324-4360-ac41-d16e90296e7f", "name": "Set Campaign Reports Configuration", "request": { "name": "Set Campaign Reports Configuration", @@ -24715,7 +24715,7 @@ }, "response": [ { - "id": "0ff7854b-f27a-4eaa-bd19-f43b044d8914", + "id": "457a3ba2-d337-4408-b844-c4c25333ed1d", "name": "The persisted Campaign Report Configuration", "originalRequest": { "url": { @@ -24772,7 +24772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccb0afd5-c57f-4206-a282-2378bea796fd", + "id": "489a2006-f70c-444c-9a01-2a44737495ca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24829,7 +24829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0eb0a27a-4840-4031-8d71-4af849f7376d", + "id": "786b59ea-ee9b-46ed-ad39-77e4148fbf42", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24886,7 +24886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "128708aa-a58e-4195-91b7-127d3f05eefa", + "id": "591e93d3-5946-4128-b4ef-85fc9871ec67", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24943,7 +24943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f117d373-9657-4baa-bd22-d2c61c470b82", + "id": "615a8631-5193-4ea9-a306-cc9e112f28c3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25000,7 +25000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de60f20e-e32e-4224-aec4-8057863d0a6d", + "id": "1fd72e60-1750-4caf-84d8-b254f802ca26", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25063,7 +25063,7 @@ } }, { - "id": "282eb5c9-b7ae-465e-b2be-4fbeccc749bc", + "id": "7a6e8475-f4f0-4e30-8199-7bc073a76900", "name": "List Campaign Templates", "request": { "name": "List Campaign Templates", @@ -25138,7 +25138,7 @@ }, "response": [ { - "id": "0dd01b0e-b823-470c-b78e-38e8742ecba2", + "id": "6bedb3c2-7999-4a25-af7c-84627e5b46f4", "name": "List of campaign template objects", "originalRequest": { "url": { @@ -25227,7 +25227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64d59544-7579-4a55-bbf9-aadf9f78932e", + "id": "a0fd124f-067b-4a12-bd4a-56f21d757ed5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25316,7 +25316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5127ccd9-3de0-416e-afa9-bb535f9c794e", + "id": "8b2b6861-845a-422f-b973-6d7150f526a0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25405,7 +25405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "418f7d0e-24a9-4bb5-8616-46ccc3f02c3b", + "id": "7849842a-0c61-40c8-8911-e96fe76d5163", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25494,7 +25494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08fdae74-717f-47c0-b1d6-eea654663b31", + "id": "568e3a89-fffd-4cc5-b3a3-7530d052824a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25583,7 +25583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50242c4d-359c-4889-b2f8-072363b12c74", + "id": "b8c8bf6e-d0b2-43b2-a290-fcdb2316f059", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25678,7 +25678,7 @@ } }, { - "id": "9ddbc8d5-2bf9-43ab-9556-c9ecd6049a15", + "id": "290e7b0a-58be-43c8-a5b9-9c41ec33ae06", "name": "Create a Campaign Template", "request": { "name": "Create a Campaign Template", @@ -25720,7 +25720,7 @@ }, "response": [ { - "id": "8aae49d5-f8ff-4051-af2c-7f5c0cf3f1ca", + "id": "75c4e051-0fff-4e96-8518-39719d842f4a", "name": "Manager", "originalRequest": { "url": { @@ -25776,7 +25776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71bcc81f-44a1-4df2-841c-658f2e893c4e", + "id": "ef515167-db96-4780-8ebe-0e12e40be520", "name": "Search", "originalRequest": { "url": { @@ -25832,7 +25832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05d6e4ff-4ebd-4f59-bf0e-865ee4dc4cb7", + "id": "01cb0d22-2fe9-43bc-b36a-38f245d48bcd", "name": "Source Owner", "originalRequest": { "url": { @@ -25888,7 +25888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afe5c666-cc61-4b08-a9c3-98719f8dcbf4", + "id": "ed99f0de-ccea-440a-a66a-42e772cd89b2", "name": "RoleComposition", "originalRequest": { "url": { @@ -25944,7 +25944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f77043aa-3a20-49c6-a0d8-aa4bb1e61482", + "id": "cbf76bc6-d60a-4990-ab82-7af492a7a80b", "name": "Manager", "originalRequest": { "url": { @@ -26000,7 +26000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e41f913-622e-4dd2-bdb1-d06d36a7e9d0", + "id": "fdca5fbd-f048-4b23-bac1-f32d36ec00f6", "name": "Manager", "originalRequest": { "url": { @@ -26056,7 +26056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f29c7551-5b0f-459b-92bd-95183e5463f4", + "id": "4cf1d6d0-ea9d-4ee4-8212-881189122aeb", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -26112,7 +26112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6be81f18-760c-4d77-b4f9-3e54982785df", + "id": "7956ee71-8733-4a34-9586-8410d26ca649", "name": "Manager", "originalRequest": { "url": { @@ -26168,7 +26168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "807f790b-0542-4aec-9cd4-8d76e407d6e5", + "id": "3a30f845-eb38-4975-b37c-5233e8dff9bb", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -26230,7 +26230,7 @@ } }, { - "id": "7eea69c7-5f77-4751-b67e-8c1734185db4", + "id": "da41e59c-42f6-4f37-a78d-0e145c5f25c2", "name": "Get a Campaign Template", "request": { "name": "Get a Campaign Template", @@ -26271,7 +26271,7 @@ }, "response": [ { - "id": "ee7dc65c-ec0b-4dae-92fb-0c476b0f5cf6", + "id": "cda5d3f2-fad5-4c31-97ed-64f1a05ddd29", "name": "Manager", "originalRequest": { "url": { @@ -26315,7 +26315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0aaf396c-8287-4db1-87b1-5296b67867eb", + "id": "ec9038ef-bd07-417f-ae36-aea8ccc980ae", "name": "Search", "originalRequest": { "url": { @@ -26359,7 +26359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06b9cb2a-ecea-4381-914c-baccf0d7e395", + "id": "9aa67286-ffa6-42be-9b02-90960b1c3a28", "name": "Source Owner", "originalRequest": { "url": { @@ -26403,7 +26403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4cf0e4e-b662-4d51-b9bb-cc5ac2872206", + "id": "3be7477f-73a7-449b-967e-7a229e680d12", "name": "RoleComposition", "originalRequest": { "url": { @@ -26447,7 +26447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47d7f22c-4e3e-42bb-8b42-f29176869f8e", + "id": "04beac03-b8c9-43a8-a41c-e9347cf4f866", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26491,7 +26491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0cafc26-d6c9-4092-816d-ac7986b5ac07", + "id": "8753d853-96af-4429-9772-cad59c9da568", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -26535,7 +26535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efa2c502-12af-4691-b252-ff96b7134088", + "id": "83928e12-ff50-4a88-9084-1afc6ce557f4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -26579,7 +26579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8465f061-0790-42f2-9351-7a7d3fd96fb3", + "id": "cda6d744-7c4d-4c4c-9d52-463cc4a88202", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -26623,7 +26623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac0c3f36-29ab-4788-9326-d11474308bb5", + "id": "60e7b771-5da6-4ff4-99f7-2a2a8a3555c3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26667,7 +26667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d326a22f-a6c2-4fdd-b4ca-74813640fb94", + "id": "09cb9ea5-7b07-448e-9388-2c1533c73e13", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26717,7 +26717,7 @@ } }, { - "id": "54a0d393-b97d-4983-b6a3-702822a74e51", + "id": "9f4d1b35-eca7-4cfe-a8b6-6372ff7b630b", "name": "Update a Campaign Template", "request": { "name": "Update a Campaign Template", @@ -26771,7 +26771,7 @@ }, "response": [ { - "id": "8f8d126d-39e9-41e2-87a9-b5f6b4585af7", + "id": "4cda1989-1e7c-474e-bc8d-83f969ed2496", "name": "Manager", "originalRequest": { "url": { @@ -26828,7 +26828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be936dae-5390-4435-92d6-7f8817c6adf7", + "id": "36f177ab-d8bf-4836-91f3-e5fbc2784c50", "name": "Search", "originalRequest": { "url": { @@ -26885,7 +26885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6784e95a-d2ca-4db5-9685-f8f4fb0bbeaa", + "id": "e58de5e6-7b1e-4c66-a9c2-db0cbf945ddf", "name": "Source Owner", "originalRequest": { "url": { @@ -26942,7 +26942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae114432-a789-4fba-885f-d0f36bd6d21a", + "id": "29dd92f8-eff3-4ee7-99bf-fde5c18dfd3d", "name": "RoleComposition", "originalRequest": { "url": { @@ -26999,7 +26999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee7cfb56-9095-404f-9f30-0038cde4559a", + "id": "868d0b79-5e03-4950-9842-8f27b4a8ed7a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27056,7 +27056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73067cce-6e57-4cdb-8a46-fb46563e8110", + "id": "c39f8e1f-5129-4d10-9795-e685efaed6d0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27113,7 +27113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9b8d44f-8172-4318-a7b5-0f6e3ff4ef2b", + "id": "f943eebe-b059-4cbe-af7b-5974898a1b3d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -27170,7 +27170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d32ff6ad-cc41-4869-bcd7-3d13f7b396f9", + "id": "276ec3cb-9e94-4462-9b82-20f0d02783ba", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -27227,7 +27227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b979ac38-b789-4b95-a223-f738700c5a37", + "id": "6f1051be-9ba2-4c7e-b84e-bef302bb83c4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27284,7 +27284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d9f94dd-8617-42fd-af25-757318c54faa", + "id": "ed3edcd6-94ac-4e1a-a191-20fad225f381", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27347,7 +27347,7 @@ } }, { - "id": "dc71ce15-5d1c-41c6-9143-a8094b59a041", + "id": "e78600b0-0ee9-46a9-bfd3-3aa90d43f5c6", "name": "Delete a Campaign Template", "request": { "name": "Delete a Campaign Template", @@ -27388,7 +27388,7 @@ }, "response": [ { - "id": "0c3ffccd-03eb-40d7-87b7-6644102def67", + "id": "c16d774a-bfbd-42bc-98ae-4850f5c1762c", "name": "The campaign template was successfully deleted.", "originalRequest": { "url": { @@ -27422,7 +27422,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f06b39f5-13e4-4a06-8ba2-a91c928f8dcf", + "id": "ac065707-9bef-4f37-963e-286e182dcca1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27466,7 +27466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfbbb117-6360-43fa-8b3f-e5f94bef1967", + "id": "ddd5fa44-9832-41eb-a3fc-7023eb9db2a1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27510,7 +27510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99e9f486-5053-4ec0-8b07-4c087876baba", + "id": "93db1240-0e2d-49be-9251-33e3991ab939", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -27554,7 +27554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d0c264b-efc2-44ea-be39-2b850173c012", + "id": "b3d7082e-e96e-4df3-8191-c26eb05ccadb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -27598,7 +27598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5cff2d2-d78d-4b07-abe0-17d238a1f6e6", + "id": "448481bd-abea-45fb-a341-ed12d8bebb57", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27642,7 +27642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8c5ef2b-fef1-4843-b1b9-3baaba017aa5", + "id": "84034d5f-4948-4a13-b088-2f29f28dd1bf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27692,7 +27692,7 @@ } }, { - "id": "51b00a7f-37dc-46c9-99fe-5cc00487e272", + "id": "f7eb6752-6590-40b5-8cca-c5d3edb212b4", "name": "Generate a Campaign from Template", "request": { "name": "Generate a Campaign from Template", @@ -27734,7 +27734,7 @@ }, "response": [ { - "id": "052e44c6-c7dc-421d-a299-60b5aa883fbf", + "id": "09bfcdf5-ef02-4dcc-ad2f-5ea7f2b46098", "name": "Indicates a campaign was successfully generated from this template, and returns a reference to the new campaign.", "originalRequest": { "url": { @@ -27779,7 +27779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4348311-b028-4202-ae06-5a0133e2bd1a", + "id": "1728e09c-0a2a-4641-9156-da21a169e9ea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27824,7 +27824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2350ac2e-c853-4050-bfc8-9d9c93564fdd", + "id": "625fdfd7-f60f-4fa8-8ed8-07e18d9de4f4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27869,7 +27869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c996d41e-87bc-4ad1-a006-c971340277f1", + "id": "bb36fe64-4814-49e3-bdbd-a3a9769d7b82", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -27914,7 +27914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db3d4d7e-37c0-4849-a05c-f45c30c1beba", + "id": "79ce6d44-c84c-4297-8346-cba98222c139", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27959,7 +27959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97a2f18a-4f2e-417c-90aa-faa37a0af271", + "id": "84905913-8b66-42b2-a132-8bc17d5ace5a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28010,7 +28010,7 @@ } }, { - "id": "b93fe783-37df-4d2b-adde-af43a93a3193", + "id": "35c1553b-19b3-45cb-8c0b-2e3c1a4d22ec", "name": "Gets a Campaign Template's Schedule", "request": { "name": "Gets a Campaign Template's Schedule", @@ -28052,7 +28052,7 @@ }, "response": [ { - "id": "b0377d88-c477-4e85-ae89-f5d7dbc9fa27", + "id": "c41fa35a-470b-4f7f-a5eb-6f751fa6ea22", "name": "The current schedule for the campaign template. See the PUT endpoint documentation for more examples.", "originalRequest": { "url": { @@ -28097,7 +28097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0a59736-871a-4212-aec0-a7751eb9d393", + "id": "c7eecdd7-b6d6-4303-960b-cff95ba2c90d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28142,7 +28142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce981234-32d2-498c-b8bd-64f9e11f5b47", + "id": "657c7a1d-7cd3-4047-b44d-aecda7d5dbc9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28187,7 +28187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40283cef-d155-4172-a728-14864a2e08cc", + "id": "81017d8a-31b4-4eda-bc62-73b81cb5ef1a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28232,7 +28232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54dc9ab4-a219-4196-9261-f608a302f48e", + "id": "5cf533c0-c209-44f4-b138-5fb0a92193f1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28277,7 +28277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bbba072-ae18-4b3c-a0c7-6b227e084e6d", + "id": "d0c18575-c102-4bdb-ac68-1c9b2c5efa64", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28322,7 +28322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aba0f997-afed-48c2-9547-d7b3613fb007", + "id": "38764296-6c4e-41d3-8d01-b33a447aedc1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28373,7 +28373,7 @@ } }, { - "id": "8e302e82-2c68-4e87-8dcc-f39873403f11", + "id": "f6087522-a0c4-49b8-8210-3e6268e9392b", "name": "Sets a Campaign Template's Schedule", "request": { "name": "Sets a Campaign Template's Schedule", @@ -28428,7 +28428,7 @@ }, "response": [ { - "id": "5b4eb8e5-65ae-4629-870d-97bc217bcce7", + "id": "fb9126e8-5373-4406-a45b-d8b6e8ddadb0", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -28476,7 +28476,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c46ed070-61c4-4d26-8f7b-1b25b4fbe8bc", + "id": "fd25a8c3-ccba-4b50-8c67-eb61f981a7a3", "name": "Monthly", "originalRequest": { "url": { @@ -28534,7 +28534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d609e877-b171-4a5c-9aac-ce6ea5ff7b92", + "id": "743bf274-c1d1-45e3-a684-b95afee35ca8", "name": "Once a year", "originalRequest": { "url": { @@ -28592,7 +28592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c901738-1819-4aec-aefa-1af7a02a1797", + "id": "f06dd91e-76c8-4822-97cf-dd6721bd4dbd", "name": "Quarterly", "originalRequest": { "url": { @@ -28650,7 +28650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "575a3ed6-a356-4cd3-864a-b1d0005fddcc", + "id": "6b285463-0f7a-4b68-97eb-6105b6aa2c84", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -28708,7 +28708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59475ed6-8919-45a3-a664-ad466ead9f22", + "id": "9d2fcf97-37b9-469a-b6e6-18391b8a673f", "name": "On a Specific Date", "originalRequest": { "url": { @@ -28766,7 +28766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7571b23a-a81d-486d-8c9b-7dcb29210a64", + "id": "ed9707ec-88f8-4ee5-b611-035307b17907", "name": "Once a year", "originalRequest": { "url": { @@ -28824,7 +28824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd721e8f-23fe-4abe-b7e1-439b20a6c217", + "id": "97fd4e60-9b5b-4f5b-949c-04f66ccdbac9", "name": "Quarterly", "originalRequest": { "url": { @@ -28882,7 +28882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e24946ba-815c-4400-bd86-aa6879adfcb8", + "id": "270e3739-d922-4201-8695-e2b05037c9af", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -28940,7 +28940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6836ec3-f468-41bf-821c-30450881b267", + "id": "47b84ea0-1600-4e7d-9490-e42226cb6cff", "name": "On a Specific Date", "originalRequest": { "url": { @@ -28998,7 +28998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa3fb474-cdf2-4d81-8633-a0bdfe202860", + "id": "a3621881-f7e2-41fe-aed7-1d6706c3a241", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -29056,7 +29056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b92decc-3c91-4c2a-8cd3-71f5459a1ecf", + "id": "42d9eec1-a9a1-47eb-8b63-ec0145f8281c", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -29114,7 +29114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f48781a-b3ff-40f7-9d85-8cfb8a21d527", + "id": "5a9ec431-8286-463c-8ac0-620e5f273994", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29172,7 +29172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd563b37-5773-47dc-a331-03184b22032d", + "id": "b3474247-4fa0-40f8-b6d3-da1411457f7e", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -29230,7 +29230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "079d7462-ce68-4cd5-978b-84fe6f163f28", + "id": "759cf121-3e7c-43cd-beb3-750c2dd674bb", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29288,7 +29288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a49c0b1-7bd3-4268-85c4-d1192bcd6e12", + "id": "f92eb04e-aac3-48d1-b3fc-bc475fcdb0f9", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29346,7 +29346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cdf4981-b346-46a4-aa47-8a8b228d7082", + "id": "9efc55ea-c070-4f42-91b5-bedcfe86f550", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -29410,7 +29410,7 @@ } }, { - "id": "996155da-3e43-41fa-ab63-03627eaae4f7", + "id": "2221e00a-c97a-4c9f-80cd-46e520b931ae", "name": "Deletes a Campaign Template's Schedule", "request": { "name": "Deletes a Campaign Template's Schedule", @@ -29452,7 +29452,7 @@ }, "response": [ { - "id": "dfe06d98-a0bc-4ea3-becb-1c2873344763", + "id": "74975cd2-6b0f-45a6-a70a-ec435cc1582d", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -29487,7 +29487,7 @@ "_postman_previewlanguage": "text" }, { - "id": "558cd2d5-5a8e-485e-b852-63bf09b44f6f", + "id": "ec80762a-218c-458e-b4e6-744cadf3e758", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29532,7 +29532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9adfba92-a032-47e6-ab19-e4fe1d672432", + "id": "5643c26b-b3b4-4d82-bdbc-33cd61c19d6f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29577,7 +29577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "544f0857-569b-43d8-b824-772fc013cdd2", + "id": "1ec6d8dc-5ef3-473d-812d-0ef7d85b8518", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29622,7 +29622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24b0a4da-5cdc-4070-8493-2a5f98de30a8", + "id": "a6463449-0d1a-4464-bc26-58a909f8d4b0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -29667,7 +29667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "979f06d7-7c55-4527-86c2-0ada9747e1ff", + "id": "9e7f03c4-cde8-479d-b756-7a3a7b8ab4cf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29712,7 +29712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24eb4c8c-8433-4b9e-948e-77e10c108c8a", + "id": "a5e2c47f-b027-4a1e-a57b-656f281d2d61", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29769,7 +29769,7 @@ "description": "Use this API to implement certification functionality.\nThis API provides specific functionality that improves an organization's ability to manage its certification process.\n\nA certification refers to IdentityNow's mechanism for reviewing a user's access to entitlements (sets of permissions) and approving or removing that access.\nThese certifications serve as a way of showing that a user's access has been reviewed and approved.\nMultiple certifications by different reviewers are often required to approve a user's access.\nA set of multiple certifications is called a certification campaign.\n\nFor example, an organization may use a Manager Certification as a way of showing that a user's access has been reviewed and approved by their manager, or if the certification is part of a campaign, that the user's access has been reviewed and approved by multiple managers.\nOnce this certification has been completed, IdentityNow would provision all the access the user needs, nothing more.\n\nThis API enables administrators and reviewers to get useful information about certifications at a high level, such as the reviewers involved, and at a more granular level, such as the permissions affected by changes to entitlements within those certifications.\nIt also provides the useful ability to reassign identities and items within certifications to other reviewers, rather than [reassigning the entire certifications themselves](https://developer.sailpoint.com/idn/api/beta/submit-reassign-certs-async/).\n", "item": [ { - "id": "80c20b01-29f3-4261-9aa6-aa2f24d90c97", + "id": "b676a796-7d86-4cc2-b75c-365840d31107", "name": "Reassign Certifications Asynchronously", "request": { "name": "Reassign Certifications Asynchronously", @@ -29824,7 +29824,7 @@ }, "response": [ { - "id": "188030f3-4262-4760-8c60-f8072f44c3ae", + "id": "2e1d740d-bdaf-471f-adcd-04e7b95a2921", "name": "A certification task object for the reassignment which can be queried for status.", "originalRequest": { "url": { @@ -29877,12 +29877,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"IN_PROGRESS\"\n}", + "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "40c90340-b976-464f-90b5-4b5d566faa72", + "id": "b17b9964-3946-4b14-81d0-9ea321b3f945", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29940,7 +29940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "012ceffc-fd36-4ac2-a23b-e1a71c8e9593", + "id": "034e55b0-a222-4b1d-a439-2e892f6dbcab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29998,7 +29998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6151577a-1f27-44bd-a9af-5ab69ecd1f69", + "id": "0ea86500-68d9-4afb-a2fa-dd8506224011", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30056,7 +30056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4fcfb4c-a2a9-4b64-b978-591bb0b253fb", + "id": "24871316-b63b-49a3-bfc3-5c3c5a38da04", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30114,7 +30114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53d08a08-0d37-4ff0-83a9-ae569ce86e6f", + "id": "f9a1f2da-7e3d-4c5e-9f39-46b4f1254634", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30172,7 +30172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7e5585e-6d32-4f45-bbe3-8e21202ef161", + "id": "63aaf5d9-33c1-4486-914e-09679de5385a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30236,7 +30236,7 @@ } }, { - "id": "8b09838d-2089-4238-bcd6-141f03afbcbb", + "id": "e6ec3714-f8d7-4a54-ba19-3e7d15312fe6", "name": "Certification Task Status", "request": { "name": "Certification Task Status", @@ -30258,7 +30258,7 @@ "variable": [ { "type": "any", - "value": "minim", + "value": "exercitation laboris ex sit", "key": "id", "disabled": true, "description": { @@ -30268,7 +30268,7 @@ }, { "type": "any", - "value": "minim", + "value": "exercitation laboris ex sit", "key": "taskId", "disabled": true, "description": { @@ -30289,7 +30289,7 @@ }, "response": [ { - "id": "e87b39fc-8b53-4226-b836-b581d0acb420", + "id": "a47e8167-10ed-4d76-ad3b-e237d7ccc205", "name": "A certification task object.", "originalRequest": { "url": { @@ -30330,12 +30330,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"IN_PROGRESS\"\n}", + "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9ff34c5d-5d9e-4759-9f05-c42a6dc19b74", + "id": "08201b99-c450-469c-9b32-46f8d00edeeb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30381,7 +30381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7273418f-613e-4a5f-bfe6-5a3512c95945", + "id": "8ccd1740-c83d-40b4-806a-5fe6ab4aba7a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30427,7 +30427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fa1b52b-709a-41cc-b714-d84423c88a5d", + "id": "d172a0c4-7b06-44dc-9694-0085ed0f2c45", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30473,7 +30473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de7c2185-4059-4b2c-bdc2-a38566d0e316", + "id": "addc3c34-e74f-4ee2-9a6c-9fff62af1cdf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30519,7 +30519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67a07e78-50b2-4346-8d98-7e136a552559", + "id": "a69b2725-3044-43c8-92ff-ff7c53de1ca0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30565,7 +30565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecbf7e21-fd26-4c4d-b66f-73122ec162e9", + "id": "79309060-abea-4ac4-a9a9-0f5a42a7a9c1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30617,7 +30617,7 @@ } }, { - "id": "964fe9f9-e2f9-4a83-b00e-f240caf18a05", + "id": "8c0f0b33-2288-43f6-8f45-1d9a6bc27bdc", "name": "Pending Certification Tasks", "request": { "name": "Pending Certification Tasks", @@ -30638,7 +30638,7 @@ "variable": [ { "type": "any", - "value": "minim", + "value": "exercitation laboris ex sit", "key": "id", "disabled": true, "description": { @@ -30659,7 +30659,7 @@ }, "response": [ { - "id": "09a7591d-8564-41bc-90f9-93ea0241b6e2", + "id": "8fc14363-647a-4505-90db-0806f6281f40", "name": "A list of pending (`QUEUED` or `IN_PROGRESS`) certification task objects.", "originalRequest": { "url": { @@ -30699,12 +30699,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"QUEUED\"\n },\n {\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"QUEUED\"\n }\n]", + "body": "[\n {\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\"\n },\n {\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"QUEUED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a530370b-7c67-4896-985c-ce0614f84abe", + "id": "e6999227-ba90-42f3-bb27-730fa8a18415", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30749,7 +30749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc28bd8f-4293-4158-9149-5a98f6311001", + "id": "3156e28d-dee9-4eab-8418-bc187b4f252e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30794,7 +30794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69e8e23b-5844-4743-81f3-090b0cfc6371", + "id": "56fc0fdf-9321-4923-9b47-d2fbde327782", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30839,7 +30839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5781d22-26c3-46b3-96c9-37cd060839fe", + "id": "c1a373e3-5926-4d15-b597-d0d4c7673028", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30884,7 +30884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46691070-6fa5-4b7f-ae64-5dbcea9dbb8b", + "id": "6147b7c7-5df4-4d3f-84f7-f76ac111ba26", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30929,7 +30929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40eb8afd-3878-4768-af49-674cb03d979b", + "id": "460e5bb1-7399-43d4-85dd-89a9e3b680be", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30980,7 +30980,7 @@ } }, { - "id": "fc8735c1-5180-40a9-988e-bfc6ca9b4a95", + "id": "69a57b76-0601-41ea-9ba1-2be246b2821e", "name": "Permissions for Entitlement Certification Item", "request": { "name": "Permissions for Entitlement Certification Item", @@ -31071,7 +31071,7 @@ }, "response": [ { - "id": "e3f36466-09c1-48fd-8f96-760d76c3fac4", + "id": "a6a5f11e-dc52-4aba-ba5e-6026160438e1", "name": "A list of permissions associated with the given itemId", "originalRequest": { "url": { @@ -31155,7 +31155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e05d883-ee05-455a-a11d-df1a28091290", + "id": "18e36121-2ed3-40f2-b24c-7b581853bf5b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31239,7 +31239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62264688-9daa-4eb8-bf50-06a338f71793", + "id": "8677a1e2-59e2-4d9e-b305-94cda5b6c69d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31323,7 +31323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00327bf6-bda9-4ecf-836f-04fbc3352a3e", + "id": "969e47fd-8b49-4eb0-80fb-73b352a939d0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31407,7 +31407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3015de00-2d6e-451a-9faa-379eec9654fc", + "id": "4912c415-7b7a-49f1-b959-ed3c705c9d6a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -31491,7 +31491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e99c40b3-bfcb-44a8-b969-854cdca82095", + "id": "6ae084d3-3377-46e8-a1de-51fc54665f9b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31575,7 +31575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf749a00-fde0-4f00-9e66-42f228454745", + "id": "e30ba09e-e017-4ecc-aa92-de4da03a407e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31665,7 +31665,7 @@ } }, { - "id": "d06df79e-e659-456a-9b2b-bdf93fecf844", + "id": "af338375-94f4-4597-9de9-83fcc3d81d89", "name": "List of Reviewers for certification", "request": { "name": "List of Reviewers for certification", @@ -31753,7 +31753,7 @@ }, "response": [ { - "id": "fe7c4578-f250-443c-b827-5b396ca01eba", + "id": "7f0e6420-b1ad-458a-bdfe-28be8cf901ca", "name": "A list of reviewers", "originalRequest": { "url": { @@ -31844,7 +31844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "921dbe0e-6a08-4f76-a7fb-60a41c1d89d7", + "id": "b8d5bb63-c0e5-46cc-94b5-94820cf3abeb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31935,7 +31935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0736dfaa-76aa-4d18-b3ee-0abe98c006ec", + "id": "07acd798-591c-4802-9966-4aba0ea6d3d1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32026,7 +32026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e75ccf62-e348-486d-9108-5c6f9841adf4", + "id": "166ab369-e1a5-48ae-b123-a001d9b7a5a2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32117,7 +32117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abc5c8e6-26e5-4e78-ba73-caef467acbc3", + "id": "28cd2ed1-4181-4acf-aea6-2c5a4e80505a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -32208,7 +32208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3934ee2-6348-4ff0-9ddf-cd761d2deae7", + "id": "5fefdbf5-164e-479e-86bd-a24ea9299357", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32299,7 +32299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f85f259-742b-493b-abc5-166596d5fe51", + "id": "ea8061de-c933-4f0b-a150-c07f6ec8d549", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32402,7 +32402,7 @@ "description": "", "item": [ { - "id": "4770f6e0-6030-494c-96b1-923b44284f00", + "id": "c1c36c51-9d76-4a16-8b79-7694ccf8b87a", "name": "List Connector Rules", "request": { "name": "List Connector Rules", @@ -32431,7 +32431,7 @@ }, "response": [ { - "id": "13f14dc0-0d49-4a1b-88e4-11c5caaab1ed", + "id": "53fbcfe7-b660-4511-a637-c1d5ad140732", "name": "A list of connector rules", "originalRequest": { "url": { @@ -32474,7 +32474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "075f1e5b-047f-4d75-a5b6-055bf444a3c2", + "id": "c8730beb-5823-4671-9386-99aee6fe68d1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32517,7 +32517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00a3f14a-23a4-4ed9-95d8-6d96c59f07fe", + "id": "b764ab1b-8dd3-4e59-bd3c-88d59d32e9d0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32560,7 +32560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df89a541-d872-47b1-91d0-a0aa06cec17b", + "id": "da51023b-4007-4be7-b9cb-605b36247227", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32603,7 +32603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5431aac9-f31e-4502-90a0-78d837bf244d", + "id": "a5402e97-9445-459c-acf0-5b1123c6971d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32646,7 +32646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf5a0b90-dd43-4ad7-b80a-125adf2f0030", + "id": "37788d96-bafc-43aa-a6fd-27039b90f8cf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32695,7 +32695,7 @@ } }, { - "id": "c807d6de-6234-4555-807c-3bb69ccebb78", + "id": "f5ac280c-29ea-4139-a85d-3d34b97797bc", "name": "Create Connector Rule", "request": { "name": "Create Connector Rule", @@ -32737,7 +32737,7 @@ }, "response": [ { - "id": "ca74eba7-fa01-4f5c-93d9-753a2957306a", + "id": "5d559665-bf95-4543-8bf1-5486e752429f", "name": "The created connector rule", "originalRequest": { "url": { @@ -32793,7 +32793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b89720a5-eb95-4d09-99dd-4cac19e1d6cf", + "id": "1d46021c-bcad-4554-873f-fffd54d862b9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32849,7 +32849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86734116-ef3c-4425-875b-87560f5df787", + "id": "37dc1914-3ff2-4a4d-9a54-c8cd137421b4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32905,7 +32905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e7da395-1971-4025-9499-63caca099012", + "id": "3db52fa9-bb3d-42d1-a731-2e164ef410e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32961,7 +32961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac58dd5a-3d30-4ec8-b749-e54acc968d96", + "id": "bd32631b-131a-4deb-9dbc-56d10c6169c4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33017,7 +33017,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5ab466c-ed7f-4e06-ae05-094271b04e48", + "id": "07c03275-75ed-4eec-8dc6-6795d77974aa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33079,7 +33079,7 @@ } }, { - "id": "fc37ac2a-81c3-403e-9ad8-88e30dd8f37e", + "id": "849b2431-455b-45d3-a3cc-2a2933e47f50", "name": "Connector-Rule by ID", "request": { "name": "Connector-Rule by ID", @@ -33120,7 +33120,7 @@ }, "response": [ { - "id": "3de17ec5-2095-4905-afff-886bb56342cb", + "id": "7dca733e-5e1f-4d21-beb7-fa7d659b3896", "name": "Connector rule with the given ID", "originalRequest": { "url": { @@ -33164,7 +33164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f055607a-d283-4191-91e9-99fb9d401848", + "id": "a05ae2ea-9719-4d30-9ad3-24e9d7d3b7f7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -33208,7 +33208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dd7f5c8-1880-470c-856a-8a5d046224e4", + "id": "adc4274b-0964-4217-ba09-b01b1fa4bc10", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -33252,7 +33252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "783eea27-04ba-4092-bf55-a1c95fb12651", + "id": "a4bd69ca-fca2-451d-9084-79671288a89b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -33296,7 +33296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7212710a-d017-4811-9ec0-845c6141f4da", + "id": "b670f11a-775a-4b7d-8295-c05c6427793a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -33340,7 +33340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0426196f-f741-4409-846c-cbfc2a056db8", + "id": "dc69c2fc-2ffa-4281-bc1a-1676638b96d1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33384,7 +33384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bc6e931-826c-4008-814a-ddebc7ae0a49", + "id": "3225c286-0029-425a-8625-01584061f254", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33434,7 +33434,7 @@ } }, { - "id": "655a427c-f1ee-49d8-9c97-c503a5a663b8", + "id": "629257b1-eabc-4e27-96b7-f01adedb569f", "name": "Update a Connector Rule", "request": { "name": "Update a Connector Rule", @@ -33488,7 +33488,7 @@ }, "response": [ { - "id": "67c2ad75-9dd3-4e7f-8acd-d289e1e95576", + "id": "4bb060ee-006f-4629-8787-36886a663633", "name": "The updated connector rule", "originalRequest": { "url": { @@ -33545,7 +33545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "add665b7-de2e-4ae3-b7a0-aa4e1f4e62c8", + "id": "be7a6a00-cd70-4122-bbda-2031a5d7ed69", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -33602,7 +33602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80d84030-5243-4e31-a2f3-9fab48b495a4", + "id": "f225f457-9cee-4dc6-bc5d-0a1178544a78", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -33659,7 +33659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2d881e5-52b4-4c58-9787-e289d3a52442", + "id": "e771a37d-51e4-4fd9-a664-a89e2784180d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -33716,7 +33716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df025272-a97d-4e92-8b52-1699cd109653", + "id": "b19833dc-91e8-481e-87ce-6e87d22798a7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -33773,7 +33773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f87a291c-5d4f-4367-ae2f-52af30923d5e", + "id": "6f29efec-9703-4616-88f5-d61270012f18", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33830,7 +33830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63d39037-4ce7-4a27-9b82-5c464ba3920c", + "id": "0bd70c1c-a41f-45ab-a751-13a11b64eb0c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33893,7 +33893,7 @@ } }, { - "id": "6356ca31-da2f-4fb8-941b-80e4d156b760", + "id": "9b3b72cf-c532-41e5-bf2c-a444de848f99", "name": "Delete a Connector-Rule", "request": { "name": "Delete a Connector-Rule", @@ -33934,7 +33934,7 @@ }, "response": [ { - "id": "6f3ca26e-ab09-475e-924b-e20b0f804179", + "id": "49834366-f121-434a-bb3b-dcb54f342f82", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -33968,7 +33968,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a41656be-3e31-469c-95dc-56ab91f343fd", + "id": "78b02512-06f7-4ac6-86e0-50939663f3f4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34012,7 +34012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd7a5e55-08d1-4b6d-9d15-7968257999d0", + "id": "99a0a8cd-1a94-4999-8042-a3885c6b6f3f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34056,7 +34056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14ae7606-eadb-4d32-a196-fe34c051067d", + "id": "eb54f53f-305e-4d59-8031-158628daa157", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34100,7 +34100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd27acf0-8ef8-40b3-b2d8-143630680c92", + "id": "c4fad2cb-990e-4adc-b388-34aa06d26d6a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -34144,7 +34144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e6607da-129c-4d89-9f82-c9aef24b8c88", + "id": "79b8018f-72a6-46c8-b144-1c237179652e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -34188,7 +34188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05cdf611-ab18-4a9b-9b75-4e89aea80bb8", + "id": "be801ee0-a9e9-43d5-b2e8-b3e186c3059d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34238,7 +34238,7 @@ } }, { - "id": "7b474f88-6fcf-44e4-86d2-c7fd946b4368", + "id": "1f3f9102-eb0c-4407-b0c2-251587613227", "name": "Validate Connector Rule", "request": { "name": "Validate Connector Rule", @@ -34281,7 +34281,7 @@ }, "response": [ { - "id": "5fdedeec-52ba-4d31-a986-4e455a4427b2", + "id": "ef5455cc-573a-44c1-90b6-72338d960b8c", "name": "The status of the code's eligibility as a connector rule", "originalRequest": { "url": { @@ -34338,7 +34338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f470c44-f929-4f98-8b1d-2e288afbfe14", + "id": "bbecc30f-4ba2-4c38-bfec-594f9a2c1405", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34395,7 +34395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b6f009b-5757-4146-81b4-fcd0042295f4", + "id": "8f5b9d1d-212b-449b-8cdc-baf0fe06ed6a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34452,7 +34452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1d436f0-266e-4d50-91f7-66aaf85e14d7", + "id": "862af210-a5ad-4fdc-a9eb-b5c4c6329c00", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34509,7 +34509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "605644ce-2cbe-42b7-a761-50690e504a1b", + "id": "0647199f-83c3-4d0f-9106-bbd91ee22d2e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -34566,7 +34566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e263f3d7-c248-47cf-9fd0-5000f56f4ab5", + "id": "71066597-b66e-4aad-96cd-e95dde4b95ce", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34635,7 +34635,7 @@ "description": "Use this API to implement connector functionality.\nWith this functionality in place, administrators can view available connectors.\n\nConnectors are the bridges IdentityNow uses to communicate with and aggregate data from sources.\nFor example, if it is necessary to set up a connection between IdentityNow and the Active Directory source, a connector can bridge the two and enable IdentityNow to synchronize data between the systems.\nThis ensures account entitlements and states are correct throughout the organization.\n\nIn IdentityNow, administrators can use the Connections drop-down menu and select Sources to view the available source connectors.\n\nRefer to [IdentityNow Connectors](https://documentation.sailpoint.com/connectors/identitynow/landingpages/help/landingpages/identitynow_connectivity_landing.html) for more information about the connectors available in IdentityNow.\n\nRefer to [SaaS Connectivity](https://developer.sailpoint.com/idn/docs/saas-connectivity) for more information about the SaaS custom connectors that do not need VAs (virtual appliances) to communicate with their sources.\n\nRefer to [Managing Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html) for more information about using connectors in IdentityNow.\n", "item": [ { - "id": "e907e887-27cd-4a48-8bbd-81dff77b9a74", + "id": "32b7912f-f983-4af6-b54b-11ee228c9e68", "name": "Gets connector list", "request": { "name": "Gets connector list", @@ -34710,7 +34710,7 @@ }, "response": [ { - "id": "45985d84-0ba1-4f50-8c62-226c4b9b4622", + "id": "ad585458-f59d-476c-a590-89ab348f38fa", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -34799,7 +34799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa1a616a-f03b-46e5-a36f-fd72b21e7a24", + "id": "ed7cc4a9-5846-4e06-ad48-e75dc889ce46", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34888,7 +34888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ed34bd2-2c9c-4026-b64a-4043b1dc7c35", + "id": "56cc54b6-ea13-485f-ab0e-834f8bc0cda8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34977,7 +34977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "353ed68c-c05d-4380-9a36-c264dcf9a951", + "id": "08f4a801-a960-4ffe-9fad-ff66f37050fd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -35066,7 +35066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c80045f-8392-4374-9ddd-e31c6524cc07", + "id": "db791e07-f627-49a1-9b72-27de653130b4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -35155,7 +35155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73e5aa84-de9b-4045-97a5-fe1d9ccaebc3", + "id": "3a515aca-a37d-4067-9c1b-2473e09d27e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -35244,7 +35244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ff94e69-b7f9-427b-b36d-be30a0b27453", + "id": "b016fbb4-429f-474b-9b91-90588b4d1786", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35345,7 +35345,7 @@ "description": "Use this API to build and manage custom forms.\nWith this functionality in place, administrators can create and view form definitions and form instances.\n\nForms are composed of sections and fields. Sections split the form into logical groups of fields and fields are the data collection points within the form. Configure conditions to modify elements of the form as the responder provides input. Create form inputs to pass information from a calling feature, like a workflow, to your form.\n\nForms can be used within workflows as an action or as a trigger. The Form Action allows you to assign a form as a step in a running workflow, suspending the workflow until the form is submitted or times out, and the workflow resumes. The Form Submitted Trigger initiates a workflow when a form is submitted. The trigger can be configured to initiate on submission of a full form, a form element with any value, or a form element with a particular value.\n\nRefer to [Forms](https://documentation.sailpoint.com/saas/help/forms/index.html) for more information about using forms in IdentityNow.\n", "item": [ { - "id": "8312552b-d707-41aa-b20b-04a7e423b25d", + "id": "72434281-5535-4021-8e56-b5b4c3f83548", "name": "Export form definitions by tenant.", "request": { "name": "Export form definitions by tenant.", @@ -35411,7 +35411,7 @@ }, "response": [ { - "id": "d2f01b2d-b7e5-4ad9-b9a1-a6f5b3e16d49", + "id": "8dcb5545-29ec-4b87-8b25-3b9ffffaa70b", "name": "Returns a list of form definitions by tenant", "originalRequest": { "url": { @@ -35486,12 +35486,12 @@ "value": "application/json" } ], - "body": "{\n \"count\": 1,\n \"results\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"voluptate minim cillum\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"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\": \"culpa labore ullamco cupidatat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore quis est\"\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\": \"do eu id voluptate aliqua\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"velit nulla reprehenderit enim\"\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\": \"minim elit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aute amet ut qui culpa\"\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\": \"in dolor nisi laborum\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"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\": \"aliquip\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"laborum amet adipisicing in\"\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\": \"Excepteur anim eu\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"elit culpa anim\"\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 anim qui consequat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"qui eu tem\"\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": "39ff9ca5-3d2c-4016-a370-b921f0ca591d", + "id": "1bbf94a6-e1db-402e-a149-231134048688", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -35566,12 +35566,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f3ddd077-9f0b-4d5a-a776-5a0dc329f004", + "id": "7c5ff2e8-1ca8-45ba-8378-e5da854cc9b2", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -35646,12 +35646,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e3eafa4d-d44e-4d2f-a754-55b4b4e3271a", + "id": "0b79f2c5-1881-4682-913c-a750b4ae9996", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -35726,12 +35726,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0468e392-2c2a-42d0-a84d-9b4429f672ce", + "id": "93f2ba15-3e50-41da-bf7a-55e1a1761864", "name": "Too many requests", "originalRequest": { "url": { @@ -35811,7 +35811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fb14dce-6e9b-495c-a758-c47dd2744695", + "id": "91e2262f-2025-44eb-aaa9-c67e5087137e", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -35886,7 +35886,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -35897,7 +35897,7 @@ } }, { - "id": "afd2f688-2111-4c00-88b4-19d98d5776bf", + "id": "df1c4287-742f-4c12-ad70-cb4876cdcc31", "name": "Creates a form definition.", "request": { "name": "Creates a form definition.", @@ -35936,7 +35936,7 @@ }, "response": [ { - "id": "f3c9202c-6409-4da7-a89e-164e9ccb4421", + "id": "95bf632d-3658-4db4-ba54-771e194e554d", "name": "Returns a new form definition", "originalRequest": { "url": { @@ -35987,12 +35987,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consectetur repre\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"incididunt et velit Ut qui\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"laborum culpa quis aliqua enim\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"exercitation\"\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\": \"irure fugiat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore aliqua\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"voluptate venia\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"mollit voluptate nisi nostrud\"\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": "598a210c-70cb-471b-8808-ad8c9b018bd3", + "id": "766c9dae-160c-40b7-9721-12158f29c037", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -36043,12 +36043,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f61b8a54-1a6d-4357-b454-c842b06a5a4d", + "id": "7987204c-54f2-4d8b-b5e8-f57462d47d0c", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -36099,12 +36099,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e849707-d04d-4b2e-b748-aee682e0f8ac", + "id": "b6f4be13-ade7-4e8b-9a95-f6e139cb9f97", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -36155,12 +36155,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "798b00a4-5d7c-49d4-a57f-fb74d974ce52", + "id": "b1c37926-e075-4172-b580-69dedc303079", "name": "Too many requests", "originalRequest": { "url": { @@ -36216,7 +36216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47f94eb8-8926-402f-b923-2fd50229b86a", + "id": "9ea58509-df4a-468b-8d06-d90ad1778e33", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -36267,7 +36267,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -36278,7 +36278,7 @@ } }, { - "id": "545da8ee-6ab7-4f1a-b526-552a63ecbdd3", + "id": "9033010f-3355-48a3-a179-0189773cd29f", "name": "Return a form definition.", "request": { "name": "Return a form definition.", @@ -36319,7 +36319,7 @@ }, "response": [ { - "id": "a762a670-dd0e-492d-9819-5636824b766a", + "id": "416831d4-1783-4013-9d4c-17e71f6b6b0c", "name": "Returns a form definition", "originalRequest": { "url": { @@ -36358,12 +36358,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consectetur repre\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"incididunt et velit Ut qui\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"laborum culpa quis aliqua enim\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"exercitation\"\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\": \"irure fugiat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore aliqua\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"voluptate venia\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"mollit voluptate nisi nostrud\"\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": "401944b2-1092-406b-b966-4772db5c13a8", + "id": "b68921f1-cdd3-4d22-9057-3f26970e303b", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -36402,12 +36402,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9512cf32-5912-47d5-a290-1c2d17830f40", + "id": "916af236-bbcc-478b-8962-f85efb4cfe57", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -36446,12 +36446,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7263fffb-994d-4c73-88f6-0dd00a329526", + "id": "b931a41a-65e9-4e51-82fb-54b50c4466ed", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -36490,12 +36490,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a7cdc1e6-3f47-44c8-bd54-5e619a0f0d2c", + "id": "c6c31ccc-bd15-4086-9be5-2f8c93fcc3c0", "name": "An error with the item not found", "originalRequest": { "url": { @@ -36534,12 +36534,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4171d4d6-6dec-4eb7-9dc6-517d2ecc7d51", + "id": "6f03ed5c-c36b-4865-8658-e9ed1bec3c5f", "name": "Too many requests", "originalRequest": { "url": { @@ -36583,7 +36583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0c633c8-d114-4d73-a759-4d8c4bd59b67", + "id": "4be42b32-80ef-420d-abcb-b058b3b68f75", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -36622,7 +36622,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -36633,7 +36633,7 @@ } }, { - "id": "5fa5a48b-51ce-4436-9dce-c158012bd275", + "id": "7b847d24-f759-4d82-b81f-20e3dcae96ce", "name": "Deletes a form definition.", "request": { "name": "Deletes a form definition.", @@ -36674,7 +36674,7 @@ }, "response": [ { - "id": "4dc54ef5-1ba3-413b-b8bb-797ef2f1d692", + "id": "69d8e080-b199-496c-a404-93a12f40dc9a", "name": "Returns an empty body", "originalRequest": { "url": { @@ -36718,7 +36718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61fd89a2-3087-4070-a05d-c9a927d9e36b", + "id": "ec7fdceb-44e5-4b4b-a172-d13e7bbc05a2", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -36757,12 +36757,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dd53a33b-5083-4535-b389-b73448d84118", + "id": "647861ac-51cd-4c31-9fa3-34c96b4bd8e7", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -36801,12 +36801,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a5192b97-9405-49b7-a184-1d476d1da064", + "id": "828b4177-0cae-47bf-b635-168ff8455d2e", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -36845,12 +36845,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c61f75f0-3e29-44b4-9a41-ab01feb3fd51", + "id": "f7aa6b33-9759-4d63-b908-70d05731b9ea", "name": "An error with the item not found", "originalRequest": { "url": { @@ -36889,12 +36889,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "803b8537-f4ca-4c3d-aba8-99f36f9aec6f", + "id": "fef62c8f-bff2-4753-beed-8e5705883aba", "name": "Too many requests", "originalRequest": { "url": { @@ -36938,7 +36938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c85fc53-2c3a-49df-a3d5-ec0998a3fcc0", + "id": "a4628e7e-19d4-4a2a-a8a1-24f1afc342f5", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -36977,7 +36977,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -36988,7 +36988,7 @@ } }, { - "id": "3fcee05b-2089-4329-9e0b-b5bac8864cdd", + "id": "7a47f97f-0c3f-4755-9e4e-0bdb38de2d1f", "name": "Patch a form definition.", "request": { "name": "Patch a form definition.", @@ -37042,7 +37042,7 @@ }, "response": [ { - "id": "f97c0fc5-04b4-41bd-8303-654605d2d6fb", + "id": "b9d11882-e1e3-477b-b93a-1e99619d4047", "name": "Returns the form definition updated", "originalRequest": { "url": { @@ -37094,12 +37094,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consectetur repre\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"incididunt et velit Ut qui\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"laborum culpa quis aliqua enim\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"exercitation\"\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\": \"irure fugiat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore aliqua\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"voluptate venia\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"mollit voluptate nisi nostrud\"\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": "8adf0e62-1fab-405e-8550-b34f3b045db9", + "id": "ed27a394-462b-4f66-9b9d-04e7924199a1", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -37151,12 +37151,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c30e44e-8f0c-4856-a9fe-e0af17ea10ce", + "id": "a2558e4c-e479-4341-9403-dab2524e3796", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -37208,12 +37208,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8ad329aa-495c-4f5e-8aa3-093d0e97c257", + "id": "ae762d67-abbc-4cb8-9a61-2b61fa7bfe79", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -37265,12 +37265,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "41fc21bc-11a0-4036-8c0e-41e47cd3bfe2", + "id": "af36423f-76ea-454f-900d-e94e8451ae80", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -37322,12 +37322,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4c0ace1d-46e3-4130-a6d1-e87ce826124e", + "id": "4c273a1f-1bbf-42d8-abed-8654b872dea0", "name": "Too many requests", "originalRequest": { "url": { @@ -37384,7 +37384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90de71b0-6d5b-4968-a882-a1a954251816", + "id": "0de13e79-331d-4d20-8a96-0c96a4339c43", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -37436,7 +37436,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -37447,7 +37447,7 @@ } }, { - "id": "011f2d3a-72d7-4c04-a6fc-6c5fe1617591", + "id": "22616eaa-bdfc-4c07-b393-728f2a5f5d0d", "name": "Preview form definition data source.", "request": { "name": "Preview form definition data source.", @@ -37527,7 +37527,7 @@ }, "response": [ { - "id": "dd3e698d-0e51-4da2-83bc-543c685ec9be", + "id": "829b0271-38bc-4650-98c8-c52e50b8032e", "name": "Returns a preview of a form definition data source", "originalRequest": { "url": { @@ -37613,7 +37613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eea58740-defe-4a72-9644-1ec537f8fa10", + "id": "276bf45d-5706-4846-b4b0-76d5ac93f206", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -37694,12 +37694,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "832ceafd-9c72-42fe-98ca-d2742b52f130", + "id": "f656e18c-092e-424b-adcc-a1322c43f164", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -37780,12 +37780,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "187fa0b9-a4c4-48c6-8c72-4d17d60c3f1c", + "id": "575894e8-fde3-4008-9156-5a676099ddea", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -37866,12 +37866,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3cd83bed-e824-44a7-bedb-a7e22f3cf682", + "id": "19684e5a-589c-42ef-82c0-df62a47881ea", "name": "An error with the item not found", "originalRequest": { "url": { @@ -37952,12 +37952,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "506ec18b-8603-4dcf-abd3-a0134310488c", + "id": "63d465a9-83d2-44ae-806e-418146d0f0ce", "name": "Too many requests", "originalRequest": { "url": { @@ -38043,7 +38043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08cd4f58-dcbc-43aa-a9db-e46b6db4b5a0", + "id": "89da89e3-8c7b-4d53-8f7a-95f3c009c23a", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -38124,7 +38124,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -38135,7 +38135,7 @@ } }, { - "id": "34e563c2-d3b9-4991-93bd-2f04903da2d8", + "id": "8da3ecd4-31e5-4e92-a0e8-48927d0c10f4", "name": "List form definitions by tenant.", "request": { "name": "List form definitions by tenant.", @@ -38202,7 +38202,7 @@ }, "response": [ { - "id": "741fa650-0115-4b23-9450-8318d5f78da8", + "id": "28a50eff-16c1-4007-8682-4204334bbfe0", "name": "Returns a list of form definition objects by tenant used by SP-Config", "originalRequest": { "url": { @@ -38278,12 +38278,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"00000000-0000-0000-0000-000000000000\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ad dolor ea\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"exercitation 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\": \"amet ad commodo dolore ex\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"velit consectetur\"\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 cupidatat \",\n \"version\": -80518814\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\": \"adipisicing in ut tempor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consectetur adipisicing qui\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sint de\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ut mollit esse exe\"\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 sint\",\n \"version\": 19592108\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\": \"mollit consequat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ipsum in nisi\"\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\": \"irure Ut id\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"veniam nisi ea qui quis\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"sit sint sed tempor\",\n \"version\": -62545892\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\": \"ut\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"tempor in dolor qui\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"irure consequat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"deserunt ex mollit cupidatat\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"mollit consectetur dolore exercitation\",\n \"version\": -88976750\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c831347a-e15c-465c-b25e-4c570e95fb16", + "id": "9b5802af-9c4c-4ff3-bfd5-7df406bc2bca", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -38359,12 +38359,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "636b135d-ea41-404d-a08c-8776ec35d0dd", + "id": "fa789068-e4ce-4500-942c-b3c412218fe8", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -38440,12 +38440,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b3d13717-66ed-46fc-9fba-99d1c4735d7b", + "id": "6fdd1b54-5732-43af-84d7-2431e4609f91", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -38521,12 +38521,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cfd8a86a-c152-471f-ad1a-2cf89df43c4a", + "id": "974cc1b9-85b5-4c96-83c2-e169b13f209c", "name": "Too many requests", "originalRequest": { "url": { @@ -38607,7 +38607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28691106-8f7c-4329-a502-98630cdf05f4", + "id": "84ce3834-8f59-45e1-acff-15bf0a84ec0d", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -38683,7 +38683,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -38694,7 +38694,7 @@ } }, { - "id": "7fcde609-5c0a-4c46-8da0-1ce8837b5d18", + "id": "c2959986-06e6-4c70-8269-82835187ff0b", "name": "Generate JSON Schema dynamically.", "request": { "name": "Generate JSON Schema dynamically.", @@ -38734,7 +38734,7 @@ }, "response": [ { - "id": "f798ddd7-5edf-4fd2-b449-02eabfebdc27", + "id": "7a0aaa2a-b037-4865-bfbe-9e73ebb3c2e2", "name": "Returns a form elements dynamic schema", "originalRequest": { "url": { @@ -38791,7 +38791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d479209-946b-427e-bb47-41119da1d18f", + "id": "11a0ab36-6c0e-4b90-82d0-80931b927e4d", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -38843,12 +38843,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ec58a831-52be-48a5-8e67-5b3285231eda", + "id": "05bbf0d8-4125-4cf8-a099-4f35ea24dcca", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -38900,12 +38900,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3f2f8334-3e32-49c2-a7c9-746097195920", + "id": "81549702-1fe6-482c-9e9a-b7623de9c3ed", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -38957,12 +38957,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "65c9e854-3da0-4995-a341-5b6824cf4d94", + "id": "6c61c88d-3d92-4b21-b6c2-53eaaf29100f", "name": "An error with the item not found", "originalRequest": { "url": { @@ -39014,12 +39014,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7471fe9a-7774-459a-8e80-3f99e9121d7c", + "id": "7762e3ed-3a88-4eb4-8148-d7ebd4e91040", "name": "Too many requests", "originalRequest": { "url": { @@ -39076,7 +39076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79a373e0-0231-4781-93d3-e39683a89259", + "id": "27162d03-41c5-4321-ae09-28b9c6ef54f6", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -39128,7 +39128,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -39139,7 +39139,7 @@ } }, { - "id": "c84961fa-d52b-43f4-93e5-4d1ec2cef29a", + "id": "a159988a-0bf2-447f-b010-94dd3739d947", "name": "Import form definitions from export.", "request": { "name": "Import form definitions from export.", @@ -39179,7 +39179,7 @@ }, "response": [ { - "id": "80fe7a65-0f6d-406a-9e18-ea8eb8470d4f", + "id": "137aa153-e7e6-4798-99ec-27e09231fe79", "name": "Returns statuses of those form definition objects imported", "originalRequest": { "url": { @@ -39231,12 +39231,12 @@ "value": "application/json" } ], - "body": "{\n \"errors\": [\n {\n \"detail\": {\n \"aliquip1\": {}\n },\n \"key\": \"id adipisicing enim\",\n \"text\": \"labore nisi\"\n },\n {\n \"detail\": {\n \"ipsum_66\": {}\n },\n \"key\": \"labore ea\",\n \"text\": \"dolore consequat\"\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\": \"ullamco sint\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ut Lorem 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\": \"non exercitation labore\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"enim magna\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"deserunt ad ullamco labore\",\n \"version\": 19704765\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\": \"ea cupidatat eu proident\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"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\": \"proident sunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"velit qui elit consequat\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"cillum esse ull\",\n \"version\": -18739275\n }\n ],\n \"infos\": [\n {\n \"detail\": {\n \"dolora0\": {}\n },\n \"key\": \"Duis eiusmod\",\n \"text\": \"quis consectetur sunt\"\n },\n {\n \"detail\": {\n \"dod0\": {},\n \"occaecate29\": {},\n \"Excepteur_34\": {},\n \"laboris_2\": {},\n \"incididunt460\": {}\n },\n \"key\": \"magna do\",\n \"text\": \"mollit Excepteur\"\n }\n ],\n \"warnings\": [\n {\n \"detail\": {\n \"Loremad4\": {}\n },\n \"key\": \"deserunt\",\n \"text\": \"est laboris\"\n },\n {\n \"detail\": {\n \"Ut_087\": {}\n },\n \"key\": \"ut in dolor laborum\",\n \"text\": \"et\"\n }\n ]\n}", + "body": "{\n \"errors\": [\n {\n \"detail\": {\n \"tempor0a2\": {}\n },\n \"key\": \"Excepteur occaecat\",\n \"text\": \"consecte\"\n },\n {\n \"detail\": {\n \"cillum_9\": {},\n \"officia58\": {}\n },\n \"key\": \"dolor a\",\n \"text\": \"enim reprehenderit\"\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\": \"exercitation enim non incididunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolor amet\"\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\": \"reprehenderit ea ullamco magna\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Lorem mollit in voluptate ad\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"in Duis quis\",\n \"version\": 73968522\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\": \"pariatur quis nisi ipsum dolor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"fugiat 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\": \"culpa\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nostrud ullamco sit\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"non dolore Duis dolore irure\",\n \"version\": -7162186\n }\n ],\n \"infos\": [\n {\n \"detail\": {\n \"estf\": {}\n },\n \"key\": \"exercitation aliqua\",\n \"text\": \"amet enim dolore commodo\"\n },\n {\n \"detail\": {\n \"sunt0\": {}\n },\n \"key\": \"officia dolore ex\",\n \"text\": \"irure sint\"\n }\n ],\n \"warnings\": [\n {\n \"detail\": {\n \"doloree\": {},\n \"ullamco_f46\": {}\n },\n \"key\": \"irure sed\",\n \"text\": \"aute \"\n },\n {\n \"detail\": {\n \"culpa_12\": {}\n },\n \"key\": \"amet dolore dolor in\",\n \"text\": \"in nulla culpa\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "332270f5-9d17-4f71-a98f-c1dfd4b88a84", + "id": "ea098283-61dc-4057-99c3-ec5a1744275e", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -39288,12 +39288,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f3f321ef-b343-4cb8-810d-3e583117fdb3", + "id": "414ca4ad-a187-4e4c-a98f-e40ad55cefd6", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -39345,12 +39345,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c6b25726-c2e4-4c4f-8407-e32c5eb0be4d", + "id": "7e5c4876-9603-4fee-ae94-f00a8ba79f18", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -39402,12 +39402,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "63814d63-7147-4e78-8c4e-5682e72beeab", + "id": "ff5eb02a-5196-425d-890e-eebb3f4cbecf", "name": "Too many requests", "originalRequest": { "url": { @@ -39464,7 +39464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea9be364-6850-4b73-b152-6fb2515ccebb", + "id": "2fd99948-197d-45cc-9bba-d1be0557d1ec", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -39516,7 +39516,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -39527,7 +39527,7 @@ } }, { - "id": "b6758a58-0824-42c1-a772-f175b38d438a", + "id": "50ef24df-2a88-4914-9391-c74954f3d52d", "name": "Upload new form definition file.", "request": { "name": "Upload new form definition file.", @@ -39578,7 +39578,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut Lorem laborum sit", + "value": "magna pariatur", "type": "text", "contentType": "image/png, image/jpeg" } @@ -39587,7 +39587,7 @@ }, "response": [ { - "id": "ec5a151d-dcc7-4dff-ad92-e88e2a85ebf7", + "id": "ed0780ec-8dda-41b3-b0c4-def32c751782", "name": "Returns a new form definition file", "originalRequest": { "url": { @@ -39630,7 +39630,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut Lorem laborum sit", + "value": "magna pariatur", "type": "text", "contentType": "image/png, image/jpeg" } @@ -39650,7 +39650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf78b3de-9b24-4143-8389-5160e7b72153", + "id": "f69d0492-3d30-4448-b6bf-a05a5b52d98c", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -39693,7 +39693,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut Lorem laborum sit", + "value": "magna pariatur", "type": "text", "contentType": "image/png, image/jpeg" } @@ -39708,12 +39708,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "46147a9f-c469-4495-ae44-b441cf5b8f7f", + "id": "ea949a8e-1e95-48cc-b43f-2cba76df648d", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -39756,7 +39756,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut Lorem laborum sit", + "value": "magna pariatur", "type": "text", "contentType": "image/png, image/jpeg" } @@ -39771,12 +39771,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "be2d0549-79e5-4aba-8296-265d16427eea", + "id": "31918b48-6105-4ab2-8426-d7f807d5a00c", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -39819,7 +39819,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut Lorem laborum sit", + "value": "magna pariatur", "type": "text", "contentType": "image/png, image/jpeg" } @@ -39834,12 +39834,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "30aa0b06-fe0e-4c82-89dc-6c3a758803a1", + "id": "da9f1a6a-cc49-4e88-8b4d-193b4ec77123", "name": "An error with the item not found", "originalRequest": { "url": { @@ -39882,7 +39882,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut Lorem laborum sit", + "value": "magna pariatur", "type": "text", "contentType": "image/png, image/jpeg" } @@ -39897,12 +39897,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f8ccb2ac-0c60-4579-916c-66da5919b618", + "id": "50d257e5-b6d5-44f0-a737-c5d87cad979e", "name": "An error with payload size too large", "originalRequest": { "url": { @@ -39945,7 +39945,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut Lorem laborum sit", + "value": "magna pariatur", "type": "text", "contentType": "image/png, image/jpeg" } @@ -39960,12 +39960,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1143ec4-7aa4-439b-98ec-2b5535cdc2f9", + "id": "f5d655e7-9c7b-45df-a069-c1ffabe1d46c", "name": "An error with unsupported media type", "originalRequest": { "url": { @@ -40008,7 +40008,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut Lorem laborum sit", + "value": "magna pariatur", "type": "text", "contentType": "image/png, image/jpeg" } @@ -40023,12 +40023,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fc70bacd-87f3-4e23-92b6-894b705b05e1", + "id": "09803f2e-5a27-4a6d-a60b-b778b8a13aef", "name": "Too many requests", "originalRequest": { "url": { @@ -40071,7 +40071,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut Lorem laborum sit", + "value": "magna pariatur", "type": "text", "contentType": "image/png, image/jpeg" } @@ -40091,7 +40091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84421a85-b386-4655-8966-4444b92ebaac", + "id": "5482e89d-4fe3-4b4e-9b0e-5422cc71c2f5", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -40134,7 +40134,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut Lorem laborum sit", + "value": "magna pariatur", "type": "text", "contentType": "image/png, image/jpeg" } @@ -40149,12 +40149,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ab8831d8-2f14-4498-8849-d4aade283ec0", + "id": "0042653d-57d7-4afe-8df5-0e0aae4bc07e", "name": "An external service is not available", "originalRequest": { "url": { @@ -40197,7 +40197,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut Lorem laborum sit", + "value": "magna pariatur", "type": "text", "contentType": "image/png, image/jpeg" } @@ -40212,7 +40212,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -40223,7 +40223,7 @@ } }, { - "id": "f624bc87-ad66-4512-88b9-3c1c690bba67", + "id": "8bb3222a-c572-460e-9a70-795812862694", "name": "Download definition file by fileId.", "request": { "name": "Download definition file by fileId.", @@ -40273,7 +40273,7 @@ }, "response": [ { - "id": "a42812d5-09d7-4df8-b60d-f8d9571c0b51", + "id": "bf96c1e5-6dd8-4d2a-a068-2e62ac8fbc0f", "name": "Returns a file that is referred to by fileID and associated with the formDefinitionID", "originalRequest": { "url": { @@ -40314,12 +40314,12 @@ "value": "application/json" } ], - "body": "minim", + "body": "exercitation laboris ex sit", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3cf9931b-9aba-4234-85e2-1c81407d3791", + "id": "59a925c0-2a35-4b77-9aba-62ef97dcbae3", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -40360,12 +40360,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c6b6f962-e022-4232-8b26-61c43d635af1", + "id": "cea169aa-ddd5-475f-915c-9d846eb00f82", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -40406,12 +40406,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6d96db98-fcbb-4d5d-b326-7169d10ee5e6", + "id": "e0ffb12b-60a9-45aa-895f-861a2a6fc365", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -40452,12 +40452,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8bd634c3-4ff7-4d64-ac20-69f0e7a7f5b3", + "id": "aa12ff0f-dada-4b67-8980-5f529766370b", "name": "An error with the item not found", "originalRequest": { "url": { @@ -40498,12 +40498,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1d5fc1b0-09bd-4940-b64b-c422af381a2a", + "id": "52246ad4-83c6-4cf2-9187-4bfc52728fbb", "name": "Too many requests", "originalRequest": { "url": { @@ -40549,7 +40549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4ebaf52-80fb-45e9-8e2d-dfa00bb26268", + "id": "543bce73-5bbe-4adc-a311-dde747f4762a", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -40590,12 +40590,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f8900da3-4dd4-4fa5-b61d-7c09e2c960ec", + "id": "7502a4c3-967f-4353-b5f6-b0ab6e79dd28", "name": "An external service is not available", "originalRequest": { "url": { @@ -40636,7 +40636,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -40647,7 +40647,7 @@ } }, { - "id": "48802d84-99f2-47af-bdd8-d9768f53ed13", + "id": "784a9af8-b35e-464a-b5d9-c76bfadf3db9", "name": "List form instances by tenant.", "request": { "name": "List form instances by tenant.", @@ -40676,7 +40676,7 @@ }, "response": [ { - "id": "e71f1606-e899-4a0c-8fb2-083651ed4317", + "id": "b5696b19-18ac-4e80-b695-5064028e90f4", "name": "Returns a list of form instances by tenant", "originalRequest": { "url": { @@ -40714,12 +40714,12 @@ "value": "application/json" } ], - "body": "{\n \"count\": 1,\n \"results\": [\n {\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"qui enim reprehenderit eu\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"elit amet 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\": \"est laborum aliqua Lorem\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolor laboris\"\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\": \"sit et\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolor qui 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\": \"in officia exercitation sit sunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consectetur ut Ut\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"00000000-0000-0000-0000-000000000000\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": {}\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n }\n ]\n}", + "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\": \"labo\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"officia ipsum ea dolor\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"laboris voluptate sit vel\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"laboris deserunt minim\"\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\": \"dolore anim\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"veniam non 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\": \"adipis\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consequat fugiat esse Excepteur\"\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": "cfb9d0eb-788e-41b6-88c8-5bd5a28d6d5b", + "id": "d72c9c66-3691-496d-915c-231f968e9b7f", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -40757,12 +40757,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "533478a2-8203-47a5-ada5-4ed0d37b9268", + "id": "4b2369b7-be06-47c9-9078-11293417d3b7", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -40800,12 +40800,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0160de95-e8bd-4840-9928-a93ae9beee83", + "id": "e1ed178a-30c9-4f86-9d35-dc14cd984f8b", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -40843,12 +40843,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aa88c67a-b471-4bde-b0bb-a0aab4dc268f", + "id": "3a7bfa1a-406b-4447-ae63-b157f334e1ce", "name": "Too many requests", "originalRequest": { "url": { @@ -40891,7 +40891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca97442c-dd2c-4b3e-8376-34d3b11428e1", + "id": "d5102d0a-811a-4e0a-87f1-6ea57426b2bb", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -40929,7 +40929,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -40940,7 +40940,7 @@ } }, { - "id": "83cb0b71-c96b-472d-92db-3259f121ec38", + "id": "dbb6b861-68b1-4b1d-86bd-cf94aa9f4f85", "name": "Creates a form instance.", "request": { "name": "Creates a form instance.", @@ -40979,7 +40979,7 @@ }, "response": [ { - "id": "eccfd268-6eca-49ef-9cb4-11a6939e968c", + "id": "42e008a0-6aa1-4dd5-a96b-2e0e14ab9895", "name": "Returns a new form instance", "originalRequest": { "url": { @@ -41030,12 +41030,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"elit dolore\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolor irure voluptate reprehenderit\"\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\": \"aute anim elit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore fugiat minim\"\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\": \"cupidatat Duis ad\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sed veniam cillum\"\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\": \"dolore nostrud proident\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"cillum elit\"\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": "0c1acf5b-d37a-424b-a159-242731c5bb66", + "id": "832f31f2-5cbe-4ff7-80a1-51658902a35f", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -41086,12 +41086,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "738c90af-99c7-478a-ad6d-8edaff1b4bfa", + "id": "22aa4eb2-9250-46b7-a8de-8c46d1ab0e9f", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -41142,12 +41142,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "54ba5965-9c2e-4502-93e7-905b6743d3f3", + "id": "8642a177-ac2c-4699-bfcc-edb9ed9c10cc", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -41198,12 +41198,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "99dc401f-1c14-4a45-aa36-1d6225e292d7", + "id": "6799cd5e-cd13-4e87-b0e2-918c429c7850", "name": "Too many requests", "originalRequest": { "url": { @@ -41259,7 +41259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7c3e015-15cc-46ce-874f-56362e2eb532", + "id": "114c8ba1-f7c9-40b9-bd0a-75639c0dfe5f", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -41310,7 +41310,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -41321,7 +41321,7 @@ } }, { - "id": "5a53f9b5-3fc4-4a96-94db-d081f4746704", + "id": "33c2a0cd-ea8c-4671-9769-9654e697de26", "name": "Returns a form instance.", "request": { "name": "Returns a form instance.", @@ -41362,7 +41362,7 @@ }, "response": [ { - "id": "14193101-84c8-4871-95fb-694051757495", + "id": "1bd12e17-3513-4d39-8fdc-b44a3cc9b52e", "name": "Returns a form instance by its key", "originalRequest": { "url": { @@ -41401,12 +41401,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"elit dolore\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolor irure voluptate reprehenderit\"\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\": \"aute anim elit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore fugiat minim\"\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\": \"cupidatat Duis ad\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sed veniam cillum\"\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\": \"dolore nostrud proident\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"cillum elit\"\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": "db0255f8-961c-4716-9265-e592a6b67db4", + "id": "9dc5834e-908f-48af-8456-6374eeb679ac", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -41445,12 +41445,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "adb0a298-4db3-4890-b788-7bdd381b4502", + "id": "799f45f9-29b4-4af8-8c1b-6b7adb50c847", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -41489,12 +41489,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0edba799-1d43-4b94-bd63-63b29fd355a2", + "id": "a8741ae8-db44-44d1-a629-89c45795bf40", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -41533,12 +41533,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8a443187-e5da-45be-81ce-dee900e9bb16", + "id": "5c326aae-30fb-4dd0-a2d3-fc7ce9bae4fd", "name": "An error with the item not found", "originalRequest": { "url": { @@ -41577,12 +41577,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ad08277a-cb7e-43b3-bb4c-33463eed288e", + "id": "640a6e93-481e-4069-a091-9400dbdc283e", "name": "Too many requests", "originalRequest": { "url": { @@ -41626,7 +41626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cc7cced-6ba9-45b6-8bfd-5125dc47bf38", + "id": "ee2093c5-8ac0-4fab-bb85-b8ec4e894049", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -41665,7 +41665,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -41676,7 +41676,7 @@ } }, { - "id": "3adc5bc2-e07f-42ad-bc78-195e23c510e5", + "id": "a2e92677-6042-4f13-9d08-24f52640ec6d", "name": "Patch a form instance.", "request": { "name": "Patch a form instance.", @@ -41730,7 +41730,7 @@ }, "response": [ { - "id": "4cfe5c94-b521-4cd2-868e-983e633f28ae", + "id": "839bf925-92a1-48e6-a32c-ea11fc61e4c3", "name": "Returns the form instance updated", "originalRequest": { "url": { @@ -41782,12 +41782,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"elit dolore\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolor irure voluptate reprehenderit\"\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\": \"aute anim elit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore fugiat minim\"\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\": \"cupidatat Duis ad\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sed veniam cillum\"\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\": \"dolore nostrud proident\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"cillum elit\"\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": "7db110e1-6ffd-4645-89c3-421cf35e93b6", + "id": "a4a19c38-be52-4329-97e9-829cb8d1791e", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -41839,12 +41839,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "99c6edb9-b7e6-4729-b94e-530d7fde4934", + "id": "f951927a-2492-47e8-8e62-6cb19636499d", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -41896,12 +41896,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d4bf9b17-074d-45e9-b124-ab25d1742565", + "id": "51b938e7-028e-4aa6-839b-33d82f6a522e", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -41953,12 +41953,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ceff7996-f457-456d-939d-359dcd14f929", + "id": "17fecdd2-1db0-4c8d-8e6a-465c14fbc26f", "name": "An error with the item not found", "originalRequest": { "url": { @@ -42010,12 +42010,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a264cedf-ec1f-4798-8869-87f6cdd09bc3", + "id": "bf085387-0474-4daa-8346-9ac8e5d8e085", "name": "An error with the request property conflicts with stored", "originalRequest": { "url": { @@ -42067,12 +42067,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "44ba178e-8dfe-4350-ae05-d828ac7cdb1f", + "id": "71fcfe9c-92e2-4b2f-bbfb-911d4040a6ed", "name": "Too many requests", "originalRequest": { "url": { @@ -42129,7 +42129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc657f10-94a6-4050-807c-ed3afbd00ebd", + "id": "34ac675c-d09e-4289-bfde-136c6bfbde0e", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -42181,7 +42181,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -42192,7 +42192,7 @@ } }, { - "id": "08bfec5b-15f6-4f8d-95d2-e3253471c3cc", + "id": "c4934912-3e08-4dfe-8e1a-73f05a7e282f", "name": "Retrieves dynamic data by element.", "request": { "name": "Retrieves dynamic data by element.", @@ -42264,7 +42264,7 @@ }, "response": [ { - "id": "abe91ffa-3dce-4708-b666-1f159e686320", + "id": "53c18227-e557-4d0e-b13e-ab121cab121d", "name": "Retrieves dynamic data to aid in correctly completing a valid form by form element ID from data source configuration", "originalRequest": { "url": { @@ -42329,7 +42329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf1ee6d6-1509-46cd-997f-59e26543017c", + "id": "338cff0d-f9a8-4a99-a043-608f4b2b28e2", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -42389,12 +42389,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7b5aa393-27cd-46c7-9de4-0f570c510a2a", + "id": "def3f699-429c-401a-9cbc-31c3a090d958", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -42454,12 +42454,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c22daeb5-ca2e-4fdd-b291-66ee70a2bc04", + "id": "083aca4d-03a6-4634-81d2-c92b4762091d", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -42519,12 +42519,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4dd1e5f6-c900-424b-a446-e8a5647041c6", + "id": "af0421f0-bba4-41a4-a2b4-aa6fd2a43864", "name": "An error with the item not found", "originalRequest": { "url": { @@ -42584,12 +42584,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "848d80de-6094-4442-962b-59c783fe2535", + "id": "e0177823-5ef0-4c7b-b2c8-22c72390b95e", "name": "Too many requests", "originalRequest": { "url": { @@ -42654,7 +42654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4abd861-bfd5-4cd0-b361-d45264a75889", + "id": "44c05e52-87ea-4131-b1d4-aa079a7ed31d", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -42714,7 +42714,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -42725,7 +42725,7 @@ } }, { - "id": "f1a8797a-36c3-4646-abfe-758a4d5c6596", + "id": "9c5a16d5-a902-45e8-88c0-de4ba6c6e102", "name": "Download instance file by fileId.", "request": { "name": "Download instance file by fileId.", @@ -42775,7 +42775,7 @@ }, "response": [ { - "id": "a9115f77-c544-424c-b4eb-8b91fa1181eb", + "id": "494ee487-e7ba-4fe4-b705-57b306f1200b", "name": "Returns a file that is referred to by fileID and associated with the formInstanceID", "originalRequest": { "url": { @@ -42816,12 +42816,12 @@ "value": "application/json" } ], - "body": "minim", + "body": "exercitation laboris ex sit", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "539ac68e-1e66-495e-82be-5d7efe996151", + "id": "d9ffb1b1-7a85-4743-ac30-443aa3dcf4c0", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -42862,12 +42862,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "897b60c2-6b0e-4b5b-88ec-b21e7f0839ad", + "id": "3fab604e-82cc-4093-a800-03575aeafb45", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -42908,12 +42908,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5d432b7b-216f-4646-be31-992a88e26b7c", + "id": "a724d480-4eef-44b8-bf93-ee7d09586fa7", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -42954,12 +42954,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "859c49cb-f0b5-4a45-ab2e-045b4cd278cf", + "id": "b6e1752c-2ae4-432a-849a-2bc038d9167d", "name": "An error with the item not found", "originalRequest": { "url": { @@ -43000,12 +43000,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "394cb718-e23d-47f0-9d0d-1d7f3a5cbca0", + "id": "190138e4-3ce8-4e6c-87f5-668d189d9dfc", "name": "Too many requests", "originalRequest": { "url": { @@ -43051,7 +43051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8b5d2ce-8127-4435-b391-04a1d9d4a62d", + "id": "d8eb1ed0-6e1d-4dbe-b723-720b71e3084d", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -43092,12 +43092,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4a355a5a-4ee1-47b5-9ef9-cce3d4d03d5c", + "id": "7a6d1dea-04d3-467f-a0fd-3b48c0b16434", "name": "An external service is not available", "originalRequest": { "url": { @@ -43138,7 +43138,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -43149,7 +43149,7 @@ } }, { - "id": "74b3a19d-fa35-43a6-9a81-2ae561e7d4d3", + "id": "985b6be0-7b7a-4bb3-8fad-4be08d83b9a0", "name": "List predefined select options.", "request": { "name": "List predefined select options.", @@ -43179,7 +43179,7 @@ }, "response": [ { - "id": "0bfcac24-3262-4c0d-886b-b67d39e92e4a", + "id": "2fa11766-f0b3-4444-88d1-7a0bd3efc971", "name": "Returns a list of available predefined select options", "originalRequest": { "url": { @@ -43223,7 +43223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4ed9750-5ce0-4394-b8cf-54768760353f", + "id": "5d9e2d38-736a-4ec3-8bae-15a978186594", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -43262,12 +43262,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5f05c535-ba9a-404e-a5e9-9ab3adf23394", + "id": "22a42996-ec4e-4d5b-a761-10d76687b485", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -43306,12 +43306,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "56042601-edbd-49ae-bf8b-2eeb3ace07ce", + "id": "ed589e45-1a2a-42aa-ba8a-43125a9a7e99", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -43350,12 +43350,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "59430c9b-d9c4-4f92-bf4b-e7792398c83d", + "id": "37079e82-610a-43f5-8e94-9c0447f5c981", "name": "Too many requests", "originalRequest": { "url": { @@ -43399,7 +43399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "167b7f58-079c-4a51-b8b7-2e92c1573eb8", + "id": "7c118ba9-539b-4b9b-8827-ed990f626613", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -43438,7 +43438,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"eu exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42243873,\n \"trackingId\": \"in mollit cupidatat aliqua dolore\"\n}", + "body": "{\n \"detailCode\": \"labore do ut anim pariatur\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -90088969,\n \"trackingId\": \"anim fugiat am\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -43455,7 +43455,7 @@ "description": "Use this API to implement custom password instruction functionality.\nWith this functionality in place, administrators can create custom password instructions to help users reset their passwords, change them, unlock their accounts, or recover their usernames.\nThis allows administrators to emphasize password policies or provide organization-specific instructions.\n\nAdministrators must first use [Update Password Org Config](https://developer.sailpoint.com/idn/api/beta/put-password-org-config) to set `customInstructionsEnabled` to `true`.\n\nOnce they have enabled custom instructions, they can use [Create Custom Password Instructions](https://developer.sailpoint.com/idn/api/beta/create-custom-password-instructions) to create custom page content for the specific pageId they select.\n\nFor example, an administrator can use the pageId forget-username:user-email to set the custom text for the case when users forget their usernames and must enter their emails.\n\nRefer to [Creating Custom Instruction Text](https://documentation.sailpoint.com/saas/help/pwd/pwd_reset.html#creating-custom-instruction-text) for more information about creating custom password instructions.\n", "item": [ { - "id": "d15552c0-d258-487e-baef-e0c400e180b1", + "id": "084b56f7-a07f-4e9f-b1a1-b5a373a5644b", "name": "Create Custom Password Instructions", "request": { "name": "Create Custom Password Instructions", @@ -43497,7 +43497,7 @@ }, "response": [ { - "id": "8fe2213b-27ab-432e-ba7b-6a56c74a4e01", + "id": "69bb5f21-ed5f-4df6-b2f2-3a340fb5b89d", "name": "Reference to the custom password instructions.", "originalRequest": { "url": { @@ -43553,7 +43553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba5b3380-0a64-43af-a300-7f9d0594f882", + "id": "b5aa7a82-9875-4311-acdd-7d82c83586ed", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43609,7 +43609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1ce71fc-f87b-4769-a550-4f31a82fb559", + "id": "2b554fe2-ff02-4874-8c89-6822755782bc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43665,7 +43665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c872fb85-74b0-4c11-9d12-1261a4432ddb", + "id": "d3afff71-4e7f-4f4a-ae28-89ed18b2796d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43727,7 +43727,7 @@ } }, { - "id": "af7809a1-cb8f-4c04-9999-3452a6cb4d66", + "id": "be6cb9e6-5c27-4cdb-8c0d-8cce8e92bfb6", "name": "Get Custom Password Instructions by Page ID", "request": { "name": "Get Custom Password Instructions by Page ID", @@ -43751,7 +43751,7 @@ "type": "text/plain" }, "key": "locale", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [ @@ -43778,7 +43778,7 @@ }, "response": [ { - "id": "49f268e4-9e69-42c7-9426-de88d41407b1", + "id": "ab5be6d8-f7fd-4252-b15a-a6922e3c28fb", "name": "Reference to the custom password instructions.", "originalRequest": { "url": { @@ -43797,7 +43797,7 @@ "type": "text/plain" }, "key": "locale", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -43832,7 +43832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae2c41d7-fb94-4da5-8343-ae3343abdf3a", + "id": "7612918e-5e39-470d-ab8c-89a5b125f4a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43851,7 +43851,7 @@ "type": "text/plain" }, "key": "locale", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -43886,7 +43886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8299abcd-694f-4da1-b9da-a9f70af59723", + "id": "8e928b2a-947f-4325-963e-10bf382c5ae4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43905,7 +43905,7 @@ "type": "text/plain" }, "key": "locale", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -43940,7 +43940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edc6e5a5-e914-40b0-821a-89b2322276b9", + "id": "e7b97e48-7f96-42b1-8013-0107a9d45136", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -43959,7 +43959,7 @@ "type": "text/plain" }, "key": "locale", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -43994,7 +43994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68a44fa3-dfd2-46f5-a001-8e90b2032536", + "id": "cc69908d-da8c-4c77-b8f7-a16712a1cff6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44013,7 +44013,7 @@ "type": "text/plain" }, "key": "locale", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -44054,7 +44054,7 @@ } }, { - "id": "82c0ca3f-b121-4ee1-aeca-15215410eb34", + "id": "5e6b5c62-aeab-4fa7-9ed4-98efb2bc6f2b", "name": "Delete Custom Password Instructions by page ID", "request": { "name": "Delete Custom Password Instructions by page ID", @@ -44078,7 +44078,7 @@ "type": "text/plain" }, "key": "locale", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [ @@ -44105,7 +44105,7 @@ }, "response": [ { - "id": "212e6f6a-d703-467c-a29c-3dfa73053898", + "id": "dcf4462b-7437-4a95-af5d-6f617024a3a8", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -44124,7 +44124,7 @@ "type": "text/plain" }, "key": "locale", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -44149,7 +44149,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f3ee09a7-29c8-4380-98f6-906931057e1c", + "id": "0eaeef6d-5feb-45f0-a338-b56386ef6b83", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44168,7 +44168,7 @@ "type": "text/plain" }, "key": "locale", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -44203,7 +44203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05b6d13a-bc87-4864-a5ee-1db9c4556d5b", + "id": "f79ffe76-1600-4449-8359-14b292b31ebc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44222,7 +44222,7 @@ "type": "text/plain" }, "key": "locale", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -44257,7 +44257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fe8c5b5-8351-4ae5-b147-8d3001d3b0b0", + "id": "67bc6494-fd11-4e3f-bd22-dc0096351fa9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44276,7 +44276,7 @@ "type": "text/plain" }, "key": "locale", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -44311,7 +44311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5baa8331-6c87-4077-b9e4-f1bcf1bd87ef", + "id": "75694d95-0fd5-44b6-831a-5f7c23fa3592", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44330,7 +44330,7 @@ "type": "text/plain" }, "key": "locale", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -44377,7 +44377,7 @@ "description": "Use this API to implement and customize entitlement functionality.\nWith this functionality in place, administrators can view entitlements and configure them for use throughout IdentityNow in certifications, access profiles, and roles.\nAdministrators in IdentityNow can then grant users access to the entitlements or configure them so users themselves can request access to the entitlements whenever they need them.\nWith a good approval process, this entitlement functionality allows users to gain the specific access they need on sources quickly and securely.\n\nEntitlements represent access rights on sources.\nEntitlements are the most granular form of access in IdentityNow.\nEntitlements are often grouped into access profiles, and access profiles themselves are often grouped into roles, the broadest form of access in IdentityNow.\n\nFor example, an Active Directory source in IdentityNow can have multiple entitlements: the first, 'Employees,' may represent the access all employees have at the organization, and a second, 'Developers,' may represent the access all developers have at the organization.\n\nAn administrator can then create a broader set of access in the form of an access profile, 'AD Developers' grouping the 'Employees' entitlement with the 'Developers' entitlement.\n\nAn administrator can then create an even broader set of access in the form of a role grouping the 'AD Developers' access profile with another profile, 'GitHub Developers,' grouping entitlements for the GitHub source.\n\nWhen users only need Active Directory employee access, they can request access to the 'Employees' entitlement.\n\nWhen users need both Active Directory employee and developer access, they can request access to the 'AD Developers' access profile.\n\nWhen users need both the 'AD Developers' access profile and the 'GitHub Developers' access profile, they can request access to the role grouping both.\n\nAdministrators often use roles and access profiles within those roles to manage access so that users can gain access more quickly, but the hierarchy of access all starts with entitlements.\n\nAnywhere entitlements appear, you can select them to find more information about the following:\n\n- Cloud Access Details: These provide details about the cloud access entitlements on cloud-enabled sources.\n\n- Permissions: Permissions represent individual units of read/write/admin access to a system.\n\n- Relationships: These list each entitlement's parent and child relationships.\n\n- Type: This is the entitlement's type. Some sources support multiple types, each with a different attribute schema.\n\nIdentityNow uses entitlements in many features, including the following:\n\n- Certifications: Entitlements can be revoked from an identity that no longer needs them.\n\n- Roles: Roles can group access profiles which themselves group entitlements. You can grant and revoke access on a broad level with roles. Role membership criteria can grant roles to identities based on whether they have certain entitlements or attributes.\n\n- Access Profiles: Access profiles group entitlements.\nThey are the most important units of access in IdentityNow.\nIdentityNow uses them in provisioning, certifications, and access requests, and administrators can configure them to grant very broad or very granular access.\n\nYou cannot delete entitlements directly from IdentityNow.\nEntitlements are deleted based on their inclusion in aggregations.\n\nRefer to [Deleting Entitlements](https://documentation.sailpoint.com/saas/help/access/entitlements.html#deleting-entitlements) more information about deleting entitlements.\n\nRefer to [Entitlements](https://documentation.sailpoint.com/saas/help/access/entitlements.html) for more information about entitlements.\n", "item": [ { - "id": "bb09ea94-fa08-4b46-80c2-777d60384ff0", + "id": "7019fe7a-8589-4620-b0da-52464b74e5f9", "name": "Gets a list of entitlements.", "request": { "name": "Gets a list of entitlements.", @@ -44488,7 +44488,7 @@ }, "response": [ { - "id": "0c666bff-eaaa-4a5b-8d04-fbf0adbdfddf", + "id": "31d086b9-7dbd-4eef-aa91-dbe983955e98", "name": "List of entitlements", "originalRequest": { "url": { @@ -44613,7 +44613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2402f067-4c43-4a42-8764-cd0dc237f18f", + "id": "79e24501-3323-4014-9b18-da7ea333cd4b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44738,7 +44738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f4afeac-17af-4b34-8204-84929d0a892d", + "id": "348a8d95-391c-4893-9ec0-ed34eefd396c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44863,7 +44863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f0c6ccd-3c2e-4d51-b058-607cf9c1a1d6", + "id": "8f6add7f-0035-4157-b2ac-177d977c602d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44988,7 +44988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bf8cf54-3138-4355-b9f4-668458e5829d", + "id": "247a6035-3fa6-4b01-a8c0-9945f944e96a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45113,7 +45113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c2bd14f-3783-455a-9b1c-2d78179dcea9", + "id": "b85a1eca-d0f3-4d81-8679-ebc8a39cdefd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45244,7 +45244,7 @@ } }, { - "id": "7038f169-279a-4572-ba89-e09072a210b8", + "id": "4511ed10-156a-405c-b436-64fd879e0a34", "name": "Get an entitlement", "request": { "name": "Get an entitlement", @@ -45285,7 +45285,7 @@ }, "response": [ { - "id": "9857bbc5-9580-4bbf-b055-7e04f4f30997", + "id": "70b2bbbb-5687-441a-823b-b3cac0c41a7e", "name": "An entitlement", "originalRequest": { "url": { @@ -45329,7 +45329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30b7bbe5-6fab-4687-bf27-f812024a8e52", + "id": "f8a6c47c-d8cb-48cc-8490-6eced632e763", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45373,7 +45373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "657b3f91-0719-4d0a-a07c-3db95cb8cbba", + "id": "5acd5315-5604-4b22-bb61-437e66079fb4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45417,7 +45417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc903869-6d72-4a3e-99fd-8e2edf998918", + "id": "2f340cf7-c1e4-472e-be01-116da2a818f7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45461,7 +45461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06485194-59a3-4ddc-a5e4-e9b242ebe316", + "id": "aafe9e7b-aa8a-4695-9457-c7e36ef884a4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -45505,7 +45505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0f05927-bfa8-401e-9138-cc2a819c889a", + "id": "04eacc3a-4e0e-4ffd-9e62-6d9b7b308d77", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45549,7 +45549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61474b40-154d-466e-9038-7ceae9da7fc5", + "id": "54395b64-f9e1-4877-8370-242773881c3d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45599,7 +45599,7 @@ } }, { - "id": "6c35fdd2-965c-45c7-82cb-d3185d529f9c", + "id": "4ea33987-7651-4c30-aa07-cafe5bb5a4e5", "name": "Patch an entitlement", "request": { "name": "Patch an entitlement", @@ -45653,7 +45653,7 @@ }, "response": [ { - "id": "1114233f-f625-48b9-8453-e26ef03b8166", + "id": "a9c21246-4a22-4667-bb6e-3ba9e360fb26", "name": "Make an entitlement requestable and privileged in one call", "originalRequest": { "url": { @@ -45710,7 +45710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2c7ac6a-4426-46d6-99cd-9dd534e7aa17", + "id": "87f4d471-c7c5-4802-8d1b-3939bc7870a3", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -45767,7 +45767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d310369-e477-4668-81e5-780c24fc90c0", + "id": "a65b64ad-a1d5-411c-b44c-da92b47c0ffa", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -45824,7 +45824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dd2d45a-772b-40f2-9325-7f2e1901fee9", + "id": "56339ae0-44b3-49b3-93b5-9513fa4b18e8", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -45881,7 +45881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b40aaca-752e-4924-a95c-813e61cb273c", + "id": "afa1c94f-f8c7-4cf2-bf09-5444fc377ff9", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -45938,7 +45938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55530bd7-a39c-4ebf-983e-c9be14fc7fbe", + "id": "3e24559b-21f0-4939-afda-5270cf1df23c", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -45995,7 +45995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7abba929-c8eb-409f-9936-1a1a709a7f87", + "id": "4f1d0716-93dc-4883-a149-f789853d8243", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -46052,7 +46052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18c4cff6-cca6-492c-b5cc-39312162e590", + "id": "7a99cbf3-ebfc-4f51-9ecd-2d55a9fbafc9", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -46109,7 +46109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "756ac196-93a3-4096-a2ee-9bb5b9694541", + "id": "4aa60be8-c2cc-45c3-bd7f-0cce686ec5e8", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -46166,7 +46166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ab1c19e-ca7b-4e0c-89a1-d880d8565cd3", + "id": "b9e03eb9-8935-4fdc-857a-dce2364a612a", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -46223,7 +46223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6327ffd5-8241-4b5a-adb9-14200cc52ae4", + "id": "99fd7026-b738-482b-8707-33352b7e3d6a", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -46280,7 +46280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28b7d415-6240-46f9-bd54-07d5bf79c340", + "id": "aad479b4-24bc-4569-bbcc-5796531a54ea", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -46337,7 +46337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c940bbe-e56d-43af-87e1-45fe21f5856f", + "id": "f0e23f45-7e4c-4060-b30f-5aaad0632ba9", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -46394,7 +46394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bb6a2a4-0bd5-4f5c-a822-735c2d56c3a8", + "id": "6350fb63-dc44-4295-aa6b-0c4a661faaed", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -46451,7 +46451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "155e7ff1-f17b-48ea-81c9-783a3dc4a4ce", + "id": "b852c61d-bd68-4879-8ba4-b2ba0ed87793", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -46508,7 +46508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95c7cc18-a707-4cf3-a7cc-6f3a2ac4823e", + "id": "93207288-ec50-4f4b-8d90-b4bf5955c107", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -46565,7 +46565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "186fecde-b16f-4c21-8cd0-507e426bd52a", + "id": "4966be8e-15b4-4ec5-862e-75f4f6e578e2", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -46622,7 +46622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "500f4789-0c52-488e-b08c-ef970223b1aa", + "id": "df86773e-c0b0-43bc-b33f-c1d63191f0ae", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -46679,7 +46679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f02607e-5042-455c-a2d9-a29397dc1d44", + "id": "3c176a5f-ed0b-4e64-a2f6-e35e91ba250b", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -46736,7 +46736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe4b921e-edf3-44f9-9b59-0ea3eea789cd", + "id": "f662f270-cbc4-4815-a839-c2480d991aad", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -46793,7 +46793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae79829b-2eca-441c-a697-1290fc4c656b", + "id": "be5ce101-5971-492c-8da8-609a8e089052", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -46850,7 +46850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86f71902-755c-4ed7-874d-d1f1da34ea42", + "id": "46613e71-56ca-4683-83e4-55c1bb9fd846", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -46907,7 +46907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9300440f-58b2-475c-b807-f0a2515343e6", + "id": "3b00db11-1616-42da-87ab-2c40fce25e55", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -46964,7 +46964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09d126e1-080b-4b1c-a744-adbc2a72f77f", + "id": "9a14937b-9562-4760-b3b4-87ab0381b2e9", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -47021,7 +47021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfdf9b06-3777-4453-bab9-1e0fccbdcbde", + "id": "bc991b58-deb5-4f37-ac70-e033138107b0", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -47078,7 +47078,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a6af9c5-fae9-41b5-a2b8-4cdba617abbb", + "id": "5bbe8c14-c256-4280-9e11-dce0e3678de4", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -47135,7 +47135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9eb6502b-6afd-4488-b4c3-421165920316", + "id": "e10f2365-6ddd-4ee8-9740-fc8607d68e9c", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -47192,7 +47192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fac4152e-1e48-4fb1-8660-aa4533f14f39", + "id": "41c257ea-5c90-44b2-b4a8-8c0e3832c683", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -47255,7 +47255,7 @@ } }, { - "id": "50296b47-681d-4a63-9c2a-dd1ea25f6c0b", + "id": "1272165b-7c51-47ec-a6f3-f7f1a85e407e", "name": "List of entitlements parents", "request": { "name": "List of entitlements parents", @@ -47343,7 +47343,7 @@ }, "response": [ { - "id": "d4c80e07-1fc3-4e24-bd68-77d7dba30724", + "id": "6cd7aac9-baf1-4458-ba89-6368a3fef42f", "name": "List of entitlements parents from an entitlement", "originalRequest": { "url": { @@ -47434,7 +47434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa446bee-5ed1-4355-9bf7-6dbc26d1fda9", + "id": "432bacf8-ffb5-42b1-918c-e504da450921", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47525,7 +47525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95d79f95-00fe-4ab2-bdc8-82148e96de8f", + "id": "50965132-adee-41c8-b225-7a52e84cf736", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47616,7 +47616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65704ffc-ef34-4697-b39a-8f107b0d5320", + "id": "c96bbc81-5fec-46ac-a314-62c55e130bca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47707,7 +47707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7caf5a50-e501-4bf7-8168-398a2ff365fb", + "id": "e064346f-3ae7-43aa-9ff5-e687d844c101", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -47798,7 +47798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fccb19f4-042c-460b-86e5-ea110a57b135", + "id": "1678c57e-952c-445f-b22a-396b1f18d02a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47889,7 +47889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d127697f-43da-40bf-9284-100f96a4a350", + "id": "3268c98d-0080-4703-9df8-475ed9e7bbff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47986,7 +47986,7 @@ } }, { - "id": "39447372-53b8-4acd-b670-36c6b82cc44a", + "id": "69e11534-7d77-4f14-832b-81457c6f5629", "name": "List of entitlements children", "request": { "name": "List of entitlements children", @@ -48074,7 +48074,7 @@ }, "response": [ { - "id": "27d24d4a-8819-4c03-84b3-ec5eeaa09bb4", + "id": "d76d4c7f-283b-4645-b752-db2a65cfca42", "name": "List of entitlements children from an entitlement", "originalRequest": { "url": { @@ -48165,7 +48165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfe7d004-7552-4d52-b223-62d332769b11", + "id": "bc1238f4-cf74-4e5d-83e8-ac0420c7e84b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48256,7 +48256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c790791-7e21-4258-8ee5-d3d73b581152", + "id": "fbee16c2-d840-4cf6-adba-75b1fbc08597", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48347,7 +48347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0aa99428-c7cd-46c7-bec8-9914134ebdf1", + "id": "48c688d5-8a7a-4f42-9520-991db77e55f8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48438,7 +48438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bd82f8f-ee4a-48c2-ac1a-2e6e3d5e5b34", + "id": "270be289-e3e4-4150-8ad4-a09d94448811", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -48529,7 +48529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec347339-d5f1-4160-a87a-08226b7d26be", + "id": "e4456c3f-a85d-4da3-a175-b5f93dcaebe7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48620,7 +48620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5c4cd68-c325-4fa8-8966-1156f2eaedf0", + "id": "6113eada-87f7-4993-a1e8-086dc6af2a60", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48717,7 +48717,7 @@ } }, { - "id": "aea2472b-0fc6-48de-8946-71a0ff3984aa", + "id": "00978a8d-e6d1-4e44-86f9-970722b7b204", "name": "Bulk update an entitlement list", "request": { "name": "Bulk update an entitlement list", @@ -48760,7 +48760,7 @@ }, "response": [ { - "id": "f395b486-f7d9-4e1a-af24-b2614ff0bb04", + "id": "e8e9d038-0e60-4d14-a8e9-382fe91ea97a", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -48807,7 +48807,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9a8999dd-8410-45d0-922f-5023c715204f", + "id": "085a841a-296d-4c73-b024-d243e72c91ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48864,7 +48864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4280fdc0-7220-4195-bbb6-0468e8868001", + "id": "b3a9475b-3fea-4484-9d75-74e96d9754d6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48921,7 +48921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "481a4f2e-5820-4932-8c6c-c873efd78800", + "id": "5eeedad7-4b06-4683-bbfd-1a7aa819e0d7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48978,7 +48978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51a588e2-5908-42ae-96a3-89b17d5d7ad8", + "id": "5929ab35-f609-4890-a1a6-a95b26f43186", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49035,7 +49035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2266da6-5296-4940-a101-55a30a2b1d10", + "id": "3bd1e676-8ba8-4fec-9d53-f65c0b620365", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49098,7 +49098,7 @@ } }, { - "id": "69986d09-7e3d-4543-82d5-113c1837c633", + "id": "e8721f3f-7302-4f78-989f-c55e3d0ce477", "name": "Get Entitlement Request Config", "request": { "name": "Get Entitlement Request Config", @@ -49140,7 +49140,7 @@ }, "response": [ { - "id": "c6bd45a9-44c4-4339-aba6-761499d19302", + "id": "be2d9464-b85e-41a4-9008-33b16f5292f4", "name": "An Entitlement Request Config", "originalRequest": { "url": { @@ -49185,7 +49185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd2708c2-3608-45ca-a300-f46059f8d5e2", + "id": "80d01d8c-6014-4f1c-bb25-c67b4a02be7c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49230,7 +49230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69204d90-3fa7-4b14-898a-ba583fffffbf", + "id": "c9d011bd-24e5-46bc-a827-73129f45fc92", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49275,7 +49275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1cdd9dd-771b-4c9c-aa15-e93cdc284fa5", + "id": "59ebcaad-864f-46f8-aa8f-0eebe95d7544", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49320,7 +49320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1374bc7e-3b5d-421c-abce-fcc02fdf663a", + "id": "664df77d-3043-42b0-9c78-093cde74a5b2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -49365,7 +49365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c40466f-4b7a-4d94-b688-4a734804ed72", + "id": "a615c058-6b9b-417f-bbc2-3b1cbec42052", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49410,7 +49410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92edce4b-110e-4f5b-8bd5-b75098c58995", + "id": "5c1e5c77-790e-4abd-852d-2ab1736b4d43", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49461,7 +49461,7 @@ } }, { - "id": "ff100e6c-e1b6-4d26-9c31-2a0fcca98192", + "id": "d920c2c5-2817-44e9-b180-753438acf9cc", "name": "Replace Entitlement Request Config", "request": { "name": "Replace Entitlement Request Config", @@ -49516,7 +49516,7 @@ }, "response": [ { - "id": "ac8eff86-ccdc-44fa-ac83-19406563580a", + "id": "a7a22f0c-f378-4a7a-aa18-8427a4671340", "name": "Responds with the entitlement request config as updated.", "originalRequest": { "url": { @@ -49574,7 +49574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78a2dbf2-8654-4fb3-84ed-d918720c68e4", + "id": "069523cf-c2b2-4980-b98d-6f4f4da31149", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49632,7 +49632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e124d72-e12f-4946-a279-8b7d90271998", + "id": "3e903263-4663-4cff-80a5-b678b5802070", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49690,7 +49690,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65ffecfc-29b6-4b83-9e98-ba56de14e7f4", + "id": "4c0dea1d-6935-4e37-b40a-4e1fbabfdad3", "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": "683be3c9-1cd4-4805-aa8b-c2b1164546e8", + "id": "5bddb95b-e316-4fc2-a4b9-8d40621f8fc9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -49806,7 +49806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec7d0213-7835-4d67-a639-f04a921cab1d", + "id": "bfc434f0-14d8-4c41-ae62-5cacea0535a3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49864,7 +49864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ff2b34a-1822-48fc-882d-e20603771857", + "id": "7c398a17-7960-4ca0-bf25-af6143bb36ef", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49934,7 +49934,7 @@ "description": "Use this API to implement and customize Governance Group functionality. With this functionality in place, administrators can create Governance Groups and configure them for use throughout IdentityNow.\n\nA governance group is a group of users that can make governance decisions about access. If your organization has the Access Request or Certifications service, you can configure governance groups to review access requests or certifications. A governance group can determine whether specific access is appropriate for a user.\n\nRefer to [Creating and Managing Governance Groups](https://documentation.sailpoint.com/saas/help/common/users/governance_groups.html) for more information about how to build Governance Groups in the visual builder in the IdentityNow UI.\n", "item": [ { - "id": "3d21b079-59d3-4d3e-95ff-1af8ca32c481", + "id": "f459fdec-07e9-425a-b5e2-dd3f8fe6a8f9", "name": "List Governance Groups", "request": { "name": "List Governance Groups", @@ -50009,7 +50009,7 @@ }, "response": [ { - "id": "b30ea2c4-52a9-44c3-90f1-5793b14f4511", + "id": "f945b0a3-5252-48a2-96c7-7f90b34ef802", "name": "List of Governance Groups", "originalRequest": { "url": { @@ -50098,7 +50098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c8cf5c8-7872-4ea4-80db-cb3f97fdaf36", + "id": "2936479e-61f7-4daa-95eb-7524558175ba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50187,7 +50187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bad66013-6d36-41e8-b556-8bac8aa74ae4", + "id": "a000cda6-a9a5-4a5a-abab-dc9541d7410c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50276,7 +50276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af9786f7-cc39-4bc9-89d5-1d908b98264b", + "id": "fadd70d0-33ea-4612-95b6-9432a8b8f36a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50365,7 +50365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "436d0b04-5c09-435d-af2d-4c7c4fbbb3b1", + "id": "740019a1-256f-413f-8525-a8e1bcba6a09", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50454,7 +50454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dabd3530-9006-45bf-bd7e-12580adff301", + "id": "919d1728-c594-47d1-ab12-9efabab45fda", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50549,7 +50549,7 @@ } }, { - "id": "9605f9f0-0264-44dc-b128-cf3163cada98", + "id": "b1ae9e7c-450b-49e5-b22f-c733eeef1065", "name": "Create a new Governance Group.", "request": { "name": "Create a new Governance Group.", @@ -50591,7 +50591,7 @@ }, "response": [ { - "id": "338af378-c85e-4a45-9a82-5b006ac7e83c", + "id": "603d4717-ea28-4466-8b6e-2e603844487d", "name": "Governance Group object created.", "originalRequest": { "url": { @@ -50647,7 +50647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89cc324d-55d5-4be2-9931-2dfb40dae14a", + "id": "30689861-5c63-47ec-8af9-8f735ecbc2db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50703,7 +50703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd5e8b99-eec6-48ba-a98e-00ebe532c5c4", + "id": "062f206f-7eb3-4868-b5c4-65772354d1f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50759,7 +50759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f52752bf-0949-4fd2-9ae9-bc1fc919d2d7", + "id": "e9d82b58-726d-4d12-9014-20b4604a4b4c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50815,7 +50815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39fcce2f-9448-438a-aadc-cbce4029a800", + "id": "545795b0-6ce9-4497-b70f-975e6bdbeb59", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50871,7 +50871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "245526d9-d1b3-41f8-8d85-9fdfaa4bf56c", + "id": "acfd156f-9206-4ee1-8f37-6b9c2d5fddda", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50933,7 +50933,7 @@ } }, { - "id": "ca9e5005-4ca7-48c4-89fc-5df58580762e", + "id": "616cae3f-9d6a-4d3a-90a2-eab56f9c4818", "name": "Get Governance Group by Id", "request": { "name": "Get Governance Group by Id", @@ -50974,7 +50974,7 @@ }, "response": [ { - "id": "6148f35c-7736-45fd-898c-42259e68f0a8", + "id": "bf590c56-f5be-46b0-b052-4cd4bc5d5c74", "name": "A Governance Group", "originalRequest": { "url": { @@ -51018,7 +51018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e701711-69b9-49f9-b71d-666e9536fafe", + "id": "9eaa8434-02b8-4751-8796-91df5ce38e43", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51062,7 +51062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "532492e4-73ce-462b-a07f-8e82dfc50da8", + "id": "139cd8ee-d00b-41ed-a8d7-09399b16ced1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51106,7 +51106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e51b54f0-69b2-4280-a459-004efee65adf", + "id": "f5dadac3-ba5e-423d-9834-5978cd0b943f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51150,7 +51150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3114168-de39-4c21-945b-f8420d6cd47f", + "id": "2a0877ec-57e7-45de-9a05-8397bf372120", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51194,7 +51194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3ed65ba-5238-4911-9e47-ee0398894e48", + "id": "8916fc98-56c4-4372-b8eb-dbf6f85d891c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51244,7 +51244,7 @@ } }, { - "id": "2bf1589a-284e-4656-b880-81f43a528961", + "id": "a06049b1-b66e-49e6-ad1a-2bdd405c9646", "name": "Delete a Governance Group", "request": { "name": "Delete a Governance Group", @@ -51285,7 +51285,7 @@ }, "response": [ { - "id": "dc4933c6-cf85-4867-8339-ebf9f2445815", + "id": "bc351a1a-77ae-479f-b64b-4cbe21e961b5", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -51319,7 +51319,7 @@ "_postman_previewlanguage": "text" }, { - "id": "764ddffd-45be-4582-b4c7-2b263d7b1239", + "id": "9dc7ad1b-9705-43a7-a823-b24ac71c4153", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51363,7 +51363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3a8cf0c-59e6-4311-b06c-4a9e3e21cea4", + "id": "59b7934a-d422-4c11-84cf-842c64fad650", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51407,7 +51407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23854d43-5ab7-43d1-b7ac-4e2901b547ea", + "id": "579e938b-fa6d-4ce0-b144-b1a2cb2fa6f8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51451,7 +51451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40c863a5-e54e-4ec4-a6ef-99e0f23a34e0", + "id": "4d228fbd-c68d-4c05-9e13-25ffc9a23097", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51495,7 +51495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "145d4906-95a1-4dfd-967a-53cbdeff0180", + "id": "6590d4d8-9203-46d8-9e62-8cc2cca5661a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51545,7 +51545,7 @@ } }, { - "id": "107c947a-e794-437a-9363-f8e96ea536c9", + "id": "ae4fcdf8-fbeb-46db-87f9-95393f41422a", "name": "Patch a Governance Group", "request": { "name": "Patch a Governance Group", @@ -51599,7 +51599,7 @@ }, "response": [ { - "id": "92ac97f8-e355-4363-a369-e771dd2705fd", + "id": "7bf84b33-a739-44d4-83fc-43fd1ff23bac", "name": "A Governance Group.", "originalRequest": { "url": { @@ -51656,7 +51656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4766157e-420c-4725-b705-b9f12fbea7a3", + "id": "ca07dd74-6dc8-49d1-a1c5-15e5781d4d76", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51713,7 +51713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73d68796-a88c-4a65-a637-2524d35993ee", + "id": "f6a99642-f199-4cd1-9f1b-39dbf7cbcb1d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51770,7 +51770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ad2f294-3b08-459c-8dc4-42c020601f60", + "id": "ddf8fd04-1e1d-452c-a5a1-2663edb56da4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51827,7 +51827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5124959c-d24e-4bfa-91cb-f5774c41f854", + "id": "1d3ce3ef-cb0a-44b2-8a49-6cc5cd3dca65", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51884,7 +51884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ccd4d4c-4019-4c97-8f01-a7d96fe1c876", + "id": "7d3f8f55-e458-447c-8619-53866b8ecf45", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51947,7 +51947,7 @@ } }, { - "id": "c2eb11e6-4e12-4f09-8cb1-fc126e0bfe98", + "id": "084efa76-da86-464e-a769-865e79b1a0db", "name": "Delete Governance Group(s)", "request": { "name": "Delete Governance Group(s)", @@ -51990,7 +51990,7 @@ }, "response": [ { - "id": "a7b4c813-2c76-4c24-b23e-10423c83bd2a", + "id": "bc1dac4b-bd66-4603-a173-89e365fa9cdc", "name": "Governance Group bulk delete response.", "originalRequest": { "url": { @@ -52047,7 +52047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "765a6101-e4db-4aae-a7f2-f33e0dea2e96", + "id": "b59c6432-b7b7-48c5-96fd-afe758634222", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52104,7 +52104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "deb3b787-c8b2-418e-b678-5d8285da200d", + "id": "bfa88219-4718-45cb-b487-5d226f269d60", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52161,7 +52161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cfecb41-0b6d-43f7-9589-31532d74a174", + "id": "c5d37e5b-1508-4956-baa7-eb4ee2a4d1bb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52218,7 +52218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6a726c8-cac1-43b5-a3c9-8454dff2156c", + "id": "79dc478f-5874-429f-94fe-a8f67c66966d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52275,7 +52275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7df1c93d-9075-4106-8fe1-d48ce07dcf5b", + "id": "34f28872-0977-4a42-b431-9719b3e59811", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52338,7 +52338,7 @@ } }, { - "id": "fb9162c9-2c87-4480-80a2-a47a378608e2", + "id": "d7aca745-e513-4ddd-b038-efed8094e57c", "name": "List connections for Governance Group", "request": { "name": "List connections for Governance Group", @@ -52417,7 +52417,7 @@ }, "response": [ { - "id": "023c3410-8835-46c6-9d5a-f9dc1563cb6c", + "id": "f2629fde-279f-4a23-a570-06b5ffcba3f7", "name": "List all connections associated with a Governance Group.", "originalRequest": { "url": { @@ -52499,7 +52499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c5ae6ca-8e82-4e7f-96df-cec6f424aa0f", + "id": "c72953ec-fd1d-4e0b-9377-f0cd9843f837", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52581,7 +52581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfd7228f-0569-4e90-a80b-5db023179d9a", + "id": "bfd0df8f-64e8-4ec0-8b8b-acb1d71d49bb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52663,7 +52663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb6207df-6de8-43bb-a6dd-a341d3a6d665", + "id": "29a4bb6e-113a-4264-bbaa-514ed9362e16", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52745,7 +52745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da3cf463-0a9c-44b1-b56c-3a3b399baf0c", + "id": "2affa82c-e54c-4c32-bffe-1628a8768600", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52827,7 +52827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9096f52b-ccd9-490f-a119-d93e9588d2d5", + "id": "98219ba1-8157-45ad-96da-2b4fa113b040", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52915,7 +52915,7 @@ } }, { - "id": "7d008808-04ec-407b-bef5-84f333196ba8", + "id": "df6f64a6-23ec-4c5b-8a34-b5ebac1f8379", "name": "List Governance Group Members", "request": { "name": "List Governance Group Members", @@ -52994,7 +52994,7 @@ }, "response": [ { - "id": "d1b398bb-f6b0-4e43-9ef3-2ae5daaf8b3a", + "id": "c8b634df-94fe-40f1-83d5-01546f658aa7", "name": "List all members associated with a Governance Group.", "originalRequest": { "url": { @@ -53076,7 +53076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1636395-39a3-402a-bae6-39d61788186e", + "id": "ffeeaf47-8088-4ef7-aeaf-e1d29031e9d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53158,7 +53158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1638fa17-74a9-4049-8c9c-187b3bcc0126", + "id": "4c13d413-d62a-4746-b5a8-1b59362d695b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53240,7 +53240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7441f71e-782b-4869-810a-c3ec21052c64", + "id": "55bc80f9-3035-483c-8c3e-9570c021e7a4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53322,7 +53322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "409125b9-3e16-4093-85a7-6522c920d334", + "id": "2791157a-37da-4bc6-8504-4a7896ee7508", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53404,7 +53404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06201567-f585-458b-8b1c-269295ed3684", + "id": "5d99a724-fd07-45da-9b04-f6a6e4ab23c2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53492,7 +53492,7 @@ } }, { - "id": "065deec2-83d1-4595-84e5-48b276878718", + "id": "c5c98eff-eba9-4f0f-a3b7-13c8275a00e6", "name": "Add members to Governance Group", "request": { "name": "Add members to Governance Group", @@ -53548,7 +53548,7 @@ }, "response": [ { - "id": "607f2031-4106-4c19-86b8-fa8414c984cb", + "id": "2e467832-c66d-4114-a889-c47d40c7125b", "name": "List of added and not added identities into Governance Group members list.", "originalRequest": { "url": { @@ -53607,7 +53607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0430097-d6f4-4297-bc1d-66263abb34fd", + "id": "5af24ce5-6e64-4dd0-92bc-691f4cb096bb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53666,7 +53666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17cdb3ad-7c9a-4c81-b1f4-686ad0c064af", + "id": "7e10c4fb-2295-4c38-a99c-658f3ad06b34", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53725,7 +53725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da9046cf-663f-485a-919a-71c4c6355de2", + "id": "cfedbb78-898f-4255-91d2-1737b2161c7c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53784,7 +53784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "822b2704-4ef2-4f76-a504-bc4cabca3082", + "id": "cbadf527-1a90-4d21-b2b4-959628b61cf7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53843,7 +53843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8def2ae3-97b5-44d4-b20a-7cee109659e1", + "id": "2bb0c257-fef6-4142-bbb6-823dab5fa266", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53908,7 +53908,7 @@ } }, { - "id": "694d2847-be33-4376-a8fd-269a17140171", + "id": "dcd44a94-ebbf-44fd-a063-e0d7e4b3270b", "name": "Remove members from Governance Group", "request": { "name": "Remove members from Governance Group", @@ -53964,7 +53964,7 @@ }, "response": [ { - "id": "794c3b23-e747-4063-9410-c59dee0cbed1", + "id": "229ebce7-6758-4d09-9c91-83c9747974ba", "name": "List of deleted and not deleted identities from Governance Group members list.", "originalRequest": { "url": { @@ -54023,7 +54023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9130f2c8-e94b-4224-a9d8-abe0dc5c0611", + "id": "172685c7-7b80-496a-8506-c5f19fe637dd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54082,7 +54082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75f7c66c-78eb-41bf-b95c-262803bad4f5", + "id": "02831a2c-4539-4d05-b2b8-689b76c850f3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54141,7 +54141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2932467-8b30-44af-bd2d-db51c412de6a", + "id": "7a8c63f4-f195-4af8-bbb4-8568a9492e97", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54200,7 +54200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "009d9b20-793d-4b6c-ab21-f28ae0d9e300", + "id": "39c9e459-8d53-4b61-a8e3-02140ee67227", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54259,7 +54259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c32eb067-894c-4a9b-a984-5f62c8f2129f", + "id": "71d38fd9-8c2c-4e58-85ba-ffe3dc173e6e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54330,7 +54330,7 @@ "description": "", "item": [ { - "id": "e203eaed-de8e-464a-8717-7c2ab3921a3f", + "id": "3c276fcf-6d6c-44c9-910f-67a35114b9c1", "name": "Get Message catalogs", "request": { "name": "Get Message catalogs", @@ -54371,7 +54371,7 @@ }, "response": [ { - "id": "0700f357-9fce-4c9a-9d12-888652019df8", + "id": "5d9c09f7-1539-4b7f-bc13-de72996d5774", "name": "The message catalogs based on the request headers", "originalRequest": { "url": { @@ -54415,7 +54415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba626520-7a29-4382-a94c-9b374ebee932", + "id": "85a0125a-2bcc-46b2-b547-691a2b1a047c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54459,7 +54459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04ce6e6c-cd9e-4591-bb23-7e85008ada12", + "id": "e084f827-8647-4e28-86a1-4a660ca59387", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54503,7 +54503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b576f97-e554-47bb-a59b-d18c1bb44809", + "id": "08c4dccc-a63f-4dff-946c-8879b81057d5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54547,7 +54547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a0e7d25-e755-4e99-8631-16c9abc8ce87", + "id": "1592a0f8-0a9e-4468-b4aa-1a22ad0cec89", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54591,7 +54591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73aa08dd-c39a-4577-b2f1-c9075662a0a5", + "id": "57ea7eea-e45f-410a-9939-73017781b92b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54647,7 +54647,7 @@ "description": "", "item": [ { - "id": "d15b2e73-d860-46c9-bb6c-d0805959dffd", + "id": "5efa5dc6-d7dc-470f-8003-efc944cc9292", "name": "Identity Access Request Recommendations", "request": { "name": "Identity Access Request Recommendations", @@ -54724,7 +54724,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -54740,7 +54740,7 @@ }, "response": [ { - "id": "498bfa49-a076-4736-91d0-d4dc0d12ebb2", + "id": "b35bfb52-c941-49ed-8b92-f89570c91c7f", "name": "List of access request recommendations for the identityId", "originalRequest": { "url": { @@ -54812,7 +54812,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -54847,7 +54847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "019416c3-0931-4a10-bcba-a1a24244cb9d", + "id": "c20a6f6d-1ea0-4c7a-8640-deeb2e0c8455", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54919,7 +54919,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -54954,7 +54954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "737902aa-6394-41e1-b54c-58c272e82274", + "id": "8e00c819-cbe9-4c8b-a3c3-877f2288dd19", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55026,7 +55026,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -55061,7 +55061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b540dfd4-301a-4348-b347-40b3dd1ff45f", + "id": "cdf881a4-6112-4bc7-8980-338574ab4623", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55133,7 +55133,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -55168,7 +55168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bda17592-2592-4367-afd5-87e6284dc426", + "id": "cefec396-3bc5-4883-a6a9-b86fdf9118a1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55240,7 +55240,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -55275,7 +55275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f130927f-adcc-4a77-9d9c-c3d3c24ab61e", + "id": "c34ca939-5037-47a6-bb70-e8c144a7d0b7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55347,7 +55347,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -55388,7 +55388,7 @@ } }, { - "id": "8e3052fb-f576-4438-9100-eeeaf6659ee6", + "id": "4428635c-8f69-4b9f-9755-184a5078c608", "name": "Notification of Ignored Access Request Recommendations", "request": { "name": "Notification of Ignored Access Request Recommendations", @@ -55431,7 +55431,7 @@ }, "response": [ { - "id": "eb7d0c46-7e4b-4390-b6e2-e56f91a02540", + "id": "8bdf8d57-4175-4cf7-9111-18630655a94f", "name": "Recommendation successfully stored as ignored.", "originalRequest": { "url": { @@ -55488,7 +55488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b46ef93d-be2e-4634-8b04-a2cdbd63041c", + "id": "28cea4aa-1ba4-490d-804a-2d18a5e63000", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55545,7 +55545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29bf7092-8aff-4f9d-990b-24a393c2cbe0", + "id": "8236c23a-0ae0-4551-afff-2ae9c9c72c24", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55602,7 +55602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2c790d0-7256-4607-9c1b-08c920def8b7", + "id": "58450c88-7f83-4f1f-b1ad-635ed156d480", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55659,7 +55659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "432dbe9a-d745-4227-a07a-85e7cae22e74", + "id": "5f734ab3-7da3-46ff-9101-0ad0cd3fedb7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55716,7 +55716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbbf3ca9-b5ac-4d99-a9e6-31cad55d82b8", + "id": "a02f37c8-058c-4442-b1f7-beebbb585e60", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55779,7 +55779,7 @@ } }, { - "id": "bf98f117-e587-4cf6-b0cc-8ae0b2387aa2", + "id": "649e9bfc-116e-48ab-8967-5c1c7823afd7", "name": "List of Ignored Access Request Recommendations", "request": { "name": "List of Ignored Access Request Recommendations", @@ -55855,7 +55855,7 @@ }, "response": [ { - "id": "565da0f0-6f5b-4d0c-b378-752ac9c84752", + "id": "182d5105-3d10-4d58-b356-6ac0adec6344", "name": "Returns list of ignored access request recommendations.", "originalRequest": { "url": { @@ -55945,7 +55945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80093947-29e6-4b6e-a421-f56856e5754f", + "id": "1733f725-735f-48b8-bca1-c25831868074", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56035,7 +56035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3581e224-b317-40da-94e3-6beedf31b893", + "id": "4dfc3ef2-43b9-4613-86a1-16359863a0e5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56125,7 +56125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5cfbd50-9546-43f5-8d90-d2a5f6113802", + "id": "18aec306-d624-463f-99a3-c7ecc805aa82", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56215,7 +56215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "511fad79-b1f5-45c7-985d-2145e4e7e07a", + "id": "22b4df3c-a5b9-4700-8ab0-3f1d3bc5cd2f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56305,7 +56305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17bb4619-e5fa-468f-86bb-b3ae4e74e69a", + "id": "b1b9ed40-84df-45de-b31e-a1a3e71dbd76", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56401,7 +56401,7 @@ } }, { - "id": "933872d1-cfd3-48f2-a0b1-ba711a699a47", + "id": "d815ce53-53e8-40c6-8b42-d14bc2b5b1ae", "name": "Notification of Requested Access Request Recommendations", "request": { "name": "Notification of Requested Access Request Recommendations", @@ -56444,7 +56444,7 @@ }, "response": [ { - "id": "a615b02a-2aeb-4131-bd57-43453e11e818", + "id": "54744762-e212-4f03-879a-d8783f8e08ca", "name": "Notification successfully acknowledged.", "originalRequest": { "url": { @@ -56501,7 +56501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe7a45e9-55e8-4358-b9d8-0b6eb503d4ff", + "id": "5eded1a5-fab6-4bee-9136-5af3aa04f97f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56558,7 +56558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc56485a-0489-46ad-8fa4-7da22c277b94", + "id": "ed7bbbba-5435-4c56-bc13-72673c1a5117", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56615,7 +56615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc836ad5-c86e-4964-8925-3eb363435b59", + "id": "b09a4694-6c2a-4a62-bdab-2de33048623c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56672,7 +56672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46affab0-2f33-4535-af27-eb3ee817a4ed", + "id": "d487a35f-e761-4a50-89da-c1aa61b8a585", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56729,7 +56729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3307d2bf-0cea-4d59-a4da-7f34a1fb8609", + "id": "bb48b893-bb73-4f76-ac6a-35b51551358c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56792,7 +56792,7 @@ } }, { - "id": "cb1ea4a4-768c-4e9f-8088-7af6c7d82cb9", + "id": "fa04e6be-e16e-4f79-8e75-235555b5a3d6", "name": "List of Requested Access Request Recommendations", "request": { "name": "List of Requested Access Request Recommendations", @@ -56852,7 +56852,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -56868,7 +56868,7 @@ }, "response": [ { - "id": "caf9b97a-5de3-4a36-bbae-ae3b50acd14d", + "id": "13112688-4d53-4e3f-8902-d0f021c839a5", "name": "Returns the list of requested access request recommendations.", "originalRequest": { "url": { @@ -56923,7 +56923,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -56958,7 +56958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f4be3d2-84d9-4284-9063-8be55d53273f", + "id": "fefd28f8-312c-4556-8b79-59730cbaaeb4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57013,7 +57013,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -57048,7 +57048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e4a6542-d8cb-4ec3-8ed4-294643eecf08", + "id": "6c4d81f1-512d-471d-822f-21e7bda0f426", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57103,7 +57103,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -57138,7 +57138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f833530-3e33-4874-8294-981ad8c1ea44", + "id": "b9651d81-d876-45f1-856c-b736053b6240", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57193,7 +57193,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -57228,7 +57228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe887e8f-eeb8-426f-8ec2-cd4d0b11f1a4", + "id": "721174d0-cd26-4cdc-8db9-7dfb89bdeb23", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57283,7 +57283,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -57318,7 +57318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c7e7d23-19ce-482c-b832-8580dc961013", + "id": "618a3d15-adf9-404f-a187-ce5719301190", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57373,7 +57373,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -57414,7 +57414,7 @@ } }, { - "id": "075d255e-7b0e-43d3-94c7-f3473c00030c", + "id": "e51032d7-3c45-4bc1-af45-dff742cf98d0", "name": "Notification of Viewed Access Request Recommendations", "request": { "name": "Notification of Viewed Access Request Recommendations", @@ -57457,7 +57457,7 @@ }, "response": [ { - "id": "0ce6f964-7148-4386-ac2b-95e937d55895", + "id": "ba1abe95-2b50-4adb-92dc-465e7728d888", "name": "Recommendation successfully stored as viewed.", "originalRequest": { "url": { @@ -57514,7 +57514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd051955-0850-40be-aadb-a3a1b74f5286", + "id": "6ea92284-e5f2-4a98-916f-78f7eb184acd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57571,7 +57571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49346e41-cfe7-4088-a696-7424e288b062", + "id": "da7b8065-54b7-4c2c-a77e-ff80b4ecc826", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57628,7 +57628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a83042dd-bed6-44d1-af7e-a5879e5d304b", + "id": "7946b90f-d1c8-4acc-b919-9239a2b899a6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57685,7 +57685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47d112ef-542b-4378-b989-4dedff23c231", + "id": "5afe7d7e-daac-4481-8ed3-cd888482f92e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57742,7 +57742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa7d597e-179f-4e18-b53b-cfb7c6caec67", + "id": "6661a738-0f36-4836-9613-9057d35bd91b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57805,7 +57805,7 @@ } }, { - "id": "76e3808b-faa6-4d01-b9bb-7e855ea98983", + "id": "847aced0-a4cb-44fd-b7b2-d74c508c30e0", "name": "List of Viewed Access Request Recommendations", "request": { "name": "List of Viewed Access Request Recommendations", @@ -57865,7 +57865,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -57881,7 +57881,7 @@ }, "response": [ { - "id": "343a8e3f-a4f5-4d07-b791-2853aefc5250", + "id": "e7dc50b9-ea6f-44a0-8c51-b0a6aaa166f4", "name": "Returns list of viewed access request recommendations.", "originalRequest": { "url": { @@ -57936,7 +57936,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -57971,7 +57971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47f42d3f-8d8e-484c-b0ca-7e505b6a632d", + "id": "bdb80ee3-00b3-49a1-bb01-170130c7cdc0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58026,7 +58026,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -58061,7 +58061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55fedbfe-7516-478f-b515-4666d870ef1a", + "id": "492a4739-99d8-47ee-8d8d-b6bea88e217b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58116,7 +58116,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -58151,7 +58151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "702575f9-0056-4dd6-85a6-77e6addaa906", + "id": "1fa9555d-5178-42b4-9551-8a5ebf312a3b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58206,7 +58206,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -58241,7 +58241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a36f942-49ea-439c-9546-9a26624d794b", + "id": "e2045284-6c5d-4fe8-ab23-0549cfb7456b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58296,7 +58296,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -58331,7 +58331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb83451d-53dd-4ed4-be4a-2dafea1baf05", + "id": "4a23b2ed-618e-47ce-a129-94fcf86c7f55", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58386,7 +58386,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -58427,7 +58427,7 @@ } }, { - "id": "45255d3a-d04e-43e9-aec6-2ec4e36a73c2", + "id": "aa6d0ef5-d61a-44ed-ba45-600a69d7b783", "name": "Notification of Viewed Access Request Recommendations in Bulk", "request": { "name": "Notification of Viewed Access Request Recommendations in Bulk", @@ -58471,7 +58471,7 @@ }, "response": [ { - "id": "cebbf9f8-9d97-4367-b91d-4148a7452aa4", + "id": "3eac2c94-4797-4ee7-8d01-1b7a266b0db4", "name": "Recommendations successfully stored as viewed.", "originalRequest": { "url": { @@ -58529,7 +58529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ecf7b77-a86a-40a6-a6f7-e3ac96dc868c", + "id": "6a95bfeb-1095-4b4c-a94d-3a817265aab9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58587,7 +58587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1319990-54bb-45ea-acf8-ddc7b6298360", + "id": "86d214ad-9a9c-4dea-9b47-111c1ceae3c4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58645,7 +58645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "616ad83c-0811-4936-ba49-dc04535435a5", + "id": "97e955ea-22c0-4f0c-b27a-cbca6b263689", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58703,7 +58703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d65a6161-6cfb-400f-9cd3-649b337e60a2", + "id": "646e7fd0-e241-459d-8c6e-227452883fdd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58761,7 +58761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe07b61d-4e50-45df-b685-c80c924d9a6b", + "id": "b31f44b3-d1ea-4ba2-88fe-60634071f7fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58831,7 +58831,7 @@ "description": "", "item": [ { - "id": "e2982cb8-0f6e-4988-8662-631d12fb078d", + "id": "9ee95d34-8880-4269-a9fe-1ea422b9d205", "name": "Get a paginated list of common access", "request": { "name": "Get a paginated list of common access", @@ -58906,7 +58906,7 @@ }, "response": [ { - "id": "66cdd1e6-87b8-4078-9ea2-b58d760db3f8", + "id": "e42b6f19-c64d-4021-a46e-4371b526d485", "name": "Succeeded. Returns a list of common access for a customer.", "originalRequest": { "url": { @@ -58990,12 +58990,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"adipisicing fugiat pariatur\",\n \"type\": \"ROLE\",\n \"name\": \"sit sint\",\n \"description\": \"fugiat\",\n \"ownerName\": \"mollit aute ipsum\",\n \"ownerId\": \"pariatur in consectetur\"\n },\n \"status\": \"nulla enim ullamco qui commodo\",\n \"lastUpdated\": \"1964-07-02T20:10:15.518Z\",\n \"reviewedByUser\": true,\n \"lastReviewed\": \"1982-10-21T14:42:37.033Z\",\n \"createdByUser\": false\n },\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"minim\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"dolore Excepteur ad cupidatat Duis\",\n \"description\": \"laboris cupidatat ei\",\n \"ownerName\": \"aute\",\n \"ownerId\": \"ipsum\"\n },\n \"status\": \"in cupidatat anim consectetur\",\n \"lastUpdated\": \"1956-01-14T01:15:49.423Z\",\n \"reviewedByUser\": true,\n \"lastReviewed\": \"2004-11-13T13:59:46.057Z\",\n \"createdByUser\": false\n }\n]", + "body": "[\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"exercitation irure\",\n \"type\": \"ROLE\",\n \"name\": \"consequat nostrud\",\n \"description\": \"dolore non\",\n \"ownerName\": \"id\",\n \"ownerId\": \"in consectetur\"\n },\n \"status\": \"culpa Excepteur\",\n \"lastUpdated\": \"1985-05-27T04:08:40.297Z\",\n \"reviewedByUser\": true,\n \"lastReviewed\": \"1979-07-14T06:51:08.078Z\",\n \"createdByUser\": false\n },\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"commodo voluptate dolor proident\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"laborum\",\n \"description\": \"ad labore fugiat aliquip\",\n \"ownerName\": \"in\",\n \"ownerId\": \"ex in\"\n },\n \"status\": \"aliqua\",\n \"lastUpdated\": \"1957-03-23T00:04:41.461Z\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"2005-06-07T01:54:03.646Z\",\n \"createdByUser\": false\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9a67a632-4c5e-4be4-9f40-7263a98998b2", + "id": "6db0e3c7-f3d9-4e22-97cf-0bad0f295e9c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59084,7 +59084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06cdd18b-742e-4a10-9c65-27fc865eb4d4", + "id": "c5697997-461b-455e-87b1-29cf7985b5a7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59173,7 +59173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b2937e5-5bd3-4783-b8ef-6f80ed0b5325", + "id": "2827c08a-5026-4467-9eb2-87eb50492114", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59262,7 +59262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa6ebd88-5f2a-423c-9cf2-b65940cd0742", + "id": "1c5188a1-477c-4a38-b5f5-ede88fe57b66", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59357,7 +59357,7 @@ } }, { - "id": "4325f7cd-6605-4645-8119-7195c0778d91", + "id": "ecb1e4eb-e5d2-46b5-b072-1cee53a80109", "name": "Create common access items", "request": { "name": "Create common access items", @@ -59388,7 +59388,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"labore dolor id irure\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"mollit dolor\",\n \"description\": \"commodo ut sint\",\n \"ownerName\": \"reprehenderit eiusmod ut sed anim\",\n \"ownerId\": \"culpa sint ut dolore do\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ut dolor\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"dolor Duis elit\",\n \"description\": \"tempor\",\n \"ownerName\": \"nulla adipisicing\",\n \"ownerId\": \"minim quis nulla\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -59399,7 +59399,7 @@ }, "response": [ { - "id": "911c7cc2-c177-4a9e-97dd-0441468cd09a", + "id": "6819da98-2404-4943-9699-15ef1fd3f3ba", "name": "Returns details of the common access classification request.", "originalRequest": { "url": { @@ -59433,7 +59433,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"labore dolor id irure\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"mollit dolor\",\n \"description\": \"commodo ut sint\",\n \"ownerName\": \"reprehenderit eiusmod ut sed anim\",\n \"ownerId\": \"culpa sint ut dolore do\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ut dolor\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"dolor Duis elit\",\n \"description\": \"tempor\",\n \"ownerName\": \"nulla adipisicing\",\n \"ownerId\": \"minim quis nulla\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -59450,12 +59450,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"nisi\",\n \"access\": {\n \"id\": \"sunt labore s\",\n \"type\": \"ROLE\",\n \"name\": \"nostrud anim\",\n \"description\": \"et aliqua sit\",\n \"ownerName\": \"ex consectetur nulla\",\n \"ownerId\": \"ut\"\n },\n \"status\": \"CONFIRMED\",\n \"lastUpdated\": \"est amet commodo\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"ipsum culpa irure\",\n \"createdByUser\": \"reprehenderit enim velit\"\n}", + "body": "{\n \"id\": \"Excepteur elit pariatur cupidatat\",\n \"access\": {\n \"id\": \"Ut esse qui occaecat\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"est ullamco sint laboris\",\n \"description\": \"qui nulla anim\",\n \"ownerName\": \"in est eu esse\",\n \"ownerId\": \"laboris\"\n },\n \"status\": \"CONFIRMED\",\n \"lastUpdated\": \"non veniam\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"dolore Lorem nulla\",\n \"createdByUser\": \"adipisicing Duis in \"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fa2d4842-4aa3-49c7-abdb-3acb154eeb1b", + "id": "c59a7ff1-cf5a-48c4-b076-5af3a0e8a0f9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59489,7 +59489,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"labore dolor id irure\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"mollit dolor\",\n \"description\": \"commodo ut sint\",\n \"ownerName\": \"reprehenderit eiusmod ut sed anim\",\n \"ownerId\": \"culpa sint ut dolore do\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ut dolor\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"dolor Duis elit\",\n \"description\": \"tempor\",\n \"ownerName\": \"nulla adipisicing\",\n \"ownerId\": \"minim quis nulla\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -59511,7 +59511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c2d9e7a-c599-4a7a-a21c-f30413784c4a", + "id": "1e5abf0c-1fda-45a7-ada8-9f1fa9cd036d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59545,7 +59545,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"labore dolor id irure\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"mollit dolor\",\n \"description\": \"commodo ut sint\",\n \"ownerName\": \"reprehenderit eiusmod ut sed anim\",\n \"ownerId\": \"culpa sint ut dolore do\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ut dolor\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"dolor Duis elit\",\n \"description\": \"tempor\",\n \"ownerName\": \"nulla adipisicing\",\n \"ownerId\": \"minim quis nulla\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -59567,7 +59567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85af681f-4f06-49f4-9353-a3630df05fd9", + "id": "e017c24a-1188-41c0-80dc-1bcea1089c6e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59601,7 +59601,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"labore dolor id irure\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"mollit dolor\",\n \"description\": \"commodo ut sint\",\n \"ownerName\": \"reprehenderit eiusmod ut sed anim\",\n \"ownerId\": \"culpa sint ut dolore do\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ut dolor\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"dolor Duis elit\",\n \"description\": \"tempor\",\n \"ownerName\": \"nulla adipisicing\",\n \"ownerId\": \"minim quis nulla\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -59623,7 +59623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "921adfa9-daf2-42e4-a5cb-1a9e77f68d50", + "id": "ad428bcc-3fde-4dc8-9c71-2361c53df5bf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59657,7 +59657,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"labore dolor id irure\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"mollit dolor\",\n \"description\": \"commodo ut sint\",\n \"ownerName\": \"reprehenderit eiusmod ut sed anim\",\n \"ownerId\": \"culpa sint ut dolore do\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ut dolor\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"dolor Duis elit\",\n \"description\": \"tempor\",\n \"ownerName\": \"nulla adipisicing\",\n \"ownerId\": \"minim quis nulla\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -59679,7 +59679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efea8966-42fd-497e-a895-6d23f477dce4", + "id": "2c23bced-996a-4c66-993a-d0120131ce56", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59713,7 +59713,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"labore dolor id irure\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"mollit dolor\",\n \"description\": \"commodo ut sint\",\n \"ownerName\": \"reprehenderit eiusmod ut sed anim\",\n \"ownerId\": \"culpa sint ut dolore do\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ut dolor\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"dolor Duis elit\",\n \"description\": \"tempor\",\n \"ownerName\": \"nulla adipisicing\",\n \"ownerId\": \"minim quis nulla\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -59741,7 +59741,7 @@ } }, { - "id": "12555fe6-78d6-4e44-a207-b53a41c59959", + "id": "6e32d04e-c433-40a6-af79-e75792d4d1b5", "name": "Bulk update common access status", "request": { "name": "Bulk update common access status", @@ -59773,7 +59773,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"208188b0-35cb-141b-9569-6a3e965a22d3\",\n \"8bf181bc-25b3-3e70-978f-f6a48f427b5e\"\n ],\n \"deniedIds\": [\n \"urn:uuid:88de915d-eb4e-adab-e9d6-ca1e83db65fc\",\n \"b4e1378b-e4c6-f283-24d6-3a0d686865a2\"\n ]\n },\n {\n \"confirmedIds\": [\n \"890e997e-9780-e1c5-4b7f-6a6ab8ac9295\",\n \"urn:uuid:989cf75f-82d7-17c6-0f3c-f13e910a0878\"\n ],\n \"deniedIds\": [\n \"5386e60b-7a98-f031-4e82-2a84500fe3a4\",\n \"urn:uuid:0b23af20-b544-d23b-c978-b304b985c3ca\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"669b2a2c-72fb-35fc-a744-22c22d8d170e\",\n \"urn:uuid:311fe423-6a5c-caa9-6b56-e94310c8ebb8\"\n ],\n \"deniedIds\": [\n \"19cdb50d-d2a1-a9a8-b068-eb08dabe8c2a\",\n \"urn:uuid:6974dee4-aa9a-7f46-57d7-dcefaf683adb\"\n ]\n },\n {\n \"confirmedIds\": [\n \"fee6fc72-f001-ea2f-c6c4-81fce9617263\",\n \"7bda89b7-1226-72d2-8eff-f2caea520d26\"\n ],\n \"deniedIds\": [\n \"27403837-27fe-764d-d288-d878960d9fc6\",\n \"urn:uuid:dd566c5c-cd8d-d1f4-be07-c6a13276cd19\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -59784,7 +59784,7 @@ }, "response": [ { - "id": "0f55118d-1e62-441e-a1fc-cf143f4bbc23", + "id": "8c5415f5-3c4b-423e-a345-4fb598b22391", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -59819,7 +59819,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"208188b0-35cb-141b-9569-6a3e965a22d3\",\n \"8bf181bc-25b3-3e70-978f-f6a48f427b5e\"\n ],\n \"deniedIds\": [\n \"urn:uuid:88de915d-eb4e-adab-e9d6-ca1e83db65fc\",\n \"b4e1378b-e4c6-f283-24d6-3a0d686865a2\"\n ]\n },\n {\n \"confirmedIds\": [\n \"890e997e-9780-e1c5-4b7f-6a6ab8ac9295\",\n \"urn:uuid:989cf75f-82d7-17c6-0f3c-f13e910a0878\"\n ],\n \"deniedIds\": [\n \"5386e60b-7a98-f031-4e82-2a84500fe3a4\",\n \"urn:uuid:0b23af20-b544-d23b-c978-b304b985c3ca\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"669b2a2c-72fb-35fc-a744-22c22d8d170e\",\n \"urn:uuid:311fe423-6a5c-caa9-6b56-e94310c8ebb8\"\n ],\n \"deniedIds\": [\n \"19cdb50d-d2a1-a9a8-b068-eb08dabe8c2a\",\n \"urn:uuid:6974dee4-aa9a-7f46-57d7-dcefaf683adb\"\n ]\n },\n {\n \"confirmedIds\": [\n \"fee6fc72-f001-ea2f-c6c4-81fce9617263\",\n \"7bda89b7-1226-72d2-8eff-f2caea520d26\"\n ],\n \"deniedIds\": [\n \"27403837-27fe-764d-d288-d878960d9fc6\",\n \"urn:uuid:dd566c5c-cd8d-d1f4-be07-c6a13276cd19\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -59841,7 +59841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68092dce-ffe1-4c0d-b212-9629e50b6d9f", + "id": "5254b167-0aba-4ff0-9e13-8c5d0f51f8b0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59876,7 +59876,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"208188b0-35cb-141b-9569-6a3e965a22d3\",\n \"8bf181bc-25b3-3e70-978f-f6a48f427b5e\"\n ],\n \"deniedIds\": [\n \"urn:uuid:88de915d-eb4e-adab-e9d6-ca1e83db65fc\",\n \"b4e1378b-e4c6-f283-24d6-3a0d686865a2\"\n ]\n },\n {\n \"confirmedIds\": [\n \"890e997e-9780-e1c5-4b7f-6a6ab8ac9295\",\n \"urn:uuid:989cf75f-82d7-17c6-0f3c-f13e910a0878\"\n ],\n \"deniedIds\": [\n \"5386e60b-7a98-f031-4e82-2a84500fe3a4\",\n \"urn:uuid:0b23af20-b544-d23b-c978-b304b985c3ca\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"669b2a2c-72fb-35fc-a744-22c22d8d170e\",\n \"urn:uuid:311fe423-6a5c-caa9-6b56-e94310c8ebb8\"\n ],\n \"deniedIds\": [\n \"19cdb50d-d2a1-a9a8-b068-eb08dabe8c2a\",\n \"urn:uuid:6974dee4-aa9a-7f46-57d7-dcefaf683adb\"\n ]\n },\n {\n \"confirmedIds\": [\n \"fee6fc72-f001-ea2f-c6c4-81fce9617263\",\n \"7bda89b7-1226-72d2-8eff-f2caea520d26\"\n ],\n \"deniedIds\": [\n \"27403837-27fe-764d-d288-d878960d9fc6\",\n \"urn:uuid:dd566c5c-cd8d-d1f4-be07-c6a13276cd19\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -59898,7 +59898,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bf00785-198a-4c6e-8865-472bfe1d7d26", + "id": "ecdb5103-4526-4de1-81f0-de03348689cf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59933,7 +59933,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"208188b0-35cb-141b-9569-6a3e965a22d3\",\n \"8bf181bc-25b3-3e70-978f-f6a48f427b5e\"\n ],\n \"deniedIds\": [\n \"urn:uuid:88de915d-eb4e-adab-e9d6-ca1e83db65fc\",\n \"b4e1378b-e4c6-f283-24d6-3a0d686865a2\"\n ]\n },\n {\n \"confirmedIds\": [\n \"890e997e-9780-e1c5-4b7f-6a6ab8ac9295\",\n \"urn:uuid:989cf75f-82d7-17c6-0f3c-f13e910a0878\"\n ],\n \"deniedIds\": [\n \"5386e60b-7a98-f031-4e82-2a84500fe3a4\",\n \"urn:uuid:0b23af20-b544-d23b-c978-b304b985c3ca\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"669b2a2c-72fb-35fc-a744-22c22d8d170e\",\n \"urn:uuid:311fe423-6a5c-caa9-6b56-e94310c8ebb8\"\n ],\n \"deniedIds\": [\n \"19cdb50d-d2a1-a9a8-b068-eb08dabe8c2a\",\n \"urn:uuid:6974dee4-aa9a-7f46-57d7-dcefaf683adb\"\n ]\n },\n {\n \"confirmedIds\": [\n \"fee6fc72-f001-ea2f-c6c4-81fce9617263\",\n \"7bda89b7-1226-72d2-8eff-f2caea520d26\"\n ],\n \"deniedIds\": [\n \"27403837-27fe-764d-d288-d878960d9fc6\",\n \"urn:uuid:dd566c5c-cd8d-d1f4-be07-c6a13276cd19\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -59955,7 +59955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9ca0552-ea9f-4701-9767-2b37c413df3b", + "id": "73531fae-6c23-4ee6-91fb-916550103588", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59990,7 +59990,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"208188b0-35cb-141b-9569-6a3e965a22d3\",\n \"8bf181bc-25b3-3e70-978f-f6a48f427b5e\"\n ],\n \"deniedIds\": [\n \"urn:uuid:88de915d-eb4e-adab-e9d6-ca1e83db65fc\",\n \"b4e1378b-e4c6-f283-24d6-3a0d686865a2\"\n ]\n },\n {\n \"confirmedIds\": [\n \"890e997e-9780-e1c5-4b7f-6a6ab8ac9295\",\n \"urn:uuid:989cf75f-82d7-17c6-0f3c-f13e910a0878\"\n ],\n \"deniedIds\": [\n \"5386e60b-7a98-f031-4e82-2a84500fe3a4\",\n \"urn:uuid:0b23af20-b544-d23b-c978-b304b985c3ca\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"669b2a2c-72fb-35fc-a744-22c22d8d170e\",\n \"urn:uuid:311fe423-6a5c-caa9-6b56-e94310c8ebb8\"\n ],\n \"deniedIds\": [\n \"19cdb50d-d2a1-a9a8-b068-eb08dabe8c2a\",\n \"urn:uuid:6974dee4-aa9a-7f46-57d7-dcefaf683adb\"\n ]\n },\n {\n \"confirmedIds\": [\n \"fee6fc72-f001-ea2f-c6c4-81fce9617263\",\n \"7bda89b7-1226-72d2-8eff-f2caea520d26\"\n ],\n \"deniedIds\": [\n \"27403837-27fe-764d-d288-d878960d9fc6\",\n \"urn:uuid:dd566c5c-cd8d-d1f4-be07-c6a13276cd19\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -60012,7 +60012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72a7abaa-dd69-4c78-9598-72778fa93dae", + "id": "5a1d764c-25e3-400f-9e5b-e6c80d956ecf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60047,7 +60047,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"208188b0-35cb-141b-9569-6a3e965a22d3\",\n \"8bf181bc-25b3-3e70-978f-f6a48f427b5e\"\n ],\n \"deniedIds\": [\n \"urn:uuid:88de915d-eb4e-adab-e9d6-ca1e83db65fc\",\n \"b4e1378b-e4c6-f283-24d6-3a0d686865a2\"\n ]\n },\n {\n \"confirmedIds\": [\n \"890e997e-9780-e1c5-4b7f-6a6ab8ac9295\",\n \"urn:uuid:989cf75f-82d7-17c6-0f3c-f13e910a0878\"\n ],\n \"deniedIds\": [\n \"5386e60b-7a98-f031-4e82-2a84500fe3a4\",\n \"urn:uuid:0b23af20-b544-d23b-c978-b304b985c3ca\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"669b2a2c-72fb-35fc-a744-22c22d8d170e\",\n \"urn:uuid:311fe423-6a5c-caa9-6b56-e94310c8ebb8\"\n ],\n \"deniedIds\": [\n \"19cdb50d-d2a1-a9a8-b068-eb08dabe8c2a\",\n \"urn:uuid:6974dee4-aa9a-7f46-57d7-dcefaf683adb\"\n ]\n },\n {\n \"confirmedIds\": [\n \"fee6fc72-f001-ea2f-c6c4-81fce9617263\",\n \"7bda89b7-1226-72d2-8eff-f2caea520d26\"\n ],\n \"deniedIds\": [\n \"27403837-27fe-764d-d288-d878960d9fc6\",\n \"urn:uuid:dd566c5c-cd8d-d1f4-be07-c6a13276cd19\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -60069,7 +60069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f2b7e33-f873-4868-8e18-17c262e3cc79", + "id": "d9161d89-6f32-4cb8-9660-0e270a9922d5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60104,7 +60104,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"208188b0-35cb-141b-9569-6a3e965a22d3\",\n \"8bf181bc-25b3-3e70-978f-f6a48f427b5e\"\n ],\n \"deniedIds\": [\n \"urn:uuid:88de915d-eb4e-adab-e9d6-ca1e83db65fc\",\n \"b4e1378b-e4c6-f283-24d6-3a0d686865a2\"\n ]\n },\n {\n \"confirmedIds\": [\n \"890e997e-9780-e1c5-4b7f-6a6ab8ac9295\",\n \"urn:uuid:989cf75f-82d7-17c6-0f3c-f13e910a0878\"\n ],\n \"deniedIds\": [\n \"5386e60b-7a98-f031-4e82-2a84500fe3a4\",\n \"urn:uuid:0b23af20-b544-d23b-c978-b304b985c3ca\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"669b2a2c-72fb-35fc-a744-22c22d8d170e\",\n \"urn:uuid:311fe423-6a5c-caa9-6b56-e94310c8ebb8\"\n ],\n \"deniedIds\": [\n \"19cdb50d-d2a1-a9a8-b068-eb08dabe8c2a\",\n \"urn:uuid:6974dee4-aa9a-7f46-57d7-dcefaf683adb\"\n ]\n },\n {\n \"confirmedIds\": [\n \"fee6fc72-f001-ea2f-c6c4-81fce9617263\",\n \"7bda89b7-1226-72d2-8eff-f2caea520d26\"\n ],\n \"deniedIds\": [\n \"27403837-27fe-764d-d288-d878960d9fc6\",\n \"urn:uuid:dd566c5c-cd8d-d1f4-be07-c6a13276cd19\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -60138,7 +60138,7 @@ "description": "", "item": [ { - "id": "e65bfe74-59fc-4cf2-9785-40d6d31a18cc", + "id": "3b353a5c-fa04-4016-ba00-683ea7869c4d", "name": "IAI Identity Outliers Summary", "request": { "name": "IAI Identity Outliers Summary", @@ -60179,7 +60179,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -60213,7 +60213,7 @@ }, "response": [ { - "id": "2e47b57c-b0b4-4d37-8e43-e02702a16159", + "id": "a5c1487d-b49e-41cc-8ee4-5793cdff41d6", "name": "Succeeded. Returns list of objects. Each object is a summary to give high level statistics/counts of outliers", "originalRequest": { "url": { @@ -60249,7 +60249,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -60303,7 +60303,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "66853102" + "value": "-40030441" } ], "body": "[\n {\n \"type\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"2021-05-01T18:40:35.772Z\",\n \"totalOutliers\": 50,\n \"totalIdentities\": 5000,\n \"totalIgnored\": 0\n },\n {\n \"type\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"2021-05-01T18:40:35.772Z\",\n \"totalOutliers\": 50,\n \"totalIdentities\": 5000,\n \"totalIgnored\": 0\n }\n]", @@ -60311,7 +60311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efe5ddff-c20c-4b7c-8de3-ecb89c2a182a", + "id": "9950c352-733e-4a5b-b8b0-9c093b729c47", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -60347,7 +60347,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -60400,7 +60400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92faca6f-2dc7-4fb4-a1d6-34a27d7de08a", + "id": "b3f2033f-83eb-4853-a1f5-e1abbc064d92", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60436,7 +60436,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -60489,7 +60489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "090a2b41-7087-4b3d-a5b9-320b1e23b21d", + "id": "7cd82981-410a-4322-aa15-f1b092af577a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60525,7 +60525,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -60578,7 +60578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cbfa2df-c0b6-4b75-b130-f2107e9b0dbc", + "id": "240643f4-da5c-4f1b-a411-199eb2894abe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60614,7 +60614,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -60667,7 +60667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba5bb164-bf37-4e21-b4cf-94b5b05f4e08", + "id": "42b7aaa4-f54e-498d-b70f-fb9dedc58249", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60703,7 +60703,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -60756,7 +60756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9e9198e-1158-4bfb-a95f-3dfb57236e2a", + "id": "a669092d-0517-4465-93fd-e1342fe081c9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60792,7 +60792,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -60851,7 +60851,7 @@ } }, { - "id": "e77a55e4-d45e-40e7-a919-9cc08d7d4ee9", + "id": "bffa8c25-4e43-4001-9642-e9309e4e2c44", "name": "IAI Identity Outliers Latest Summary", "request": { "name": "IAI Identity Outliers Latest Summary", @@ -60875,7 +60875,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -60891,7 +60891,7 @@ }, "response": [ { - "id": "3b522642-2c18-4579-a4b3-da6639f5a15d", + "id": "b45c56f1-bdad-47b9-a9a7-19947af48636", "name": "Succeeded. Returns list of objects. Each object is a summary to give high level statistics/counts of outliers", "originalRequest": { "url": { @@ -60910,7 +60910,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -60945,7 +60945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c67c366-9976-4602-9a21-3db8539a5317", + "id": "639b81a1-756c-4880-bb2c-a081126e4831", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -60964,7 +60964,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -60999,7 +60999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f62fd885-7567-4172-b574-5172402d8470", + "id": "2308dafa-8252-4d82-b858-92c80d460ba6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61018,7 +61018,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -61053,7 +61053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d511bfbe-59fb-4c91-a2e9-13458b8dfa49", + "id": "bda4d02e-8f22-47aa-9527-2a461613ab21", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61072,7 +61072,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -61107,7 +61107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6248e4b2-fec7-4434-86fb-a87ddfaec73e", + "id": "9b8baad9-5b55-44f2-acec-0a5e04d33643", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61126,7 +61126,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -61161,7 +61161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12ccbccc-e119-4a21-92e7-50a8230b20b3", + "id": "d4877078-f9f0-4691-a910-c897be9d6533", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61180,7 +61180,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -61215,7 +61215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a25ef655-4aa0-469b-b255-a2581a246351", + "id": "58e65552-90ad-4dd8-8cdb-6c7ebf582d0b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61234,7 +61234,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -61275,7 +61275,7 @@ } }, { - "id": "c2ceb4d9-44c7-4f9b-ba39-9b01c8c8dd65", + "id": "8fdcfcfc-5794-4403-84d3-8da932e89943", "name": "IAI Get Identity Outliers", "request": { "name": "IAI Get Identity Outliers", @@ -61359,7 +61359,7 @@ }, "response": [ { - "id": "2b4152fe-fd8b-4d9e-8263-7783b996ec9a", + "id": "4584b594-e207-4695-b327-77669ca9341e", "name": "Succeeded. Returns list of objects. Each object contains information about outliers", "originalRequest": { "url": { @@ -61458,7 +61458,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "66853102" + "value": "-40030441" } ], "body": "[\n {\n \"id\": \"5be33d3e-c54d-4ed7-af73-2380543e8283\",\n \"identityId\": \"5be33d3e-c54d-4ed7-af73-2380543e8283\",\n \"type\": \"LOW_SIMILARITY\",\n \"firstDetectionDate\": \"2021-05-01T18:40:35.772Z\",\n \"latestDetectionDate\": \"2021-05-03T18:40:35.772Z\",\n \"ignored\": false,\n \"attributes\": {\n \"displayName\": \"John Smith\",\n \"jobTitle\": \"Software Engineer\",\n \"department\": \"Engineering\"\n },\n \"score\": 0.92,\n \"unignoreType\": \"MANUAL\",\n \"unignoreDate\": \"2021-06-01T18:40:35.772Z\",\n \"ignoreDate\": \"2021-06-01T18:40:35.772Z\"\n },\n {\n \"id\": \"5be33d3e-c54d-4ed7-af73-2380543e8283\",\n \"identityId\": \"5be33d3e-c54d-4ed7-af73-2380543e8283\",\n \"type\": \"LOW_SIMILARITY\",\n \"firstDetectionDate\": \"2021-05-01T18:40:35.772Z\",\n \"latestDetectionDate\": \"2021-05-03T18:40:35.772Z\",\n \"ignored\": false,\n \"attributes\": {\n \"displayName\": \"John Smith\",\n \"jobTitle\": \"Software Engineer\",\n \"department\": \"Engineering\"\n },\n \"score\": 0.92,\n \"unignoreType\": \"MANUAL\",\n \"unignoreDate\": \"2021-06-01T18:40:35.772Z\",\n \"ignoreDate\": \"2021-06-01T18:40:35.772Z\"\n }\n]", @@ -61466,7 +61466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "effdacf5-940d-4078-a4aa-62811bd73468", + "id": "43c550ab-50ce-4b20-a7f7-4dc08a02405e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61564,7 +61564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba3d852a-c52d-4f88-ab74-2bd55c03c4e8", + "id": "44f88f53-c9e9-424d-8b8f-f2f78ddcf7ee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61662,7 +61662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d4c187e-62b5-4703-99ec-db2d7a89e2af", + "id": "0b61faaf-ca05-435f-821e-6befd2b0282c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61760,7 +61760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0acb05b7-9e7f-48d2-9de2-9eecee3d533f", + "id": "e02fc981-aef0-47e6-933b-527fd9d0b656", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61858,7 +61858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee8e0dfd-55d6-45c8-9d4a-c4e65215b31d", + "id": "35a09238-4436-488b-8290-b0d2907dc986", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61962,7 +61962,7 @@ } }, { - "id": "e96443a7-986d-4931-b7d9-96cbdfc43a74", + "id": "b8f87fb5-cf6d-41eb-a972-b29a0c62f404", "name": "Get identity outlier's contibuting features", "request": { "name": "Get identity outlier's contibuting features", @@ -62050,7 +62050,7 @@ }, "response": [ { - "id": "b836231b-13d1-42bd-bb30-2db2c6e8dca4", + "id": "ec17d353-b2e4-4a6e-b581-0a0de4ca9051", "name": "Succeeded. Returns list of objects. Each object contains a feature and metadata about that feature", "originalRequest": { "url": { @@ -62142,7 +62142,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "66853102" + "value": "-40030441" }, { "disabled": true, @@ -62151,15 +62151,15 @@ "type": "text/plain" }, "key": "accept-language", - "value": "minim" + "value": "exercitation laboris ex sit" } ], - "body": "[\n {\n \"id\": \"66e38828-5017-47af-92ff-9844871352c5\",\n \"name\": \"entitlement_count\",\n \"valueType\": \"INTEGER\",\n \"value\": 0.9995227640973379,\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.7703278322266414,\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.0712078132022087,\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.7287994752562192,\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": "dbb101e9-74ff-4e25-b364-cde6cfa3f4a0", + "id": "b5592c61-8880-4c2e-bf31-01ff1b895505", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62250,7 +62250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7925ad5a-2271-4ce5-a04e-520d4d114399", + "id": "9abf7a98-c6fe-40e7-a325-047b040dec59", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62341,7 +62341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd032bde-c2cb-4fda-8c3a-fd85305cd22a", + "id": "6cde4a4b-6139-46b0-a9fd-bb43ce32a3d9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62432,7 +62432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2a60c75-1d03-41be-b266-0f1c68293945", + "id": "a8d18496-91c2-4186-829e-74ff3f166509", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -62523,7 +62523,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99996066-89e3-4754-b4a8-da3ee78c2252", + "id": "def3a65f-a017-43c0-9082-f673e7aff488", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -62614,7 +62614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce32e3a5-9411-4be6-89b9-b8e4315f1cc8", + "id": "9a14f9b4-d614-4e12-bcd6-f0b0fee78463", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62711,7 +62711,7 @@ } }, { - "id": "ebd8d957-09f3-4c30-b20c-d47e9d0df42b", + "id": "acd70da3-19e1-42cd-be77-f8b8b70b026a", "name": "Gets a list of access items associated with each identity outlier contributing feature", "request": { "name": "Gets a list of access items associated with each identity outlier contributing feature", @@ -62811,7 +62811,7 @@ }, "response": [ { - "id": "255d5ff2-9121-49cb-bc24-30f08c6a8b41", + "id": "3494bea6-886e-4727-bd4c-d4a924f7db3b", "name": "The list of access items.", "originalRequest": { "url": { @@ -62904,7 +62904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "964a21e5-a1a1-46fc-b9f9-64e48d383726", + "id": "734c6f82-3c27-4b1d-8cc1-8a9c0e025b66", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62997,7 +62997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f0778a4-8761-4509-a749-e1b917539ca2", + "id": "bdec2082-1239-4d84-917f-8b7187ce53f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63090,7 +63090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "522c96a5-1abe-41c6-87dd-36414a24c267", + "id": "2500945b-a8b9-4d44-b785-f12ca3a1bbf9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63183,7 +63183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ce6ad00-f789-496a-bab2-b7da5e554385", + "id": "7a36b46f-2116-41db-a3c5-d7d302fd3aa0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -63276,7 +63276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4264a3d-4d17-4055-a401-da726f9c7107", + "id": "7572a712-47ac-448a-bb19-f947de99bfba", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63369,7 +63369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e5af05a-3b20-4487-9702-e3d4607a2bd0", + "id": "48148438-b464-42b6-bef6-77ac8f1bc3e0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63468,7 +63468,7 @@ } }, { - "id": "4ffcd577-5524-425b-ae31-bdd962e0aa7c", + "id": "b01fb93e-0eb0-40bf-bd35-2d3833c9388a", "name": "IAI Identity Outliers Ignore", "request": { "name": "IAI Identity Outliers Ignore", @@ -63511,7 +63511,7 @@ }, "response": [ { - "id": "f9830301-1519-41c9-a9e1-4f88f671c7e3", + "id": "88062040-90ac-43c7-a416-c31a4002c76e", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -63558,7 +63558,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5da06fb0-9558-4773-9575-3c9682650870", + "id": "44d84d35-4f28-43f6-8f32-4fe00acd86a1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63615,7 +63615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da661aa0-654e-4890-84e2-88f6e43e6f03", + "id": "dae7c798-63ee-40f0-a7f7-c58c5c3ea599", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63672,7 +63672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa0cf86c-19e0-4995-8c87-a0aea0fcf6a3", + "id": "3a2a9431-4459-4ae4-bf66-bb08b4490b9d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63729,7 +63729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50573580-8838-465b-bb04-7d3484026238", + "id": "03a876a3-6b99-41d2-88f1-2065a7d4c188", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63786,7 +63786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcad6206-2f66-490d-8f31-5d20eb76f812", + "id": "52c587da-7f0a-4594-a176-153f967db1e8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63849,7 +63849,7 @@ } }, { - "id": "d4a1d259-794f-4870-a55e-70c909de7c49", + "id": "c24e990e-dc3b-4275-a694-691c3c2bf9c7", "name": "IAI Identity Outliers Unignore", "request": { "name": "IAI Identity Outliers Unignore", @@ -63892,7 +63892,7 @@ }, "response": [ { - "id": "f58c5e1a-6575-4fdf-b1cd-c74a976e5def", + "id": "fbd47376-a0e2-45be-b0e9-537ae9f4428e", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -63939,7 +63939,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d6201b06-b54e-44bd-b1fe-c2d5a97ca23c", + "id": "2123c201-c8fb-4c0b-82ba-70c8d4753978", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63996,7 +63996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7134e426-aca0-4495-8339-af4c645dd11d", + "id": "57dbd1e2-8b0c-48a3-bc9d-cd37fbbd816f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64053,7 +64053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8960aacf-308a-45b2-afb0-99dc048ea411", + "id": "bf26591b-f43f-4613-afa9-68d1a3495034", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64110,7 +64110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67f71489-8b36-4de8-8833-7fc37bfb9192", + "id": "17c41bf9-6404-4722-be17-3cc54e531533", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64167,7 +64167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f7e5ef8-8dd8-42d0-83e9-0ef51001c45a", + "id": "a44edc26-f28f-440d-b049-669d993c3e48", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64230,7 +64230,7 @@ } }, { - "id": "56a31953-729a-46a0-a768-eca269e07aff", + "id": "2a6b568f-9bfb-4d4d-9f72-d7e21db1bff1", "name": "IAI Identity Outliers Export", "request": { "name": "IAI Identity Outliers Export", @@ -64254,7 +64254,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -64270,7 +64270,7 @@ }, "response": [ { - "id": "3f08145f-3af4-4c7c-a3f3-c098e27353bc", + "id": "55479191-70d1-4286-9a2b-ac8be574c665", "name": "Succeeded. Returns zip of 2 CSVs to download. 1 CSV for ignored outliers and 1 for non-ignored outliers", "originalRequest": { "url": { @@ -64289,7 +64289,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -64319,12 +64319,12 @@ "value": "application/zip" } ], - "body": "minim", + "body": "exercitation laboris ex sit", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "20d42dd2-a32c-4e84-aa96-1d1f8de1ce7c", + "id": "dcb7e5c9-5518-493b-8b00-cd08e827bc84", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64343,7 +64343,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -64378,7 +64378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56b2e60d-a7e1-4f7f-b36a-ae909f9a509e", + "id": "7e972435-5eb4-4f4e-9d71-cc277554daaa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64397,7 +64397,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -64432,7 +64432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4065e4ef-c3ac-4751-a418-1b05947ad55f", + "id": "a2a591f9-7353-49ba-b591-071f6e04a9ee", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64451,7 +64451,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -64486,7 +64486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb2550fc-1fd3-4b56-a729-fa659328aa73", + "id": "00920517-d5db-4ec2-840a-1f2de0b89a4c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64505,7 +64505,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -64540,7 +64540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4d8be1e-e8b6-4688-8aa0-36bf75e2f3e2", + "id": "bbfac950-c789-47fb-b842-8b98c0f52173", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64559,7 +64559,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -64600,7 +64600,7 @@ } }, { - "id": "72e62554-4b66-479f-960d-02f9b8047d67", + "id": "295bc638-2abe-4391-9b3b-2849d7949b1a", "name": "Get identity outlier contibuting feature summary", "request": { "name": "Get identity outlier contibuting feature summary", @@ -64641,7 +64641,7 @@ }, "response": [ { - "id": "dcfc2759-02b6-48ee-9c3a-d8b13948d2f5", + "id": "824a46fa-d5a4-4772-80d2-8e06a34809f2", "name": "Succeeded. Returns selected contributing feature summary for an outlier", "originalRequest": { "url": { @@ -64686,15 +64686,15 @@ "type": "text/plain" }, "key": "accept-language", - "value": "minim" + "value": "exercitation laboris ex sit" } ], - "body": "{\n \"contributingFeatureName\": \"Rare Access\",\n \"identityOutlierDisplayName\": \"John Smith\",\n \"outlierFeatureDisplayValues\": [\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"esse dolore incididunt sed velit\",\n \"valueType\": \"INTEGER\"\n },\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"eu quis Ut\",\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 elit officia aliqua\",\n \"valueType\": \"INTEGER\"\n },\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"minim\",\n \"valueType\": \"INTEGER\"\n }\n ],\n \"featureDefinition\": \"Identity total number of entitlements\",\n \"featureExplanation\": \"An identity that has too much rare access has a higher change of becoming a security threat due to the unique access they possess\",\n \"peerDisplayName\": \"Mary Jane\",\n \"peerIdentityId\": \"9f9d5d53ad0e48fba7352f6da9f1b8gbg\",\n \"accessItemReference\": {\n \"displayName\": \"All Rare Entitlements\",\n \"searchPlaceholder\": \"Search by name or description\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ec6fc737-40c8-40f5-95e6-1665ca6e0b00", + "id": "39989f3a-f7a8-47a9-8698-6ba4c9000809", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64738,7 +64738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ccb5ded-5118-4556-98cb-14b39b28f85d", + "id": "98bc1575-37e2-4acd-ab8b-559c29a2f62f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64782,7 +64782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee0aa940-8ab1-4030-90dc-8081b83c23e8", + "id": "2cbf6b69-6271-439a-ac42-02c99b20c64e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64826,7 +64826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8feb7662-ec5e-43a9-b8da-fb0bc9e1a98b", + "id": "f9767a54-3d2c-41f9-b4cf-969b16d7b013", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -64870,7 +64870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "605e3887-b5af-4325-9bad-aedc536cc8d6", + "id": "4306ef55-4545-4e58-8bcd-83cd3fb59e5f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64914,7 +64914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b7ba50b-fa37-4b6f-a4d5-55ee3d74031c", + "id": "db0f83ed-9727-4e4a-b77e-f02428a28295", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64970,7 +64970,7 @@ "description": "", "item": [ { - "id": "1eb2f26e-75ed-48ab-a727-cbe7aa89fef3", + "id": "d75a1372-0384-442a-bf19-d23257f8af39", "name": "Identity Outliers List", "request": { "name": "Identity Outliers List", @@ -65040,7 +65040,7 @@ }, "response": [ { - "id": "ef919204-aa90-4417-8642-bb13357896d6", + "id": "082ca5ec-b43f-4430-972b-753f3391eb35", "name": "List of identities that are not included in peer groups.", "originalRequest": { "url": { @@ -65108,12 +65108,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"sunt exercitation\",\n \"type\": \"quis\",\n \"peer_group_id\": \"laborum pariatur ex ut\",\n \"attributes\": {\n \"pariatur_29\": {}\n }\n },\n {\n \"id\": \"commodo non\",\n \"type\": \"aliquip sed in non\",\n \"peer_group_id\": \"consequat deserunt sint incididunt aliquip\",\n \"attributes\": {\n \"veniam_f\": {}\n }\n }\n]", + "body": "[\n {\n \"id\": \"id Ut labore adipisicing\",\n \"type\": \"non aliqu\",\n \"peer_group_id\": \"eu dolor consequat\",\n \"attributes\": {\n \"nisi_a\": {},\n \"adipisicing4\": {},\n \"consectetur7c\": {},\n \"dolore_0_5\": {}\n }\n },\n {\n \"id\": \"ex nostrud officia magna\",\n \"type\": \"quis occaecat ad exercitation mollit\",\n \"peer_group_id\": \"commodo ullamco\",\n \"attributes\": {\n \"laboris6e\": {}\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e14ee915-3100-481f-8406-a4f32fa9d090", + "id": "1fca78c2-e3cb-45c2-8653-7819eed1aefa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65186,7 +65186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0d1483b-c527-4fef-bbfc-358e6493e3c4", + "id": "df517c12-b802-4ea3-be4b-445049a47041", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65259,7 +65259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b76eaa8d-8558-41ef-8e20-ab7063306cbb", + "id": "99c387b6-6e9a-4be4-bd0b-f932884bb7e1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65332,7 +65332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f9b52f4-45ca-4e3d-85b6-0fa54a31bf77", + "id": "b4b610bf-c743-4365-bcb1-a3ec18cca35e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65405,7 +65405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "602d69ce-4c14-405c-8556-ff8bf05d24df", + "id": "706830f2-854d-423a-bdd2-91f774e50aba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65490,7 +65490,7 @@ "description": "", "item": [ { - "id": "c576c065-4b9b-410e-b36c-24394e69ffdb", + "id": "bf6d4065-73ea-4290-9e94-69273bca2c51", "name": "Returns a Recommendation Based on Object", "request": { "name": "Returns a Recommendation Based on Object", @@ -65533,7 +65533,7 @@ }, "response": [ { - "id": "83fd3ee3-ca2a-43bd-99ac-fb481c079386", + "id": "8a9e13c2-cec5-4ff7-85ce-a1580e617b65", "name": "The recommendations for a customer", "originalRequest": { "url": { @@ -65585,12 +65585,12 @@ "value": "application/json" } ], - "body": "{\n \"response\": [\n {\n \"request\": {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n \"recommendation\": \"YES\",\n \"interpretations\": [\n \"75% of identities with the same department have this access. This information had a high impact on the overall score.\",\n \"67% of identities with the same peer group have this access. This information had a low impact on the overall score.\",\n \"42% of identities with the same location have this access. This information had a low impact on the overall score.\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"2c91808457d8f3ab0157e3e62cb4213c\",\n \"entitlementId\": \"2c91809050db617d0150e0bf3215385e\",\n \"recommendation\": \"YES\",\n \"overallWeightedScore\": -66668565.71045141,\n \"featureWeightedScores\": {\n \"non_403\": 63738030.332595944,\n \"elit3c3\": -17724211.288348883,\n \"commodob0\": -45782193.76701376,\n \"dolord\": 53359830.39569482\n },\n \"threshold\": 62184817.23900902,\n \"identityAttributes\": {\n \"minim_bd8\": {\n \"value\": \"incid\"\n },\n \"enim6\": {\n \"value\": \"d\"\n },\n \"laboris4df\": {\n \"value\": \"ex mollit\"\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\": 2844988.4175619185,\n \"featureWeightedScores\": {\n \"sunt267\": -12850660.654417962\n },\n \"threshold\": 61474757.71476674,\n \"identityAttributes\": {\n \"aliqua85\": {\n \"value\": \"elit voluptate\"\n },\n \"qui_d2\": {\n \"value\": \"Excepteur Duis cillum ut\"\n },\n \"culpa7b\": {\n \"value\": \"deserunt veniam\"\n },\n \"ipsum_569\": {\n \"value\": \"consequat\"\n },\n \"pariatur_bf\": {\n \"value\": \"Ut incididunt\"\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\": 24758210.59263645,\n \"featureWeightedScores\": {\n \"sunt_db\": 53502129.1374428,\n \"nostrud61\": 99764399.84909987\n },\n \"threshold\": -39266687.61760337,\n \"identityAttributes\": {\n \"animb\": {\n \"value\": \"do eiusmod \"\n },\n \"id_36\": {\n \"value\": \"ipsum \"\n },\n \"cupidatat_0b\": {\n \"value\": \"in anim eu fugiat\"\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\": 98311347.70053604,\n \"featureWeightedScores\": {\n \"nisi_0c\": -60032773.72505385,\n \"ex_5c6\": -91371003.19693303,\n \"Lorem_5\": -29057622.37980385\n },\n \"threshold\": -91663136.8698959,\n \"identityAttributes\": {\n \"exb\": {\n \"value\": \"est minim quis sunt cillum\"\n }\n },\n \"featureValues\": {\n \"feature\": \"department\",\n \"numerator\": 14,\n \"denominator\": 14\n }\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "941c1e08-6f6c-4267-863a-01c70df263ac", + "id": "b84ad31b-69c3-4add-8b5c-6765b9364499", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65647,7 +65647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f18820a-33f5-4346-a935-d4b8b13b00ef", + "id": "b880731a-6c3e-4a1c-949d-60ad04d25150", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65704,7 +65704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f1f16ca-96fc-41ec-94d2-cef69b97eefc", + "id": "aaf805a1-c95a-4b68-8bc9-793157ffe027", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65761,7 +65761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "847dde76-5088-45e1-9d37-cbcb22bbccd7", + "id": "5a7b0d43-da8d-4b00-a2c2-3f8d2911c68b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65818,7 +65818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e178d46b-4b30-4682-8dac-dce6a1c05d4e", + "id": "d3bcc969-e398-467f-aa90-014d7f43e9fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65881,7 +65881,7 @@ } }, { - "id": "452ca552-f00f-476a-9b8f-e4ac57dfe087", + "id": "a3f8a417-d039-451c-8c6b-d3f6cd99f231", "name": "Get certification recommendation config values", "request": { "name": "Get certification recommendation config values", @@ -65911,7 +65911,7 @@ }, "response": [ { - "id": "c3473ff5-94e3-444a-8d19-d658d1648056", + "id": "4ad0983c-0859-46c5-86a3-3f1930542b94", "name": "Cert recommendation configuration attributes", "originalRequest": { "url": { @@ -65955,7 +65955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e5732e4-6c3d-495b-8dd2-6cc588f9d5f1", + "id": "8923a739-e16d-443f-8bc1-836d2709127b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65999,7 +65999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0084f29-9167-48e1-b1d0-2b30de350308", + "id": "00b82631-a099-40b6-bf73-98bab28e9150", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66043,7 +66043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1d8e70e-05dc-4f89-8218-348fe5ca457e", + "id": "c282cf6c-a8ff-464f-a5b6-2538c1a068e4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66087,7 +66087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4bdf5e2-0047-4ee7-8de1-250031b4bb64", + "id": "9eb06d8a-e97f-4832-ba1f-fcab82a9f8d9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66137,7 +66137,7 @@ } }, { - "id": "76bcf66d-036f-435b-84d8-1c721df389e7", + "id": "d8ebae82-5876-425f-adbb-33b46506f897", "name": "Update certification recommendation config values", "request": { "name": "Update certification recommendation config values", @@ -66180,7 +66180,7 @@ }, "response": [ { - "id": "c17d31f2-8da3-4e8b-bd59-d9277e321368", + "id": "f271219c-e4bc-41f9-ab08-1470ca506e1b", "name": "Cert recommendation configuration attributes after update", "originalRequest": { "url": { @@ -66237,7 +66237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2cf57a5-5412-45c7-ba65-dc48761aa764", + "id": "08b347d3-b9d6-4257-8bea-b837d9696c25", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66294,7 +66294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45477e4e-9f7b-4438-bba6-bce5b2a2a79c", + "id": "5e9ae217-59cd-4eac-a46a-8f6cf5f89103", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66351,7 +66351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f642a433-ccab-44bd-933b-010dd22a0bef", + "id": "a1db5217-502d-4254-a503-aad9cdf03b47", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66408,7 +66408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0abee9bd-ed06-4b3c-af4a-ce3473169898", + "id": "5deb9226-13ee-4e6f-bc47-a7eca20cf18b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66477,7 +66477,7 @@ "description": "", "item": [ { - "id": "25aaf79c-ca08-46fe-ae4b-d1dafadc4153", + "id": "cbf07c87-5edf-4fc8-b99b-4759d61df516", "name": "Create a role mining session", "request": { "name": "Create a role mining session", @@ -66519,7 +66519,7 @@ }, "response": [ { - "id": "26a4de67-9897-4194-a8ab-dafdbb284a79", + "id": "81bcd652-f381-4e93-8e05-881822d06cdb", "name": "Submitted a role mining session request", "originalRequest": { "url": { @@ -66575,7 +66575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efa0e347-ea29-449e-a7eb-773f6a008f22", + "id": "ad92d26d-92f1-4996-b663-2d9d637b1fdb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66631,7 +66631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abe0db07-28a0-4fdf-a743-c9c848d22f23", + "id": "4ceaf5da-8fa6-4434-8376-4d1f6e7a92d8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66687,7 +66687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffe3aba5-0f36-4b94-af5e-a5dea25455f7", + "id": "7d002461-a614-4d38-a2f6-55f7eb3a6667", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66743,7 +66743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ca2929a-80cf-4d62-a0fd-d5a7cea3e515", + "id": "4100c9d1-6890-47e3-91af-5b440f7a3e3a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66799,7 +66799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "933f30fd-002c-404c-b8b8-80c2af4f3edf", + "id": "68e3685d-94ac-4364-bcb7-45cba929e712", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66861,7 +66861,7 @@ } }, { - "id": "ec305f4f-f64f-46b2-8511-fb685af37bd4", + "id": "94125e73-8761-4f9b-a533-373b49f12d62", "name": "Retrieves all role mining sessions", "request": { "name": "Retrieves all role mining sessions", @@ -66936,7 +66936,7 @@ }, "response": [ { - "id": "4cd93c7f-d1a3-45b2-bf93-7b501e77ed5e", + "id": "f199cc4e-0018-4626-af2b-672bf1c209b8", "name": "Succeeded. Returns all role mining sessions that match the query parameters.", "originalRequest": { "url": { @@ -67025,7 +67025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bda4938-6287-4a90-9f9d-d99eba30ccbd", + "id": "3e6c2fef-c0c3-463e-997f-eb52a47cdf42", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67114,7 +67114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33ef53a6-9f11-449f-9640-a30f997979be", + "id": "5056afcd-7d3d-45d4-9ad7-2d2e1d3449cc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67203,7 +67203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73facdb2-cae4-4f2b-8f7e-4ad437562bdb", + "id": "dc7c3f2e-a85c-47dc-b361-fde2a3610f8f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67292,7 +67292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9d83b6c-f5cb-4f89-8a5a-0c7606a44858", + "id": "34c550e1-5da9-46c3-8d86-ac9c1831c354", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67381,7 +67381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0373c40-108c-4fa8-b2ae-9ef8ddeba17a", + "id": "3207b587-c660-4be3-b8a7-56de1f01f599", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67476,7 +67476,7 @@ } }, { - "id": "cacfb2ed-4788-4575-bd31-452e4233ccdd", + "id": "cd320707-1bd9-4f97-acb5-2feec6c93cce", "name": "Patch a role mining session", "request": { "name": "Patch a role mining session", @@ -67530,7 +67530,7 @@ }, "response": [ { - "id": "a5b52596-4bf1-4cef-b739-a14eaa922d0b", + "id": "c16b9126-448b-479f-bc09-9882ead2335e", "name": "Success", "originalRequest": { "url": { @@ -67587,7 +67587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82c7ede0-9fd4-4ca0-aef1-596024663ee0", + "id": "0e475bab-1226-4c27-840c-b6720ebe007f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67644,7 +67644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "902cee18-9ccd-41e1-ac67-e3564c6a1781", + "id": "1e7fe3c2-d718-41da-9d51-c88d1e5a57d5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67701,7 +67701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afc1afc6-1ada-4305-ace4-c930d72094d9", + "id": "af1e4e50-5b69-4107-a754-4c88570b6075", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67758,7 +67758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c00fa54-81a9-47b8-8378-cea266e86404", + "id": "1d927657-319f-403a-9ec9-4d11f054a5fb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -67815,7 +67815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d01bfc75-e37b-4a61-903b-98d5dc065730", + "id": "be2cf548-734c-4c51-aa54-e066a5067270", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67872,7 +67872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f849d507-451e-44aa-a3dc-5caa81a66022", + "id": "db537eae-04f8-4235-bf2d-c02fd62dfd1b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67935,7 +67935,7 @@ } }, { - "id": "57c80a39-a2a3-44dd-87eb-aca0d1084ac4", + "id": "c983d735-8570-4e66-ae7d-de0c3a7335e8", "name": "Get a role mining session", "request": { "name": "Get a role mining session", @@ -67976,7 +67976,7 @@ }, "response": [ { - "id": "44d438b1-d70a-4558-9df9-546995a8f411", + "id": "bf5407b1-01db-4599-8e2f-9d1ce32da079", "name": "Returns a role mining session", "originalRequest": { "url": { @@ -68020,7 +68020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86bee074-56d5-4cb6-8b89-b375ded97115", + "id": "9bc92a82-ab3f-4889-9996-46fa0acafb7a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68064,7 +68064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fb7c50d-6d54-406b-9879-3b2459dad98e", + "id": "fd5038d1-6971-48bb-9f2a-c3c24df4ac03", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68108,7 +68108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2deafe01-1e18-4a4a-8ff1-e34ca14c6c00", + "id": "136a4414-6c31-4258-90c4-50a6aeb9bbc6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68152,7 +68152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "937cb5d8-8a1a-4864-bcba-3e0d00bf2290", + "id": "e78df6c4-d790-419c-9bb1-39857b4578d1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -68196,7 +68196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e701b3c6-618d-4169-b749-ce1feeaf12cc", + "id": "a4565b36-4f3b-4a48-b5b2-83832bd2185a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68240,7 +68240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ff42b4c-6cc9-4e72-915f-d8f4178a75c6", + "id": "d92fd42e-dc41-4773-96e6-b079ca9f4332", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68290,7 +68290,7 @@ } }, { - "id": "52d1010a-7514-4cda-8bb3-0561ae4d6727", + "id": "70f91b32-14c9-40a2-a5dd-2cbd5b58a20b", "name": "Get role mining session status state", "request": { "name": "Get role mining session status state", @@ -68332,7 +68332,7 @@ }, "response": [ { - "id": "9eeae1f7-a4ee-4a0e-9165-d7322434f137", + "id": "80f0a528-c75d-4838-b914-0bca894e6d6f", "name": "Succeeded. Returns session status", "originalRequest": { "url": { @@ -68377,7 +68377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b6590a4-661a-4c8d-a726-73b93298d639", + "id": "0867999e-b530-4e7c-856d-894f620c86a0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68422,7 +68422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7449dbef-e80f-4f98-8b0c-45a93b26fa33", + "id": "7be1c12f-ae9b-48f8-8eb3-2298d0155ead", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68467,7 +68467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1888e3c2-3af6-4fa3-8da3-17b3dc333e0e", + "id": "b746747c-f2b7-439b-9d16-944d0a14031d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68512,7 +68512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3553a9c-639c-4a6b-b768-48459ffed0da", + "id": "86de32c5-6313-454f-8ad6-ea75f4e40244", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68563,7 +68563,7 @@ } }, { - "id": "658ec131-7eb0-433f-8af3-377aff5f1fed", + "id": "df0af8a5-ea79-4289-8d38-25f511c16b5c", "name": "Retrieves all potential role summaries", "request": { "name": "Retrieves all potential role summaries", @@ -68651,7 +68651,7 @@ }, "response": [ { - "id": "c4e6d493-6160-457c-893d-03ede6d6150e", + "id": "7483c82f-399f-4ef6-a247-f061a719e8dd", "name": "Succeeded. Returns a list of potential role summaries for a role mining session.", "originalRequest": { "url": { @@ -68742,7 +68742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae51296a-1819-4f30-a8da-a9f1859747d5", + "id": "c8dc9121-ffc3-4849-8366-772dc33fdfc2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68833,7 +68833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9983fbbe-4714-42a0-a7ca-346435250b91", + "id": "fe2de078-a7f1-494a-862d-82f09c6ae4da", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68924,7 +68924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49ca634f-69ce-4276-a362-5ea807d066c0", + "id": "14539edb-4347-4db1-b86e-190eb408b4c7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69015,7 +69015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7b658fd-00a5-4ebe-a722-339bda3df4aa", + "id": "418701da-020e-43ea-a22c-5f826082b0e3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69106,7 +69106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "042ceb2a-a1c4-4ff5-9bfb-c932f9afb8aa", + "id": "c0d2c394-e1f3-4612-9639-16440940a0a9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69203,7 +69203,7 @@ } }, { - "id": "743162b1-2033-4665-9f7d-e2fe5384c0db", + "id": "c2c63a41-05b5-404f-9029-092e85bffb48", "name": "Retrieves a specific potential role", "request": { "name": "Retrieves a specific potential role", @@ -69256,7 +69256,7 @@ }, "response": [ { - "id": "70bbe614-6158-4740-baf4-d54289f3b75c", + "id": "adef6757-c26c-43cb-a0ed-68cb2673bb17", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -69297,12 +69297,12 @@ "value": "application/json" } ], - "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"officia394\": \"nisi officia nostrud\"\n },\n {\n \"occaecat_1\": \"pariatur fugiat\",\n \"ad_5\": \"velit fugiat dolor ut occaecat\",\n \"nostrudf_9\": \"Excepteur cillum enim aliqua\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"magna_92\": \"in eu quis aliqua dolor\",\n \"ut61\": \"dolore id laboris sunt\",\n \"officia_d\": \"irure dolor anim adipisicing\"\n },\n {\n \"ipsum_f\": \"cupidatat ipsum\"\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 \"adipisicing1\": \"est fugiat commodo\"\n },\n {\n \"esse_e\": \"eu nulla\",\n \"sed_4ec\": \"proident Lorem\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"laborum_2d\": \"amet consectetur veniam\",\n \"pariatur9\": \"pariatur eiusmod\"\n },\n {\n \"magna_7\": \"sit incididunt mollit deserunt\",\n \"in_3_4\": \"anim nisi\",\n \"in37\": \"est ullamco\"\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": "878dfae1-4a60-4d34-be99-15a6d1c6666d", + "id": "ab2e3aa8-7b22-4cb8-bdfc-a626f2b2a4d4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69348,7 +69348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3d4ef70-c43b-4c10-9456-ed77b3421765", + "id": "a0e7b8f0-2a32-47f3-a042-82a02c9a43ea", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69394,7 +69394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c944c42-9b5f-4f1c-901e-2bd3a1dcb276", + "id": "f2fa07de-83d4-49e7-a96f-d04f3a5e2823", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69440,7 +69440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cb5bd3b-f1ad-46ac-a516-b379bea04d92", + "id": "fcb2ea1b-7777-4776-87bc-0cfa7b1788db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69486,7 +69486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c625123-e4de-4074-9af0-ad07989d85af", + "id": "a8593de8-0b2b-4e5c-ab7f-667538c5c684", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69538,7 +69538,7 @@ } }, { - "id": "f74e8671-46a6-4e4f-a4ec-b4feda48e35e", + "id": "522069f6-bb2a-4b42-b09e-2d69bf393881", "name": "Update a potential role", "request": { "name": "Update a potential role", @@ -69604,7 +69604,7 @@ }, "response": [ { - "id": "e50ddb6c-fdc5-4a1b-a6ae-4e423aebb12f", + "id": "9695e552-d498-412b-a6d4-e128b73e63a3", "name": "Succeeded. Returns the potential role summary based on the potentialRoleId provided.", "originalRequest": { "url": { @@ -69663,7 +69663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c73326e8-5a1e-469c-b10c-669d0320c5e0", + "id": "c118718f-86b1-4863-98d0-8331b506dd3e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69722,7 +69722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e0ae4f9-be68-4123-8b8d-ea8fb23d4062", + "id": "c5a3033d-8bfd-4001-8bba-b6aa89f1738e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69781,7 +69781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d25d9474-3bd7-4587-80ac-578b71c4db7c", + "id": "054e13f0-039c-42f9-988b-7e76986235e4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69840,7 +69840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f54ec057-cea4-4a0a-a91f-2a2bfcbc27db", + "id": "78a51f38-bb47-4a51-b729-9afc2f0fda12", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -69899,7 +69899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1939dd26-0941-4e34-ac30-8c20788fa5da", + "id": "fc46958b-bc95-446b-88dc-2900ae050bb6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69958,7 +69958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14679e63-c6fc-4eb0-9397-ff66829d775d", + "id": "fdfee818-78ae-42c9-9568-f734146159b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70023,7 +70023,7 @@ } }, { - "id": "ef8069b2-809f-40c3-93a6-66dae7bf287f", + "id": "d9a8610c-63a2-4c9b-9ff4-c6f570cca2d6", "name": "Retrieves the applications of a potential role for a role mining session", "request": { "name": "Retrieves the applications of a potential role for a role mining session", @@ -70105,7 +70105,7 @@ }, "response": [ { - "id": "4a531f20-b399-4754-85ea-9c24c8b7a156", + "id": "222ac792-d052-4597-81dc-a59c7b7a89f9", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -70180,7 +70180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "beefed6f-8de0-486b-8d63-b5c1279a859b", + "id": "55532432-88a0-4848-bf29-bf35c754c49d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70255,7 +70255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bbb6522-4a0d-41d9-854e-1a45ca9f4b79", + "id": "3934fab6-4e3e-4744-a81d-76f9fd8cdbf3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70330,7 +70330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d34c993e-5c09-4e1f-af7e-24e836047b94", + "id": "17b907e6-847d-4358-9801-b66ce3bea093", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70405,7 +70405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3c8c1cd-32f7-4fee-9c6c-d21097fcf9c4", + "id": "95099e2d-4549-4ee3-8c47-b5ef5043fd69", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70486,7 +70486,7 @@ } }, { - "id": "9df813c0-ab8b-42a5-9ee8-265d06e6e216", + "id": "05aaf5f3-2110-44d8-a4fe-a2825c56fd38", "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", @@ -70513,7 +70513,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "false" + "value": "true" }, { "disabled": true, @@ -70595,7 +70595,7 @@ }, "response": [ { - "id": "71ff99c2-84ed-4d60-aff6-1e4b84fd9421", + "id": "8222201b-e50b-4c8a-b587-d7402c614732", "name": "Succeeded. Returns a list of entitlements for a potential role.", "originalRequest": { "url": { @@ -70617,7 +70617,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "false" + "value": "true" }, { "disabled": true, @@ -70697,7 +70697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bc0496f-bcb7-49ce-83aa-1be10aee2e84", + "id": "f4a95058-dc25-4b63-91ad-2894f5e0af84", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70719,7 +70719,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "false" + "value": "true" }, { "disabled": true, @@ -70799,7 +70799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4078d2fe-fb52-4fa1-b59b-c179e482eb22", + "id": "5332a7b1-3a2a-48db-931b-54b186c5b5b5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70821,7 +70821,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "false" + "value": "true" }, { "disabled": true, @@ -70901,7 +70901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79ded399-5d7a-4e08-8415-d008deda6786", + "id": "b42eb915-476b-457d-842c-4d487741fd91", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70923,7 +70923,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "false" + "value": "true" }, { "disabled": true, @@ -71003,7 +71003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ace9ea90-6988-475f-9981-2c716595bab8", + "id": "8a33c398-a043-46d7-9624-e528d4f083c9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71025,7 +71025,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "false" + "value": "true" }, { "disabled": true, @@ -71111,7 +71111,7 @@ } }, { - "id": "1467d2b2-4bbd-441b-b50d-7a0955344b24", + "id": "78f7de22-4e45-4a4e-b3e9-c11e2e5e56e6", "name": "Retrieves entitlement popularity distribution for a potential role in a role mining session", "request": { "name": "Retrieves entitlement popularity distribution for a potential role in a role mining session", @@ -71175,7 +71175,7 @@ }, "response": [ { - "id": "f403dfc6-8304-47c8-94ba-d68b4b7fa929", + "id": "e380ecca-2d34-4ab5-ac48-4312f1b58c43", "name": "Succeeded. Returns a map containing entitlement popularity distribution for a potential role.", "originalRequest": { "url": { @@ -71227,12 +71227,12 @@ "value": "application/json" } ], - "body": "{\n \"dolore_9\": 33197565,\n \"officia_4\": -61361707\n}", + "body": "{\n \"in_6\": -54957713,\n \"officiae54\": 10227040\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f93ef333-4849-4c60-ba7b-b3d5188d2246", + "id": "3eea6449-f91c-4c8c-91b8-7f6ff8758d18", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71289,7 +71289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcc0c3c8-6846-451b-92dd-3b9e721a7f3d", + "id": "a50bae48-1991-45e1-bb7a-135e99f77bf7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71346,7 +71346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f60b24e0-2e85-4700-9253-30d3d2e124d9", + "id": "c66ecace-9baa-492d-adf3-657787b0ed7c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71403,7 +71403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce744a11-0e2f-404e-a197-e1efe8e7290e", + "id": "3833ac2c-164e-457d-94f7-5ce75f0bd3d8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71466,7 +71466,7 @@ } }, { - "id": "410cb7c5-a320-4dc4-b4fd-1e74b02c3859", + "id": "277d567a-6e97-4f6b-a8df-19d7f2844b11", "name": "Edit entitlements for a potential role to exclude some entitlements", "request": { "name": "Edit entitlements for a potential role to exclude some entitlements", @@ -71533,7 +71533,7 @@ }, "response": [ { - "id": "7fc93e97-9892-40b3-a67e-a5c30a02373d", + "id": "04590f89-9444-4001-b776-81be5cc3c2a9", "name": "Adds or removes entitlements from a potential role's entitlement exclusion list.", "originalRequest": { "url": { @@ -71588,12 +71588,12 @@ "value": "application/json" } ], - "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"officia394\": \"nisi officia nostrud\"\n },\n {\n \"occaecat_1\": \"pariatur fugiat\",\n \"ad_5\": \"velit fugiat dolor ut occaecat\",\n \"nostrudf_9\": \"Excepteur cillum enim aliqua\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"magna_92\": \"in eu quis aliqua dolor\",\n \"ut61\": \"dolore id laboris sunt\",\n \"officia_d\": \"irure dolor anim adipisicing\"\n },\n {\n \"ipsum_f\": \"cupidatat ipsum\"\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 \"adipisicing1\": \"est fugiat commodo\"\n },\n {\n \"esse_e\": \"eu nulla\",\n \"sed_4ec\": \"proident Lorem\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"laborum_2d\": \"amet consectetur veniam\",\n \"pariatur9\": \"pariatur eiusmod\"\n },\n {\n \"magna_7\": \"sit incididunt mollit deserunt\",\n \"in_3_4\": \"anim nisi\",\n \"in37\": \"est ullamco\"\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": "a6ff5121-a0ba-4650-8a65-da0c2ff1f55f", + "id": "44c26f64-c956-425d-97be-8649c769e327", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71653,7 +71653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12668cd1-a4b3-4f6b-9135-a225c68732be", + "id": "3576e18a-b184-4790-930a-2d00fe49f3e7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71713,7 +71713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80d7eba3-5d1c-41e8-8ebd-06206423ff15", + "id": "2b2e91d4-b2e3-4e9f-a9b0-c54f8ebde82e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71773,7 +71773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19c29ed7-56f5-4bc7-ad41-541e82854db5", + "id": "4f027e6c-5fe8-4051-b0ee-2a907c116bfd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71839,7 +71839,7 @@ } }, { - "id": "eed71f1e-79b5-4243-aee4-6ee56c578ad3", + "id": "212cd19f-e996-41c9-9044-5687d8903790", "name": "Retrieves identities for a potential role in a role mining session", "request": { "name": "Retrieves identities for a potential role in a role mining session", @@ -71875,7 +71875,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -71939,7 +71939,7 @@ }, "response": [ { - "id": "15485d61-547e-4bbd-8b44-0fbb24a29b3f", + "id": "3459e246-cef4-44e4-b799-15f6bc86ad88", "name": "Succeeded. Returns a list of identities for a potential role.", "originalRequest": { "url": { @@ -71970,7 +71970,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -72032,7 +72032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "700488f5-b900-40ed-a924-a32d675f80c0", + "id": "0a3fd880-016c-4398-bfe1-f0a9d8512f2b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72063,7 +72063,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -72125,7 +72125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "880a9fd4-5ed6-48d4-9a6f-e8cfccc08234", + "id": "0d4a5b08-58e6-4a46-bd90-949ec8f019aa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72156,7 +72156,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -72218,7 +72218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a3a4eb1-c66f-46de-915a-ac83c959a45a", + "id": "7c52d104-d780-4f55-856a-41d0458448f3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72249,7 +72249,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -72311,7 +72311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd07f784-d586-4bfd-9542-dbe56ef34d7e", + "id": "e4f1a91d-a435-4051-9e6f-3b0be9807f93", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72342,7 +72342,7 @@ "type": "text/plain" }, "key": "filters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -72410,7 +72410,7 @@ } }, { - "id": "7998d181-0959-4e6e-8bdb-017177e73da9", + "id": "44197ca3-5ea8-458b-b33a-22a693a58bf9", "name": "Export (download) details for a potential role in a role mining session", "request": { "name": "Export (download) details for a potential role in a role mining session", @@ -72464,7 +72464,7 @@ }, "response": [ { - "id": "ac40813a-ee1d-4793-b22f-59de87803cc6", + "id": "2ac93be2-3586-4999-9e0c-2a4aba70a7a5", "name": "Succeeded. Returns a zip file containing csv files for identities and entitlements for the potential role.", "originalRequest": { "url": { @@ -72506,12 +72506,12 @@ "value": "application/zip" } ], - "body": "minim", + "body": "exercitation laboris ex sit", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "c1072b52-3e17-4c31-b8d9-6a6ec2c1aec1", + "id": "8ea1aabc-7809-4929-a410-1638b436e916", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72558,7 +72558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f494bec-abbd-4fb3-9d6d-7a825f973933", + "id": "8a41ca4d-b741-43d0-800a-b416c70dd04c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72605,7 +72605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70d45b9d-7962-4366-a9b8-1023ef883e33", + "id": "b748e590-bdc9-40b1-839d-4eab80808855", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72652,7 +72652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dccfa0f-d31b-4a3b-a014-2a273bc92cef", + "id": "d303e097-3d88-49f8-8cd3-e54aa60ff4e2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72705,7 +72705,7 @@ } }, { - "id": "06aae4fe-c801-44ee-9101-2e8e5ef45a8a", + "id": "c77d8735-b132-4c6a-81b1-9df44780f050", "name": "Asynchronously export details for a potential role in a role mining session and upload to S3", "request": { "name": "Asynchronously export details for a potential role in a role mining session and upload to S3", @@ -72772,7 +72772,7 @@ }, "response": [ { - "id": "33f0d991-59f1-4845-91ba-c6c9ce2ba2d4", + "id": "65d6c0da-dafb-4080-bcda-41f7b35c46d1", "name": "Job Submitted. Returns a reportId that can be used to download the zip once complete", "originalRequest": { "url": { @@ -72832,7 +72832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd970153-e44e-4403-bd50-9b3afe79cc9c", + "id": "fdce2ee0-6ee1-481b-be5b-8278250040cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72892,7 +72892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d91678f-bd94-454c-af3e-34940848c0e3", + "id": "d18e85d7-91b8-49df-8751-aa7b190880d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72952,7 +72952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87a4578a-d45d-4548-acae-15fe3c0c6e47", + "id": "711677c2-843b-4595-bf35-855fa0d98c0f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73012,7 +73012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f145c8b-02d3-43c7-b5c5-538d2d1f08a6", + "id": "0474a689-b77e-469a-8f10-4b1bf8491712", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73078,7 +73078,7 @@ } }, { - "id": "a11cd418-45a2-451f-ad7b-8a6eacced8a9", + "id": "c83a3de2-3bf6-4150-bdcf-303b21c00a1a", "name": "Retrieve status of a potential role export job", "request": { "name": "Retrieve status of a potential role export job", @@ -73143,7 +73143,7 @@ }, "response": [ { - "id": "d4f2f4ff-29ae-448d-9e33-c27cbef9e106", + "id": "ebd4a640-b0db-40f0-b673-70da06f5f19f", "name": "Success. Returns the current status of this export", "originalRequest": { "url": { @@ -73191,7 +73191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "023f49ab-4433-4bee-b4c3-3fc9cfe423f5", + "id": "6740d166-7b73-4e22-ad92-2d9ec32aa056", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73239,7 +73239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e35dfcb-830c-4b5c-bc8b-1c6f5a9061b1", + "id": "13f6b83f-d73f-489c-8e27-da75a3da77f3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73287,7 +73287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ee5bd53-db41-4b91-90de-7cc096814749", + "id": "1e551fc3-14b3-456a-b56b-871f2ff136b6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73335,7 +73335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "546778e3-30bb-421a-9d56-623cbc0d5039", + "id": "16e1b56a-2f06-4c9d-a554-0623eb764a7d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73389,7 +73389,7 @@ } }, { - "id": "92a05255-9223-4ea7-a0bc-49adb5f2f095", + "id": "0249b30e-1ce8-4795-a787-210eb7670214", "name": "Export (download) details for a potential role in a role mining session", "request": { "name": "Export (download) details for a potential role in a role mining session", @@ -73455,7 +73455,7 @@ }, "response": [ { - "id": "cb6f70b5-cd4a-43d9-b143-92c6a1aa94e8", + "id": "00827ac3-e3e7-4482-8e38-779cc6e1aa1d", "name": "Succeeded. Returns a zip file containing csv files for identities and entitlements for the potential role.", "originalRequest": { "url": { @@ -73499,12 +73499,12 @@ "value": "application/zip" } ], - "body": "minim", + "body": "exercitation laboris ex sit", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "434e86de-c915-47c0-ba8e-85ecc8563949", + "id": "fe5986c6-68e3-42b4-8a51-284e53923bab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73553,7 +73553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2031168a-993e-4e4a-9ad6-2bc7abe7c99f", + "id": "fd92e454-41e6-4c97-a829-d62c642c6261", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73602,7 +73602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd901e33-4507-4c99-9885-3db341d7b213", + "id": "26f90081-9901-4e5a-a8cc-53fafa8f6fbb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73651,7 +73651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83ce0b6a-2002-49a6-b52f-e137d093cf07", + "id": "de34842c-93eb-4760-b268-3832b179421c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73706,7 +73706,7 @@ } }, { - "id": "9f76979a-24c7-4984-99f4-0550eef61117", + "id": "c356f787-e129-4207-b76c-ebd4f16bd654", "name": "Create request to provision a potential role into an actual role.", "request": { "name": "Create request to provision a potential role into an actual role.", @@ -73792,7 +73792,7 @@ }, "response": [ { - "id": "f3dc5099-94f8-4283-84d4-6e68431b235f", + "id": "b91f2797-d5e7-40fa-aeb0-c1f034422d4d", "name": "Accepted. Returns a potential role summary including the status of the provison request", "originalRequest": { "url": { @@ -73871,7 +73871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfe842e8-0c60-498d-a59f-3f320cdfd00a", + "id": "dadf5f25-48d1-4b2a-a80b-68c23566d4c8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73950,7 +73950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42598333-8433-4a34-8096-0adc847bb337", + "id": "e44459ea-4327-41c6-87cd-ffe5c5238ab5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74029,7 +74029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9d2f93c-f52c-4f29-9761-6aee3d67eb70", + "id": "c929c49c-466b-4067-a08c-085d7cf180fd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74108,7 +74108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "655117c9-afaf-4fa8-a8c0-94be480ee0f9", + "id": "f7a6e55f-6bcc-4da5-a433-f6a4d02a9e27", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -74187,7 +74187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a114d54-e613-4d52-8767-50f31f7f3f11", + "id": "a13dfee7-07f8-4b0b-9460-a02ffe8eaeb4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74272,7 +74272,7 @@ } }, { - "id": "65acf3d6-b865-42f0-97e9-da7f2ae16e64", + "id": "0dc8afcd-992d-437d-85d2-80991fec6396", "name": "Retrieves excluded entitlements for a potential role in a role mining session", "request": { "name": "Retrieves excluded entitlements for a potential role in a role mining session", @@ -74372,7 +74372,7 @@ }, "response": [ { - "id": "4b019994-8ef8-4c99-8db1-9a222571154a", + "id": "bc0e8221-48ba-41fd-9593-7053321e011f", "name": "Succeeded. Returns a list of excluded entitlements for a potential roles.", "originalRequest": { "url": { @@ -74465,7 +74465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acd0f9f5-8a4a-40a9-a50d-410a8608098d", + "id": "93e562cf-6f4a-4402-a233-e332925d7e98", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74558,7 +74558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf0d5aa9-3a79-4d4e-86e6-8afa0aa98f75", + "id": "a428c057-26b7-4ae5-a751-a3244fdd4173", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74651,7 +74651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e2d1e9c-efda-4098-9fa9-f7f8eca2aaca", + "id": "fcb3a7bb-19f6-4f38-adc4-4bc48b2ddf8b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74744,7 +74744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a6e7a51-aa53-48a6-9e20-a1d988a2f3bc", + "id": "23c27be3-e02f-4348-bac4-4c39ae40b8d6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74843,7 +74843,7 @@ } }, { - "id": "0443a4b1-2507-43a0-b146-8952d91e8f18", + "id": "81877267-ca4b-49e9-aa12-ec63689bdbed", "name": "Retrieves all potential role summaries", "request": { "name": "Retrieves all potential role summaries", @@ -74918,7 +74918,7 @@ }, "response": [ { - "id": "b2349349-0bfb-40b9-9053-ecf7106b1724", + "id": "16864372-88e1-41eb-b2bc-7b41011c07f8", "name": "Succeeded. Returns all potential role summaries that match the query parameters.", "originalRequest": { "url": { @@ -75007,7 +75007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7098f737-0d11-47f2-a37c-a41df97f91d1", + "id": "fdb4b16e-9ae8-49ea-91ad-475fc8e4759b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75096,7 +75096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "730ebce1-6154-492b-ab03-b6771a062d1b", + "id": "8ca6476c-2a4d-4415-adf8-3e4c6f66d8ff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75185,7 +75185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "058a81bb-e5ab-4653-bca4-cef39fc2f9c5", + "id": "d196f437-44f2-4459-933c-015a5f25fd0e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75274,7 +75274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f074441-e0e4-492c-8f13-c71067f9ffa4", + "id": "9b1fe520-5e1c-42ee-ad2f-1d4ce65dfb72", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75363,7 +75363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da159d61-820f-498f-8ec9-022504960fcd", + "id": "42a6c373-9e5d-43ab-a1de-0c68e84d40c4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75458,7 +75458,7 @@ } }, { - "id": "3426c2dd-d43d-45ce-b88b-f627fe103ff5", + "id": "39d63985-71a6-4c91-af75-b1441cca2627", "name": "Retrieves a specific potential role", "request": { "name": "Retrieves a specific potential role", @@ -75499,7 +75499,7 @@ }, "response": [ { - "id": "3c16db44-1923-455d-a3db-d5b6155e520c", + "id": "8fd7e7ac-2e26-4e37-a8c0-2700f6b83a27", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -75538,12 +75538,12 @@ "value": "application/json" } ], - "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"officia394\": \"nisi officia nostrud\"\n },\n {\n \"occaecat_1\": \"pariatur fugiat\",\n \"ad_5\": \"velit fugiat dolor ut occaecat\",\n \"nostrudf_9\": \"Excepteur cillum enim aliqua\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"magna_92\": \"in eu quis aliqua dolor\",\n \"ut61\": \"dolore id laboris sunt\",\n \"officia_d\": \"irure dolor anim adipisicing\"\n },\n {\n \"ipsum_f\": \"cupidatat ipsum\"\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 \"adipisicing1\": \"est fugiat commodo\"\n },\n {\n \"esse_e\": \"eu nulla\",\n \"sed_4ec\": \"proident Lorem\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"laborum_2d\": \"amet consectetur veniam\",\n \"pariatur9\": \"pariatur eiusmod\"\n },\n {\n \"magna_7\": \"sit incididunt mollit deserunt\",\n \"in_3_4\": \"anim nisi\",\n \"in37\": \"est ullamco\"\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": "5670db60-6d43-43a2-b4e9-260e54f6266e", + "id": "a24b83c6-9e0f-4f6d-af93-50308a4240fd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75587,7 +75587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f67a8b1-0f16-416d-b5bf-0593f99f4f55", + "id": "e8d61e6b-43ac-4c96-bb27-b62ca1271040", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75631,7 +75631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "952f0029-f829-4428-880d-0df834e7bf12", + "id": "89f6f447-1710-4413-883a-19d28c16fd13", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75675,7 +75675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc9c99f3-1374-499f-9eea-e3b501a0b2a1", + "id": "1c222367-1b7d-42df-af1d-719d7f1a8d43", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75719,7 +75719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46bb1d87-12e3-41d9-a7e9-6b026b1f69c9", + "id": "02466139-9274-4682-ac79-dd9ae0677c6d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75769,7 +75769,7 @@ } }, { - "id": "93058eb6-0b8a-42e1-a515-802782b078f0", + "id": "4d8ff99d-489b-4d69-ae79-3f06a4384bf2", "name": "Update a potential role", "request": { "name": "Update a potential role", @@ -75833,7 +75833,7 @@ }, "response": [ { - "id": "da4c1ad0-dca3-41ae-84f4-314544c1c10a", + "id": "702484ac-db29-4304-b894-b72d2380c488", "name": "Succeeded. Returns the potential role summary based on the potentialRoleId provided.", "originalRequest": { "url": { @@ -75890,7 +75890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f7508db-3422-4017-a649-ddf02b80f631", + "id": "1f69254f-fbb3-499f-9dc2-e652671faecf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75947,7 +75947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac157342-ab69-4e24-a058-c34834e856dc", + "id": "08c0f828-df15-45d2-be4a-1560b49b05f6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76004,7 +76004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5f8b746-895b-43a0-809a-dcfc7258aa29", + "id": "848f0bc3-bfb8-4f1c-ac72-43d0bdae461a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76061,7 +76061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6db4ab1a-8789-4115-b670-3b264578654e", + "id": "63d4a575-543c-406c-b154-515a418115fd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -76118,7 +76118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33497612-9be7-4a17-b7e1-ac6ff74900a2", + "id": "724ffe13-cab2-45d5-a85a-6c1246ec68af", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76175,7 +76175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae6d8594-9a82-4dff-a729-d38c65837f89", + "id": "ac344175-c840-4bec-baf2-179bce2e0ade", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76238,7 +76238,7 @@ } }, { - "id": "97f89804-014f-4872-a4de-ca61397b5f22", + "id": "de768104-c408-449b-b88b-09eb31cf4d07", "name": "Retrieves all saved potential roles", "request": { "name": "Retrieves all saved potential roles", @@ -76305,7 +76305,7 @@ }, "response": [ { - "id": "85a4c3bb-24a3-4d6f-ab9e-fa10db8dc540", + "id": "b1cf601d-ddfd-4eff-ae98-b509b0f17a68", "name": "Succeeded. Returns a list of draft roles for a role mining session.", "originalRequest": { "url": { @@ -76386,7 +76386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e068e16-a4ad-4b08-84b9-63668ebee9a9", + "id": "12e9d5d3-261f-4604-b430-e71144e3d221", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76467,7 +76467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58a20415-51b3-4c31-8860-88d4fd8b36a1", + "id": "7be1c98f-c09b-4315-81f3-7277818f4177", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76548,7 +76548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2b47428-e989-4d5f-b678-3226dd741ca1", + "id": "e7bd298d-f8de-4ae4-8c48-77489a7f726c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76629,7 +76629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06985e41-31a0-4723-b949-0519061393d1", + "id": "506eca9b-3a22-4626-853f-a3e8a4deedd1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76710,7 +76710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a93adef-2b41-4b02-bbef-77744e6ace28", + "id": "0bde7303-90a4-4511-9f8d-c79aafb4ff67", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76797,7 +76797,7 @@ } }, { - "id": "180c9b17-997f-492a-ac22-07c2988e9247", + "id": "c9e79486-d7b2-46b5-a053-a042032e7248", "name": "Retrieves potential role source usage", "request": { "name": "Retrieves potential role source usage", @@ -76888,7 +76888,7 @@ }, "response": [ { - "id": "3c399d60-b06a-445c-80b4-d73da33031fe", + "id": "703014cf-9482-44b8-bfbd-3a97483e5943", "name": "Succeeded. Returns a list of source usage for the identities in a potential role.", "originalRequest": { "url": { @@ -76972,7 +76972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a52461d-fe5e-474d-9262-fb6ae38f7043", + "id": "a1abedbd-b65c-4557-83cf-745e0c51f064", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77056,7 +77056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d068647-fd1f-4b21-a04a-e78d64b4224a", + "id": "8de27785-57b0-466f-b154-857106f8447d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77140,7 +77140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abde474d-e874-4d54-b361-88ba2a03f74b", + "id": "0a2c152a-34ca-467a-90da-a414526bdc26", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77224,7 +77224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88f23d7d-ec42-412e-8b2e-19f35d71f662", + "id": "9b69e274-cb44-4d58-921a-457592d12466", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77308,7 +77308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5935baaf-6a3f-4145-96a7-b84f8138a19b", + "id": "b3d28395-d449-4bef-be0e-5be4644af2be", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77404,7 +77404,7 @@ "description": "Use this API to implement identity functionality.\nWith this functionality in place, administrators can synchronize an identity's attributes with its various source attributes.\n\nIdentityNow uses identities as users' authoritative accounts. Identities can own other accounts, entitlements, and attributes.\n\nAn identity has a variety of attributes, such as an account name, an email address, a job title, and more.\nThese identity attributes can be correlated with different attributes on different sources.\nFor example, the identity John.Smith can own an account in the GitHub source with the account name John-Smith-Org, and IdentityNow knows they are the same person with the same access and attributes.\n\nIn IdentityNow, administrators often set up these synchronizations to get triggered automatically with a change or to run on a schedule.\nTo manually synchronize attributes for an identity, administrators can use the Identities drop-down menu and select Identity List to view the list of identities.\nThey can then select the identity they want to manually synchronize and use the hamburger menu to select 'Synchronize Attributes.'\nDoing so immediately begins the attribute synchronization and analyzes all accounts for the selected identity.\n\nRefer to [Synchronizing Attributes](https://documentation.sailpoint.com/saas/help/provisioning/attr_sync.html) for more information about synchronizing attributes.\n", "item": [ { - "id": "a0ff31e5-470b-4d11-a0ab-a74bb04727d9", + "id": "e9eb75f0-756e-4266-8d48-e8816db5bccb", "name": "Attribute synchronization for single identity.", "request": { "name": "Attribute synchronization for single identity.", @@ -77425,7 +77425,7 @@ "variable": [ { "type": "any", - "value": "minim", + "value": "exercitation laboris ex sit", "key": "identityId", "disabled": true, "description": { @@ -77446,7 +77446,7 @@ }, "response": [ { - "id": "1531b0f9-4794-48be-afd4-4444490633f7", + "id": "d6f9a4cd-35c1-4334-816a-cc41dc7cff84", "name": "An Identity Sync job", "originalRequest": { "url": { @@ -77491,7 +77491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb371482-1c29-41b2-9bd8-0580941411b5", + "id": "f842c40c-21af-407c-8b25-402a05ec65e8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77536,7 +77536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df4b87cd-c4e4-45fc-9969-a859ee2a057b", + "id": "61a8f46c-7d15-4144-9b59-c56096044c1e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77581,7 +77581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5db75f1f-4eba-4b51-9cbe-a7250b935a12", + "id": "7d3f6160-3193-4020-853b-565f0098fe6b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77626,7 +77626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89978b73-4091-4026-a622-56036114b063", + "id": "47ef5b2d-4aa3-4d09-8c5a-54566d37ceab", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -77671,7 +77671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4530b8c9-db21-4fb9-8a15-bd556683e895", + "id": "025a6340-0c58-411f-8fce-48c5f8ab287e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77716,7 +77716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ff0dd03-e925-4e04-b2a9-3c06dc551d57", + "id": "b1264fa2-2fef-498b-afb1-5018e9cbd368", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77767,7 +77767,7 @@ } }, { - "id": "77811eff-78b7-4f0f-9d29-981e8ca1dcbb", + "id": "afe06c64-a054-4873-9502-387143d85f3c", "name": "Get ownership details", "request": { "name": "Get ownership details", @@ -77809,7 +77809,7 @@ }, "response": [ { - "id": "b3284746-6316-4d34-8bca-229571e27974", + "id": "ec66f690-63a2-42df-9af8-9e47354b98da", "name": "Ownership association details of an Identity.", "originalRequest": { "url": { @@ -77854,7 +77854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1e18d71-976f-4f72-bf7b-f300fb11a385", + "id": "36030c25-fa5d-4e54-9099-d4c1c966d2d8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77899,7 +77899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2664df7c-a2ca-43e0-8edf-b4f13a12933c", + "id": "408bc94e-0000-4bb7-87d6-5f3fdf145761", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77944,7 +77944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84392a27-6efe-483c-b686-63998504e90c", + "id": "a9e2984c-f3b1-44e7-8a1a-6da9b8c8248f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77989,7 +77989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f05f067-7ad3-4ece-ba98-e0b532251256", + "id": "fc78b263-5f85-4d0f-a97f-7a56120ff882", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -78034,7 +78034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "246e3464-be15-4bef-b6a8-c8543d701d99", + "id": "9e778375-f891-400a-8e14-9fcade3169bd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78079,7 +78079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd2e62c3-38bf-4ce7-ba69-9ed84668d7ac", + "id": "87037acf-d7e9-4850-9fb9-4f442739f84d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78130,7 +78130,7 @@ } }, { - "id": "7e1b8575-808d-4cfe-816a-c96b15b718d6", + "id": "a7519bab-db5a-4afd-b002-8fa93747f89e", "name": "List Identities", "request": { "name": "List Identities", @@ -78214,7 +78214,7 @@ }, "response": [ { - "id": "6e1128a5-8de2-47df-adce-60426812b0fd", + "id": "4c884699-df5c-46b7-95a5-383b39833e1d", "name": "List of identities.", "originalRequest": { "url": { @@ -78312,7 +78312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1113285-2d6e-47ff-82b7-ea68cece5c79", + "id": "9ec65543-c7ce-4049-88a1-2bc0f5e55a85", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78410,7 +78410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a831b79-b642-4787-99bf-077a4b05fb59", + "id": "8b237722-691e-4bc4-9090-eae57d518a05", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78508,7 +78508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b02759f-675b-4a45-8e40-07fbec76464f", + "id": "d6f697bf-7be2-4864-a75c-e434ef78ac73", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78606,7 +78606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fcd00ad-c1fe-4a7e-8047-3d458f008e2c", + "id": "9d67e281-3cb9-4039-b546-1c816f2438f3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78704,7 +78704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0753551-c835-4a44-9df9-332ee7df03bd", + "id": "72d38ea5-6417-4d70-9855-8deeba666944", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78808,7 +78808,7 @@ } }, { - "id": "895b1779-9fb1-4ad4-a848-c3540454836d", + "id": "bb7e4445-10fd-4ae4-addb-a241c1f72ee0", "name": "Identity Details", "request": { "name": "Identity Details", @@ -78849,7 +78849,7 @@ }, "response": [ { - "id": "9b027543-6d6c-4bca-b674-a5f2291fd5f2", + "id": "deaf90ae-1e47-4bb6-a0ea-28943fd7e383", "name": "An identity object", "originalRequest": { "url": { @@ -78893,7 +78893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1340a9ba-c26a-4079-b761-05eea438dd8e", + "id": "a03b1897-edd0-4124-a38c-8f4b86cfc50b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78937,7 +78937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0c3cf45-94dd-4204-a8ec-5e7c15379217", + "id": "6bdf1763-3e9b-4d6b-b209-f38bf4df988d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78981,7 +78981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "663906f6-bf7a-4ce0-b412-e7f7531c8d52", + "id": "fde258c6-6c1c-48ac-a563-54c77368e5ef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79025,7 +79025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c79fc4ab-65b2-4255-80a4-c5febdcf5361", + "id": "365b5f23-3c1c-4c40-a894-d7b75c0397f4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -79069,7 +79069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08fcae82-6b62-4744-ada9-816595cfa93e", + "id": "439af273-b14e-4bda-b0b3-2a3412a44268", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79113,7 +79113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0710c3a-e11c-4ac6-be9e-acfda929a170", + "id": "b50a6c17-5a6e-4684-9f0a-5f35e474b7d2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79163,7 +79163,7 @@ } }, { - "id": "07095475-0ef4-4186-bd8a-e682b2fe9ef1", + "id": "982d9094-d096-4d49-ac31-a7517802d1d4", "name": "Deletes an identity.", "request": { "name": "Deletes an identity.", @@ -79204,7 +79204,7 @@ }, "response": [ { - "id": "5b390492-39f6-4cba-a859-d0b1580a1a45", + "id": "b6b60ddf-e801-4a6f-99e4-2f97d8ec80b0", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -79238,7 +79238,7 @@ "_postman_previewlanguage": "text" }, { - "id": "20435998-f4f1-46eb-a513-f33edced6044", + "id": "b2eda4b8-8f97-41d2-81aa-95121b9cd54b", "name": "Client Error - Returned if the request is invalid. It may indicate that the specified identity is marked as protected and cannot be deleted.", "originalRequest": { "url": { @@ -79282,7 +79282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56d7e88f-ca94-4e11-ad4d-71d7d2a0aee4", + "id": "52299f03-c110-4e47-b87d-e54ef35542eb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79326,7 +79326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "363ae87f-e65b-4a98-8fd4-7cd9a84714d1", + "id": "7324e11a-9fc2-4e55-9ad2-19cd655e8378", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79370,7 +79370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2835a17c-e39e-4eed-a779-42c963b5e718", + "id": "bd6b50cd-9138-4d1f-8ed7-a54b8e9f8e09", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -79414,7 +79414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cd5ecff-f6a6-413b-bb71-c4e22ae48098", + "id": "7f2d6645-1480-457f-8f87-b272c5cdd5e6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79458,7 +79458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fb5668b-ae02-4842-871a-4734c57d96ff", + "id": "a8467d9b-628f-4483-81eb-0de8d85c747b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79508,7 +79508,7 @@ } }, { - "id": "6060ef93-8eaf-4a95-aab9-0d939bc81df5", + "id": "7a29ae82-30bc-4389-aae5-c734dd1806ae", "name": "Process a list of identityIds", "request": { "name": "Process a list of identityIds", @@ -79551,7 +79551,7 @@ }, "response": [ { - "id": "dca28d21-7067-4cab-88f3-47c11de192d7", + "id": "11884b23-1935-413f-b242-9c8c6930cd40", "name": "Object containing the DTO type TASK_RESULT and the job id for the task", "originalRequest": { "url": { @@ -79608,7 +79608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40a4656d-439a-4c58-b663-15ab96be3adb", + "id": "c0581bdf-cb2c-43d1-98c7-55bf0f5c1782", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79665,7 +79665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13d44c69-1d10-4db0-a2db-3012c201e032", + "id": "fb654a82-0b66-4b6f-bf38-71b811f25b1e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79722,7 +79722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61e1a3ce-7d60-4792-b71b-82ee8c6b73e5", + "id": "27ddb783-8644-433a-abe5-7677e0922539", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79779,7 +79779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e64e1a62-2ba9-4342-83ce-b249a9285978", + "id": "955ac798-03b2-4e19-944d-481552cddf72", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -79836,7 +79836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b601358b-03ab-4c49-b700-a2b185e9ba38", + "id": "b5de11e1-c0cd-470e-8a2b-f1e577454840", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79893,7 +79893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a50bb26-8d52-4265-862f-24aff6d4f826", + "id": "be026784-fdcd-48d8-a533-897cbcdde4e1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79962,7 +79962,7 @@ "description": "", "item": [ { - "id": "13318d30-8401-48bc-8583-61467596858b", + "id": "e55c8081-e349-4950-a198-8105c129e392", "name": "List Identity Attributes", "request": { "name": "List Identity Attributes", @@ -80028,7 +80028,7 @@ }, "response": [ { - "id": "156d9d2d-3cb5-47d5-9ddc-5570626c863a", + "id": "45a22526-a54b-469b-93c0-ef22675de3d2", "name": "List of identity attributes", "originalRequest": { "url": { @@ -80108,7 +80108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ab98864-acf0-44f4-b8de-9be030b307c9", + "id": "97869a7e-7966-45e7-a05f-b505eb435955", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80188,7 +80188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "204f0485-f793-44a3-8ed2-a181cd57db30", + "id": "ea957834-5639-4291-8bdf-5932e20447e1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80268,7 +80268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "878d2b72-2091-45aa-9c5c-81ef00c6d8ec", + "id": "502ec0a1-45c9-4d00-8c85-47c2b01faa74", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80348,7 +80348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29e72c2d-bf30-47b4-a83c-206e526a214a", + "id": "05f06fc3-7399-4626-a14a-d2ce011f1b5f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80428,7 +80428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "709641a5-9579-4b6e-80c3-c5d7e13ce49f", + "id": "dac601f6-4a75-40ee-985c-6eb87f7882b6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80514,7 +80514,7 @@ } }, { - "id": "92e4ef83-023a-4012-ae0f-78092438678f", + "id": "6a4d1bf7-9afa-454a-a865-aa3ae1393e29", "name": "Create Identity Attribute", "request": { "name": "Create Identity Attribute", @@ -80556,7 +80556,7 @@ }, "response": [ { - "id": "ea2956d3-a8c8-4ad9-9d82-56ad02fbf8bc", + "id": "7a170c27-6088-4b33-a7fe-384170a568df", "name": "The identity attribute was created successfully", "originalRequest": { "url": { @@ -80612,7 +80612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbce25d9-fe7d-4784-856c-1780fad496a9", + "id": "b177e080-cc7d-468f-b487-5d62cc79560b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80668,7 +80668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8a577e9-91e5-4fd1-9bad-8a188112454c", + "id": "77bcc02b-24b9-4586-bd07-9324f832ffe4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80724,7 +80724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdfbea68-c23c-4c69-acad-9b283d14da56", + "id": "f7299914-7337-4b07-86b7-48ab6f43579b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80780,7 +80780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6850d204-5089-4106-aa7c-1ff2f11daef8", + "id": "9a531104-79f8-4559-b985-599a5b747840", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -80836,7 +80836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "486cea93-b699-4a2d-90e3-827cdeebdab3", + "id": "49da70f5-0169-414e-886c-2b7c08cc5cd3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80892,7 +80892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cafab4b-3d49-4779-8b54-2af3a31c67b3", + "id": "f3a5dceb-1d04-4f4f-8d0e-913d3192b7b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80954,7 +80954,7 @@ } }, { - "id": "b253a500-8ace-4ba7-896f-802d1a0de66a", + "id": "c9049db1-538b-44ba-84c3-c795f8d3f738", "name": "Get Identity Attribute", "request": { "name": "Get Identity Attribute", @@ -80995,7 +80995,7 @@ }, "response": [ { - "id": "65f26aa8-865b-4573-aac3-f437d27d449a", + "id": "d7193ae0-5a2a-4e8d-aecb-87064a80149b", "name": "The identity attribute with the given name", "originalRequest": { "url": { @@ -81039,7 +81039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72817b23-87bd-4784-b66c-46a8b056ad8d", + "id": "8fab230c-f632-476b-983e-c96e159a2894", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81083,7 +81083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5a44ceb-2bd2-4a6c-a3ef-17647d18582f", + "id": "5d2b352a-3d55-4764-8ff3-15319886c604", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81127,7 +81127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f24e7cc6-1b28-407a-a08a-19b964a3e179", + "id": "c705b574-77e2-460b-bd05-eee7f0a2570b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81171,7 +81171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14e2ab9c-0fd1-470e-9c45-5b3789e39414", + "id": "bad2bd2b-6ff1-473d-a3d5-5f52dab211fe", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -81215,7 +81215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46c3a8ad-4a3c-46a3-99e1-b83eacce64b8", + "id": "05d27ab2-fe14-4b2d-a36f-60f5b823eebf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81259,7 +81259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6a625bd-a63f-49da-9f26-7f46d6b1fc74", + "id": "1e064b0d-f5e9-4a65-800d-71aef2b8f6de", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81309,7 +81309,7 @@ } }, { - "id": "e55c664c-90d7-4bdb-ae3e-74259c4b7668", + "id": "8e535ad8-10fd-4e64-bea3-9ffe137f1780", "name": "Update Identity Attribute", "request": { "name": "Update Identity Attribute", @@ -81363,7 +81363,7 @@ }, "response": [ { - "id": "c643fe55-40f7-4984-bcc4-386f34b2b475", + "id": "031085ac-09e7-4dfe-866c-47b282203f09", "name": "The identity attribute was updated successfully", "originalRequest": { "url": { @@ -81420,7 +81420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0afaa12-5aae-4aa0-b750-054b8e413515", + "id": "f140d7e1-0752-4341-a6a8-928f282e419c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81477,7 +81477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ffdb3c5-f313-4504-8927-7c654841a859", + "id": "9d0e3835-4013-46f0-8090-418f2adf641a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81534,7 +81534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc6c1e49-6a76-44eb-877c-ceddd8c3f1c0", + "id": "5d558831-9472-4da3-92bd-8e662ad5c2e3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81591,7 +81591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6fd8c4e-5ba1-41ec-bd4b-4a897622fd9f", + "id": "a143541d-82d5-4e3b-a08f-8de9719948c6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -81648,7 +81648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "472d807e-d72b-4722-b8d6-d2983bb51b6b", + "id": "3839ebe6-dbd1-419a-aa6c-c02d6b46ecdb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81705,7 +81705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd2c13f4-77f9-4614-b637-a0227272e58a", + "id": "41afd8fd-c6c3-4491-9a10-90b0bc240787", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81768,7 +81768,7 @@ } }, { - "id": "f26ab2e9-ca36-4f4d-93d9-9f786a376d28", + "id": "0a7f6884-a442-43e2-990f-1daf5e1224c9", "name": "Delete Identity Attribute", "request": { "name": "Delete Identity Attribute", @@ -81809,7 +81809,7 @@ }, "response": [ { - "id": "5601f51d-fceb-42e6-848c-2cd190cf675e", + "id": "5021f57d-d090-47b6-8323-13c035fcabe5", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -81843,7 +81843,7 @@ "_postman_previewlanguage": "text" }, { - "id": "280879bb-dc0a-43eb-8ccc-35836d917e5d", + "id": "30a682a6-5f10-4850-93d6-af4866f49180", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81887,7 +81887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b684df84-e76f-4b1b-89c5-d76e155dd939", + "id": "077a35d7-0efa-40d5-96d0-bc1530662537", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81931,7 +81931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f00bf788-0341-40f0-989a-ba08965d3996", + "id": "231a13b2-ccbb-4ec6-8c8e-ef4488fbf4bf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81975,7 +81975,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2be3e506-e9e6-4988-8760-9c2d22e1950b", + "id": "f82dfebd-1371-42b7-b222-500df62476d7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -82019,7 +82019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4387d0c0-5c7c-4457-91cd-a510f5ba7cbf", + "id": "43339786-2d4f-405f-85b6-3630bd9133a4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82063,7 +82063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab891728-c275-49ea-b7ff-e8f58e4f1f27", + "id": "8096d341-1fa1-41d0-b81b-27fc5ae45c91", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82113,7 +82113,7 @@ } }, { - "id": "a9c09b49-8221-4702-9264-ed5e47a3e70c", + "id": "94cc529f-1c45-45cb-9643-f2955194261c", "name": "Bulk delete Identity Attributes", "request": { "name": "Bulk delete Identity Attributes", @@ -82156,7 +82156,7 @@ }, "response": [ { - "id": "901b181c-a694-488c-9664-62b2927afbfc", + "id": "6183c263-97e6-42f9-b92f-d454c25dd936", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -82203,7 +82203,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c94287ba-d39f-4e24-8409-70ee124f6ec1", + "id": "8f1081cb-2e9a-4945-8b23-5c80d455974c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82260,7 +82260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28dac6d5-7cfa-4f90-9b1c-cbe7b0230cb3", + "id": "b95cc106-bafa-40af-9f8b-72fe5aa2c594", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82317,7 +82317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd84a747-998a-4ac7-9a65-044c2adecc68", + "id": "cd147a0b-3ae5-44e2-9d94-dad28aba663d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82374,7 +82374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70f62595-968b-4290-9941-019949bf1346", + "id": "a206cd53-23e2-4ad5-9189-734f7c2d8d57", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -82431,7 +82431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59978716-50c3-4d07-b38b-69f741059733", + "id": "a4a285b4-1791-498c-a0b1-eb1ef4ad610f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82488,7 +82488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c725b17d-c0a0-448e-8739-208f6d4a2e1b", + "id": "0ec001e9-5ae6-4a7a-88f0-c7a7b0e7fe91", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82557,7 +82557,7 @@ "description": "", "item": [ { - "id": "f149c85e-ca46-4529-a1b9-fad3637122e5", + "id": "144392a0-607d-4348-9b46-40944e44987e", "name": "Lists all the identities", "request": { "name": "Lists all the identities", @@ -82632,7 +82632,7 @@ }, "response": [ { - "id": "206162f4-89c4-48c4-942c-c9cfd160c959", + "id": "a201d066-cb8c-4b6f-afc1-4f1dcdbf15b7", "name": "List of identities for the customer.", "originalRequest": { "url": { @@ -82721,7 +82721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d1985de-373e-48f4-bb14-23487c2012d9", + "id": "cbded121-eaf0-4bfe-9155-004462af7402", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82810,7 +82810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc2b8888-4cad-4a5b-b580-fed1d5088638", + "id": "ccb0f5bc-75d4-43be-8936-5871f25583a1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82899,7 +82899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d72dabf-e34b-43f4-977b-7eddd26b6b75", + "id": "561a81db-02ae-439c-8c95-1cbafd058667", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82988,7 +82988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f26fd6ce-4cec-4af6-99de-949296a579de", + "id": "237f0fb8-34b1-43a5-b9d5-9af466712fed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83077,7 +83077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14a7c959-ce9b-4496-81cc-a462421d8c47", + "id": "8f7c4ad4-bfe1-4b44-8855-98aae0131e4b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83172,7 +83172,7 @@ } }, { - "id": "89dd50ce-012f-4981-a98a-1ec4a63cdab3", + "id": "99a0a1bb-6181-4a49-b584-de4c03e95ee9", "name": "Get latest snapshot of identity", "request": { "name": "Get latest snapshot of identity", @@ -83213,7 +83213,7 @@ }, "response": [ { - "id": "ff052f1a-051f-46f0-ad7a-f99d6164fb60", + "id": "d0806a00-f35d-43a0-aa1e-d9b7dce1d6c8", "name": "The identity object.", "originalRequest": { "url": { @@ -83257,7 +83257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e948fd44-3ef7-477f-92bc-2ffaf9852bc4", + "id": "9c690e5e-8eef-4fcd-ab1e-b8bdd41058af", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83301,7 +83301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa06db67-3bc3-4bae-ab78-570e56548f3b", + "id": "a1c37147-613e-4933-bbb9-61116fde9ecb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83345,7 +83345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14d953f7-7715-4165-bc0b-ca51ceced263", + "id": "4c544309-57c4-4a47-9f28-57831ccc11e1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83389,7 +83389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6af4b85-46fa-432a-893b-aed334067d47", + "id": "575c7542-374a-410c-a9e5-77293c7814d1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83433,7 +83433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1ebdcf7-9355-4743-99f7-dd9814980e2a", + "id": "4da4c5ce-744c-474f-9fbf-1e1b77ff6ed2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83483,7 +83483,7 @@ } }, { - "id": "437410d8-c3ca-41c1-b2b9-4f6a48eda699", + "id": "e3b45a51-8c68-4848-8c49-a69096487892", "name": "Gets a list of access items for the identity filtered by item type", "request": { "name": "Gets a list of access items for the identity filtered by item type", @@ -83535,7 +83535,7 @@ }, "response": [ { - "id": "3c19b449-7fba-4215-8ac5-ff04f672ca8e", + "id": "1f182a8a-1ef5-41c4-862c-e6bba295e2c5", "name": "Access Profile", "originalRequest": { "url": { @@ -83590,7 +83590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7245cea9-ab59-4e59-9fa4-ec0f49a582c2", + "id": "7bddff09-36a6-4a25-8504-e5ea45e30a92", "name": "Account", "originalRequest": { "url": { @@ -83645,7 +83645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd787c32-e5ae-4307-9af1-6450104633cd", + "id": "9a3a2796-9d42-41ac-b534-e18179d21e13", "name": "App", "originalRequest": { "url": { @@ -83700,7 +83700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fb6aad9-2bfb-4020-b139-913cb33819f5", + "id": "e3b6b81e-478d-49be-8f05-04ba4772e6f3", "name": "Entitlement", "originalRequest": { "url": { @@ -83755,7 +83755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b0a7a13-650e-4264-881f-95e995ccad16", + "id": "701d7afa-71ef-423b-b5b1-275b14841a80", "name": "Role", "originalRequest": { "url": { @@ -83810,7 +83810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f61d478-328e-45ec-90f0-9c53ebbddaaf", + "id": "068f1104-df37-47d5-9db4-3afe6a7702a2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83865,7 +83865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "056427fc-ae0e-455a-ba12-373cc120adcc", + "id": "62b99f16-77a7-49ba-9d82-270c79c62d11", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83920,7 +83920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72129d11-fabf-4653-8b11-b0e76e2c83bd", + "id": "19e495ab-e8fd-49b7-8fd8-86db6cb7a8b3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83975,7 +83975,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36d1a2b7-096f-4faa-9db7-1a9f9e2ba5e1", + "id": "5cf932d2-fc47-4f10-b299-c69c1ec5cddf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -84030,7 +84030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3912e75-f50e-486a-b92f-71c6eb66857a", + "id": "5d493eae-7fd9-4c8e-bfa1-00ea39be637c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84091,7 +84091,7 @@ } }, { - "id": "3f09c876-839a-4b19-97cf-c11c0182650e", + "id": "70e3d3c1-a8a2-4c10-8deb-477a0ccbd5f6", "name": "Lists all the snapshots for the identity", "request": { "name": "Lists all the snapshots for the identity", @@ -84179,7 +84179,7 @@ }, "response": [ { - "id": "4e20e466-da23-455e-a8c5-fa84c79b107e", + "id": "66b5096e-ce5d-4fbf-be17-b07db005d9c2", "name": "A list of identity summary for each snapshot.", "originalRequest": { "url": { @@ -84270,7 +84270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51dccb3b-20da-464c-9929-94fdf53bee13", + "id": "a6f303f2-1542-4bc9-a486-9781cf104310", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84361,7 +84361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c464a4f2-4fab-46cf-8f8a-29a615b8ece1", + "id": "48033d5b-1d5c-4af8-a9b3-b140c0d40cc9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84452,7 +84452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f8295a0-d6c4-4db0-be3c-5607cd8e827b", + "id": "db65ba77-c53f-4a1d-9c8b-3d579bf7ccfa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84543,7 +84543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9377981d-528c-44be-ba47-980392508651", + "id": "4e4215d4-7071-4423-97c9-50d5bc203210", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -84634,7 +84634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55fd980d-7b9f-4c3e-b4c3-c269d4c6a4c5", + "id": "78acef11-55d1-4111-9520-234144b96a79", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84731,7 +84731,7 @@ } }, { - "id": "4a968b74-f8db-4e2d-8aa5-d6d8d56ce680", + "id": "a056c3a4-08f7-4f51-b615-a76f2cf435ac", "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", @@ -84828,7 +84828,7 @@ }, "response": [ { - "id": "27842dc3-3cea-4493-a5c8-8b8c2ceef45e", + "id": "3667171c-f1e0-409c-a532-9135075b1f29", "name": "A summary list of identity changes in date histogram format.", "originalRequest": { "url": { @@ -84928,7 +84928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "586c13b0-ec65-48f5-aa88-ebc48d41ada7", + "id": "6419e3b3-66c4-496b-a847-69ec0fe5c1c1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85028,7 +85028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75fd7f82-4d3a-4c59-a030-385ad411dce9", + "id": "add9fc81-0690-4d05-861a-583f8f225b0d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85128,7 +85128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36789039-cf4d-4790-a6ca-08d1022db288", + "id": "3361e4c4-f481-444f-b90c-f7e712740b61", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85228,7 +85228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7109f6e8-0108-48f3-892e-1a5dc49931f8", + "id": "e81813e8-9a79-435e-85bb-5b539d580d69", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -85328,7 +85328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd8089a3-f655-423d-9746-8e5f9d1643cd", + "id": "dc4c3ea7-8a5e-419a-8185-81ccd87905b2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85434,7 +85434,7 @@ } }, { - "id": "bb4653d6-b090-4303-b681-bfffa239e7ed", + "id": "fc221048-1bda-4360-89eb-c3096505a0f8", "name": "Gets an identity snapshot at a given date", "request": { "name": "Gets an identity snapshot at a given date", @@ -85487,7 +85487,7 @@ }, "response": [ { - "id": "b42a8b53-a2d2-4d1c-9c55-7c8ecd153fe8", + "id": "f33eb2cd-1530-4f75-8dab-28c961826d09", "name": "The identity object.", "originalRequest": { "url": { @@ -85533,7 +85533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "087d0e5f-7f1c-49a8-89f6-0468eec4df90", + "id": "c4200e9b-5a49-4275-8603-bf61433f3da1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85579,7 +85579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b543a1db-3af5-40ab-bc00-55da80b608d7", + "id": "a0b75df1-5426-478f-80a5-2163b66d9c4f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85625,7 +85625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57c11801-b97c-4899-8f58-b45feb1bc9b1", + "id": "055c8479-05fe-4561-9011-e9fd4670e096", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85671,7 +85671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31b6606d-d871-44c1-ac34-8da1d1789a03", + "id": "dcd662c3-66a8-4849-bd42-4ac71a8395cb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -85717,7 +85717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e02cf20-de28-409f-96df-3b27df21f208", + "id": "c54b1677-9137-45f7-8195-bc1a7f11bdac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85769,7 +85769,7 @@ } }, { - "id": "17c6fc22-c713-4fb1-ba58-f9e0f06c72d0", + "id": "7eaf2393-f3f7-4e09-becb-a2a668dd5c20", "name": "Gets the list of identity access items at a given date filterd by item type", "request": { "name": "Gets the list of identity access items at a given date filterd by item type", @@ -85833,7 +85833,7 @@ }, "response": [ { - "id": "a31c574d-476b-4abc-893f-09348184f589", + "id": "292153da-c8c2-49b1-ba46-68c4b2852bf5", "name": "Access Item AccessProfile Response", "originalRequest": { "url": { @@ -85890,7 +85890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcffeaa7-4216-4074-a1fd-a208c7f5862f", + "id": "4c6568d3-fda2-4718-b22d-57c05a4c1081", "name": "Access Item Account Response", "originalRequest": { "url": { @@ -85947,7 +85947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df035299-2758-4cca-96e7-6cb18af35e7a", + "id": "16fab1d4-3d7c-47cf-b1c8-6edc12f859a6", "name": "Access Item App Response", "originalRequest": { "url": { @@ -86004,7 +86004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a0c6081-d8f4-45a5-958f-4fb4b3eacb9e", + "id": "b8131e03-5eea-46d5-ab55-63d9f923c137", "name": "Access Item Entitlement Response", "originalRequest": { "url": { @@ -86061,7 +86061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5df2958-ce1d-4415-b95e-c8d2a4b0e4a5", + "id": "4e068358-3da0-4e55-b803-9a35bd889e90", "name": "Access Item Role Response", "originalRequest": { "url": { @@ -86118,7 +86118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "688e6ebd-e4ed-42fa-aa53-6fbcf3119de3", + "id": "4bbb9bd4-d79e-49fd-aebd-9be16d1f5964", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86175,7 +86175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "740dc014-864c-4697-ae51-7ba4ef0613ec", + "id": "e057ea85-0287-42a6-8cfa-8f9f106157eb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86232,7 +86232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "221f9fc9-616c-4470-a871-ac09f9ec1a99", + "id": "83774e4b-10f7-41ee-b702-5a7a0451d744", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86289,7 +86289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ecf6478-0212-4b8d-ab34-e169a774036d", + "id": "11cac84f-e5a3-4a6c-bc69-413ccdf7d525", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -86346,7 +86346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef333916-0705-4a8d-92ec-599b00a28b74", + "id": "941bc3f1-515a-494b-a0d2-ba80872a595b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86409,7 +86409,7 @@ } }, { - "id": "8ba0dcbe-c922-40cb-9d25-22fbca4e82c2", + "id": "52af5d1a-e22f-47c1-9049-6f94a8c29b27", "name": "Lists all events for the given identity", "request": { "name": "Lists all events for the given identity", @@ -86524,7 +86524,7 @@ }, "response": [ { - "id": "30f73fa8-1018-4103-8949-2ea484cd3e2e", + "id": "2b9fb14a-e1fb-4a9f-bd71-0b81fe30903a", "name": "AccessItemAssociated", "originalRequest": { "url": { @@ -86624,7 +86624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0eeca09-fc13-49c6-be82-5a51e7055621", + "id": "94db23b5-8c81-48fa-b89c-60f784f3b0d7", "name": "AccessItemRemoved", "originalRequest": { "url": { @@ -86724,7 +86724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f52242cf-ecc0-4ced-9456-9e7d1b220215", + "id": "05f83116-480e-41de-bf80-ea8ed51a7200", "name": "AttributesChanged", "originalRequest": { "url": { @@ -86824,7 +86824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69821dac-d497-4d6c-9ff6-1a00f1a12886", + "id": "f129e7c1-b149-42dc-bf97-24ea6cdb5702", "name": "AccessRequested", "originalRequest": { "url": { @@ -86924,7 +86924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c21f30f-e71f-4ad8-bfc6-fb91a8f51eea", + "id": "75233158-ea20-423a-b6dc-a3d1907e7b3f", "name": "IdentityCertified", "originalRequest": { "url": { @@ -87024,7 +87024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff93d48d-c7a2-46fa-9c4f-2f67c182753f", + "id": "a825905a-6a52-4be8-82f1-d784f9198f33", "name": "AccountStatusChanged", "originalRequest": { "url": { @@ -87124,7 +87124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d5fe3b1-e38a-4f7e-b09d-c0587ef53196", + "id": "c3323690-9856-4467-b954-c51f3095337e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87224,7 +87224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93cdd04a-639e-4f26-bbf7-618c21051ab6", + "id": "056fe56c-72bb-4e8d-a0e0-92b802625915", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87324,7 +87324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bda71c0-6b18-4a65-a731-3980cc54f274", + "id": "7989385b-763b-4da5-b20a-d08c7334c554", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87424,7 +87424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "badc2d0a-25ab-490f-b4ab-7c662b5606b6", + "id": "11266b81-ac52-43db-afcd-6e8da38c32e1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -87524,7 +87524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40552d78-f1e9-42c1-89e5-a240b1888c82", + "id": "9beb7bbf-68d7-4b55-8e97-12843832f1a6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87624,7 +87624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c99112c-8501-49d6-9752-7b329a0a1bff", + "id": "1a0befc6-17c4-44cf-9cf7-35f36a93106a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87730,7 +87730,7 @@ } }, { - "id": "53a89d26-2b78-47bb-b74e-f2ac196b0726", + "id": "bee91722-a0e2-4849-94d8-9552b5d3e916", "name": "Gets the start date of the identity", "request": { "name": "Gets the start date of the identity", @@ -87772,7 +87772,7 @@ }, "response": [ { - "id": "832cfbcd-7947-40d9-9825-7bc2197c74f0", + "id": "8adac3e7-1c2b-44b1-84ea-3264938de178", "name": "The start date of the identity", "originalRequest": { "url": { @@ -87817,7 +87817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18e2921f-11ad-4f56-b383-036a96ca16d1", + "id": "56b50d57-1f02-4b50-a16b-3e2ff4568cb9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87862,7 +87862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccbd84ce-5668-4437-bf7b-55b96b43e30a", + "id": "a0d7539d-b963-4a32-a5a1-8baf005777b8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87907,7 +87907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae3fe3c1-dcbc-48ce-b0a2-70bb434dfd14", + "id": "c10c622c-bc16-4f78-9854-0fd3e41a4e4c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87952,7 +87952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53c40f91-314c-4998-a2d7-f3cfe30ecc17", + "id": "b1fee490-3dc5-45c3-a74d-1b01b579cd61", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -87997,7 +87997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29814379-beb1-48d3-9362-7ff36414f69d", + "id": "885259a4-eeb8-4605-a334-7b980fedbf33", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88048,7 +88048,7 @@ } }, { - "id": "0009b2da-132e-4293-ae6e-9f581cf09104", + "id": "24a0c74f-275f-4388-9af1-3ed4ce60777c", "name": "Gets a difference of count for each access item types for the given identity between 2 snapshots", "request": { "name": "Gets a difference of count for each access item types for the given identity between 2 snapshots", @@ -88091,7 +88091,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "in" + "value": "incididunt enim mollit" }, { "disabled": true, @@ -88100,7 +88100,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "veniam aute ex exercitation" + "value": "exercitation" }, { "disabled": true, @@ -88154,7 +88154,7 @@ }, "response": [ { - "id": "c7c5014d-26a1-4780-91d8-9085f8d93820", + "id": "87056e17-e620-40d7-9c0d-de5d5cd9f9c5", "name": "A IdentityCompare object with difference details for each access item type", "originalRequest": { "url": { @@ -88192,7 +88192,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "veniam aute ex exercitation" + "value": "exercitation" }, { "disabled": true, @@ -88254,7 +88254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9a6e4a0-519c-4ed3-9bab-8b6cefe87f99", + "id": "86f52641-0df9-484b-a28c-b1463c708877", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88292,7 +88292,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "veniam aute ex exercitation" + "value": "exercitation" }, { "disabled": true, @@ -88354,7 +88354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29010ac7-0ef6-43b7-ac76-92a7dac1bdac", + "id": "bffcb3f6-c157-4397-811e-118b98729470", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88392,7 +88392,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "veniam aute ex exercitation" + "value": "exercitation" }, { "disabled": true, @@ -88454,7 +88454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2efd7291-bc56-4cce-8331-a181614cbe26", + "id": "732459af-72cc-429d-a9a9-77b8e02492f3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88492,7 +88492,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "veniam aute ex exercitation" + "value": "exercitation" }, { "disabled": true, @@ -88554,7 +88554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f87d6ea3-2e91-41c3-b929-5e017cd80b79", + "id": "61886ae1-ad7c-47cb-9d3c-8f3ed6b3b811", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -88592,7 +88592,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "veniam aute ex exercitation" + "value": "exercitation" }, { "disabled": true, @@ -88654,7 +88654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "172605da-d454-4286-9511-38021c88b532", + "id": "49531e4d-a548-4236-9646-f0077e0d50c0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88692,7 +88692,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "veniam aute ex exercitation" + "value": "exercitation" }, { "disabled": true, @@ -88760,7 +88760,7 @@ } }, { - "id": "452b3008-4621-4714-a392-a4a017a4f7f9", + "id": "28122ea3-4c95-404f-b7ea-6d6b0f8d99fb", "name": "Gets a list of differences of specific accessType for the given identity between 2 snapshots", "request": { "name": "Gets a list of differences of specific accessType for the given identity between 2 snapshots", @@ -88872,7 +88872,7 @@ }, "response": [ { - "id": "18c3bb24-cc79-450f-8292-7ea1971581f6", + "id": "f4ae9e1a-4f3a-4770-b560-1fc5282ccb1f", "name": "A list of events for the identity", "originalRequest": { "url": { @@ -88973,7 +88973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80343f52-b485-408f-a608-14d3d4bc9cd3", + "id": "90e29e10-9363-410a-a76b-593f173e6e91", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89074,7 +89074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8bb4cca-c655-40a5-b1b3-ece9dfeda9af", + "id": "76afa54d-dd67-47a0-ab96-6f8d42fe8406", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89175,7 +89175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fca1829-424f-4f1f-9973-d53593eae959", + "id": "5fb75115-5f37-4bcb-85c7-2c49103e03be", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89276,7 +89276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d454fea2-c717-435e-bdd5-f80fb3b5b7f3", + "id": "3f2ad4a8-717b-4896-8982-66fd55d0ad2f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -89377,7 +89377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7427c632-13bc-48df-a895-b57872ca7280", + "id": "f8361e31-a460-4047-bda7-05d6f5565ea3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89490,7 +89490,7 @@ "description": "Use this API to implement and customize identity profile functionality.\nWith this functionality in place, administrators can manage identity profiles and configure them for use by identities throughout IdentityNow.\n\nIdentity profiles represent the configurations that can be applied to identities as a way of granting them a set of security and access, as well as defining the mappings between their identity attributes and their source attributes.\nThis allows administrators to save time by applying identity profiles to any number of similar identities rather than configuring each one individually.\n\nIn IdentityNow, administrators can use the Identities drop-down menu and select Identity Profiles to view the list of identity profiles.\nThis list shows some details about each identity profile, along with its status. They can select an identity profile to view and modify its settings, its mappings between identity attributes and correlating source account attributes, and its provisioning settings.\nAdministrators can also use this page to create new identity profiles or delete existing ones.\n\nRefer to [Creating Identity Profiles](https://documentation.sailpoint.com/saas/help/setup/identity_profiles.html) for more information about identity profiles.\n", "item": [ { - "id": "f443154c-b1ea-42f6-8ab2-412127134efc", + "id": "4a829063-c722-445f-8510-1b21afe4aa40", "name": "Identity Profiles list", "request": { "name": "Identity Profiles list", @@ -89565,7 +89565,7 @@ }, "response": [ { - "id": "ed40c393-d6ff-46f2-b8db-3ab6acaf24cc", + "id": "46d45385-82b4-43a4-ac9c-098aabb7d081", "name": "List of identityProfiles.", "originalRequest": { "url": { @@ -89649,12 +89649,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"e703e6b5-6d1f-1ac6-4dd1-139ac3763f0a\",\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\": \"c995b965-1064-3d64-07a9-7475c348d08b\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n]", + "body": "[\n {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:8d84c820-7dbd-1447-72c3-c2e804c8b933\",\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:33276503-a34b-6f47-931d-14c38da79660\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e6a484df-b4ec-4a56-ba7d-3c6999fe0d42", + "id": "53c4f39b-0b77-47c5-917f-a134dd6f0b1b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89743,7 +89743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed20c797-9f86-4090-bd9c-9672f5db6455", + "id": "68a69616-b4b1-4223-b7aa-9dfa989ccd65", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89832,7 +89832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "309f3605-be2c-49d4-a073-a1879c54b33e", + "id": "9e4f6ace-e0f4-4d2f-8ddc-6618d2e26ea4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89921,7 +89921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a64bbad2-cf88-451c-9e17-9fa9ff22d15c", + "id": "4dc47b31-c31e-4092-8336-6775d09455c4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90010,7 +90010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27c503b2-13d8-4320-8197-e70b382093ac", + "id": "6847b901-c3ca-4dd0-a373-5f95b8c99ee5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90105,7 +90105,7 @@ } }, { - "id": "73d4aa32-a3f3-4684-9569-1d2284ee1cc0", + "id": "7c45b562-86a2-4e03-bba5-2bf1e618555d", "name": "Create an Identity Profile", "request": { "name": "Create an Identity Profile", @@ -90136,7 +90136,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:b0149cbc-5128-17ef-982a-8e80c9cfd415\",\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\": \"b6f7210f-712a-742f-e39b-6a71a67be371\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -90147,7 +90147,7 @@ }, "response": [ { - "id": "8594c881-a784-485f-97e1-8b364ddb9010", + "id": "751b74a6-d8b3-4a74-b107-e87efb9ec443", "name": "The created Identity Profile", "originalRequest": { "url": { @@ -90181,7 +90181,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:b0149cbc-5128-17ef-982a-8e80c9cfd415\",\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\": \"b6f7210f-712a-742f-e39b-6a71a67be371\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -90198,12 +90198,12 @@ "value": "application/json" } ], - "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:b0149cbc-5128-17ef-982a-8e80c9cfd415\",\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\": \"b6f7210f-712a-742f-e39b-6a71a67be371\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4af053fc-0e46-4e8f-a179-05dacbca3b66", + "id": "0577e20e-3765-478d-b66a-f7a6311db3fa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90237,7 +90237,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:b0149cbc-5128-17ef-982a-8e80c9cfd415\",\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\": \"b6f7210f-712a-742f-e39b-6a71a67be371\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -90259,7 +90259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "758f2262-f665-42f7-bea9-a6ceb67f4c27", + "id": "9ec3220d-b60b-45f7-9be4-9a4d0fa48ed1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90293,7 +90293,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:b0149cbc-5128-17ef-982a-8e80c9cfd415\",\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\": \"b6f7210f-712a-742f-e39b-6a71a67be371\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -90315,7 +90315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6da4379c-62df-42c1-a099-0f3ecd3f002a", + "id": "656dc347-b60a-42ec-940f-67230fae0297", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90349,7 +90349,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:b0149cbc-5128-17ef-982a-8e80c9cfd415\",\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\": \"b6f7210f-712a-742f-e39b-6a71a67be371\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -90371,7 +90371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff6df297-4667-4f7e-8750-e97db9402d48", + "id": "cda5ab61-10e1-48e5-befc-e143c0622695", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90405,7 +90405,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:b0149cbc-5128-17ef-982a-8e80c9cfd415\",\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\": \"b6f7210f-712a-742f-e39b-6a71a67be371\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -90427,7 +90427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81ac6165-2c73-4560-8b6f-46bc41170bf3", + "id": "44f3c3ac-e5b8-4315-b13f-7638408e5ccd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90461,7 +90461,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:b0149cbc-5128-17ef-982a-8e80c9cfd415\",\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\": \"b6f7210f-712a-742f-e39b-6a71a67be371\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -90489,7 +90489,7 @@ } }, { - "id": "a972702e-2d79-4e2c-8cda-481b5debacd6", + "id": "1d91e0f3-cdb7-4932-8b26-f0ad5eafd4ce", "name": "Delete Identity Profiles", "request": { "name": "Delete Identity Profiles", @@ -90532,7 +90532,7 @@ }, "response": [ { - "id": "286b4e23-63de-481c-9aaa-8f4ac9ea280a", + "id": "990f5f49-7960-412f-95a1-456d3eee17c0", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -90584,12 +90584,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"2013-05-08T21:32:40.041Z\",\n \"launched\": \"1980-03-30T08:31:32.307Z\",\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\": \"2004-09-26T14:34:12.004Z\",\n \"launched\": \"2001-10-07T02:54:58.216Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d818c8e8-e2fc-4304-9299-e53a16ba3d30", + "id": "a1cfde74-ea71-41d0-b4c7-0a1e3912e183", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90646,7 +90646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a172e26-1cdf-4933-9fa9-1a19dc1da79c", + "id": "b820fc38-86bc-423d-936a-f3c5e1a25991", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90703,7 +90703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd1e4b07-f2c1-4dce-8742-536404508c27", + "id": "b53a2347-6fa0-4dc2-8530-33cf6cfe39e3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90760,7 +90760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9513ba71-751e-4234-b2e7-6f938f7f4f6d", + "id": "e00c5d1d-2be5-4032-8107-8e2b5a74295b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90817,7 +90817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e88f1865-cd46-4b01-aa6a-d6e24c000450", + "id": "98934bc1-8c56-46ee-ae77-2e0a5f651bda", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90880,7 +90880,7 @@ } }, { - "id": "e66f50e6-9a0b-4895-ae99-e881b582c942", + "id": "29e9a61d-d189-4c82-9682-096b5d709a26", "name": "Export Identity Profiles", "request": { "name": "Export Identity Profiles", @@ -90956,7 +90956,7 @@ }, "response": [ { - "id": "32931a44-9276-4965-94c6-9b318ab2f14b", + "id": "e94d0051-d9f3-4fe2-a92a-853bef25d8b0", "name": "List of export objects with identity profiles.", "originalRequest": { "url": { @@ -91046,7 +91046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ec2916d-dc08-4e30-880e-62e475bcdf61", + "id": "9a52b089-214d-4eea-bc17-23c950085f50", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91136,7 +91136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "551ef936-cdf7-4e0f-a745-a4826ad2d47a", + "id": "4a047588-a746-473b-9d8b-30b13e7e0246", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91226,7 +91226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7496b86b-822b-466a-b9d6-687c4d739652", + "id": "9222368b-8416-4cae-b07e-14983679e0ae", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91316,7 +91316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10eb0fde-502b-4732-8be7-e010c3fb3f67", + "id": "fb669368-36ca-4f14-800c-c5f8b9bffed8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -91406,7 +91406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eac8898c-0051-4285-b927-bf70bb0671eb", + "id": "bed86b36-d209-4ed8-9fd5-739aa7efec29", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91496,7 +91496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "411b3b55-15e9-400d-a6e9-fb8188c2a4f6", + "id": "2d400a5e-a405-451b-ae53-b0a346a6a415", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91592,7 +91592,7 @@ } }, { - "id": "36e04f2c-a131-4b9a-b209-f3fc1275e6ca", + "id": "47d0f2e7-46fd-49d3-981c-ad92330bc36c", "name": "Import Identity Profiles", "request": { "name": "Import Identity Profiles", @@ -91635,7 +91635,7 @@ }, "response": [ { - "id": "037b325e-8146-4fec-a38d-350a6865ea23", + "id": "0b76a89c-fea3-4a52-8603-3d8d5000b92a", "name": "The result of importing Identity Profiles.", "originalRequest": { "url": { @@ -91687,12 +91687,12 @@ "value": "application/json" } ], - "body": "{\n \"infos\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"ad9e\": {},\n \"dolor_d5d\": {}\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 \"sed79\": {},\n \"mollitb\": {}\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 \"aliquipd3\": {},\n \"ut_4\": {},\n \"ut9\": {}\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 \"mollit370\": {}\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 \"dolore_558\": {},\n \"dolor_4ff\": {},\n \"ut_75_\": {}\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 \"amet_e92\": {}\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 \"fugiat58\": {}\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 \"ea_cef\": {}\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 \"eiusmodd1\": {}\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 \"ut46\": {},\n \"nostrud_5a8\": {},\n \"consecteturfb8\": {},\n \"culpa64_\": {}\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 \"minim_5\": {},\n \"officia5\": {}\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 \"nulla1b_\": {},\n \"Duis_3\": {},\n \"et_489\": {}\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": "116851d1-b126-4730-a080-6361c0e30c50", + "id": "a1ec889c-bb45-4c0c-9d35-e95bdb93356d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91749,7 +91749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cab9736a-44fa-4352-b6e7-9d3c166bbf65", + "id": "32a32b4b-33bc-4869-9fc5-0f30918caf5c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91806,7 +91806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3538ef81-a7d6-4693-a936-835d4b2e1929", + "id": "cec336b9-e367-401f-b426-534604b9587b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91863,7 +91863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e923145-af78-45f1-b845-031a42f054e2", + "id": "820cf101-d24c-4d16-99b5-3bbd5d00f080", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91920,7 +91920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b1b58e0-5ad1-4a62-9611-de6fbb28e11c", + "id": "d2bf264d-f301-4f90-a5c4-f13d967eea04", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91983,7 +91983,7 @@ } }, { - "id": "27df89ec-26b9-459a-bf2a-3c2e4a55361b", + "id": "35a7a89b-8207-4585-8c1e-886b283b89f1", "name": "Generate Identity Profile Preview", "request": { "name": "Generate Identity Profile Preview", @@ -92015,7 +92015,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"7d35062a-1208-04dc-3b29-d1f454c472d6\",\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\": \"8bee4c5b-209f-d29f-2838-57aa9548fd40\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -92026,7 +92026,7 @@ }, "response": [ { - "id": "55f36f3f-0c9d-48e4-9fdb-89edff060861", + "id": "dc8f62a9-5367-4161-bf0f-c7e20f1f2c8b", "name": "Object representing the preview object with all of the identity attributes using the current mappings.", "originalRequest": { "url": { @@ -92061,7 +92061,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"7d35062a-1208-04dc-3b29-d1f454c472d6\",\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\": \"8bee4c5b-209f-d29f-2838-57aa9548fd40\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -92083,7 +92083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5dfc613-2653-4a19-a82c-8cac89f7b4a2", + "id": "6c8906d0-43f8-458a-8cbb-8acebfeafc78", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92118,7 +92118,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"7d35062a-1208-04dc-3b29-d1f454c472d6\",\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\": \"8bee4c5b-209f-d29f-2838-57aa9548fd40\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -92140,7 +92140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00c0134e-f825-42d1-ba51-03c9d921880c", + "id": "263260b1-eb0c-4e3d-b6d1-7abef75217a0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92175,7 +92175,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"7d35062a-1208-04dc-3b29-d1f454c472d6\",\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\": \"8bee4c5b-209f-d29f-2838-57aa9548fd40\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -92197,7 +92197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58a53aa0-e41a-46df-bff1-586cb8463d6a", + "id": "a0a3335f-cc41-4c9d-b59b-3d346b238279", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92232,7 +92232,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"7d35062a-1208-04dc-3b29-d1f454c472d6\",\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\": \"8bee4c5b-209f-d29f-2838-57aa9548fd40\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -92254,7 +92254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4d0e7de-7280-4bbb-831b-e6307289a3e7", + "id": "3e25de1e-df1d-41fb-a7fc-d9972de4e34c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92289,7 +92289,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"7d35062a-1208-04dc-3b29-d1f454c472d6\",\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\": \"8bee4c5b-209f-d29f-2838-57aa9548fd40\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -92311,7 +92311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "853254ba-2555-451e-8cbe-b1a93258c8ac", + "id": "c3050fbe-80fe-4103-8c84-c87bf430bd45", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92346,7 +92346,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"7d35062a-1208-04dc-3b29-d1f454c472d6\",\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\": \"8bee4c5b-209f-d29f-2838-57aa9548fd40\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -92374,7 +92374,7 @@ } }, { - "id": "667612f9-6de1-4ffe-a17f-feecbf914b21", + "id": "ac3068d2-a75a-4e76-a411-26214bee552c", "name": "Gets a single Identity Profile", "request": { "name": "Gets a single Identity Profile", @@ -92415,7 +92415,7 @@ }, "response": [ { - "id": "e843e298-d090-4da5-b86e-61c972508696", + "id": "0a8f4d2d-d957-4a29-aac0-25ff1c5f63dc", "name": "An Identity Profile object", "originalRequest": { "url": { @@ -92454,12 +92454,12 @@ "value": "application/json" } ], - "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:b0149cbc-5128-17ef-982a-8e80c9cfd415\",\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\": \"b6f7210f-712a-742f-e39b-6a71a67be371\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6b12e765-911a-45a2-a1c9-4e3b7b974a89", + "id": "f4319e0c-adc0-4f8b-b403-a6c9697d9e27", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92503,7 +92503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4de93e3d-caad-43f9-ad45-b766fb2d21de", + "id": "d30d9e3c-c61b-4719-b250-752cf5d428e2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92547,7 +92547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15f4c711-65c9-4407-a889-d244ae8c88ac", + "id": "d7d0e140-c48e-48a2-9d59-29c26a3a0e67", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92591,7 +92591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45432cde-693c-420a-b727-7728fb681bb4", + "id": "08fc76be-9cdd-4013-9cb7-51ac5dce7aad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -92635,7 +92635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15b9d7f6-b2d8-44ef-ba9e-e0cc7ac606a7", + "id": "eae5378a-24c9-44fb-9ca0-49fc334e1d24", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92679,7 +92679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe8c64fe-bca3-4c87-a930-5b16a76a83c0", + "id": "57c8f135-09b9-4d23-ae4a-084690037f35", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92729,7 +92729,7 @@ } }, { - "id": "c1ac274a-b28d-479e-a82c-d93634207e23", + "id": "7aafc223-b1e7-4566-9769-3ca941fd7921", "name": "Delete an Identity Profile", "request": { "name": "Delete an Identity Profile", @@ -92770,7 +92770,7 @@ }, "response": [ { - "id": "aabe64ef-1478-4ea5-aae9-dddd0dcc5ecd", + "id": "5977731a-a0bb-4627-a128-c402b8eda6d3", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -92809,12 +92809,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"1983-01-31T15:39:25.836Z\",\n \"launched\": \"1984-06-20T15:44:44.312Z\",\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\": \"1971-05-20T16:52:46.183Z\",\n \"launched\": \"1998-04-26T00:01:46.168Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0ec29d2a-ad2a-4c72-b46e-55e9c1fd0a16", + "id": "f78cc86e-fbd6-489d-bf47-9021d1447fe7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92858,7 +92858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1be606d-7b78-41a6-a9b8-ae3b5e8df388", + "id": "4b41cbf4-331e-458d-96fd-1be3a0080c82", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92902,7 +92902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0616ff77-cb38-4cbf-8aac-dbec01b728f5", + "id": "1821c891-bbb7-45bc-9ce6-08337ccb9da2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92946,7 +92946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1ec4617-b651-4121-927b-9cf2646e60d7", + "id": "bcd70e70-4429-4738-b906-857e966a415c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -92990,7 +92990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ea25996-553e-4866-b410-ff64849ba264", + "id": "75397b1e-4f86-4cfa-bdfb-ec8af41cc6da", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93034,7 +93034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b386b9b1-adc7-468c-ab1a-57993c77c2ec", + "id": "37de51b2-7586-47fc-a31e-d9e09ed0395a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93084,7 +93084,7 @@ } }, { - "id": "d7647bc5-4739-4a0e-ba61-209acdd33947", + "id": "478e3175-7fd8-4f08-a5b8-43525553a66f", "name": "Update the Identity Profile", "request": { "name": "Update the Identity Profile", @@ -93138,7 +93138,7 @@ }, "response": [ { - "id": "0f4017d2-101d-4a69-9059-5ba48875ee9e", + "id": "ccf2a6ca-50cf-45c1-bfb8-1337293d8bac", "name": "The updated Identity Profile.", "originalRequest": { "url": { @@ -93190,12 +93190,12 @@ "value": "application/json" } ], - "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:b0149cbc-5128-17ef-982a-8e80c9cfd415\",\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\": \"b6f7210f-712a-742f-e39b-6a71a67be371\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f48d886f-45fa-4e3a-95fd-1734150daf73", + "id": "2730187f-e26e-4165-b9fb-adee4b3d8a23", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93252,7 +93252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13946224-f2ad-4e21-bcb0-7bca10a6a9b3", + "id": "d129c369-03dd-4350-b4bd-b340fe7cb1f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93309,7 +93309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0aae542a-9f57-435b-9b9c-419071ef7706", + "id": "2b6b1ced-e8e5-4fed-9d70-e12ff7cdf73c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93366,7 +93366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3496371-823b-49e0-9a76-818f492af6fd", + "id": "cae0e734-f919-4bc8-a7b4-697c7df925eb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -93423,7 +93423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cdfa31d-ece3-4132-9db5-fa6155975c32", + "id": "fba4783a-ef9e-40ff-a56b-6d91c8459d70", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93480,7 +93480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23400df8-9cb2-4af4-acbf-6e781d4287dc", + "id": "dbde6311-8ff6-4e97-9cb5-f434540b9d5d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93543,7 +93543,7 @@ } }, { - "id": "4583f1f6-1bcf-42b7-a1f4-8090b4a4f76d", + "id": "080dc495-fde9-413b-b27c-00c4f145f587", "name": "Default identity attribute config", "request": { "name": "Default identity attribute config", @@ -93585,7 +93585,7 @@ }, "response": [ { - "id": "025caa6c-c53a-4ca6-878a-7af642b1d5b7", + "id": "21fbf0b4-4ce4-4cc2-a463-952d7c104062", "name": "An Identity Attribute Config object", "originalRequest": { "url": { @@ -93630,7 +93630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e33a7bef-a64b-47c0-9225-620c5e0e15cb", + "id": "218e76ac-3fd5-4507-80ce-0383f0bb19b4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93675,7 +93675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a00029d-7157-45fa-b03f-1c0d9e3b1990", + "id": "e45a8584-4483-40c3-bbf6-e07977c09766", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93720,7 +93720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a8cb1ab-3f8c-43d1-a7fa-7c649531b443", + "id": "379a71ee-020b-4a7f-a2a7-df042fefa11a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93765,7 +93765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1edb33b2-7215-4b69-90a4-fe7377f5e109", + "id": "ba82e397-4a0f-430c-aabe-92b3914e4d60", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -93810,7 +93810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ab75e66-03d5-476b-aa15-f4eb082681d5", + "id": "a8339f5f-c6ba-4719-9524-5a42ccd2d127", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93855,7 +93855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4aee619-3201-42b2-ad13-818cfef2228f", + "id": "a960cd30-cdf1-44f6-af60-4a0f516fa596", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93906,7 +93906,7 @@ } }, { - "id": "19a3c840-0d0b-4107-90e1-62856bd1e3da", + "id": "83a80464-7817-452d-bbd2-ab5ce405eb77", "name": "Process identities under profile", "request": { "name": "Process identities under profile", @@ -93948,7 +93948,7 @@ }, "response": [ { - "id": "2e4cf7c5-8bba-485e-b642-7942ca944ab9", + "id": "44dd2210-2b7d-4b69-938e-2a18732967ea", "name": "Accepted status after refresh has launched", "originalRequest": { "url": { @@ -93993,7 +93993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ef291b0-c360-4bfb-905a-48a12927dc7a", + "id": "a9346423-6fd4-49cd-b74d-fb7578c91f7b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94038,7 +94038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79bfd835-5163-4fce-a7a2-f9fae9b5f5e9", + "id": "46d949ac-b4fb-45ec-89f7-b08cee3a292a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94083,7 +94083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "321e6fa0-2bde-4127-bce3-be5a5a88f8f4", + "id": "d8ab6a34-ef2f-4415-8669-784b9b0e155c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94128,7 +94128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fdd1b17-7de9-4ddd-8561-2a92d460dbe8", + "id": "044ff9f3-0d51-45c1-9da2-80c877f5b6cf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -94173,7 +94173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d85e2d7a-3d42-4c9c-91bd-b641f4e7d123", + "id": "8447ccf4-481e-4f20-9754-b5179ad187ad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94218,7 +94218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78be407e-cdb5-4a21-85e1-cadec4f0829a", + "id": "2e4e4358-ef6e-44dc-9962-5c28fdde8958", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94275,7 +94275,7 @@ "description": "Use this API to implement and customize lifecycle state functionality.\nWith this functionality in place, administrators can view and configure custom lifecycle states for use across their organizations, which is key to controlling which users have access, when they have access, and the access they have.\n\nA lifecycle state describes a user's status in a company. For example, two lifecycle states come by default with IdentityNow: 'Active' and 'Inactive.'\nWhen an active employee takes an extended leave of absence from a company, his or her lifecycle state may change to 'Inactive,' for security purposes.\nThe inactive employee would lose access to all the applications, sources, and sensitive data during the leave of absence, but when the employee returns and becomes active again, all that access would be restored.\nThis saves administrators the time that would otherwise be spent provisioning the employee's access to each individual tool, reviewing the employee's certification history, etc.\n\nAdministrators must define the criteria for being in each lifecycle state, and they must define how IdentityNow manages users' access to apps and sources for each lifecycle state.\n\nIn IdentityNow, administrators can manage lifecycle states by going to Admin > Identities > Identity Profile, selecting the identity profile whose lifecycle states they want to manage, selecting the 'Provisioning' tab, and using the left panel to select the lifecycle state they want to modify.\n\nIn the 'Provisioning' tab, administrators can make the following access changes to an identity profile's lifecycle state:\n\n- Enable/disable the lifecycle state for the identity profile.\n\n- Enable/disable source accounts for the identity profile's lifecycle state.\n\n- Add existing access profiles to grant to the identity profiles in that lifecycle state.\n\n- Create a new access profile to grant to the identity profile in that lifecycle state.\n\nAccess profiles granted in a previous lifecycle state are automatically revoked when the identity moves to a new lifecycle state.\nTo maintain access across multiple lifecycle states, administrators must grant the access profiles in each lifecycle state.\nFor example, if an administrator wants users with the 'HR Employee' identity profile to maintain their building access in both the 'Active' and 'Leave of Absence' lifecycle states, the administrator must grant the access profile for that building access to both lifecycle states.\n\nDuring scheduled refreshes, IdentityNow evaluates lifecycle states to determine whether their assigned identities have the access defined in the lifecycle states' access profiles.\nIf the identities are missing access, IdentityNow provisions that access.\n\nAdministrators can also use the 'Provisioning' tab to configure email notifications for IdentityNow to send whenever an identity with that identity profile has a lifecycle state change.\nRefer to [Configuring Lifecycle State Notifications](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html#configuring-lifecycle-state-notifications) for more information on how to do so.\n\nAn identity's lifecycle state can have four different statuses: the lifecycle state's status can be 'Active,' it can be 'Not Set,' it can be 'Not Valid,' or it 'Does Not Match Technical Name Case.'\nRefer to [Moving Identities into Lifecycle States](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html#moving-identities-into-lifecycle-states) for more information about these different lifecycle state statuses.\n\nRefer to [Setting Up Lifecycle States](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html) for more information about lifecycle states.\n", "item": [ { - "id": "6dc8855f-ffe9-4fe3-a822-4308075ed6d2", + "id": "6ec5aac2-1b74-404a-b055-989af472bcdb", "name": "Lifecycle State", "request": { "name": "Lifecycle State", @@ -94297,7 +94297,7 @@ "variable": [ { "type": "any", - "value": "minim", + "value": "exercitation laboris ex sit", "key": "identity-profile-id", "disabled": true, "description": { @@ -94307,7 +94307,7 @@ }, { "type": "any", - "value": "minim", + "value": "exercitation laboris ex sit", "key": "lifecycle-state-id", "disabled": true, "description": { @@ -94328,7 +94328,7 @@ }, "response": [ { - "id": "7cf8eb85-4a50-4b17-9713-dc90f0dc573a", + "id": "51da7da4-dc59-4ca8-a005-9ac91cc0365a", "name": "lifecycle-state", "originalRequest": { "url": { @@ -94374,7 +94374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccb4e8bf-8a4d-4733-a854-46dd95aa2d0e", + "id": "55938df6-1a95-405e-9bdb-da00609aeb93", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94420,7 +94420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05ab41ec-c5d8-442a-b0ad-8010ec0d2e7e", + "id": "bcfd4e85-6185-4032-8a00-c9ed3732113a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94466,7 +94466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54126365-f1ef-4dea-9e57-f710ab9ec13b", + "id": "2f97b661-9307-4e9e-a6b1-55ff0cb344f7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94512,7 +94512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a26cf65-de2e-4c78-a053-f96f90d7cfc9", + "id": "5f993482-5cf4-4dad-81e9-9dac887a7180", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94558,7 +94558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73f234ca-9d7f-4043-801d-42f74d1abdcf", + "id": "360abd81-6262-4c92-867b-746fa2faf27a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94610,7 +94610,7 @@ } }, { - "id": "873dbc79-a545-479d-a98c-eea332f7c615", + "id": "bf5c6151-00cc-40b1-b5cf-e3aa6f6f5b54", "name": "Update Lifecycle State", "request": { "name": "Update Lifecycle State", @@ -94632,7 +94632,7 @@ "variable": [ { "type": "any", - "value": "minim", + "value": "exercitation laboris ex sit", "key": "identity-profile-id", "disabled": true, "description": { @@ -94642,7 +94642,7 @@ }, { "type": "any", - "value": "minim", + "value": "exercitation laboris ex sit", "key": "lifecycle-state-id", "disabled": true, "description": { @@ -94676,7 +94676,7 @@ }, "response": [ { - "id": "596cee10-20db-4f2e-9d6f-421758459c0f", + "id": "740c9251-a3a4-4b1f-8ac4-64dfb21d4e60", "name": "Updated lifecycle-state.", "originalRequest": { "url": { @@ -94735,7 +94735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "caafe8cd-5a92-4697-9777-c1bc8b03da9e", + "id": "71dc30ea-b942-46a5-81f5-40c47ef9a1ad", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94794,7 +94794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "750969c2-8796-4cc9-956b-c9b427bad6c8", + "id": "1c69e72d-16f2-420a-a0c8-a84ed59de279", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94853,7 +94853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfb822d6-d515-40d2-9d5a-774531a1a9c6", + "id": "b1e2911c-800b-40e4-88cd-d6fd656eb24e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94912,7 +94912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d5deff3-ced2-4d87-a6d9-ecea5b2777bc", + "id": "53d3dee9-9904-4365-9f8a-07ea67201953", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94971,7 +94971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06bad1ea-9160-483b-9359-30ee75c57938", + "id": "85cca351-8a2c-4746-ab21-be1acb63611b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95042,7 +95042,7 @@ "description": "Read and write operations for managing client data and statuses", "item": [ { - "id": "0379c286-bdfd-4214-8f6b-bb074fab25c9", + "id": "30e4675d-b958-4d60-b282-89e82435657d", "name": "Specified Managed Client Status.", "request": { "name": "Specified Managed Client Status.", @@ -95094,7 +95094,7 @@ }, "response": [ { - "id": "8cda98b1-27c4-4d70-92a9-831ff1089223", + "id": "d37edd59-3cf4-4b32-a0bb-80cc4f7a4745", "name": "Responds with Managed Client Status having the given ID and Type.", "originalRequest": { "url": { @@ -95144,12 +95144,12 @@ "value": "application/json" } ], - "body": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "body": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2847cf45-b5b2-4fd2-98ef-8d820f89ff06", + "id": "bab80c16-5a23-421b-9b7d-18607bf1df8b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95204,7 +95204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5f472a2-49d1-4e1c-9a24-25dddfbeee9c", + "id": "161398b5-bfc0-453d-82f9-24e2ff5d94a9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95259,7 +95259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6800ff7-d072-465d-87f5-67d64b73ce42", + "id": "fc791575-6a37-43f2-9f77-bbb8f4888e6b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95314,7 +95314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a259907f-6958-454e-a0a3-3da59606417a", + "id": "c4bec9d6-aa9f-46b2-9ecc-46d1a9ea705d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -95369,7 +95369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccdd7bbb-2746-47de-b173-364fd504314d", + "id": "6a1ab142-1fe7-423c-9021-6de5c0c3a35b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95424,7 +95424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "429c0951-af02-4f48-9060-a8d8adc1aabc", + "id": "a3837b8f-4516-41df-aa17-e77f28dcfe5a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95485,7 +95485,7 @@ } }, { - "id": "aba24c2f-bef9-4d72-b7d6-16621a50af89", + "id": "113c222a-24e6-4820-b9fb-6b1b73eaecbb", "name": "Handle status request from client", "request": { "name": "Handle status request from client", @@ -95529,7 +95529,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95540,7 +95540,7 @@ }, "response": [ { - "id": "5b345d22-733d-4e13-b741-ed9cfc62bbc9", + "id": "5d9a3706-2e17-4137-ae7e-20be5eafb86f", "name": "Responds with the updated Managed Client Status.", "originalRequest": { "url": { @@ -95576,7 +95576,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95593,12 +95593,12 @@ "value": "application/json" } ], - "body": "{\n \"body\": {\n \"body\": {\n \"clientId\": \"1528\",\n \"clusterId\": \"1533\",\n \"orgType\": \"test\",\n \"vaDownloadUrl\": \"https://sptcbu-va-images.s3.amazonaws.com/va-latest.zip\",\n \"clusterJobCount\": 1,\n \"configuration\": {\n \"clusterType\": \"sqsCluster\",\n \"clusterExternalId\": \"2c91808876dd79120176f758af765c58\",\n \"debug\": \"false\",\n \"failureThreshold\": \"0\",\n \"gmtOffset\": \"-6\",\n \"scheduleUpgrade\": \"false\",\n \"va_version\": \"va-megapod-useast1-595-1627543540\",\n \"jobType\": \"VA_UPGRADE\",\n \"cookbook\": \"va-megapod-useast1-595-1627543540\"\n },\n \"connectorServices\": [\n {\n \"name\": \"EndToEnd-ADSource\",\n \"connector_host\": \"host.example.com\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-AzureADSource\",\n \"connector_host\": null,\n \"connector_port\": null,\n \"connector_(boolean)useSSL\": null,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-OpenLDAP\",\n \"connector_host\": \"10.0.2.64\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"Dynamic-ADSource\",\n \"connector_host\": \"host.example.com\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-JdbcADSource\",\n \"connector_host\": \"10.0.5.187\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-JdbcSource\",\n \"connector_host\": null,\n \"connector_port\": null,\n \"connector_(boolean)useSSL\": null,\n \"connectorFileUploadHistory\": [\n {\n \"serviceId\": \"540717\",\n \"date\": \"2021-02-05T22:58:15Z\",\n \"file\": \"temp7081703651350031905mysql-connector-java-8.0.11.jar\"\n }\n ]\n }\n ],\n \"jobs\": [\n {\n \"uuid\": \"872b622f-5ab5-4836-9172-e3bb77f05b2c\",\n \"cookbook\": \"872b622f-5ab5-4836-9172-e3bb77f05b2c\",\n \"state\": \"FINISHED\",\n \"type\": \"VA_UPGRADE\",\n \"targetId\": \"1528\",\n \"managedProcessConfiguration\": {\n \"charon\": {\n \"version\": \"345\",\n \"path\": \"sailpoint/charon\",\n \"description\": null,\n \"dependencies\": null\n },\n \"ccg\": {\n \"version\": \"415_583_79.0.0\",\n \"path\": \"sailpoint/ccg\",\n \"description\": null,\n \"dependencies\": null\n },\n \"toolbox\": {\n \"version\": \"6\",\n \"path\": \"sailpoint/toolbox\",\n \"description\": null,\n \"dependencies\": null\n },\n \"fluent\": {\n \"version\": \"50\",\n \"path\": \"fluent/va\",\n \"description\": null,\n \"dependencies\": null\n },\n \"va_agent\": {\n \"version\": \"89\",\n \"path\": \"sailpoint/va_agent\",\n \"description\": null,\n \"dependencies\": null\n }\n }\n }\n ],\n \"queue\": {\n \"name\": \"megapod-useast1-denali-lwt-cluster-1533\",\n \"region\": \"us-east-1\"\n },\n \"maintenance\": {\n \"window\": \"true\",\n \"windowStartTime\": \"2021-07-29T00:00:00Z\",\n \"windowClusterTime\": \"2021-07-29T01:35:24Z\",\n \"windowFinishTime\": \"2021-07-29T04:00:00Z\"\n }\n }\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "body": "{\n \"body\": {\n \"body\": {\n \"clientId\": \"1528\",\n \"clusterId\": \"1533\",\n \"orgType\": \"test\",\n \"vaDownloadUrl\": \"https://sptcbu-va-images.s3.amazonaws.com/va-latest.zip\",\n \"clusterJobCount\": 1,\n \"configuration\": {\n \"clusterType\": \"sqsCluster\",\n \"clusterExternalId\": \"2c91808876dd79120176f758af765c58\",\n \"debug\": \"false\",\n \"failureThreshold\": \"0\",\n \"gmtOffset\": \"-6\",\n \"scheduleUpgrade\": \"false\",\n \"va_version\": \"va-megapod-useast1-595-1627543540\",\n \"jobType\": \"VA_UPGRADE\",\n \"cookbook\": \"va-megapod-useast1-595-1627543540\"\n },\n \"connectorServices\": [\n {\n \"name\": \"EndToEnd-ADSource\",\n \"connector_host\": \"host.example.com\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-AzureADSource\",\n \"connector_host\": null,\n \"connector_port\": null,\n \"connector_(boolean)useSSL\": null,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-OpenLDAP\",\n \"connector_host\": \"10.0.2.64\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"Dynamic-ADSource\",\n \"connector_host\": \"host.example.com\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-JdbcADSource\",\n \"connector_host\": \"10.0.5.187\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-JdbcSource\",\n \"connector_host\": null,\n \"connector_port\": null,\n \"connector_(boolean)useSSL\": null,\n \"connectorFileUploadHistory\": [\n {\n \"serviceId\": \"540717\",\n \"date\": \"2021-02-05T22:58:15Z\",\n \"file\": \"temp7081703651350031905mysql-connector-java-8.0.11.jar\"\n }\n ]\n }\n ],\n \"jobs\": [\n {\n \"uuid\": \"872b622f-5ab5-4836-9172-e3bb77f05b2c\",\n \"cookbook\": \"872b622f-5ab5-4836-9172-e3bb77f05b2c\",\n \"state\": \"FINISHED\",\n \"type\": \"VA_UPGRADE\",\n \"targetId\": \"1528\",\n \"managedProcessConfiguration\": {\n \"charon\": {\n \"version\": \"345\",\n \"path\": \"sailpoint/charon\",\n \"description\": null,\n \"dependencies\": null\n },\n \"ccg\": {\n \"version\": \"415_583_79.0.0\",\n \"path\": \"sailpoint/ccg\",\n \"description\": null,\n \"dependencies\": null\n },\n \"toolbox\": {\n \"version\": \"6\",\n \"path\": \"sailpoint/toolbox\",\n \"description\": null,\n \"dependencies\": null\n },\n \"fluent\": {\n \"version\": \"50\",\n \"path\": \"fluent/va\",\n \"description\": null,\n \"dependencies\": null\n },\n \"va_agent\": {\n \"version\": \"89\",\n \"path\": \"sailpoint/va_agent\",\n \"description\": null,\n \"dependencies\": null\n }\n }\n }\n ],\n \"queue\": {\n \"name\": \"megapod-useast1-denali-lwt-cluster-1533\",\n \"region\": \"us-east-1\"\n },\n \"maintenance\": {\n \"window\": \"true\",\n \"windowStartTime\": \"2021-07-29T00:00:00Z\",\n \"windowClusterTime\": \"2021-07-29T01:35:24Z\",\n \"windowFinishTime\": \"2021-07-29T04:00:00Z\"\n }\n }\n },\n \"status\": \"FAILED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "96a16d66-10ae-4adf-a3e9-a25c00de4ce9", + "id": "6e1e257a-006c-459c-a78b-9ae5ffc2201a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95634,7 +95634,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95656,7 +95656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7139b22c-bfd1-48fa-a8a5-228561f317c7", + "id": "b230769a-a443-4c09-8f74-70abe4c40b3a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95692,7 +95692,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95714,7 +95714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2af2341-4f35-4040-9eb4-f0fc67807162", + "id": "c1c3f9b8-9220-486e-ac9e-4141a36bff04", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95750,7 +95750,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95772,7 +95772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1516dcac-dd2e-4bec-b1c4-672a3b67c9bd", + "id": "fd4d2db3-61fb-4c54-94c5-419bd770343a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -95808,7 +95808,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95830,7 +95830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1bbd604-7ca0-4a29-b905-2cba477bb9b2", + "id": "15e86aad-d664-4ce2-b1a6-bf7cae60b392", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95866,7 +95866,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95888,7 +95888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35c872e3-3e90-438f-b758-fed6be4ce9b6", + "id": "750d89c9-081e-4a24-aaf6-c27d3f916745", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95924,7 +95924,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -95958,7 +95958,7 @@ "description": "Operations for accessing and managing client Clusters, including Log Configuration", "item": [ { - "id": "23fffe8b-5b5c-443b-998b-76b8510ea38e", + "id": "a62b549b-124c-4e36-ae4b-92b46a74f75e", "name": "Get a specified ManagedCluster.", "request": { "name": "Get a specified ManagedCluster.", @@ -95999,7 +95999,7 @@ }, "response": [ { - "id": "87105c28-54d0-44cc-a3b8-89ce5c88f2df", + "id": "3711781b-6c57-4bf5-91e4-c1c51e778430", "name": "Responds with ManagedCluster having the given ID.", "originalRequest": { "url": { @@ -96043,7 +96043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c68b3fba-3558-4c29-93fd-9814de8fe421", + "id": "3aed5b2d-da13-48b8-bf0e-05602daed59d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96087,7 +96087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5173a815-e7fa-44d0-ad9b-9d6d8532e107", + "id": "334ecc3b-fb83-4c73-a1ec-0dbc58575972", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96131,7 +96131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7603a48b-b18b-49b7-b9b4-dca8715fc7c5", + "id": "aad04100-5b51-463f-a9fc-76131834e090", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96175,7 +96175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26086f27-0e49-4895-ac74-27e7850f0993", + "id": "450e7bfc-1c93-4571-9486-37a400bb7df0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -96219,7 +96219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "404f2287-e567-46c0-b397-aca5575a3d57", + "id": "5c8d4a47-27f9-44fe-829d-287721187715", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96263,7 +96263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4bd497c-5f63-4096-bcb1-99b09c6dd734", + "id": "4005f52f-1497-47c6-8da3-12a33e3d5b1d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96313,7 +96313,7 @@ } }, { - "id": "ccd9224b-df04-43b6-a896-4e099a8f76e1", + "id": "c438384c-07f9-4590-9610-a36c6684e2e6", "name": "Get managed cluster's log configuration", "request": { "name": "Get managed cluster's log configuration", @@ -96355,7 +96355,7 @@ }, "response": [ { - "id": "e706b29b-32a3-4a25-b9e2-dbea7bbe0015", + "id": "831c49cf-ab61-4015-bc1d-82abdab09ed4", "name": "Log configuration of ManagedCluster matching given cluster ID", "originalRequest": { "url": { @@ -96400,7 +96400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4119962-c96b-4d2e-a8b0-c2ad59ed1073", + "id": "7870cff3-8ba6-4029-9059-a113716aec9f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96445,7 +96445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc1c5a35-4a0b-4d41-a1bf-d029952bc897", + "id": "550c4266-cd61-4435-816a-a6885cbb48c9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96490,7 +96490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27c32d3f-3c55-402d-b90c-e48ca1cc9894", + "id": "2e6ecb5c-45ba-43a3-9a9d-e647d4ff8110", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96535,7 +96535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0884a88a-8bc8-4d1e-8166-276c95451c6f", + "id": "bc3cb65b-056c-4280-a009-fa112191a97d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -96580,7 +96580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89307872-644a-40f6-bf7d-1c6260b5fd15", + "id": "48014e48-671f-41e4-a6c3-3c6c21e7770c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96625,7 +96625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce3ff86c-2094-411e-8c63-cbef1db7898d", + "id": "8dc718d1-861b-4cb3-9ed0-3b136e76ad7c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96676,7 +96676,7 @@ } }, { - "id": "cdfee439-cffa-452f-96e5-8dfe03611756", + "id": "b3e44b8a-cc42-4574-a38b-db9907b30ee2", "name": "Update managed cluster's log configuration", "request": { "name": "Update managed cluster's log configuration", @@ -96731,7 +96731,7 @@ }, "response": [ { - "id": "91760e58-da6c-4b93-aa49-7ffec314efa1", + "id": "1e7c1bcb-2da7-477e-88ab-c47f42abd514", "name": "Responds with updated ClientLogConfiguration for given ManagedCluster", "originalRequest": { "url": { @@ -96789,7 +96789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bccde1f-2879-483a-8107-33506713fd74", + "id": "02b14796-c19d-49be-8187-e9ec127336f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96847,7 +96847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2576bc78-b2b0-425d-9f3c-780cfd0c15de", + "id": "25f9646e-10dc-4db8-986b-cda127a7f21e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96905,7 +96905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3ad01bc-5759-41ab-a598-b31e47dcc4a0", + "id": "7d219725-3887-4c25-8375-69b989b9f186", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96963,7 +96963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1cb5f59-1ca2-41bc-98d4-32a28eb1be00", + "id": "1c623cd5-2bee-4c04-b8a9-8a49393afa99", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -97021,7 +97021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3795de9-23d7-427b-a285-f19e8bae96c5", + "id": "c90717de-b8e1-4613-bae9-ca0a6308bbb2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97079,7 +97079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30697861-738f-40f3-8bd1-e94739849111", + "id": "5cd4d7bc-8115-4c6a-8551-2b277031dca4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97143,7 +97143,7 @@ } }, { - "id": "f4e10711-9ed9-451c-b230-207c6de87924", + "id": "42590bd2-e0d9-45f4-ac56-da4cb0db0d55", "name": "Retrieve all Managed Clusters.", "request": { "name": "Retrieve all Managed Clusters.", @@ -97209,7 +97209,7 @@ }, "response": [ { - "id": "942cca81-63ef-4cf8-a6f5-604de09421b1", + "id": "fb2912e8-5d72-45d3-976d-00adaa6c740a", "name": "Responds with a list of ManagedCluster.", "originalRequest": { "url": { @@ -97289,7 +97289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b2cf730-aba1-4008-acf0-364d4d31a3a8", + "id": "a06559c5-8760-460b-8ac3-306fa1525482", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97369,7 +97369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bf2a679-b59a-4452-b122-1665b1c92db2", + "id": "6ed000ee-fdd9-4719-bb6d-6aba9b59549a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97449,7 +97449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7390a4a3-8e3a-4650-8f52-60270939647a", + "id": "e16d03d0-e232-4079-86fc-1b5ea150c75d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97529,7 +97529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25e07b4c-2e82-43f8-b690-5cb78c5406b9", + "id": "4e3bdcc5-464f-4989-831f-1b2a22d7fd69", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97609,7 +97609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52cee530-88bb-4b93-be70-be6575980716", + "id": "637265d6-ff26-4dc6-b6a7-a33affab2297", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97701,7 +97701,7 @@ "description": "Configure and test multifactor authentication (MFA) methods", "item": [ { - "id": "f7daacb5-2511-44de-900a-e3a388d1d0a6", + "id": "96b8e46d-2d7a-4ac1-8d14-ea297c717c34", "name": "Configuration of Okta MFA method", "request": { "name": "Configuration of Okta MFA method", @@ -97732,7 +97732,7 @@ }, "response": [ { - "id": "d05a760c-1d45-4167-bd0a-6c6751057726", + "id": "d85b27b5-bf76-4dc9-a4cd-449dfb64934c", "name": "The configuration of an Okta MFA method.", "originalRequest": { "url": { @@ -97777,7 +97777,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3add1c9-a6f3-42fa-a4bf-f0afc2367bcc", + "id": "101cbd84-2659-453a-8868-4da1fec20639", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97822,7 +97822,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f92f73a0-d1ae-45f4-9a74-7ef05fd9d04c", + "id": "8b5ffbf3-205d-4a36-bdf7-06a6c1e1a39f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97867,7 +97867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6197dcfb-ab65-4de7-8f65-bbe5770182f8", + "id": "f8ffb88d-3f79-407a-8d38-d0093a19546f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97912,7 +97912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4800aa62-c2ec-4b52-b828-cc61523e090a", + "id": "452964ff-0bfb-455d-88b5-e3e76dbaa514", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97957,7 +97957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68606eb9-add0-4ac8-abf2-6a391d2e5c34", + "id": "22762763-e3e1-482d-9095-8327c823e664", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98008,7 +98008,7 @@ } }, { - "id": "08634ad0-64ea-49ce-83dd-b36a6150f6ef", + "id": "b55eb2f9-736a-47dc-b632-62960b39625e", "name": "Set Okta MFA configuration", "request": { "name": "Set Okta MFA configuration", @@ -98052,7 +98052,7 @@ }, "response": [ { - "id": "9e927f48-b4c2-4ceb-bc4c-860f848ad912", + "id": "5e2f41f9-490e-452f-9342-e922ecd928cb", "name": "MFA configuration of an Okta MFA method.", "originalRequest": { "url": { @@ -98110,7 +98110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b717ba8-0a52-45ad-b97c-fd86d0eeae46", + "id": "4cb4fc24-1d06-41d2-97b1-8c63e75cdc47", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98168,7 +98168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49c8c485-ed4c-45d5-884a-770270731422", + "id": "17166501-ab05-4c53-893a-5024ccd74093", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98226,7 +98226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6056b0e2-ca6d-4fa0-9d58-f463ec685c84", + "id": "e1f5dd74-40b3-42eb-b46d-d90170f14f87", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98284,7 +98284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7541451a-1e74-41d5-95c4-24fcd13f2971", + "id": "f1530542-2710-41ff-b4d6-e881b1b0adc5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98342,7 +98342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83bfdc97-ce22-4d14-a16e-79d0c47254c0", + "id": "096559e4-8671-4da0-a611-35ab15041a3b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98406,7 +98406,7 @@ } }, { - "id": "8fb692ce-a901-4f59-9a05-4fcab9271bd7", + "id": "0d6f8cfb-3da5-4a58-ac74-257cae3acae5", "name": "Configuration of Duo MFA method", "request": { "name": "Configuration of Duo MFA method", @@ -98437,7 +98437,7 @@ }, "response": [ { - "id": "b17c3e89-db29-4930-bf10-74b71605ef8b", + "id": "aec56f71-5249-41e2-b09d-ddc04bd1aeb2", "name": "The configuration of an Duo MFA method.", "originalRequest": { "url": { @@ -98482,7 +98482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e5767fc-d93d-4c91-ae82-79643e978747", + "id": "218b14e5-7962-4332-acbe-654cbfb59b7c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98527,7 +98527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4582402e-c548-4108-adc0-dee19436cc2d", + "id": "a8e0d39b-5a4a-4915-8104-2440f413befc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98572,7 +98572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be7da680-ff20-4a33-b48f-589bc010bf40", + "id": "b0b2d100-c28a-40e9-84e1-5812d78cf346", "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": "7fa047dc-c4e4-4afd-9ec7-0f316802cec1", + "id": "3317c233-2504-4f29-a922-b2b2df316929", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98662,7 +98662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcef1505-6359-402b-baff-c9c8a3a05eb8", + "id": "81f6b35f-8a11-4db5-a14c-cc98b6e5a32e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98713,7 +98713,7 @@ } }, { - "id": "ab2d9b89-aec0-4a0e-9408-5e3c9ed55a50", + "id": "f754aa7c-cb44-46fb-bf06-e98228b794ab", "name": "Set Duo MFA configuration", "request": { "name": "Set Duo MFA configuration", @@ -98757,7 +98757,7 @@ }, "response": [ { - "id": "14e7ead2-0573-4929-a930-b829aeadb9a6", + "id": "5ef556ca-5c84-4b6c-bfbe-c510938a2d2a", "name": "MFA configuration of an Duo MFA method.", "originalRequest": { "url": { @@ -98815,7 +98815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3968ee4-cb1a-42e2-9150-15bf7a5c25e0", + "id": "5f34a4de-c863-4d0d-aaee-1414bf5beb0b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98873,7 +98873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4d49ec0-d28d-4503-bd95-c310bbedd523", + "id": "00de404d-df89-4e5c-b694-3c8f7e30a326", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98931,7 +98931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35270520-6210-4d83-b8b7-2eb3ba1eca97", + "id": "bbf503f5-4c4e-4678-bbb6-6ce8451dc3e9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98989,7 +98989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "842c13c1-3873-4098-9b1a-0dd1cb4d9900", + "id": "45d2d704-3b1d-46bc-8b81-98b070dbe0c0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99047,7 +99047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e21b67fb-273f-4725-a8ad-785e21cb3022", + "id": "71dbd512-0eae-4e2a-8b89-17465c07f63d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99111,7 +99111,7 @@ } }, { - "id": "01fa1f0c-420b-4457-a0d9-e5e451574b42", + "id": "5ed5c8f9-a897-48c2-a872-2b621df9507d", "name": "MFA method's test configuration", "request": { "name": "MFA method's test configuration", @@ -99153,7 +99153,7 @@ }, "response": [ { - "id": "e99b8e5f-635e-4e5a-adda-20d8c112aaf7", + "id": "8ac521cb-6994-453d-91ec-4d2c5602db5b", "name": "The result of configuration test for the MFA provider.", "originalRequest": { "url": { @@ -99198,7 +99198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4296ed20-0e0d-44b7-9126-2dbb21b49a73", + "id": "03be35b5-e2a9-4104-91c7-97f43189a271", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99243,7 +99243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "738e4b52-9d72-419e-ae1f-ef1af1a0d8fb", + "id": "05c4d4f8-1c44-4c9a-9047-d9caa8a34d92", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99288,7 +99288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f769e504-05c0-4c7d-835b-54f1ab8a323a", + "id": "a38adfc8-ecec-48ab-a98b-72bc28282bc4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99333,7 +99333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "936045fd-5e69-4acc-bff3-343875ce351d", + "id": "186f8ee5-ee71-4380-aaed-0833f8c25904", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99378,7 +99378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cec1d2be-75a1-4a20-a5c0-f4b947827c47", + "id": "e012ee71-7c53-40ce-a3c2-a0df6804d937", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99429,7 +99429,7 @@ } }, { - "id": "c096ff56-1b11-4976-92a3-81824b14a263", + "id": "fb7f6ae4-927a-4b26-9776-d00b507d3853", "name": "Delete MFA method configuration", "request": { "name": "Delete MFA method configuration", @@ -99471,7 +99471,7 @@ }, "response": [ { - "id": "f1db2535-3591-4f56-8b44-246a08dd1186", + "id": "ad17becb-99b7-4894-9391-6f9f13e977e7", "name": "MFA configuration of an MFA method.", "originalRequest": { "url": { @@ -99516,7 +99516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6e8db4a-2cb9-4935-a5ef-b4c6704e5dba", + "id": "294a31c1-39fd-4077-b560-d087419603eb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99561,7 +99561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ceb285e-2dcb-4e7d-893f-746b463a65c2", + "id": "641b42a0-ebf2-4b77-a35a-2cea029a0035", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99606,7 +99606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3de3579-bd6c-41de-a8ed-04675f8e7a61", + "id": "fae5059e-60ee-4e97-94fa-2149c576d07e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99651,7 +99651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98e7269e-b9c4-4074-a6cb-edb2d56fb21a", + "id": "6c07841f-a68c-4d52-bbf0-abfd4b4ba575", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99696,7 +99696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29f2f51c-be8e-458c-8924-66daf69541e4", + "id": "f974041d-0500-4b43-8683-39643dd73503", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99753,7 +99753,7 @@ "description": "This API used for multifactor authentication functionality belong to gov-multi-auth service. This controller allow you to verify authentication by specified method", "item": [ { - "id": "61ad632a-d7d4-49a2-8e71-640777ba4177", + "id": "19c6f1b1-b577-4f64-ac04-694123d0ab1c", "name": "Verifying authentication via Okta method", "request": { "name": "Verifying authentication via Okta method", @@ -99797,7 +99797,7 @@ }, "response": [ { - "id": "e732f837-eb6b-4231-aded-2c71a8bcf598", + "id": "0cc0a492-b304-46a0-84a5-a974db507df6", "name": "The status of verification request.", "originalRequest": { "url": { @@ -99855,7 +99855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13d8fc8a-0934-4375-9973-2fe4a44ac44e", + "id": "a5bb073b-d6b9-4cb7-ae56-7b158cb9d3a0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99913,7 +99913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ba07a0c-5467-42e6-8bd0-e36ae3aae80e", + "id": "0fcbe28d-9677-420f-ad72-06a38cc5b0cb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99971,7 +99971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ec85dfa-7bc3-4848-8c45-02d8c0329eaa", + "id": "44e6f91c-a456-4fd3-92ec-b5e272cca00a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100029,7 +100029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10924d05-4068-4496-ae8a-a6d4e2fcd667", + "id": "06d2fd61-ddd2-45eb-a90c-10f203459241", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100087,7 +100087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d08a749-b90e-4c69-9342-acfb26edc774", + "id": "b5eaa9d0-1c91-44a9-bdfd-ee0e55486bd6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100151,7 +100151,7 @@ } }, { - "id": "0d8429fd-ad0b-4f35-908e-b0ccd858c5ab", + "id": "e9a57a49-b9f7-4ae7-94ab-1203afdc2a59", "name": "Verifying authentication via Duo method", "request": { "name": "Verifying authentication via Duo method", @@ -100195,7 +100195,7 @@ }, "response": [ { - "id": "c1efd173-350b-4e76-92e5-d8602f8a585b", + "id": "d23b96d9-923c-4476-8ab7-be370465725b", "name": "The status of verification request.", "originalRequest": { "url": { @@ -100253,7 +100253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6b3958f-f7cd-4406-a287-2d0e2286a2f0", + "id": "5f6cb53e-7914-4d87-b56c-543679ef57f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100311,7 +100311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a65f2ac3-5a8f-485c-a1e1-29be5b38a127", + "id": "0c52033a-d6ce-4980-aa92-8feb596f79e3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100369,7 +100369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "520418f1-5c5c-40c0-a5b4-4a4daf481969", + "id": "805d41fe-5466-4cb9-a6bb-5fbb5b608fb6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100427,7 +100427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57652684-076c-4bca-a9ed-6aa457173215", + "id": "13a2ff10-bf28-4096-8d6d-b00c2aaec7b5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100485,7 +100485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffc551e4-d7c6-4c4d-b3b7-87ab32adcd55", + "id": "a29493e4-81f2-41a1-ae9c-5493df0a1b48", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100549,7 +100549,7 @@ } }, { - "id": "5b950ae1-87de-4171-9896-833b9cac04b6", + "id": "5f11d236-986b-49eb-979f-afe68ba57edc", "name": "Polling MFA method by VerificationPollRequest", "request": { "name": "Polling MFA method by VerificationPollRequest", @@ -100604,7 +100604,7 @@ }, "response": [ { - "id": "94711733-c42e-48b2-a1d4-d622a49a6109", + "id": "e3f49d5a-5a23-4705-9cff-cc102ebee4b0", "name": "MFA VerificationPollRequest status an MFA method.", "originalRequest": { "url": { @@ -100662,7 +100662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73e09ebe-3658-4270-a240-489d0ae7db54", + "id": "4d14dd0f-7698-4b25-baf0-4738877f6daa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100720,7 +100720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19e53348-9deb-422a-8cc6-680b1dcccb6b", + "id": "e366f303-985b-48e8-8cdf-c0c2a1e84667", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100778,7 +100778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0fc4844-672e-4a71-86d2-6617fc7df38f", + "id": "3464b3db-ec06-4975-916d-50f28215d1e2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100836,7 +100836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "990ff06b-2f6a-4b3e-8945-5f3227f553e1", + "id": "de5ef07e-fb8e-4219-a95c-ee261c1563c0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100894,7 +100894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abdd2b01-b660-4db0-a35b-950d5f2003cf", + "id": "543db181-67ee-4b3e-9408-d870fb2275a8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100958,7 +100958,7 @@ } }, { - "id": "a0076f36-18d6-4fe5-a6cc-5e51bea2326d", + "id": "f49b6404-a780-454b-982e-4cdd98c54e2c", "name": "Authenticate KBA provided MFA method", "request": { "name": "Authenticate KBA provided MFA method", @@ -101002,7 +101002,7 @@ }, "response": [ { - "id": "55b4df46-8633-405c-96e1-499f11843960", + "id": "844fb1e8-ac4b-4b8f-8e9a-8b538156fc4c", "name": "KBA authenticated status.", "originalRequest": { "url": { @@ -101060,7 +101060,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2acfd1bf-5672-46a6-a7d0-e3fc185b7013", + "id": "38ae7adc-d643-4777-bb13-2a19bb9d4a3e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101118,7 +101118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "052c1842-3e9c-4da1-8d1e-ab853edfc689", + "id": "489fa5f2-74c1-4261-93b2-a6a8e487fe23", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101176,7 +101176,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5aae9a6f-92fb-4bdd-a3e3-54b9a22286bf", + "id": "60f1ab95-c739-47e8-89dc-91f15fc083d3", "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": "54dea5a3-3ac0-4795-b997-e1e3fcd8b355", + "id": "014ae2f3-1c49-427b-a5ce-38e145636290", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101292,7 +101292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b6d6325-f21e-40cc-9375-00b3298f7d5d", + "id": "2f34fd17-26e9-4e0f-a51d-dae611fbade7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101356,7 +101356,7 @@ } }, { - "id": "f0229515-ee28-484d-a7b2-c8db7246b340", + "id": "1decff50-5556-4849-ab1a-64e1e19df5c2", "name": "Authenticate Token provided MFA method", "request": { "name": "Authenticate Token provided MFA method", @@ -101400,7 +101400,7 @@ }, "response": [ { - "id": "22c4ad8a-ecf3-4af0-b17e-ad796eaa0dfa", + "id": "a048789d-4a56-44eb-8cc2-6340893132d0", "name": "Token authenticated status.", "originalRequest": { "url": { @@ -101458,7 +101458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6eaa7a10-161e-4b2f-b7a2-6630709244e9", + "id": "eb10e533-364d-44ff-982e-bd7780cfaa5f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101516,7 +101516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c741ef53-1eb4-47a9-9c80-c511c9d73b30", + "id": "8f69678a-08ea-4c66-8107-1a95b0fd211d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101574,7 +101574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "839ec0ff-e6ca-410c-b037-3656364b3e7b", + "id": "4f3f0ed9-7ad0-40cf-b2c7-4ab7ff497d46", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101632,7 +101632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39ffc56c-af15-4f2b-9411-5c90aec0ad3e", + "id": "74ccce82-5bb2-405e-b0d1-921f70d680a6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101690,7 +101690,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89a0e437-62f0-4e1c-9330-9ab55022fb64", + "id": "5dbfba67-885e-4b19-b284-0cbe04c9a537", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101754,7 +101754,7 @@ } }, { - "id": "313643e8-f5f4-450d-acdf-91dfbfe19a4e", + "id": "88b06499-ce02-40bd-86f9-2d868f5c34d7", "name": "Create and send user token", "request": { "name": "Create and send user token", @@ -101798,7 +101798,7 @@ }, "response": [ { - "id": "a2620f03-9a56-486a-bfc2-84d63134a9dc", + "id": "6c2335c8-01c9-4ac5-a00d-4b0ed8dc108a", "name": "Token send status.", "originalRequest": { "url": { @@ -101856,7 +101856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21e44e00-1eee-4848-89c2-b9951e9f14bc", + "id": "444bf530-b5a7-4ea1-8edf-e7073d49f3f2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101914,7 +101914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c492aa3-4a8c-4d2b-86c8-f3f527ce99fa", + "id": "e72b719b-755c-4464-9485-687d4729ffb7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101972,7 +101972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f577cdc-aefb-440f-8fe5-959952ee7781", + "id": "c46f1431-483a-4bfc-9de8-0a10abb363b2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102030,7 +102030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "564b0e64-509e-4263-be5b-6d796bf1224b", + "id": "1f38f4e4-722c-4043-9406-f919094f9450", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102088,7 +102088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86a1ca84-a7e5-48b0-b036-295dd877507d", + "id": "a3396da2-b053-4376-b479-5a765368b0ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102158,7 +102158,7 @@ "description": "Use this API to implement non-employee lifecycle management functionality.\nWith this functionality in place, administrators can create non-employee records and configure them for use in their organizations.\nThis allows organizations to provide secure access to non-employees and control that access.\n\nThe 'non-employee' term refers to any consultant, contractor, intern, or other user in an organization who is not a full-time permanent employee.\nOrganizations can track non-employees' access and activity in IdentityNow by creating and maintaining non-employee sources.\nOrganizations can have a maximum of 50 non-employee sources.\n\nBy using SailPoint's Non-Employee Lifecycle Management functionality, you agree to the following:\n\n- SailPoint is not responsible for storing sensitive data.\nYou may only add account attributes to non-employee identities that are necessary for business operations and are consistent with your contractual limitations on data that may be sent or stored in IdentityNow.\n\n- You are responsible for regularly downloading your list of non-employee accounts for all the sources you create and storing this list of accounts in a managed location to maintain an authoritative system of record and backup data for these accounts.\n\nTo manage non-employees in IdentityNow, administrators must create a non-employee source and add accounts to the source.\n\nTo create a non-employee source in IdentityNow, administrators must use the Admin panel to go to Connections > Sources.\nThey must then specify 'Non-Employee' in the 'Source Type' field.\nRefer to [Creating a Non-Employee Source](https://documentation.sailpoint.com/saas/help/common/non-employee-mgmt.html#creating-a-non-employee-source) for more details about how to create non-employee sources.\n\nTo add accounts to a non-employee source in IdentityNow, administrators can select the non-employee source and add the accounts.\nThey can also use the 'Manage Non-Employees' widget on their user dashboards to reach the list of sources and then select the non-employee source they want to add the accounts to.\n\nAdministrators can either add accounts individually or in bulk. Each non-employee source can have a maximum of 20,000 accounts.\nTo add accounts in bulk, they must select the 'Bulk Upload' option and upload a CSV file.\nRefer to [Adding Accounts](https://documentation.sailpoint.com/saas/help/common/non-employee-mgmt.html#adding-accounts) for more details about how to add accounts to non-employee sources.\n\nOnce administrators have created the non-employee source and added accounts to it, they can create identity profiles to generate identities for the non-employee accounts and manage the non-employee identities the same way they would any other identities.\n\nRefer to [Managing Non-Employee Sources and Accounts](https://documentation.sailpoint.com/saas/help/common/non-employee-mgmt.html) for more information about non-employee lifecycle management.\n", "item": [ { - "id": "d77f8c5e-dbde-408a-81b8-7e3a87b3d089", + "id": "82951812-d077-4322-a4bf-ba0ccb6b454b", "name": "Create Non-Employee Record", "request": { "name": "Create Non-Employee Record", @@ -102189,7 +102189,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -102200,7 +102200,7 @@ }, "response": [ { - "id": "ee6b9e98-56c2-48b1-b802-b89071c924d2", + "id": "578a0c39-9e09-4fe2-8daf-a01dd42820ca", "name": "Created non-employee record.", "originalRequest": { "url": { @@ -102234,7 +102234,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -102251,12 +102251,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"ex in amet\",\n \"accountName\": \"ad in\",\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 \"tempor57d\": \"minim laborum reprehenderit\",\n \"tempora16\": \"Duis incididunt\",\n \"qui_895\": \"a\"\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\": \"do\",\n \"accountName\": \"reprehenderit Excepteur laborum\",\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 \"dolor7\": \"occaecat incididunt minim sint\",\n \"adbc\": \"culpa ullamco 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": "f5c43515-a86e-4c40-9b53-d6f684c4fd9c", + "id": "5f5951fe-97a7-453f-a409-3b5eb90a3cb0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102290,7 +102290,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -102312,7 +102312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e93b0dd-837e-418c-841b-e794f00fc6ce", + "id": "7be0edbe-ffd0-457d-aee9-cea156bc3e88", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102346,7 +102346,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -102368,7 +102368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "338cb190-4678-4e5f-894e-dc20d5944378", + "id": "941e0647-c8b8-4229-a68e-017111a24f5b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102402,7 +102402,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -102424,7 +102424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08899ffd-0507-4933-8177-e1dbb905094f", + "id": "d1d030b3-ea64-41c9-bcf2-eea6591e843b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102458,7 +102458,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -102480,7 +102480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccfd7a6b-fcab-4fd9-852e-9df7454145f1", + "id": "b047094b-59fa-4a7c-8f8f-f268f24b7040", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102514,7 +102514,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -102542,7 +102542,7 @@ } }, { - "id": "3cb09c7f-c66f-451c-88e9-5705a47fdc1b", + "id": "eeb83478-b773-4b16-b5b6-b1e136879a8b", "name": "List Non-Employee Records", "request": { "name": "List Non-Employee Records", @@ -102617,7 +102617,7 @@ }, "response": [ { - "id": "7b53256d-8080-4cfd-ba40-ea6184db0427", + "id": "322975d9-4083-4a81-a25b-38fb5407d7d8", "name": "Non-Employee record objects", "originalRequest": { "url": { @@ -102701,12 +102701,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"deserunt magna et sint\",\n \"accountName\": \"ea adipisicing et\",\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 \"eue9\": \"consequat non adipisicing mollit\",\n \"ad_0\": \"\"\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\": \"aute proident in commodo dolor\",\n \"accountName\": \"reprehenderit Excepteur exercitat\",\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 \"laboris47\": \"non\",\n \"commodo_20\": \"\"\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\",\n \"accountName\": \"fugiat officia\",\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 \"sinte\": \"pariatur laborum Ut et\",\n \"Excepteur_2d\": \"officia commodo\"\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\": \"id eiusmod ullamco\",\n \"accountName\": \"dolore aliqua\",\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 \"ida\": \"deserunt in quis\",\n \"proident47\": \"ut\"\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": "be925e18-290c-4fbf-94ee-66d82a21df6b", + "id": "b16a4b39-63da-488a-8cb7-70cb7172bedc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102795,7 +102795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "580c5e16-ed23-493f-9288-75b028281466", + "id": "3daf0165-2cfa-4e4a-9d9b-b055f94d874d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102884,7 +102884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f99c84d-0f5e-4bb7-9089-6140f1723024", + "id": "9e890e90-c733-4de4-95a9-31ff391a57a8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102973,7 +102973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f7947ba-db2e-418d-a026-75676fa36560", + "id": "53efc58f-9311-4d70-b400-6369a8e61551", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103062,7 +103062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5dc98c25-fd1a-4397-be51-125908467052", + "id": "a83d8557-b7e9-4ae6-b1d8-4cc1c64cda33", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103157,7 +103157,7 @@ } }, { - "id": "05d37bea-5a11-4103-83f1-117c20d4a6d4", + "id": "e631c114-7248-41d7-a5aa-5e7798117d03", "name": "Get a Non-Employee Record", "request": { "name": "Get a Non-Employee Record", @@ -103198,7 +103198,7 @@ }, "response": [ { - "id": "c2306562-7e62-4bd9-a14e-02cdc751708f", + "id": "38089913-197c-4e52-8208-2acffbacfaf5", "name": "Non-Employee record object", "originalRequest": { "url": { @@ -103237,12 +103237,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"ex in amet\",\n \"accountName\": \"ad in\",\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 \"tempor57d\": \"minim laborum reprehenderit\",\n \"tempora16\": \"Duis incididunt\",\n \"qui_895\": \"a\"\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\": \"do\",\n \"accountName\": \"reprehenderit Excepteur laborum\",\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 \"dolor7\": \"occaecat incididunt minim sint\",\n \"adbc\": \"culpa ullamco 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": "856f5729-746d-4036-b2e2-19d76eb5c2f7", + "id": "d0c61f3e-45ae-4e98-b993-50f6cb276c8b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103286,7 +103286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e871723b-3bb9-4dbd-91d4-51ac1665006a", + "id": "fa7439bd-f73b-4f95-b665-2cc59b5c4675", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103330,7 +103330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33890f6f-aec1-4b66-b936-519946fb7e41", + "id": "f3ae2baf-8d7d-431d-8fc5-59894177107f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103374,7 +103374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3d0a52c-4ce6-4099-83c5-3a88d7632e85", + "id": "6c205ff4-4c85-484d-8cef-9b641c2f70a5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103418,7 +103418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "198f2509-55ad-422d-8870-2170a43916a0", + "id": "44ec271c-956e-431f-b6ca-c8db6ab00570", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103468,7 +103468,7 @@ } }, { - "id": "0929f5ea-aa95-4804-be2f-38767dc1bf6d", + "id": "956af7f9-cd2b-44a2-8a19-12049f322990", "name": "Update Non-Employee Record", "request": { "name": "Update Non-Employee Record", @@ -103511,7 +103511,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -103522,7 +103522,7 @@ }, "response": [ { - "id": "161f5795-c690-43c2-8775-a2774bf55bfa", + "id": "49a60cb8-a193-44a6-a1e8-4d449ec53357", "name": "An updated non-employee record.", "originalRequest": { "url": { @@ -103557,7 +103557,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -103574,12 +103574,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"ex in amet\",\n \"accountName\": \"ad in\",\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 \"tempor57d\": \"minim laborum reprehenderit\",\n \"tempora16\": \"Duis incididunt\",\n \"qui_895\": \"a\"\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\": \"do\",\n \"accountName\": \"reprehenderit Excepteur laborum\",\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 \"dolor7\": \"occaecat incididunt minim sint\",\n \"adbc\": \"culpa ullamco 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": "fbe1be0d-4a93-4303-bd6a-95e34d1946f1", + "id": "1e39db15-0fdc-4cfe-a61a-e8d94fd45cb4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103614,7 +103614,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -103636,7 +103636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21f56edc-a265-4a99-82ef-91dc975dc8a6", + "id": "2fa34b13-b1e2-422b-9430-1c240fc1ab04", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103671,7 +103671,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -103693,7 +103693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f7af0a2-5569-405b-b86b-86193384798d", + "id": "fb95f32b-8c27-4f93-babf-2193b9be3509", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103728,7 +103728,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -103750,7 +103750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8865232e-2c51-4ba3-b64b-05d4e3b7db2a", + "id": "127dc0dc-f16c-4266-95bf-7ff3346c3ff9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -103785,7 +103785,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -103807,7 +103807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69f1e610-c225-4699-892f-62aee9e5deec", + "id": "5c5b0bdf-ad64-457d-a8d7-c4953038fc2f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103842,7 +103842,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -103864,7 +103864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77578f87-0bd6-483b-ba2a-4bd6a0611df7", + "id": "38f33443-3f6b-45c8-bdce-be609d978c0b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103899,7 +103899,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -103927,7 +103927,7 @@ } }, { - "id": "2a9a0697-1ecb-4e72-8538-5e589011171f", + "id": "8f8342e6-0532-494b-bb62-79ffdd4d16c3", "name": "Patch Non-Employee Record", "request": { "name": "Patch Non-Employee Record", @@ -103981,7 +103981,7 @@ }, "response": [ { - "id": "118ef940-863c-4697-b0f2-b30b36c571b2", + "id": "62e12edc-f034-4fb1-9575-5e397f5cd7e9", "name": "A patched non-employee record.", "originalRequest": { "url": { @@ -104033,12 +104033,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"ex in amet\",\n \"accountName\": \"ad in\",\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 \"tempor57d\": \"minim laborum reprehenderit\",\n \"tempora16\": \"Duis incididunt\",\n \"qui_895\": \"a\"\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\": \"do\",\n \"accountName\": \"reprehenderit Excepteur laborum\",\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 \"dolor7\": \"occaecat incididunt minim sint\",\n \"adbc\": \"culpa ullamco 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": "14ceb6d2-26c5-4f3d-aeb0-d3204c540922", + "id": "9ed95c15-af75-456c-9b58-6ec823576e74", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104095,7 +104095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30fffb20-8064-4dce-aa21-83ff024b48a7", + "id": "48f8cd39-b46a-4223-8ef2-32fedbb70b88", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104152,7 +104152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "658386bf-12bd-41d6-b745-b6dd67546eea", + "id": "5cc29b33-3926-4149-9037-f5736abfe2dd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104209,7 +104209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e799839-59d3-4be5-8c74-15a58a943a8a", + "id": "11294ef5-9790-4222-aed0-7510ab54d77b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -104266,7 +104266,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9bc34af-edcd-40cf-82bc-ed97520a114e", + "id": "38dbf1b9-ca65-474f-aea5-35dcbafebdde", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104323,7 +104323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3974f41c-df38-453f-ad3e-69d7aa01a943", + "id": "a7194a50-8635-4f37-9c9e-eeef2436e3ce", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104386,7 +104386,7 @@ } }, { - "id": "5a0fc075-fdd2-4f85-8ef4-77a416483ccd", + "id": "e81626df-7f5b-416b-a7f2-d28e4562e935", "name": "Delete Non-Employee Record", "request": { "name": "Delete Non-Employee Record", @@ -104427,7 +104427,7 @@ }, "response": [ { - "id": "1a8f13ee-9435-4699-ae89-6cdf4f390866", + "id": "c5a9bc32-5c10-4b72-928d-754aa9262926", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -104461,7 +104461,7 @@ "_postman_previewlanguage": "text" }, { - "id": "75f60bb9-1c2a-4a93-a3ad-0868878013f1", + "id": "4b806de5-b679-42cc-b0fb-1d7e27671611", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104505,7 +104505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bc76b67-d6bc-46e6-bef1-c5c726e7b944", + "id": "ea845f50-0b80-45fb-906b-8eabcee4d533", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104549,7 +104549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9595bcab-95b8-41e0-80c1-4b68057cc45d", + "id": "6984cdb4-e713-40eb-8d93-838a2da6978b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104593,7 +104593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca033279-d92b-448f-bba4-1a5831ffe162", + "id": "b0780871-c09e-4175-8d51-7dc676e05b08", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104637,7 +104637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36b78733-cdc0-4b08-85d9-f51dc1078b43", + "id": "e6dbfb6f-9ae8-4c72-a449-389a29447147", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104687,7 +104687,7 @@ } }, { - "id": "115c1476-318b-43aa-85a5-f2bd10a7d531", + "id": "1a3ca856-8a8a-4a99-ab72-c4f2c2fa3ecf", "name": "Delete Multiple Non-Employee Records", "request": { "name": "Delete Multiple Non-Employee Records", @@ -104719,7 +104719,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"urn:uuid:9c88fb43-dcd5-ce98-445d-1deaa350e909\",\n \"urn:uuid:6814cf3f-d917-da42-9a6f-0afde4b143c2\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"1525e62e-3d80-481b-cfa7-b3a780af5b11\",\n \"urn:uuid:d3dd2e72-d482-0f5d-9bc0-aeca4d0bdd9a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -104730,7 +104730,7 @@ }, "response": [ { - "id": "d3018017-05eb-405b-a5a7-753f0343fb50", + "id": "a504714e-b9e8-4140-9a48-755dd656a420", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -104761,7 +104761,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"urn:uuid:9c88fb43-dcd5-ce98-445d-1deaa350e909\",\n \"urn:uuid:6814cf3f-d917-da42-9a6f-0afde4b143c2\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"1525e62e-3d80-481b-cfa7-b3a780af5b11\",\n \"urn:uuid:d3dd2e72-d482-0f5d-9bc0-aeca4d0bdd9a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -104777,7 +104777,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f738a8e8-4245-4eca-af9f-800ed682bcdb", + "id": "4a78c886-b794-429c-96e5-ac525fd5f635", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104812,7 +104812,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"urn:uuid:9c88fb43-dcd5-ce98-445d-1deaa350e909\",\n \"urn:uuid:6814cf3f-d917-da42-9a6f-0afde4b143c2\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"1525e62e-3d80-481b-cfa7-b3a780af5b11\",\n \"urn:uuid:d3dd2e72-d482-0f5d-9bc0-aeca4d0bdd9a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -104834,7 +104834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6012d738-bcc1-4fe8-93d9-55dcff9bb608", + "id": "428d8847-68e2-46c4-bcf0-2f41f5bdc669", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104869,7 +104869,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"urn:uuid:9c88fb43-dcd5-ce98-445d-1deaa350e909\",\n \"urn:uuid:6814cf3f-d917-da42-9a6f-0afde4b143c2\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"1525e62e-3d80-481b-cfa7-b3a780af5b11\",\n \"urn:uuid:d3dd2e72-d482-0f5d-9bc0-aeca4d0bdd9a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -104891,7 +104891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8c476d4-fd8c-4249-9ccc-4dcff69222c2", + "id": "36556f5a-f6ef-4282-8885-e724053672ea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104926,7 +104926,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"urn:uuid:9c88fb43-dcd5-ce98-445d-1deaa350e909\",\n \"urn:uuid:6814cf3f-d917-da42-9a6f-0afde4b143c2\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"1525e62e-3d80-481b-cfa7-b3a780af5b11\",\n \"urn:uuid:d3dd2e72-d482-0f5d-9bc0-aeca4d0bdd9a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -104948,7 +104948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcd98559-cdf7-49e4-8c09-eddb7083319a", + "id": "5735e69e-f470-44d5-90aa-0accb4a23889", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104983,7 +104983,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"urn:uuid:9c88fb43-dcd5-ce98-445d-1deaa350e909\",\n \"urn:uuid:6814cf3f-d917-da42-9a6f-0afde4b143c2\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"1525e62e-3d80-481b-cfa7-b3a780af5b11\",\n \"urn:uuid:d3dd2e72-d482-0f5d-9bc0-aeca4d0bdd9a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -105005,7 +105005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b31bd8e5-42b9-45a7-ad30-8a976a52f9d6", + "id": "f489ab08-04ae-4cfe-aeb9-ef4dae71240d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105040,7 +105040,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"urn:uuid:9c88fb43-dcd5-ce98-445d-1deaa350e909\",\n \"urn:uuid:6814cf3f-d917-da42-9a6f-0afde4b143c2\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"1525e62e-3d80-481b-cfa7-b3a780af5b11\",\n \"urn:uuid:d3dd2e72-d482-0f5d-9bc0-aeca4d0bdd9a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -105068,7 +105068,7 @@ } }, { - "id": "bd93e404-ea2e-4802-925d-71950ea5eea6", + "id": "f0a3be22-80bf-4d6d-91da-87c8db5be3ff", "name": "Create Non-Employee Request", "request": { "name": "Create Non-Employee Request", @@ -105099,7 +105099,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -105110,7 +105110,7 @@ }, "response": [ { - "id": "acaf46f6-d426-4f0f-b557-3020f65a55b8", + "id": "cc916aad-d97a-4b2b-bf8b-8a615dedb47f", "name": "Non-Employee request creation object", "originalRequest": { "url": { @@ -105144,7 +105144,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -105161,12 +105161,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"doloref2c\": \"eu do culpa\",\n \"exercitation_40a\": \"et exercitation veniam Ut\",\n \"ad_8\": \"velit\",\n \"occaecat__7d\": \"exercitation velit nulla\"\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\": \"mollit voluptate qui commodo\",\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\": \"aliqua ea sed\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"PENDING\",\n \"comment\": \"nostrud\",\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 \"magna__f6\": \"sit\",\n \"culpa_2\": \"dolore cupidatat\"\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\": \"mollit dolore\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"sunt enim reprehenderit\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"PENDING\",\n \"comment\": \"Excepteur Duis non consectetur\",\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": "e10a4cf5-f0f9-4f43-86b7-3ae651903076", + "id": "0ea397e1-12e4-4422-9b12-a9310a80abdf", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -105200,7 +105200,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -105222,7 +105222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48f68e4f-1ee1-4c05-a4fd-9ec743c7f308", + "id": "203f83a7-2fbf-4413-b905-288b111c3e47", "name": "400.1.409 Reference conflict", "originalRequest": { "url": { @@ -105256,7 +105256,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -105278,7 +105278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "638d0b60-1baf-44d4-8585-aa7b3f7b51a5", + "id": "ed2e9048-c047-4266-9671-b9fb7cdf0020", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105312,7 +105312,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -105334,7 +105334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcb30c9d-7f51-4f39-9d51-287ac6e1f66f", + "id": "4ddc80d0-5b95-45f0-b9ff-3ffd7d056c26", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105368,7 +105368,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -105390,7 +105390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb00b636-9f57-4067-981e-ad5a30d9c66e", + "id": "f4ac6664-092b-4192-ae6b-f7e5f98fce89", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105424,7 +105424,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -105446,7 +105446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3ed393a-77bb-4142-9ab7-9081b6547d05", + "id": "0e23e528-6648-463b-8eaa-7826dbee735c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105480,7 +105480,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"sed_2c\": \"nostrud qui aliquip\"\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 \"irure8\": \"est in adipisicing\",\n \"sint8\": \"mollit consectetur nulla ea\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -105508,7 +105508,7 @@ } }, { - "id": "7cf1185b-1d50-4a15-8b2f-015e5592d34b", + "id": "f52c85ac-baf5-4fe0-9638-ca91b1072c11", "name": "List Non-Employee Requests", "request": { "name": "List Non-Employee Requests", @@ -105592,7 +105592,7 @@ }, "response": [ { - "id": "a8f966b3-986d-4e92-9ac4-882df6e4b8a8", + "id": "74a14602-a81c-4cab-a46f-2ec4ba1ee360", "name": "List of non-employee request objects.", "originalRequest": { "url": { @@ -105685,12 +105685,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"dolore_0_9\": \"aliquip elit\",\n \"ipsum2b\": \"dolore exercitation veniam enim\",\n \"exercitation_f67\": \"quis ea Excepteur incididunt\",\n \"proident_15\": \"ut deserunt in\"\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\": \"in proident minim qui\",\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\": \"aliquip\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"REJECTED\",\n \"comment\": \"in 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 \"nostrud_4\": \"ipsum commodo id\",\n \"mollit_f\": \"occaecat\"\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\": \"Duis\",\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\": \"quis ea consequat\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"NOT_READY\",\n \"comment\": \"officia ex aliqua in\",\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 \"laboris__e\": \"est \",\n \"minim8\": \"exercitation magna amet\"\n },\n \"approvalItems\": [\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"eiusmod consectetur\",\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\": \"minim velit officia voluptate\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"REJECTED\",\n \"comment\": \"enim\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n },\n {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"in0\": \"aliqua dolor sunt\",\n \"Lorem_8\": \"aute ad\",\n \"occaecat_b3a\": \"enim voluptate occ\"\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\": \"ut et ut eu\",\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\": \"ullamco incididunt\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"REJECTED\",\n \"comment\": \"sit Lorem 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]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "00adc46c-6707-41d2-8f83-fc3354920c9b", + "id": "00943e11-05ae-47ff-b75b-4650ea011100", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105788,7 +105788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06c19080-136f-4804-bf50-193c0048057c", + "id": "e223d536-391b-47f9-9beb-71678d71d075", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105886,7 +105886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4cd3e6f-650c-42f2-bda8-35b18244631e", + "id": "2f8099da-6ee4-48c6-a171-9a3f3dd930b6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105984,7 +105984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77842e52-9a49-47ac-86ea-33545937ba3f", + "id": "ba340c49-5569-4581-9cea-477300d651dc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106082,7 +106082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cf0841b-f553-4741-9aee-ac1e5b187b12", + "id": "d5cce51a-f1fb-4d86-89b1-8c6c0bd2e559", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106186,7 +106186,7 @@ } }, { - "id": "80742533-917b-405b-aea9-71aafcef20a0", + "id": "55e2cfa1-c165-4bc1-bd0e-28a4de2236ab", "name": "Get a Non-Employee Request", "request": { "name": "Get a Non-Employee Request", @@ -106227,7 +106227,7 @@ }, "response": [ { - "id": "6e54dd69-05b2-4d11-93c0-05a4ef6036a5", + "id": "9fa9670f-1f4b-4c9e-966d-777687d6d551", "name": "Non-Employee request object.", "originalRequest": { "url": { @@ -106266,12 +106266,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"doloref2c\": \"eu do culpa\",\n \"exercitation_40a\": \"et exercitation veniam Ut\",\n \"ad_8\": \"velit\",\n \"occaecat__7d\": \"exercitation velit nulla\"\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\": \"mollit voluptate qui commodo\",\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\": \"aliqua ea sed\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"PENDING\",\n \"comment\": \"nostrud\",\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 \"magna__f6\": \"sit\",\n \"culpa_2\": \"dolore cupidatat\"\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\": \"mollit dolore\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"sunt enim reprehenderit\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"PENDING\",\n \"comment\": \"Excepteur Duis non consectetur\",\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": "abcb0e90-fdf3-488f-bf3d-56df23898f62", + "id": "6dc08174-d6b2-445d-a78a-748810adfdf5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106315,7 +106315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "079a1d61-0c0d-40ad-a555-a37dead27d23", + "id": "1601296f-afb3-4752-8ded-6631b10a7775", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106359,7 +106359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e266b5f-158d-4b9c-b267-af3bc8556710", + "id": "581389e0-676f-440d-b402-73f2157fdbe0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106403,7 +106403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de4156a1-a3ba-4fe4-abd4-563266bf7be0", + "id": "53010c99-eed1-41f9-8279-2e3d036447d0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -106447,7 +106447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be194311-d616-4ee3-8c8a-1bd845f8cfec", + "id": "2356574a-0aca-4dea-8120-70a6b075d105", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106491,7 +106491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dbf98b0-d784-4e1e-90b5-ea422f4bc528", + "id": "6d183aae-4677-4692-900b-9f93b54c08bb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106541,7 +106541,7 @@ } }, { - "id": "aa74b3e0-9eee-430d-9f28-bc9b97087cf0", + "id": "d1507a77-5304-4f55-a899-02bbdf29dd9a", "name": "Delete Non-Employee Request", "request": { "name": "Delete Non-Employee Request", @@ -106582,7 +106582,7 @@ }, "response": [ { - "id": "10a7927e-360f-41d8-955a-de13e2f4b52e", + "id": "a84269dd-4925-4153-a560-b4c74aac25ec", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -106616,7 +106616,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b9d2c75a-134e-4918-aff6-c79de73b3a00", + "id": "c24dc7fe-d167-4550-bff2-aa7ffc9addcf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106660,7 +106660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f07d0bac-77bd-49f9-a0fc-f5b56b3f6372", + "id": "9a8c0d60-a9db-43be-937b-a4589e884c24", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106704,7 +106704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "368fe6ff-ac48-4ab4-a3d6-a1f72d9dc17c", + "id": "f8b9e3c2-e220-40f8-8d5c-3fee727c5023", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106748,7 +106748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f77079b-5f65-4242-ba74-1332aab3ca21", + "id": "d671ded7-f4bc-4533-9009-61b09a8f667c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -106792,7 +106792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffe07413-6b5b-4b08-8de7-905902e95b3d", + "id": "f1dba330-f8dc-409a-a677-59461ccd371f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106836,7 +106836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3c63f01-7041-4956-a710-eb46182bcb64", + "id": "8b7f48c5-843d-46d0-bad9-d44503e74881", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106886,7 +106886,7 @@ } }, { - "id": "6dad9814-a33a-4890-aa23-056cd7dc60f2", + "id": "f94ab298-7060-428c-b6e7-b020618b4782", "name": "Get Summary of Non-Employee Requests", "request": { "name": "Get Summary of Non-Employee Requests", @@ -106928,7 +106928,7 @@ }, "response": [ { - "id": "2e3125e6-250e-42eb-ada8-834d9be0311b", + "id": "872fef2f-b0ff-4b1e-a413-2551fd068e80", "name": "Non-Employee request summary object.", "originalRequest": { "url": { @@ -106968,12 +106968,12 @@ "value": "application/json" } ], - "body": "{\n \"approved\": -1557509.4111755788,\n \"rejected\": -22896296.794615626,\n \"pending\": -15795266.603937775,\n \"nonEmployeeCount\": -32322870.365023255\n}", + "body": "{\n \"approved\": 25737079.603445962,\n \"rejected\": 71530678.44742382,\n \"pending\": 77653867.4905737,\n \"nonEmployeeCount\": 79840340.48522887\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "89f1dca1-2a85-4b38-88c6-14da879a9a84", + "id": "8382d280-5b5b-41bc-ae35-7ef119148608", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107018,7 +107018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b836645-8a20-40d0-ac5f-90d0ca948087", + "id": "6e2fca47-2eed-4ea4-8161-8a76052b54be", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107063,7 +107063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3855c3b4-53be-4567-88fc-f8b76a9c4a93", + "id": "0d1d858f-0906-47a8-bd09-cff170a4f956", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107108,7 +107108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d7c2374-c33e-40ba-8cf5-13962829dc3d", + "id": "5a830b58-804b-4ce2-b336-362b40d5d760", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107153,7 +107153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07ff2281-1202-43d3-986b-0535ce3ba581", + "id": "276706c4-f25e-42fa-ac86-c05b27dd0291", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107204,7 +107204,7 @@ } }, { - "id": "960b502a-119d-4652-85f7-5acdd4eda2bd", + "id": "6fc7e6ae-0f70-456b-8a7b-492d0efac988", "name": "Create Non-Employee Source", "request": { "name": "Create Non-Employee Source", @@ -107246,7 +107246,7 @@ }, "response": [ { - "id": "da883e51-0524-4490-b726-43106fe95127", + "id": "189fde5b-964c-4a55-8580-ca10fe239920", "name": "Created non-employee source.", "originalRequest": { "url": { @@ -107302,7 +107302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9588f78e-13f8-494a-8abd-1ad459dbf855", + "id": "4cb659a9-0d4e-42e8-a189-6432e4d371b8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107358,7 +107358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15ab50da-0d84-4e53-a98e-6132b88862e6", + "id": "b0dea053-cc3c-42e1-8a85-639ff0a0ae79", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107414,7 +107414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81ab8c91-e58b-40a7-a4ff-a6a4747add5d", + "id": "f58a39e8-7ad6-4a7b-8402-832fcff31e9c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107470,7 +107470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "870403be-077f-42d5-9911-2995e0cd7eb1", + "id": "fc8806ee-c6a8-4ba1-a4c6-20f911da2551", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107526,7 +107526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45863995-4d7d-4f05-9b17-0af875d86d75", + "id": "0a2fdab2-d421-4f83-ae8b-0af2b39f15fd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107588,7 +107588,7 @@ } }, { - "id": "8b012773-fbff-440c-9168-f6141ef2e5f0", + "id": "347e7220-eb38-45d7-a574-a3c924fa54e8", "name": "List Non-Employee Sources", "request": { "name": "List Non-Employee Sources", @@ -107672,7 +107672,7 @@ }, "response": [ { - "id": "7dbb7d5c-33c7-4b44-ab15-b295d172a8d0", + "id": "474350f2-4206-4403-83c3-eba66695fc4a", "name": "List of non-employee sources objects.", "originalRequest": { "url": { @@ -107770,7 +107770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22b4af93-56cc-4085-828d-b88ffe612244", + "id": "b0ba21ac-a748-4528-bdc9-3a0d73060ea3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107868,7 +107868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d4e243a-7cec-4093-beb4-54e228eabbce", + "id": "f803bc8e-6f4a-47c7-9ef0-94d2ab849b59", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107966,7 +107966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd118b47-c488-42fa-9449-735557180567", + "id": "9bb79565-0849-4d9a-a52f-89e00a53a6bb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108064,7 +108064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1142dfe4-7021-4abb-ba83-498c1fb10190", + "id": "20758978-d40d-47cc-aa33-3123af9fe308", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108162,7 +108162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "200e2bf4-79f1-4ff7-bc17-f808559bbbfb", + "id": "e2bf14f1-823d-4dec-8135-33e1c59f619e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108266,7 +108266,7 @@ } }, { - "id": "df07db2e-aee0-4dcd-89dc-75372fc7ba9a", + "id": "74fb6387-a528-4ebd-a7b7-869bc2159447", "name": "Get a Non-Employee Source", "request": { "name": "Get a Non-Employee Source", @@ -108307,7 +108307,7 @@ }, "response": [ { - "id": "f354cd87-71f9-4ada-a9ee-80889da266a4", + "id": "0b34616f-4ee0-429a-aa62-9404e25851af", "name": "Non-Employee source object.", "originalRequest": { "url": { @@ -108351,7 +108351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b33f9d8-2b98-4186-8400-092683dfc29b", + "id": "94249796-f5bb-42c9-b1fd-abc7d502fe80", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108395,7 +108395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f59b2c1-c373-43cd-bfac-b1eae27bc1b3", + "id": "69a299da-046a-4a03-baa5-de1aadb60df3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108439,7 +108439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bf5cdfd-c987-47f5-9a0f-62ded81165b4", + "id": "0aeb56e6-3b0a-467e-aca9-3909666b63b7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108483,7 +108483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3e208d2-7156-4ab0-a6c9-c42c0ea1044c", + "id": "45910c0c-f3fb-4d45-babd-7b81d6e355de", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108527,7 +108527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0bed1cc-07ac-4cf5-8a4f-1b6d99262022", + "id": "8bc8e8e2-b145-408b-b2d9-a005ed506414", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108577,7 +108577,7 @@ } }, { - "id": "11c0d0f6-9cb3-41ee-b73d-5571348f225a", + "id": "838d4092-7368-4224-adfb-3eae4c200754", "name": "Patch a Non-Employee Source", "request": { "name": "Patch a Non-Employee Source", @@ -108631,7 +108631,7 @@ }, "response": [ { - "id": "42233284-8dbb-4a41-9d35-12d0765d1126", + "id": "8591404c-9f4c-4091-b38f-6de9cb6c2978", "name": "A patched non-employee source object.", "originalRequest": { "url": { @@ -108688,7 +108688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e876c4e-a1fe-4257-aee2-b1f8342a9616", + "id": "dfcd1ddc-0f3c-4f0f-906b-54d1e092d35f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108745,7 +108745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "659ac7e9-26ed-4098-a4ee-a60da4f3e94f", + "id": "a811d620-b6fa-4817-ab7a-cfde43218776", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108802,7 +108802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2938c2d1-ed12-453f-b567-df4b00feebfd", + "id": "eab586e2-8b6d-48a6-87e0-4464c3a61353", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108859,7 +108859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc04c9e3-2feb-4386-94cb-f064c7fc3413", + "id": "57c6728c-3a5d-4f33-b989-7806d644071d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108916,7 +108916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65dc9fca-e86a-421b-bff0-c34b622ce0f6", + "id": "b02c2f77-2e31-4241-b650-9044c7b5606c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108979,7 +108979,7 @@ } }, { - "id": "67a3661b-043e-478d-aa10-ea74d6beab70", + "id": "a4a69d93-4045-4e87-a455-b7d04051197b", "name": "Delete Non-Employee Source", "request": { "name": "Delete Non-Employee Source", @@ -109020,7 +109020,7 @@ }, "response": [ { - "id": "07d6dad3-4344-4f4f-9b4f-87b8f15ab096", + "id": "e9ac0c17-6f68-4cda-90b9-2c866dab3cfa", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -109054,7 +109054,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f34cb89f-8058-4009-ad54-0ad897d4eb93", + "id": "51b59835-da47-4714-a38a-08703e25051b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109098,7 +109098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4d363ed-970c-49d7-9956-b0e73d6e9eb7", + "id": "a7283783-5ecd-41f4-95db-1deb4c603dc4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109142,7 +109142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16422176-2552-4ded-a3c7-d5aa0a0549a7", + "id": "19314da2-f8af-4cd4-9801-65a41398b422", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109186,7 +109186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbc1ab4e-26ea-42d6-b4a4-a3e8f247753d", + "id": "f6363ad7-29dc-4169-a7e3-6ade289dd85a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109230,7 +109230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67e40b41-aabd-4976-ab29-210bab20ee3a", + "id": "dae58c8b-3e95-4ddc-a1fc-2b0988478ba8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109280,7 +109280,7 @@ } }, { - "id": "fb429813-0f7d-4b25-97cd-9c087b65f465", + "id": "870270d3-7169-4054-b5b9-42144cfdb924", "name": "Exports Non-Employee Records to CSV", "request": { "name": "Exports Non-Employee Records to CSV", @@ -109323,7 +109323,7 @@ }, "response": [ { - "id": "d01b37ea-9791-43d6-a482-6835c4ecfdf3", + "id": "aaf65c36-8a16-46e2-9bbf-258cc9bbee16", "name": "Exported CSV", "originalRequest": { "url": { @@ -109369,7 +109369,7 @@ "_postman_previewlanguage": "text" }, { - "id": "bcb762a2-57fc-4393-9355-67d78d4bbc37", + "id": "5caa27eb-3551-4dab-ab62-1ee6dd768cd9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109415,7 +109415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02f141ba-fc4c-4ace-aeec-a604fc34bf36", + "id": "0d877fa0-80b0-4dd0-b9f7-625f1f3092a3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109461,7 +109461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c38ae9ec-73a6-427a-8295-7a504b1d5fd0", + "id": "682b3f45-6a3b-4a37-8cef-ccaae240360b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109507,7 +109507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "072f27e4-1e6b-4401-b33e-bf7c2349a483", + "id": "e9e6755e-214e-4ddc-bf9d-2b08aa46d421", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -109553,7 +109553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9af50fbc-731b-4301-884a-7956587b9c8d", + "id": "af86c6e0-5922-45c9-9ac2-7d482086637e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109599,7 +109599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d53d18b4-0560-47ec-be1e-b2caa5736f61", + "id": "bfb445bf-44c3-44a9-b991-5c670f72723e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109651,7 +109651,7 @@ } }, { - "id": "0505e2a7-7572-47c8-a138-9e8520d00093", + "id": "63704269-f9c0-43c5-b422-8c3ce1ed347a", "name": "Imports, or Updates, Non-Employee Records", "request": { "name": "Imports, or Updates, Non-Employee Records", @@ -109702,7 +109702,7 @@ "type": "text/plain" }, "key": "data", - "value": "incididunt aliquip qui ipsum d", + "value": "eiusmod et", "type": "text" } ] @@ -109710,7 +109710,7 @@ }, "response": [ { - "id": "886aa19d-2a0b-485b-b356-4c50e57afd49", + "id": "0d7e52b0-0ef4-4b15-9acb-09819b151aa4", "name": "The CSV was accepted to be bulk inserted now or at a later time.", "originalRequest": { "url": { @@ -109753,7 +109753,7 @@ "type": "text/plain" }, "key": "data", - "value": "incididunt aliquip qui ipsum d", + "value": "eiusmod et", "type": "text" } ] @@ -109772,7 +109772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7637b478-6a71-4503-97af-78c6340ed5ce", + "id": "f4cddbe6-c040-4ffe-8a57-13e67e2e9798", "name": "Client Error - Returned if the request body is invalid.\nThe response body will contain the list of specific errors with one on each line.\n", "originalRequest": { "url": { @@ -109815,7 +109815,7 @@ "type": "text/plain" }, "key": "data", - "value": "incididunt aliquip qui ipsum d", + "value": "eiusmod et", "type": "text" } ] @@ -109834,7 +109834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e354e01-1e1f-42a2-9ce4-02a3225fcc14", + "id": "55816c2b-1f52-4865-a95d-ccbaeae94b98", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109877,7 +109877,7 @@ "type": "text/plain" }, "key": "data", - "value": "incididunt aliquip qui ipsum d", + "value": "eiusmod et", "type": "text" } ] @@ -109896,7 +109896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98c30389-ff86-42b7-8b03-56cff4789d9c", + "id": "7ceecb19-7290-44aa-aeac-3b67473a21a1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109939,7 +109939,7 @@ "type": "text/plain" }, "key": "data", - "value": "incididunt aliquip qui ipsum d", + "value": "eiusmod et", "type": "text" } ] @@ -109958,7 +109958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e61030aa-f0c4-4d27-8d27-1c6f9ee235b9", + "id": "c4a79e74-4dcf-46e5-9f90-f372cbe11244", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -110001,7 +110001,7 @@ "type": "text/plain" }, "key": "data", - "value": "incididunt aliquip qui ipsum d", + "value": "eiusmod et", "type": "text" } ] @@ -110020,7 +110020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81535c85-4adf-4be0-a475-3efd41809701", + "id": "f1e818fe-ece6-41b8-91d6-498fa2d16213", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110063,7 +110063,7 @@ "type": "text/plain" }, "key": "data", - "value": "incididunt aliquip qui ipsum d", + "value": "eiusmod et", "type": "text" } ] @@ -110082,7 +110082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8954e85e-02a4-4013-ae21-b7ab728404d6", + "id": "1f7308ce-6bff-429e-903b-e8b01901d174", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110125,7 +110125,7 @@ "type": "text/plain" }, "key": "data", - "value": "incididunt aliquip qui ipsum d", + "value": "eiusmod et", "type": "text" } ] @@ -110150,7 +110150,7 @@ } }, { - "id": "80005986-cf02-49b5-8de8-520c594f5d1d", + "id": "837befad-6ef0-49fe-bbbd-27fd99d34ad2", "name": "Bulk upload status on source", "request": { "name": "Bulk upload status on source", @@ -110193,7 +110193,7 @@ }, "response": [ { - "id": "2b1089d1-8da1-49a6-b881-8ad5583766d2", + "id": "0e4d1dc1-2fbd-4de8-b474-0e46d4290099", "name": "Status of the newest bulk-upload job, if any.", "originalRequest": { "url": { @@ -110239,7 +110239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4990f1f-b6c7-457b-b246-26e0179e2535", + "id": "9fd72721-9a91-4627-8615-dfa7bdc0f6b8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110285,7 +110285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdaa17a9-2059-4e68-a56d-1e8ecdf6c98e", + "id": "11d5dfba-5c8f-4636-99f9-aa76c26fdd4b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110331,7 +110331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae6daf19-316e-4e97-b580-934c584efb27", + "id": "4d754633-5ef6-4bb7-9455-eef467026e5d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110377,7 +110377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba499692-fbe1-4eeb-9d01-67fb15be3f55", + "id": "7f7b0b31-aa21-4194-99ec-faf631cdc903", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110423,7 +110423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a665b65-af86-48a3-8207-e2432434409a", + "id": "96380f4e-0881-4c5c-aee1-f33bd6fa3870", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110475,7 +110475,7 @@ } }, { - "id": "81c3f0f7-5e70-4e7d-834d-31bf353f8011", + "id": "32a4f87a-44a2-419d-8929-07122462ec1c", "name": "Exports Source Schema Template", "request": { "name": "Exports Source Schema Template", @@ -110518,7 +110518,7 @@ }, "response": [ { - "id": "cf4a2ffb-9812-4bd3-9e3a-faa3ffc25f82", + "id": "4579ef2c-cbf5-4554-b288-52d3d964e2db", "name": "Exported Source Schema Template", "originalRequest": { "url": { @@ -110564,7 +110564,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c1653f3c-f665-4f0b-9f6b-b8222a905f92", + "id": "58005a18-e2ab-4e6e-9da6-a7ec68c9a01f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110610,7 +110610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ca18781-7c73-44a4-b9c7-db02bf0cda36", + "id": "dad8e7b2-ef91-4f18-af88-1d0e1c66e0e6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110656,7 +110656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc1962db-20d0-4923-9249-d165aeb63a77", + "id": "4c468901-7514-431a-9e82-43cad79e62e0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110702,7 +110702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58d9204b-a389-481d-afa7-4db96a13da8f", + "id": "7e362319-b8de-4771-ad61-0b937e210d35", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -110748,7 +110748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "402cc2e5-ebaa-4ac5-aee0-3ef040c42bcc", + "id": "0de7ae0e-2b43-4e9b-b148-43111af26b27", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110794,7 +110794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33836c99-c701-4f38-bebb-3cabea6db85b", + "id": "b65621b5-7a48-4120-a89f-83bc1f73ded4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110846,7 +110846,7 @@ } }, { - "id": "fe9bea63-0c5a-4460-a070-984b7eb6f18a", + "id": "be2308c8-23f7-4d6a-be47-cec0529f30c4", "name": "Get List of Non-Employee Approval Requests", "request": { "name": "Get List of Non-Employee Approval Requests", @@ -110930,7 +110930,7 @@ }, "response": [ { - "id": "b95758ab-6f9b-4b31-b037-9448ad5ff04a", + "id": "ff4d3bb4-db94-487f-aa70-bab70d7b37e6", "name": "List of approval items.", "originalRequest": { "url": { @@ -111023,12 +111023,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"eiusmod\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"voluptate incididunt ad non est\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"do sed elit consectetur\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"eiusmod labore sed\",\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\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"proident ullamco\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"cupidatat sunt id ex\",\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\": \"mollit tempor quis\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"tempor officia aute mollit\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "30de4ab6-f79a-474d-98ee-d34aa9f1dccd", + "id": "924086b2-c1c1-422a-a4f2-085dd801fa34", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111126,7 +111126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1f5f75c-016d-4b94-b7bb-b6a723ea430b", + "id": "8f6e46bc-3552-4cd2-8f0f-e888c31e5eb2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111224,7 +111224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68b005cd-2c34-4312-bcd1-1e9acfdba6f5", + "id": "87358d12-c26c-4925-a48a-27a0ed434323", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111322,7 +111322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c87d1319-54b1-4b5a-b964-30bb04766c67", + "id": "d6a9407b-de0d-4349-a488-889f78be420c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111420,7 +111420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91f8e6c4-be48-4b9f-8ce7-a136a939e0b3", + "id": "163e8709-1e80-4d84-897a-c4d7627dd97f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111524,7 +111524,7 @@ } }, { - "id": "5fe36e76-9550-40bd-9c67-0f5eb1b30632", + "id": "20906f0a-01dd-4f02-b551-86d9bd0aed0e", "name": "Get a non-employee approval item detail", "request": { "name": "Get a non-employee approval item detail", @@ -111575,7 +111575,7 @@ }, "response": [ { - "id": "9a0ad838-6896-4428-a3bb-80f1492822ca", + "id": "f6194dd5-529e-456e-ab62-4d97c7a2d2b5", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -111624,12 +111624,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"incididunt\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"tempor nostrud commodo\",\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 \"officia5\": \"ex officia\",\n \"cillum_0\": \"do id dolore\",\n \"in_a8f\": \"ut sit sed est qui\"\n },\n \"approvalStatus\": \"NOT_READY\",\n \"comment\": \"amet irure exercitation minim\",\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\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"pariatur Ut\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"officia ipsum cupidatat ex\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n },\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"schemaAttributes\": [\n {\n \"type\": \"TEXT\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n },\n {\n \"type\": \"DATE\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n }\n ]\n },\n \"data\": {\n \"cupidatat_fa\": \"labore irure in\",\n \"voluptate0a\": \"velit reprehenderit eu mollit elit\"\n },\n \"approvalStatus\": \"PENDING\",\n \"comment\": \"ut\",\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": "d9ebd745-616c-4e01-9cb4-cac68d2313d2", + "id": "32d9e440-9f26-492e-80bf-aa97590b895e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111683,7 +111683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53197a07-ee85-43e6-859f-f688d55a0a07", + "id": "3c753d54-2565-47a1-a818-70872445abcb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111737,7 +111737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "229efaf2-8e69-45c0-9617-2bc16431f369", + "id": "1b1aba0c-ccbd-45e9-89fd-adcf6c6ee38a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111791,7 +111791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39d582b4-8c5f-4dfe-8118-0762ef705058", + "id": "db86f117-c271-45f6-ad76-fa48b0369bf5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111845,7 +111845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c4ab45f-3507-47bb-9b1b-57aa10b99880", + "id": "d2c59c2d-0bd6-4dae-b806-538aabd1e3fd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111905,7 +111905,7 @@ } }, { - "id": "07156591-2f8c-44e4-89a4-9db7b2caaae0", + "id": "edd52372-5d73-4c57-9e87-273f0a2fe833", "name": "Approve a Non-Employee Request", "request": { "name": "Approve a Non-Employee Request", @@ -111926,7 +111926,7 @@ "variable": [ { "type": "any", - "value": "minim", + "value": "exercitation laboris ex sit", "key": "id", "disabled": true, "description": { @@ -111949,7 +111949,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"id minim aute voluptate\"\n}", + "raw": "{\n \"comment\": \"aliquip amet elit\"\n}", "options": { "raw": { "headerFamily": "json", @@ -111960,7 +111960,7 @@ }, "response": [ { - "id": "12db98a9-2461-4e85-a81a-de459cc0a359", + "id": "e25e1944-3dd2-41d7-a50e-6ed7a82c6e4f", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -111996,7 +111996,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"id minim aute voluptate\"\n}", + "raw": "{\n \"comment\": \"aliquip amet elit\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112013,12 +112013,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"sit in veniam in\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"quis\",\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\": \"non irure ipsum\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"non in\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f5b34cb8-5370-4fd5-b599-2e2621715a36", + "id": "971ac80d-d122-44e3-b30e-2f5d0519a737", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112054,7 +112054,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"id minim aute voluptate\"\n}", + "raw": "{\n \"comment\": \"aliquip amet elit\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112076,7 +112076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79a34649-036d-4072-8e30-62028015479e", + "id": "8cbc2de1-be3a-49de-90e4-c050d20458f9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112112,7 +112112,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"id minim aute voluptate\"\n}", + "raw": "{\n \"comment\": \"aliquip amet elit\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112134,7 +112134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c61e536-a7ef-4e84-aa61-99333e190a55", + "id": "8fc588a1-8eeb-4456-8fc0-3ac558e800d5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112170,7 +112170,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"id minim aute voluptate\"\n}", + "raw": "{\n \"comment\": \"aliquip amet elit\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112192,7 +112192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4ad5bb8-410d-4f8e-88a9-56a4ded2cfac", + "id": "3e00e53d-b792-45f4-984b-9409c08f40bc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112228,7 +112228,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"id minim aute voluptate\"\n}", + "raw": "{\n \"comment\": \"aliquip amet elit\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112250,7 +112250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4778dfe9-ff02-48e9-a028-66ed54845e42", + "id": "efa73590-58fa-493d-b64b-c7c717039743", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112286,7 +112286,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"id minim aute voluptate\"\n}", + "raw": "{\n \"comment\": \"aliquip amet elit\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112314,7 +112314,7 @@ } }, { - "id": "71e299e6-ce4f-4cf4-a92c-01fc1e968454", + "id": "89b0a00f-9868-4ee6-874a-894406faf0dc", "name": "Reject a Non-Employee Request", "request": { "name": "Reject a Non-Employee Request", @@ -112335,7 +112335,7 @@ "variable": [ { "type": "any", - "value": "minim", + "value": "exercitation laboris ex sit", "key": "id", "disabled": true, "description": { @@ -112358,7 +112358,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"dolore elit\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112369,7 +112369,7 @@ }, "response": [ { - "id": "aa272d86-d76d-4ea6-901c-74c27ca53599", + "id": "cebd74ee-3505-464e-b365-df95cf3c2227", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -112405,7 +112405,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"dolore elit\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112422,12 +112422,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"sit in veniam in\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"quis\",\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\": \"non irure ipsum\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"non in\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d8f7ea3d-ab7d-45d5-a91b-5bd37294a0d2", + "id": "b1bbc67a-5a40-4bd9-baf2-8618d870bf36", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112463,7 +112463,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"dolore elit\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112485,7 +112485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adda6e9f-6db4-4e61-a107-75c6aedf4bb8", + "id": "28c1d37c-e090-4982-9ba4-1661b5ae3985", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112521,7 +112521,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"dolore elit\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112543,7 +112543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39173846-2cd6-400c-8956-32ff27c5f738", + "id": "caaa24dc-3c20-4aae-a165-35349128769a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112579,7 +112579,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"dolore elit\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112601,7 +112601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df0ee764-ef7b-4d72-a403-7c7c02b24d9d", + "id": "94abe4e9-51a4-43e5-8c98-b0bcc3ea4926", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112637,7 +112637,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"dolore elit\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112659,7 +112659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52bfa034-37d8-4540-8d1d-28e56f4b2fbb", + "id": "aa57e583-64e0-4b5f-b695-beb338d201cf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112695,7 +112695,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"\"\n}", + "raw": "{\n \"comment\": \"dolore elit\"\n}", "options": { "raw": { "headerFamily": "json", @@ -112723,7 +112723,7 @@ } }, { - "id": "3389085e-3eeb-4955-aceb-c559b6a01412", + "id": "964d5636-edd7-4aba-8b19-8fa284c0b35c", "name": "Get Summary of Non-Employee Approval Requests", "request": { "name": "Get Summary of Non-Employee Approval Requests", @@ -112765,7 +112765,7 @@ }, "response": [ { - "id": "c253eda7-b89d-4fbd-bd4c-f764a947b890", + "id": "8c423e13-c75f-47cd-a85e-c228238d8910", "name": "summary of non-employee approval requests", "originalRequest": { "url": { @@ -112805,12 +112805,12 @@ "value": "application/json" } ], - "body": "{\n \"approved\": -46572545.36965865,\n \"pending\": 11655018.690047085,\n \"rejected\": -53727269.35536121\n}", + "body": "{\n \"approved\": -10709951.873483941,\n \"pending\": 90529130.29457733,\n \"rejected\": -34478097.864647105\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "51f4b1aa-5efd-4f16-96d8-ae44672b8372", + "id": "d2a86532-d095-42ca-8680-11bab70ce41e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112855,7 +112855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a5c6045-d458-4ffa-8d12-0cd761785040", + "id": "2fe00ccf-045f-4237-8994-0940e7499a2f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112900,7 +112900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4927ef18-8245-4932-90ed-0aaf6b809658", + "id": "60a924a9-abce-43c7-a2ce-d5dd6399ecb8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112945,7 +112945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3ba811c-35c0-48e1-bcb1-bb4b86ec9011", + "id": "d11b279c-3ab3-47a6-bac9-51a8d6b70c54", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112990,7 +112990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31f03ab2-5744-40a4-b7d1-59e415a14c63", + "id": "6c692c04-a1aa-49f0-9101-9c29f8d7e74f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113041,7 +113041,7 @@ } }, { - "id": "f31122d6-697e-438a-905a-1b0d25a92baa", + "id": "45e8798f-21ec-4f3b-bbfb-5ab27627fe47", "name": "List Schema Attributes Non-Employee Source", "request": { "name": "List Schema Attributes Non-Employee Source", @@ -113083,7 +113083,7 @@ }, "response": [ { - "id": "19f3a1c3-d1cc-4a6f-b379-8b37e2899e7a", + "id": "f40ebbb8-6115-4731-9127-f80cad8ee865", "name": "A list of Schema Attributes", "originalRequest": { "url": { @@ -113128,7 +113128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6aa596fc-415d-4f92-b8a2-427a63fef79c", + "id": "b3806b05-6fec-4d58-b336-05191de7cf60", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113173,7 +113173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77cd7938-d81f-41d6-97ea-f41ac4173071", + "id": "ac8517e2-28d2-4ee2-a368-06277d62b26d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113218,7 +113218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dafed40d-def4-4553-a6cd-9a1511a5eed6", + "id": "c2cde5c8-5079-4b38-80f5-6c345eae7ec1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113263,7 +113263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9811c1ac-5225-4408-b333-dadb14df59fa", + "id": "847fa555-f58c-43db-8a04-39b76d148cfa", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -113308,7 +113308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc513ad0-5381-49ab-bc5a-c7bfd7e40c6e", + "id": "9e544ce4-bf9c-4346-8355-05db46aad30f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113353,7 +113353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27d27ad9-4537-4570-b38e-d29549d4f42b", + "id": "4d9f12cb-ae58-404f-88d1-150aa7b9403b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113404,7 +113404,7 @@ } }, { - "id": "37646627-aa3b-4102-a03f-772ce5f0db5c", + "id": "a8af9c67-f71b-4b21-8379-382f05567125", "name": "Create Non-Employee Source Schema Attribute", "request": { "name": "Create Non-Employee Source Schema Attribute", @@ -113459,7 +113459,7 @@ }, "response": [ { - "id": "158e6a61-d1f1-4703-acab-4ab57b7fa3b6", + "id": "b57fecf5-9236-42a5-876a-9a85ab64a536", "name": "Schema Attribute created.", "originalRequest": { "url": { @@ -113512,12 +113512,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"IDENTITY\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n}", + "body": "{\n \"type\": \"DATE\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b1712e24-8c54-4234-907f-639ba021aa84", + "id": "6bfb93e5-280c-46aa-9f1f-3d4a261c3e7a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113575,7 +113575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f00a1e95-d94f-435b-87f1-9fc1a5072f8c", + "id": "2eb9b7ea-5e00-40e6-b710-e28bec0621d5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113633,7 +113633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9212bd7e-3da4-4ee9-8d5c-504e04b7618f", + "id": "2f8f3498-2aca-4d7f-9641-cdc5d9599e36", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113691,7 +113691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf4d3741-479a-4338-b9df-be641a9562a8", + "id": "c58dbc94-5eae-48c7-ab4c-c33cb81a4b7b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113749,7 +113749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32b7d76b-dfd2-4676-9691-7bf353de5cc1", + "id": "fade5e72-d12f-497d-8639-a8defd7500fd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113813,7 +113813,7 @@ } }, { - "id": "ab11403b-abe4-4f48-b5b9-4ca4343053fb", + "id": "b13d7cf9-200e-47f2-be36-9640fe459017", "name": "Delete all custom schema attributes", "request": { "name": "Delete all custom schema attributes", @@ -113855,7 +113855,7 @@ }, "response": [ { - "id": "535b3574-974e-4827-aeef-874ab23cd097", + "id": "289c059f-1856-4580-9f98-714b61666ef9", "name": "All custon Schema Attributes were successfully deleted.", "originalRequest": { "url": { @@ -113890,7 +113890,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2133af1f-f864-4023-b6b6-5a1cbae635dd", + "id": "a46a56ce-bc47-4f20-8420-67df06986b60", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113935,7 +113935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e5d7206-0915-4f86-b30b-7e1f6a5ed46f", + "id": "50f45602-7e95-4b4e-b65b-c11b4694ba8a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113980,7 +113980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f88fbde2-e4f6-4210-9b20-7e2f04e515ab", + "id": "616d20c0-2b8e-4a13-ac81-f3ec4b4f2c8f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114025,7 +114025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96b4b747-f59c-44ea-a188-8d360008ff92", + "id": "ec27779c-ab79-4343-b1ce-81d6e5abb75f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114070,7 +114070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2bbd8b3-3331-4b85-89df-6b7e86dd80b4", + "id": "2e653bc9-aac5-48a8-bf02-ef2535f27489", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114121,7 +114121,7 @@ } }, { - "id": "660b2618-05b4-4371-b4dd-80110ea8ec9a", + "id": "f16a826e-818b-4498-ad25-a2a3c7e56c65", "name": "Get Schema Attribute Non-Employee Source", "request": { "name": "Get Schema Attribute Non-Employee Source", @@ -114174,7 +114174,7 @@ }, "response": [ { - "id": "96513291-2757-4e45-8a83-facc2154208d", + "id": "3734ed5a-8b61-491d-ba9b-12120beca995", "name": "The Schema Attribute", "originalRequest": { "url": { @@ -114220,7 +114220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2f60cb2-5e6d-485a-a6c8-01ed89f326c3", + "id": "e41c7dee-3bba-45d5-9768-671a67704496", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114266,7 +114266,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb5eb87f-2cf0-4037-a8a4-de125fc9ac38", + "id": "cfc138f5-f92a-4544-943a-ae0956fb2042", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114312,7 +114312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee41ca3c-72fe-40de-8fc9-9283018bccb8", + "id": "3dbcb2d3-7767-40b1-80a4-6ffc52e30d35", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114358,7 +114358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "343a8366-fd34-4431-a25c-d076c32ab269", + "id": "7c54903f-ac03-4775-b1df-c861791f1923", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114404,7 +114404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e24df73d-be66-4478-b61b-4a6f9e6ab9ce", + "id": "a71c2cf1-06b2-491c-8df5-1217744c792a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114456,7 +114456,7 @@ } }, { - "id": "b1c683d3-9f65-4077-8df7-f57741964a66", + "id": "94230bbc-4510-41f6-b791-bf9297e18c5a", "name": "Patch Non-Employee Source's Schema Attribute", "request": { "name": "Patch Non-Employee Source's Schema Attribute", @@ -114522,7 +114522,7 @@ }, "response": [ { - "id": "722ecd18-999b-4508-ab04-4d63b5dace97", + "id": "db0765a8-3431-4201-9f1d-f64c505df768", "name": "The Schema Attribute was successfully patched.", "originalRequest": { "url": { @@ -114576,12 +114576,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"IDENTITY\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n}", + "body": "{\n \"type\": \"DATE\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1a0afe94-1abf-43c9-b66b-cf68ccfcb6bc", + "id": "45220a93-dc3b-4807-bd4e-3fdc5b2f0861", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114640,7 +114640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a545f5b-fe4c-448f-b763-67ee46828000", + "id": "70a30c61-5787-43d0-92e7-11088a1ef4f3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114699,7 +114699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c9f5937-5c8c-477e-ae93-5b0ad44d4edb", + "id": "5f3c3c05-4820-4cd3-ad2a-8b4ae1abd87c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114758,7 +114758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9279b00-c696-499d-8f28-b1e330ccb1be", + "id": "bf39f216-644c-49b7-911a-f69ce1d82806", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -114817,7 +114817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a3d7848-5e9f-4949-bcdc-3e676165d941", + "id": "45841e0b-7dbf-487e-bd56-eb902665c072", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114876,7 +114876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "306d3c73-f053-4ccc-85c1-099dcf45ca9d", + "id": "11faae33-939e-4644-823a-d9a17d35fab6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114941,7 +114941,7 @@ } }, { - "id": "748aaa23-66a7-47e0-9f37-44f2fe7fbc20", + "id": "0fac8eea-4e79-4c59-ad21-4974e6bcd7ae", "name": "Delete Non-Employee Source's Schema Attribute", "request": { "name": "Delete Non-Employee Source's Schema Attribute", @@ -114994,7 +114994,7 @@ }, "response": [ { - "id": "576399d9-f777-4808-ba82-3b726ac0c8c9", + "id": "1898e4c4-3076-4ecd-bc75-5fde629b52a1", "name": "The Schema Attribute was successfully deleted.", "originalRequest": { "url": { @@ -115030,7 +115030,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3b99f8e4-995c-48fb-ae0b-d384eee92c3e", + "id": "08ebec82-d682-4a99-92cd-fa3f2521b156", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115076,7 +115076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9e5367d-7b59-4ba2-a104-2bc3d1409d5d", + "id": "bac44d4d-ea22-419e-8e95-a088aa7fda6b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115122,7 +115122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90bac8a7-8163-479e-8532-7be528951cec", + "id": "db06b8e6-9adf-4ddd-9ba1-c6db81e3b583", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115168,7 +115168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e912f8f-9997-4911-9f3f-ce1688e211e5", + "id": "81d81f64-2e86-4468-99da-35749388b358", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115214,7 +115214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19d80016-695f-48f2-bd3a-0304dc556c2f", + "id": "0fe920f9-9bec-4da8-a4e8-7e73f7eff456", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115272,7 +115272,7 @@ "description": "", "item": [ { - "id": "1facbd26-1db4-4da5-83f1-371ecd918022", + "id": "78140860-b38d-4c06-ae11-bc6b056d4213", "name": "Change MAIL FROM domain", "request": { "name": "Change MAIL FROM domain", @@ -115314,7 +115314,7 @@ }, "response": [ { - "id": "e9c8bd5d-55f6-447f-a305-c3b1d32e4db0", + "id": "6e088244-aeba-4df2-a473-4785680605b4", "name": "MAIL FROM Attributes required to verify the change", "originalRequest": { "url": { @@ -115370,7 +115370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a716014e-e1ef-46ac-981b-ef294c1fd9f3", + "id": "ec2f8375-4da3-450c-b0ce-aa25c184d646", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115426,7 +115426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec6a0eb4-f3bc-4d03-b823-6607bb8cb9e8", + "id": "5cf10ba0-d9bd-42da-bd76-7f29b3ebec88", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115482,7 +115482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d71410e-3bf2-4a2f-b52b-adad7c87a93e", + "id": "17942548-d4c6-414e-aae3-3dac5df2d569", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115538,7 +115538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d702c76d-760a-480f-9ff4-f357cb18820d", + "id": "9ce24896-17ac-4784-954f-c26991ac7965", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115594,7 +115594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43e139c5-5ce2-43c8-b5e6-3fd464b733bc", + "id": "565d2ee7-2908-4d02-9f5a-673794bff477", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115656,7 +115656,7 @@ } }, { - "id": "f8aa3d98-5446-4c17-8b45-15a43a721d70", + "id": "a784286b-df77-495b-8ccd-f5ada8bb6849", "name": "Get MAIL FROM Attributes", "request": { "name": "Get MAIL FROM Attributes", @@ -115701,7 +115701,7 @@ }, "response": [ { - "id": "cb9df9f1-e422-4552-9fb5-4a8002c1dd19", + "id": "b29e2936-6764-44f1-b70a-4a7362d17790", "name": "MAIL FROM Attributes object", "originalRequest": { "url": { @@ -115755,7 +115755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c78d92a6-4f1e-4b55-aa31-b6cbdb81b225", + "id": "b4ebe4a8-e59b-481f-adc0-251ffaf5f82b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115809,7 +115809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e724de8-190c-4435-a2db-d624bb0fc6b5", + "id": "f4c7fdb2-193e-4843-b8c4-3855e15215c7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115863,7 +115863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb7b5cf0-b219-4460-83a6-89c69344a21a", + "id": "ad1c18d8-9b64-41d8-afb6-0fa1191d4f93", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115917,7 +115917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "238b1cce-9452-4d17-95ca-7f2c8ecdf6e3", + "id": "270c3c94-5340-4f87-b262-56bc2cf49f46", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115971,7 +115971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21e82982-fd30-4bee-b950-e4dc584348b4", + "id": "f085fa26-785d-4554-9e05-63aa5e1366b1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116031,7 +116031,7 @@ } }, { - "id": "3d698b3e-a762-4078-8bd5-a97e6e8ec0ab", + "id": "31d8282b-c758-4750-89ef-3e0197a17bcf", "name": "List Notification Template Defaults", "request": { "name": "List Notification Template Defaults", @@ -116088,7 +116088,7 @@ }, "response": [ { - "id": "ef04ed62-6afa-44e9-8bf2-f985da8e8bd3", + "id": "af71175e-c9cf-43cc-9ed8-f89c5ffd7bd7", "name": "A list of the default template objects", "originalRequest": { "url": { @@ -116159,7 +116159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "778a4bbc-0fa5-4276-9a42-9f3956d4ba5f", + "id": "16b2acdd-404b-40c1-b85f-33cac0d46139", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116230,7 +116230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6faf4240-459e-4480-b88b-d7343202476a", + "id": "0c378979-cb2e-411b-8bf9-d3948b51975e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116301,7 +116301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc9da6e9-2ae3-4709-b40c-8b7d6e14596e", + "id": "4663d308-b2de-4c0c-9083-8a86c2c10ca2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116372,7 +116372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b35bbf87-be52-4e44-aa93-14637f3bb8e1", + "id": "cec55182-dbb0-4011-aa5a-c0b7fccd45e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116443,7 +116443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "417e410b-d1b2-4009-a9b9-d5160904d903", + "id": "16e2e2ef-6143-4590-9672-d807067b6119", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116520,7 +116520,7 @@ } }, { - "id": "01821601-8e2c-4c0b-b2df-5a1091eacc63", + "id": "1e84be09-35bd-4fc6-a676-43471d9ac012", "name": "List Notification Templates", "request": { "name": "List Notification Templates", @@ -116577,7 +116577,7 @@ }, "response": [ { - "id": "590f9ac5-6958-4908-af12-e6deca93eeec", + "id": "59f81ed1-d5ba-498a-9482-cc42aa011758", "name": "A list of template objects for your site", "originalRequest": { "url": { @@ -116648,7 +116648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9984d1e-2497-4c2a-bf06-0411c796dd8e", + "id": "0335a49c-32b0-4dbc-bd5b-8ea3856db992", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116719,7 +116719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "642e864f-7ecf-49c8-8501-4e9d3b4b4912", + "id": "5fde520f-7e94-45ab-9797-e6632332fbcf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116790,7 +116790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc2e0985-af3a-4280-ba80-d25506c1a80a", + "id": "26ac1dfe-ad35-4130-a06b-a723283c1de7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116861,7 +116861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9979f846-36e4-4b6d-8552-29029a740abd", + "id": "87b65881-b75d-45b4-9673-d4f1ce0321b1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116932,7 +116932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dd56a54-0609-4ba2-81b1-d7c021699b18", + "id": "4764860d-f8d9-4d9a-a881-6e115ed35415", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117009,7 +117009,7 @@ } }, { - "id": "865a801d-3a7f-4c99-9fc7-92eca317baa0", + "id": "21d6278d-92a6-4440-9e5a-399387463df6", "name": "Create Notification Template", "request": { "name": "Create Notification Template", @@ -117051,7 +117051,7 @@ }, "response": [ { - "id": "a1f1b693-7f3f-4a97-b0ea-e6fe5b9462ab", + "id": "fdb7940c-59c8-4772-a76d-0b5282ab0f98", "name": "A template object for your site", "originalRequest": { "url": { @@ -117107,7 +117107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45717b35-6b84-420b-9964-b9142419712b", + "id": "378dd185-2048-4cda-b0db-09c1a2aaa95e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117163,7 +117163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c303f399-792f-43e1-88ea-6b5656fde2ef", + "id": "5f5ce8db-778a-49ee-9a6e-28e4f43c08ee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117219,7 +117219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d31474ab-3611-4663-ae24-93aa3ca9f399", + "id": "6659c572-99ae-4a99-a30c-5c67d2210414", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117275,7 +117275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6263818e-aaec-446c-90bb-7d123383a46a", + "id": "dfce13af-ecba-49b0-87dd-99cf557ad4ef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117331,7 +117331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd462c60-c26b-4976-9ab6-2f3f12e7e5a9", + "id": "9a67420f-081c-455c-b2f4-c4434e8d31e3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117393,7 +117393,7 @@ } }, { - "id": "4190e1cc-e31b-4b2f-9c6e-82b084979a0a", + "id": "07fa712d-12d7-4901-9395-1a4674eeabc3", "name": "Get Notification Template By Id", "request": { "name": "Get Notification Template By Id", @@ -117434,7 +117434,7 @@ }, "response": [ { - "id": "8e888b4f-e11d-460e-8c97-8f866fd543bd", + "id": "df135978-c3e2-4cd5-bc5e-71e81bc77baa", "name": "A template object for your site", "originalRequest": { "url": { @@ -117478,7 +117478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44f2da04-05fb-4bc2-863a-c2ca26e2221b", + "id": "243061a6-c555-4f62-89a1-eccb70930384", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117522,7 +117522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6b09a55-45a2-4f1d-9c57-36a693ec53c9", + "id": "fd4bcb05-bc06-46ea-9e57-f4c53f531ad3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117566,7 +117566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "448a4047-1faa-4494-8f14-7cce73ed9be2", + "id": "aea2b399-63fd-4b19-9486-5f00226d5eea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117610,7 +117610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cb5f511-c9c1-4945-9e4b-2879810f4c81", + "id": "18493d0a-e8b4-4e5d-8375-53bfd41b4b8a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117654,7 +117654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25a14e32-35d4-4968-a58c-fc6f3f23c3df", + "id": "95155aef-3412-4bfc-a674-2bdfefaf8246", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117704,7 +117704,7 @@ } }, { - "id": "0af4a7e0-082b-45f6-ba49-5f84cf50ca91", + "id": "7d5937f2-cdb5-4480-8127-4e55e0e95e51", "name": "Bulk Delete Notification Templates", "request": { "name": "Bulk Delete Notification Templates", @@ -117747,7 +117747,7 @@ }, "response": [ { - "id": "7d7a2b40-c9df-4276-9776-af68321bce97", + "id": "f667aa95-4a7d-42f4-84c1-f8cf39aa1c59", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -117794,7 +117794,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7f58c068-abdc-414c-8e8e-5dfaa248f541", + "id": "668967f7-534f-498d-b872-1df7db80d113", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117851,7 +117851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5968b7b0-79b1-4bc7-94fc-a1e9acde1321", + "id": "4cb71a82-f1e1-434c-82e3-845ea3a7963d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117908,7 +117908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac10d21f-790b-4a01-80ac-e1aa9648e619", + "id": "6ef58ddf-8a1f-423a-b26d-2a5f727ffbd6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117965,7 +117965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8896c5d9-596b-494d-88d4-23ec7d9c2729", + "id": "8c0f7724-96d5-4057-854c-b5f0fc1a4d46", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118022,7 +118022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "309b5b1f-33b2-4b69-a479-3def9fcc38d6", + "id": "aaf71438-7edd-4bd2-8355-9aadf5f97d2d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118085,7 +118085,7 @@ } }, { - "id": "6cb6b610-265e-4625-87c9-74d44173c5d7", + "id": "c0cc3573-7f27-4fff-904b-b094ad4cc102", "name": "Get Notification Template Context", "request": { "name": "Get Notification Template Context", @@ -118114,7 +118114,7 @@ }, "response": [ { - "id": "235b5e92-7cf7-40d8-b497-816b68f502e8", + "id": "5864d210-312f-4a91-b926-33e06bc26e82", "name": "Notification template context attributes for a specific tenant.", "originalRequest": { "url": { @@ -118157,7 +118157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "448e2e57-e905-4eeb-8fa7-eaab04e9bdd7", + "id": "afd9d24c-5e28-4cf6-8224-cb2ad75d529e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118200,7 +118200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71a4527c-6b89-4915-b084-f9352128590b", + "id": "4bfa6fc3-a2f2-4f4e-8ab4-ae5030fb57ad", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118243,7 +118243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03be6bec-c760-4503-a74e-3d80eb5fb43a", + "id": "747777e4-5db8-4f50-bbc9-e995eb0f7dba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118286,7 +118286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de8c6bb0-b906-4647-a2e5-287983cce0ff", + "id": "a2a5e20a-fe12-4736-9467-986a93b3d1d3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118329,7 +118329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d43e06e6-eb18-4d05-a245-92256fd0a3d3", + "id": "2b3f114d-e9a3-4e47-b2d8-376c0df4f793", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118378,7 +118378,7 @@ } }, { - "id": "4ab89212-0226-43fd-9d38-bc88f640c2ea", + "id": "0f7b63e0-30b9-4376-ac4c-621ac9d70bb4", "name": "Get Notification Preferences for tenant.", "request": { "name": "Get Notification Preferences for tenant.", @@ -118419,7 +118419,7 @@ }, "response": [ { - "id": "96f890b4-3341-4ccf-b3da-e525f5ad0666", + "id": "74fb015d-6950-4eac-b326-d801239eb04e", "name": "Return preference for the given notification key.", "originalRequest": { "url": { @@ -118463,7 +118463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d983aa75-837f-49e0-8a49-de9412927527", + "id": "2ff7b669-e69d-44a3-b567-c1a57f834c99", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118507,7 +118507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32818744-0d00-4cb7-977d-49b81a34c842", + "id": "f8fe95d2-20cf-43e3-8dbb-348b743e5fac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118551,7 +118551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3d9bbaa-9021-41af-9917-94adfa44d683", + "id": "884f1897-d538-4222-ae96-c8426dc33baa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118595,7 +118595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1c50185-ea9c-40a0-9c3b-e41dabae49c9", + "id": "441807a1-6cf7-4fd2-b17f-a1fb581bb888", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -118639,7 +118639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d70e22a0-d578-4266-a6ff-b3f03b607f84", + "id": "882fa56d-8c19-4ea7-bc1f-e37b3a6fa113", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118683,7 +118683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "436fbad4-f906-4d49-bd84-61c69afe1bcd", + "id": "236ef0bd-4038-4939-bfd6-29a6f4b338ab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118733,7 +118733,7 @@ } }, { - "id": "4c513687-998a-4d9b-987e-e427d2a2f6f9", + "id": "0e94bac3-fc76-458d-8821-72892aa3b156", "name": "Overwrite preferences notification key.", "request": { "name": "Overwrite preferences notification key.", @@ -118787,7 +118787,7 @@ }, "response": [ { - "id": "e58a38a7-1258-40b6-8e28-725c1ca40077", + "id": "ceec27c6-0d75-40c4-b8ff-5e3526c003e1", "name": "The preferences were successfully replaced, and an echo of the new preferences are sent back to caller.", "originalRequest": { "url": { @@ -118844,7 +118844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d73609fb-1054-4436-b063-7343359b0bb5", + "id": "37ff4655-f0f4-425b-aea1-bd1147ba7d36", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118901,7 +118901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dac673a-073f-49c4-8497-3bb8f71100cd", + "id": "6bfc706f-76b9-413e-83a6-a2b67f49835f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118958,7 +118958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07bfe8aa-03b9-4e5c-ab68-3066d626b883", + "id": "229aec2d-faca-455d-a92e-4105d98b597e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119015,7 +119015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "776e4110-0917-48be-80c0-23ae0288077d", + "id": "a0035a86-3265-4e0f-99b7-c08e8bb24aae", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -119072,7 +119072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7120073-1996-40b3-89df-103e8463e660", + "id": "9e1b0f75-45b1-4935-9306-41acec26f22f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119129,7 +119129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81228f18-a0a1-42ce-9dc3-c0d2478aff0d", + "id": "441de167-5df0-4e25-96dd-541039798510", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119192,7 +119192,7 @@ } }, { - "id": "0d39dde3-6d49-4048-a26c-d92f9f75e661", + "id": "a89ec283-2697-4142-9e77-adccd2c6161c", "name": "Send Test Notification", "request": { "name": "Send Test Notification", @@ -119234,7 +119234,7 @@ }, "response": [ { - "id": "8835e732-c709-4291-93e5-2867d3398c3d", + "id": "b30a10f2-dac4-48c5-870e-1974f1c51c7b", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -119280,7 +119280,7 @@ "_postman_previewlanguage": "text" }, { - "id": "53ebb0d4-5e11-497d-a2c1-87046fa73f74", + "id": "aee79b00-5cb8-490c-bf31-798acdb920cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119336,7 +119336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecda1251-5149-4fc1-95e8-95727077687b", + "id": "54c8cceb-daa3-40f9-929a-f85eabe7d36b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119392,7 +119392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fe7b15e-d551-4a4b-bd92-773b367dbfdd", + "id": "542d05c2-98e9-4af2-b5be-3cac54144ff9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119448,7 +119448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f84a3c7-6bae-4260-8c0b-80227c26f1a6", + "id": "fe7e0e32-1bcc-4881-bb56-1e485b33ae73", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -119504,7 +119504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e411e117-a77a-4c0b-a15d-c5eee3ee5169", + "id": "234451fd-c33b-4499-bd11-29d42af15d73", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119560,7 +119560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ae2c281-cde4-48ad-8ea2-1215eb37d66b", + "id": "13ec4155-399e-4f9a-9487-422870fe80cd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119622,7 +119622,7 @@ } }, { - "id": "244e97fd-0c97-4d04-acfe-9db71daba852", + "id": "8b28c982-3ee8-4773-b065-501a0c66ec28", "name": "List From Addresses", "request": { "name": "List From Addresses", @@ -119697,7 +119697,7 @@ }, "response": [ { - "id": "712b2419-b9ab-40c7-9fc2-556f789480f9", + "id": "28f20a38-3925-4263-8873-7e2951bf0cc4", "name": "List of Email Status", "originalRequest": { "url": { @@ -119781,12 +119781,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"nisi ut in\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"PENDING\"\n },\n {\n \"id\": \"sed id deserunt\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"FAILED\"\n }\n]", + "body": "[\n {\n \"id\": \"officia do nisi incididunt occaecat\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"PENDING\"\n },\n {\n \"id\": \"dolor\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"FAILED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7b3eca62-727a-4a8d-bcf5-ef32825914ea", + "id": "dae63bcd-4f3d-4c11-b9a6-ebba7d97209d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119875,7 +119875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0388008f-bd1f-4577-9eb1-5af55712e2a2", + "id": "8ce171cc-15c2-49db-9009-db0af9d1481c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119964,7 +119964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed874502-db7a-4524-8991-811d089b4fb7", + "id": "35ff9777-3201-4899-a425-7c7830cac738", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120053,7 +120053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "518d584c-39af-4a1c-88a5-738c1eee8f78", + "id": "1a28e1a4-b2c3-4549-a1f0-6e0e6f5c4ba2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120148,7 +120148,7 @@ } }, { - "id": "2705fddc-0035-40fa-92e6-dc4e9935e011", + "id": "380dbd47-aa78-4b08-8ace-9e209b6dfdd4", "name": "Create Verified From Address", "request": { "name": "Create Verified From Address", @@ -120190,7 +120190,7 @@ }, "response": [ { - "id": "4073adbe-4944-4804-84ff-3d9c4c85b98b", + "id": "1973edd5-fe43-493b-8efe-b91002d97241", "name": "New Verified Email Status", "originalRequest": { "url": { @@ -120241,12 +120241,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"eiusmod pariatur minim tempor veniam\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"FAILED\"\n}", + "body": "{\n \"id\": \"proident dolor aliquip\",\n \"email\": \"sender@example.com\",\n \"verificationStatus\": \"PENDING\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "577662e8-f8b8-4791-901a-6b396840e948", + "id": "6391f693-17f2-44f1-a994-bc9188fe4c56", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120302,7 +120302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f0576ac-d37f-4387-8de0-8a5b168472df", + "id": "6d65ad4c-1bb4-4f4c-8c49-f195a990bb7f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120358,7 +120358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea8c6821-77e2-4aaf-8caa-b300058c3db6", + "id": "c0580a01-3b7a-45b2-8776-090e0b701324", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120414,7 +120414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d251f20-1571-4b0b-af3d-178aa98b2648", + "id": "65edabab-fa61-4fd6-abf0-80fe0f67c7ab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120470,7 +120470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "546f63f9-d9a6-42f1-990f-47331b9d375f", + "id": "b89ed7f4-b257-4e07-bdbf-9db6bdf70056", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120532,7 +120532,7 @@ } }, { - "id": "64673dad-0281-4927-8863-adf3a0e1a8ba", + "id": "05905dfc-b9e0-4e7d-a8dd-b72f23bb3614", "name": "Delete Verified From Address", "request": { "name": "Delete Verified From Address", @@ -120552,7 +120552,7 @@ "variable": [ { "type": "any", - "value": "minim", + "value": "exercitation laboris ex sit", "key": "id", "disabled": true, "description": { @@ -120573,7 +120573,7 @@ }, "response": [ { - "id": "fdcc80d1-a66c-40ac-922c-6a17ef188050", + "id": "c315d825-d90f-4dff-b747-476d457d8cd6", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -120607,7 +120607,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c88188dc-c32b-4c85-b17f-b676d5390811", + "id": "6663e543-399f-45da-81c2-3743f2d0a381", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120651,7 +120651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8f35cee-7b02-4ee9-8d02-0b3e593e2897", + "id": "c947fb6c-c3b6-4dc3-a819-25a2c76cbdd0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120695,7 +120695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a789c999-419a-40e7-acf6-0828b3811a57", + "id": "0853d3c7-6076-4fce-b101-740b2a1e30ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120739,7 +120739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22ad4fff-91af-4fc6-9008-96c8ddc16f89", + "id": "2d4695ff-02c6-4fda-837d-e53b71a5f055", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -120783,7 +120783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16a3e6eb-a8e5-4b81-a87f-dd735bd7c6dc", + "id": "20e5ed6d-6e3b-4a11-b667-b30099d4611f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120827,7 +120827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc0c3d77-1e29-40d8-a1c7-dff5397e200a", + "id": "5290bfa7-d116-4cf2-a2a0-84b037b9b792", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120877,7 +120877,7 @@ } }, { - "id": "aaa55409-4e6d-4719-a5cd-b34297850ccf", + "id": "488e35d7-4272-47c1-b2f7-a526857c8acf", "name": "Get DKIM Attributes", "request": { "name": "Get DKIM Attributes", @@ -120906,7 +120906,7 @@ }, "response": [ { - "id": "35836dab-1f95-4d8d-b28f-5f52294fa8ac", + "id": "65b77d88-6ee6-412e-a34e-46b14fd71cd1", "name": "List of DKIM Attributes", "originalRequest": { "url": { @@ -120949,7 +120949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "531acbed-0aee-4f2c-91b1-ab1039f63b24", + "id": "b8b7ed80-517c-4920-b6b7-4b679f7d136d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120992,7 +120992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea31bb66-511f-40f8-863b-8f1dd476e4f9", + "id": "9634c62d-7679-40a1-8641-4dbea48df20d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121035,7 +121035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c70f6230-e1f2-4350-ac6c-60e570741a99", + "id": "d4a448fb-c4df-4dc8-87d2-445034b7c9f8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121078,7 +121078,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e3be88d-f4cf-4815-8c61-1d1ee5b4d36f", + "id": "83e71773-ec2b-4a84-a4dd-db866c649c59", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121121,7 +121121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a4bd17b-6188-4cf2-94b0-66dcd5f4e807", + "id": "e0ff15af-6764-45d0-a1ee-ff126de2b515", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121170,7 +121170,7 @@ } }, { - "id": "cb7b67ba-5ae2-4644-88bb-8a23c94fd47a", + "id": "4525c27a-7772-4b12-9168-e8f5091fb826", "name": "Verify domain address via DKIM", "request": { "name": "Verify domain address via DKIM", @@ -121212,7 +121212,7 @@ }, "response": [ { - "id": "2d345a4b-45f3-4568-82ad-ae2d3c03e56e", + "id": "dbceb2f7-6208-4408-937d-e7434fde03a6", "name": "List of DKIM tokens required for the verification process.", "originalRequest": { "url": { @@ -121268,7 +121268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7f35fcd-07ff-49f3-83a6-a40133dc1060", + "id": "d67d09be-1273-4317-80e6-7eef38fe2099", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121324,7 +121324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76c9c4ac-87e0-4e2f-9dae-d558253e9fb8", + "id": "e574024f-9414-406c-9ffe-58ac7997fd58", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121380,7 +121380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b924a2c9-609e-465a-bd04-61e916496186", + "id": "ae69d1e9-e1f2-4f3a-9253-133542137d80", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121436,7 +121436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7fd7e05-095c-40d1-8004-f7fa631fe3ed", + "id": "4611b943-fff4-4c4e-a41c-8911e1143ea7", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -121492,7 +121492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9730b24-5226-4077-a977-f1f5b88489ea", + "id": "0a9cbded-cca1-49d9-98df-d5e521e72da4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121548,7 +121548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15535408-8096-4254-9638-afbd31e2ef99", + "id": "6dee80dd-3a0b-4c4c-a5fd-950ad2932b61", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121616,7 +121616,7 @@ "description": "Use this API to implement OAuth client functionality.\nWith this functionality in place, users with the appropriate security scopes can create and configure OAuth clients to use as a way to obtain authorization to use the IdentityNow REST API.\nRefer to [Authentication](https://developer.sailpoint.com/idn/api/authentication) for more information about OAuth and how it works with the IdentityNow REST API.\n", "item": [ { - "id": "af675fd0-53ab-4b92-8972-c53291ba5e76", + "id": "3785df2b-caf5-4323-b5e7-b70d145cf88e", "name": "List OAuth Clients", "request": { "name": "List OAuth Clients", @@ -121655,7 +121655,7 @@ }, "response": [ { - "id": "1d18a1fd-6bd0-454b-8766-f2854ee26eea", + "id": "e96120e9-dffa-4af9-b416-193824e084ce", "name": "List of OAuth clients.", "originalRequest": { "url": { @@ -121708,7 +121708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "564c2f94-0eab-47cd-b6d2-e593de449c48", + "id": "8d3cafdc-de49-4244-a2b9-34c34ce74c00", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121761,7 +121761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c63ea3d5-0398-4664-bf6e-b93edebf1163", + "id": "1cf911d5-5ce0-4600-bbdd-f8f0d20c47d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121814,7 +121814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "824e85b0-bb56-492a-a535-ce93d7f1f624", + "id": "87968eba-e32a-4fb1-b29e-2b4adcfe5855", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121867,7 +121867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d2c6e55-aad4-4f14-a788-1bb985b35488", + "id": "014a7ce4-4277-453e-8027-8ebef71a0e34", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121920,7 +121920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba02e8c4-69ec-4381-9647-dc90ea6a2909", + "id": "793c88be-e312-4694-a2d6-5add199b4959", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121979,7 +121979,7 @@ } }, { - "id": "468197b1-774e-44df-975d-d746c2d21715", + "id": "4128e5b7-c8fa-4371-b299-5254d5f494b8", "name": "Create OAuth Client", "request": { "name": "Create OAuth Client", @@ -122021,7 +122021,7 @@ }, "response": [ { - "id": "7ef23104-e455-4727-9268-2aef58d8da40", + "id": "3286568c-4875-4cb2-a082-f5c21885f9f3", "name": "Request succeeded.", "originalRequest": { "url": { @@ -122077,7 +122077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73c0592a-a514-4257-a586-35d04b702f46", + "id": "3b4c8ba5-fca4-4e1a-badd-2207c0496be7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122133,7 +122133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58b70377-61c9-4c07-9acc-135997986b58", + "id": "514f05fb-9574-4e14-8859-3ba8eb4509e5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122189,7 +122189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9ae0f36-748a-4f86-b9f2-8be5ca13e344", + "id": "ed17d28c-a839-49b4-93e2-8909a075ed29", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122245,7 +122245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aaf67832-ae78-41a2-9f90-10da7f51a81d", + "id": "d3169f65-123b-40b6-b742-16170a01f7ae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122301,7 +122301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25e3fd0a-be03-4f17-a3ae-150a0eaba90f", + "id": "896df74e-37f5-4f89-9ae8-343338e55d9b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122363,7 +122363,7 @@ } }, { - "id": "cc4ec28d-89be-4170-80c6-3aaa7097610a", + "id": "58ab0dd8-e71e-4886-9c21-7c15ea48d47b", "name": "Get OAuth Client", "request": { "name": "Get OAuth Client", @@ -122404,7 +122404,7 @@ }, "response": [ { - "id": "4d710191-7315-427a-8e36-58751c54757f", + "id": "6406c0bd-6b8f-499a-960b-f7024acbe2dd", "name": "Request succeeded.", "originalRequest": { "url": { @@ -122448,7 +122448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4592641-9c89-4b6b-8392-3971c6d6b886", + "id": "b8c697d4-8191-49d8-994c-0268f3c9dadc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122492,7 +122492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c8d9a78-1ca6-4120-87e8-0e46d4ed1786", + "id": "d1f36113-804e-401c-849d-5dff47373937", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122536,7 +122536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8c4641b-b613-4afa-adfc-4db04293d948", + "id": "56bf3194-c382-4f8c-b12c-59961f99b60d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122580,7 +122580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8656c7d4-34f0-4f0b-8401-ed2fc58da8f5", + "id": "e58e00df-81cb-47cb-a8c5-7da8755866d1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -122624,7 +122624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c192c530-f4e1-4bf7-992d-6a064b6f73bb", + "id": "7ee8f983-3ba2-49f9-a3ac-6fe6c3fac41a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122668,7 +122668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34b88ab4-d8d8-41b5-adce-c622abd7d597", + "id": "a9c1e10b-23a1-4ea4-9dba-a1ecda7aef40", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122718,7 +122718,7 @@ } }, { - "id": "59743287-d112-4ac4-82f7-c3f067f6c845", + "id": "c1bc9938-2c24-4195-99e2-d94003d4133c", "name": "Delete OAuth Client", "request": { "name": "Delete OAuth Client", @@ -122759,7 +122759,7 @@ }, "response": [ { - "id": "c502c4d5-2d75-4b67-bc94-1fbe4b5991db", + "id": "127de423-9642-4b4e-be99-c231014f113d", "name": "No content.", "originalRequest": { "url": { @@ -122793,7 +122793,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d744f3ac-780e-4293-b9db-856af4c4f9ce", + "id": "0ad9e963-8fcf-4d1c-94ae-856fac26b75c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122837,7 +122837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a74eab7d-1d44-4340-97d9-458a70b12021", + "id": "3b4f1ec7-0d33-4d96-90c8-1492437595c9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122881,7 +122881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f3edc74-86a7-4260-bfff-e0478ef3a2ec", + "id": "584dd06c-5ef0-45e3-a200-40258262d3c0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122925,7 +122925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26a8a51f-1c78-4452-8e6f-84ef164bb38d", + "id": "dfe2e047-a777-447b-8833-0eeb8e401f88", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -122969,7 +122969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10fa3d82-3188-404e-a87e-90ee224603c3", + "id": "ff27955a-0f17-471a-84b7-9859e9ce4e76", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123013,7 +123013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5340629-38eb-4802-8ff2-24202af83f0d", + "id": "3ad739a1-c9aa-4c30-a8d7-182095a275fc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123063,7 +123063,7 @@ } }, { - "id": "2d834fef-b348-4783-8990-c1c7ac46af2d", + "id": "526f59a8-ecaf-4db3-8c92-62c5ba29a28a", "name": "Patch OAuth Client", "request": { "name": "Patch OAuth Client", @@ -123117,7 +123117,7 @@ }, "response": [ { - "id": "0bbc9090-d005-41b4-b9ad-6ca05b7bcd39", + "id": "7d391c54-2f91-4b55-8a68-aadac06acde8", "name": "Indicates the PATCH operation succeeded, and returns the OAuth client's new representation.", "originalRequest": { "url": { @@ -123174,7 +123174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9b01250-f8e8-4f63-9e7a-a8c142133298", + "id": "b9e17cdf-a19f-4f18-8840-92877245dd31", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123231,7 +123231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6c54826-95ee-41cc-b7dd-721786c107ed", + "id": "65dcde8f-2a63-4288-9925-f5fd7c11691f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123288,7 +123288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31e114d5-bc3d-4b29-87e0-e6a591835230", + "id": "580c382c-1b98-4bd2-9de6-9affc1c8da28", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123345,7 +123345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2244684e-24d4-43c9-825a-580d017eac98", + "id": "a3187d04-582e-43bf-bb8f-c73878c318e8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -123402,7 +123402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5216a0e4-a241-42d2-87ce-d2618ca533b7", + "id": "cdfc734d-cfc9-4206-bc88-1056e6c2fef4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123459,7 +123459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e07c7cd9-9ad0-407f-b12e-fa097f83cc90", + "id": "57efacd7-1960-4c76-8a28-4a68fd81b69c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123528,7 +123528,7 @@ "description": "Operations for managing org configuration settings (eg. time zone)", "item": [ { - "id": "83457afc-ef62-481b-8b48-6631b06fc0b4", + "id": "3be5911d-9110-4eee-afd3-ca40bff9acb3", "name": "Get Org configuration settings", "request": { "name": "Get Org configuration settings", @@ -123557,7 +123557,7 @@ }, "response": [ { - "id": "ea2b1ac1-65a6-4205-a8e0-12cdd308bcc3", + "id": "f42409bb-487d-4e8d-976b-a1ffe33c170e", "name": "Request succeeded.", "originalRequest": { "url": { @@ -123595,12 +123595,12 @@ "value": "application/json" } ], - "body": "{\n \"orgName\": \"acme-solar\",\n \"timeZone\": \"America/Toronto\",\n \"lcsChangeHonorsSourceEnableFeature\": false,\n \"armCustomerId\": \"DE38E75A-5FF6-4A65-5DC7-08D64426B09E\",\n \"armSapSystemIdMappings\": \"cillum Lorem\",\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\": \"ad labore fugiat consectetur\",\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": "86e56197-c379-441e-be02-7ec87599b18f", + "id": "4d3c0f77-4075-4ba1-abdf-c4355ad53e9d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123643,7 +123643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d6806fc-ca3c-422e-9a68-41395f202c93", + "id": "41f31194-fa64-4455-a5b5-fcd44dfbd7e7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123686,7 +123686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1604692f-b153-49aa-9e04-0c68fb9cb8c1", + "id": "7c43010c-42c0-4c79-888f-d4e171c76096", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123729,7 +123729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9fc37fe-4c22-4628-874f-10432d0e2909", + "id": "65e55c22-4d66-4a9c-ad62-a6af4d1e2ac2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -123772,7 +123772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4957ab78-603e-4937-87fd-0b48872406ba", + "id": "53a52136-8196-4e1a-97ef-fff17fe2af35", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123815,7 +123815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3b81fa9-88fc-494d-ad8d-1f47a0d98008", + "id": "9bdc7431-ff57-4f85-9e5e-0d08cbaecd83", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123864,7 +123864,7 @@ } }, { - "id": "ba8074d6-5f33-47c8-a6d9-fce0686f1dde", + "id": "b12e0741-bf99-488f-8b50-e8e68da734a3", "name": "Patch an Org configuration property", "request": { "name": "Patch an Org configuration property", @@ -123906,7 +123906,7 @@ }, "response": [ { - "id": "06ab302c-6963-42e8-b6a9-9eb9874d05ed", + "id": "eb0e705f-2da8-45e3-a096-20fe9584ab72", "name": "The Org was successfully patched.", "originalRequest": { "url": { @@ -123957,12 +123957,12 @@ "value": "application/json" } ], - "body": "{\n \"orgName\": \"acme-solar\",\n \"timeZone\": \"America/Toronto\",\n \"lcsChangeHonorsSourceEnableFeature\": false,\n \"armCustomerId\": \"DE38E75A-5FF6-4A65-5DC7-08D64426B09E\",\n \"armSapSystemIdMappings\": \"cillum Lorem\",\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\": \"ad labore fugiat consectetur\",\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": "f6802038-3b43-4008-97f0-56b54fedc722", + "id": "d23a247e-ec51-4be6-a2c0-4424f72f9280", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124018,7 +124018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "254c0e2d-348e-467e-8845-01b6141646b7", + "id": "f8c9da5f-4e34-4205-abe8-bd1b449617e7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124074,7 +124074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dacf6060-c66e-4509-a806-e548efe51194", + "id": "bff5e6b4-c684-4e1a-9021-532aaaec9378", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124130,7 +124130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e32594fd-33dc-4d2b-b8bd-a0a4d5488bc7", + "id": "78bc31c0-77f7-4318-b60b-6914f2c66357", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -124186,7 +124186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cd26e69-727e-436a-99b1-e8a4a9688ac8", + "id": "a2d23682-0723-4947-88db-1406d28e5cc9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124242,7 +124242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b3cb678-4a3f-41df-a7c5-46d51b592cb9", + "id": "300dbfac-3f6c-4504-add0-623ce5fbfe22", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124304,7 +124304,7 @@ } }, { - "id": "124594ae-c101-4af8-b9cb-5e00c34111a5", + "id": "a93f24c4-8107-451c-95bf-a9699d87ee84", "name": "Get list of time zones", "request": { "name": "Get list of time zones", @@ -124334,7 +124334,7 @@ }, "response": [ { - "id": "690a813f-d4cb-44fb-96ed-fd1a9341ce51", + "id": "e6d91667-32d8-4600-a666-0f77621216e8", "name": "Request successful", "originalRequest": { "url": { @@ -124378,7 +124378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0c16eb9-662b-4de9-9a04-05fe25c84681", + "id": "f6653618-eed3-4080-b63b-85e14f083501", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124422,7 +124422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca3b6813-13b7-45ae-98dc-273c8bd4124e", + "id": "52bf7347-6dec-4cb8-8afa-a7e3d8506053", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124466,7 +124466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "218acc71-ad15-4e22-acda-616814243329", + "id": "c40ef622-dc47-4101-9a5b-8692fc3ca11d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124510,7 +124510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b19d265a-45bc-4e79-940a-d1cd75bc939a", + "id": "e0bb0958-0562-4308-af49-e38c847d85b7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124554,7 +124554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcdbabb7-cfc6-4165-938a-210a94d7ac9f", + "id": "e868dc54-82d5-4bf4-b8d4-b0d0378b1298", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124610,7 +124610,7 @@ "description": "Use this API to implement organization password configuration functionality.\nWith this functionality in place, organization administrators can create organization-specific password configurations.\n\nThese configurations include details like custom password instructions, as well as digit token length and duration.\n\nRefer to [Configuring User Authentication for Password Resets](https://documentation.sailpoint.com/saas/help/pwd/pwd_reset.html) for more information about organization password configuration functionality.\n", "item": [ { - "id": "2c79645d-a72e-4b2d-9b77-1808c3316a9f", + "id": "a2f70794-f3aa-4b43-ba15-6c449f97d7fe", "name": "Get Password Org Config", "request": { "name": "Get Password Org Config", @@ -124639,7 +124639,7 @@ }, "response": [ { - "id": "3b4d9918-99e4-4a89-93ab-c7cd6f88088b", + "id": "a326278b-bafa-4f1e-87f7-951886dea571", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -124682,7 +124682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cad0ab73-01c6-4de4-9869-b0a7b41625af", + "id": "96efff32-b07c-46b9-8d0c-4a84a23c3871", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124725,7 +124725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1a2cc19-e594-488b-80ca-206a226bc8e7", + "id": "3fa70cbc-3d91-4df7-bc81-5d942230894d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124768,7 +124768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "609b2564-0fa6-4c92-9147-1ec98598775f", + "id": "47a82173-052a-4243-9472-fb093f4160d7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124811,7 +124811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13086330-a74b-407f-b9e4-7db195d81e9b", + "id": "555c81a1-b9ed-4220-ae40-b15124cd132c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124854,7 +124854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acc9b47f-09c5-46c9-9478-f771e83897e9", + "id": "e429beab-fb3b-4e17-bb52-f6d510cf281b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124903,7 +124903,7 @@ } }, { - "id": "e0757c01-90b0-4319-8c0b-6f7844cd0ce8", + "id": "b7a0883d-24a7-4a4c-af1f-f3cbd28e5cec", "name": "Update Password Org Config", "request": { "name": "Update Password Org Config", @@ -124945,7 +124945,7 @@ }, "response": [ { - "id": "e25556b0-d00d-4967-bb87-93e046b04129", + "id": "f10ec163-fdf6-414d-97a4-dce3172c5e55", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -125001,7 +125001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be435eb2-9573-492d-92c6-a6e0c3e5a343", + "id": "1b196143-a75b-44b4-9797-4088c9aa57c6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125057,7 +125057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa39314d-ee35-4d15-be08-41e8d475e18d", + "id": "0a16539e-0fb3-44c0-a84b-51c24a756e94", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125113,7 +125113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "278efe72-474f-42f8-a861-5e06c6adad87", + "id": "1d9f208b-4c0c-4523-84f7-3f93e090cf6f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125169,7 +125169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92074db8-ed2c-4f4d-88e2-af3dbe49672e", + "id": "e6b554c9-b1e8-49e2-97be-778b1400ac34", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125225,7 +125225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30b91fa2-1dda-487b-9bd7-fc2ea39b0192", + "id": "be7dcb1c-07ce-4242-924f-aa224904ac23", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125287,7 +125287,7 @@ } }, { - "id": "54f9230a-fe36-4263-9a79-a18c20271adb", + "id": "9e537791-901c-4a47-89ee-43b070605004", "name": "Create Password Org Config", "request": { "name": "Create Password Org Config", @@ -125329,7 +125329,7 @@ }, "response": [ { - "id": "c02676b2-44e6-49bb-bbb4-f24c5870abde", + "id": "2042df2d-d883-4ac6-8f9f-b29a4abfb6c9", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -125385,7 +125385,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d9dc609-38b4-426d-afbb-2736ca8b05a4", + "id": "ebc402be-8417-4ea3-b328-03527fe697ba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125441,7 +125441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6516ed66-b065-4709-91d6-90ffeaea23ce", + "id": "99acfac9-94c1-435e-9fdb-e0b18e5db9f2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125497,7 +125497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5641730d-5415-4fc9-a9af-456ac3c18aab", + "id": "e0ef22e3-17c7-471c-adcc-e9c0afd14253", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125553,7 +125553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7078d4e-2cea-4309-afb8-e9ed24cba9c1", + "id": "57e20455-b308-4356-8a44-0d1ab9d00251", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125609,7 +125609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2613988c-6a90-4d48-89c9-233f802a7776", + "id": "fcc4aa00-9a1f-4124-8cdc-9a96e1f2d6f7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125677,7 +125677,7 @@ "description": "Use this API to implement password dictionary functionality.\nWith this functionality in place, administrators can create password dictionaries to prevent users from using certain words or characters in their passwords.\n\nA password dictionary is a list of words or characters that users are prevented from including in their passwords.\nThis can help protect users from themselves and force them to create passwords that are not easy to break.\n\nA password dictionary must meet the following requirements to for the API to handle them correctly:\n\n- It must be in .txt format.\n\n- All characters must be UTF-8 characters.\n\n- Each line must contain a single word or character with no spaces or whitespace characters.\n\n- It must contain at least one line other than the locale string.\n\n- Each line must not exceed 128 characters.\n\n- The file must not exceed 2500 lines.\n\nAdministrators should also consider the following when they create their dictionaries:\n\n- Lines starting with a # represent comments.\n\n- All words in the password dictionary are case-insensitive.\nFor example, adding the word \"password\" to the dictionary also disallows the following: PASSWORD, Password, and PassWord.\n\n- The dictionary uses substring matching.\nFor example, adding the word \"spring\" to the dictionary also disallows the following: Spring124, 345SprinG, and 8spring.\nUsers can then select 'Change Password' to update their passwords.\n\nAdministrators must do the following to create a password dictionary:\n\n- Create the text file that will contain the prohibited password values.\n\n- If the dictionary is not in English, they must add a locale string to the top line: locale:`languageCode`_`countryCode`\n\nThe languageCode value refers to the language's 2-letter ISO 639-1 code.\nThe countryCode value refers to the country's 2-letter ISO 3166-1 code.\n\nRefer to this list https://docs.oracle.com/cd/E13214_01/wli/docs92/xref/xqisocodes.html to see all the available ISO 639-1 language codes and ISO 3166-1 country codes.\n\n- Upload the .txt file to IdentityNow with [Update Password Dictionary](https://developer.sailpoint.com/idn/api/beta/update-password-dictionary). Uploading a new file always overwrites the previous dictionary file.\n\nAdministrators can then specify which password policies check new passwords against the password dictionary by doing the following: In the Admin panel, they can use the Password Mgmt dropdown menu to select Policies, select the policy, and select the 'Prevent use of words in this site's password dictionary' checkbox beside it.\n\nRefer to [Configuring Advanced Password Management Options](https://documentation.sailpoint.com/saas/help/pwd/adv_config.html) for more information about password dictionaries.\n", "item": [ { - "id": "0f760a43-90cd-4d0c-bb63-7f8b7dd0f649", + "id": "f1920140-c48b-4e71-a336-afbb77856dd2", "name": "Get Password Dictionary", "request": { "name": "Get Password Dictionary", @@ -125706,7 +125706,7 @@ }, "response": [ { - "id": "4b93b295-73d0-4f32-abd6-1f9a6e124ffa", + "id": "afb4c211-9e67-40d9-b58a-d1b4206db5f6", "name": "A password dictionary response", "originalRequest": { "url": { @@ -125744,12 +125744,12 @@ "value": "text/plain" } ], - "body": "minim", + "body": "exercitation laboris ex sit", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "2215d94f-872c-4c42-94b2-93bae07805f2", + "id": "58983cd1-48ae-4b19-8134-abf3913fc8f2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125792,7 +125792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84d99ba1-2bd7-4c26-9f7e-bd113fcf4fd5", + "id": "e12690ef-380c-4581-bcd7-a9d76c6e2b08", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125835,7 +125835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "479f05ff-af78-4da7-aeb3-a8d2a4a3b67a", + "id": "c147efaa-6729-419c-9afa-9301bc43714e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125878,7 +125878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32fd9249-a329-43b0-a47b-df7bfba7bbd6", + "id": "34143b61-7074-48cc-94ab-1b98b535fa03", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -125921,7 +125921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbb36655-9908-475f-97a3-c0e9a56572ac", + "id": "5e1f4edd-4cb2-45f3-ae1a-8acb6a4dfb3b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125964,7 +125964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04c1f865-0b0f-48aa-ba7f-a80026d94b0c", + "id": "79462b09-1143-40d7-a607-0d0f2036b927", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126013,7 +126013,7 @@ } }, { - "id": "1fc405d9-d3fa-4abf-a6c1-6f9d94862bb9", + "id": "b71db73f-c97a-4ef2-9401-d34485d7658b", "name": "Update Password Dictionary", "request": { "name": "Update Password Dictionary", @@ -126051,7 +126051,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -126059,7 +126059,7 @@ }, "response": [ { - "id": "097e0917-8748-4fed-82c1-e46dd0f432dc", + "id": "43d25042-cb50-40e7-bd17-cfe41fad8ba9", "name": "Successfully updated.", "originalRequest": { "url": { @@ -126096,7 +126096,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -126109,7 +126109,7 @@ "_postman_previewlanguage": "text" }, { - "id": "086c1087-9437-4071-9bd1-39304359bfbd", + "id": "c6b00a84-5e13-4744-89f1-673b474d6de1", "name": "Created.", "originalRequest": { "url": { @@ -126146,7 +126146,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -126159,7 +126159,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d17850eb-88b9-4056-92c2-eb787af51760", + "id": "818dc9f2-39c9-4957-9261-ba65fb8f8169", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126200,7 +126200,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -126219,7 +126219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01d1ca7c-5fb7-417f-a7f9-e4ff66888450", + "id": "a3d0f1e2-0018-4dcc-85ae-e0a4e29cf027", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126260,7 +126260,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -126279,7 +126279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3926252e-e09b-470e-a776-68e8a90bcd4e", + "id": "0cfeba16-ac3c-4a62-bcc8-3e9e2f7620f3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126320,7 +126320,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -126339,7 +126339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccd0c35d-3c50-44af-bdd6-f7fc42a24c7d", + "id": "b96630ce-7d58-4033-a41b-773e5cf560dd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -126380,7 +126380,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -126399,7 +126399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70738753-a5dd-4328-8145-2ab281982399", + "id": "1ce1ccaf-1c7b-4834-a0d8-f13fd3eac550", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126440,7 +126440,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -126459,7 +126459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9472fcf-33a9-4e6c-a3f0-568cb1c1da29", + "id": "277c515e-87be-48ed-8dce-f7fc2001771a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126500,7 +126500,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -126531,7 +126531,7 @@ "description": "Use this API to implement password management functionality.\nWith this functionality in place, users can manage their identity passwords for all their applications.\n\nIn IdentityNow, users can select their names in the upper right corner of the page and use the drop-down menu to select Password Manager.\nPassword Manager lists the user's identity's applications, possibly grouped to share passwords.\nUsers can then select 'Change Password' to update their passwords.\n\nGrouping passwords allows users to update their passwords more broadly, rather than requiring them to update each password individually.\nPassword Manager may list the applications and sources in the following groups:\n\n- Password Group: This refers to a group of applications that share a password.\nFor example, a user can use the same password for Google Drive, Google Mail, and YouTube.\nUpdating the password for the password group updates the password for all its included applications.\n\n- Multi-Application Source: This refers to a source with multiple applications that share a password.\nFor example, a user can have a source, G Suite, that includes the Google Calendar, Google Drive, and Google Mail applications.\nUpdating the password for the multi-application source updates the password for all its included applications.\n\n- Applications: These are applications that do not share passwords with other applications.\n\nAn organization may require some authentication for users to update their passwords.\nUsers may be required to answer security questions or use a third-party authenticator before they can confirm their updates.\n\nRefer to [Managing Passwords](https://documentation.sailpoint.com/saas/user-help/accounts/passwords.html) for more information about password management.\n", "item": [ { - "id": "3055bc4a-3e4e-4276-abc9-5d43b634ddc0", + "id": "e16b2198-4114-4594-9764-8deb85c26b22", "name": "Generate a digit token", "request": { "name": "Generate a digit token", @@ -126574,7 +126574,7 @@ }, "response": [ { - "id": "adaa5f74-c720-401b-96df-ca9391386efc", + "id": "c7eb0ddb-0a82-48ac-ac1f-bcd05f647ddf", "name": "The digit token for password management.", "originalRequest": { "url": { @@ -126631,7 +126631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6db84610-dd1e-486d-9200-0eb1da5b4626", + "id": "59779a09-9062-4295-89c1-46ba203d7ada", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126688,7 +126688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "918c249e-f2ff-4276-b618-c6986344c234", + "id": "e281b70b-17f1-4f87-986d-574749c215f4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126745,7 +126745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d94683d0-2ba0-4c9f-bd2a-42a85fb6fefd", + "id": "311904b0-9c1f-40d7-abfe-35cef40e822e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126808,7 +126808,7 @@ } }, { - "id": "cddf22f2-1fd6-48fd-b764-aa03e7283a46", + "id": "0ccf6fbe-2263-45e4-b0d0-b5f579364402", "name": "Query Password Info", "request": { "name": "Query Password Info", @@ -126850,7 +126850,7 @@ }, "response": [ { - "id": "1155c0b5-657a-4088-8d89-ce776b791e11", + "id": "17f35ffe-dfc2-494a-b7e1-5c9258a3e579", "name": "Reference to the password info.", "originalRequest": { "url": { @@ -126906,7 +126906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c759d8e2-cb62-4584-a5db-075321f6973c", + "id": "82af8bb9-d987-4df3-896b-6534177ce3f7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126962,7 +126962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a84a2014-c520-46cd-bb3b-89fa8c2fa4af", + "id": "d006af75-5dab-47d5-8b3e-dbb048be78e9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127018,7 +127018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6447efa5-1481-47af-af49-e47fd0d6c22c", + "id": "efec6820-232f-4c91-a6b7-da65ed75a416", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127074,7 +127074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c096b8ec-09b2-4db2-8151-4b63b406e77a", + "id": "7c607fec-49a3-42f9-9f11-d890ddd6009c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127130,7 +127130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b83e3d18-baee-442d-ba16-67fdf2e4a79f", + "id": "f7ffe6f2-4a4a-4c2d-8783-a9beeaa0d8eb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127192,7 +127192,7 @@ } }, { - "id": "a701fa2e-5b68-4c47-8c80-2c6feb743997", + "id": "f57aeed1-d35b-4363-9f28-dc42629db46d", "name": "Set Identity's Password", "request": { "name": "Set Identity's Password", @@ -127234,7 +127234,7 @@ }, "response": [ { - "id": "ef36e478-5d2b-44e0-a505-9d830c63dfd5", + "id": "e934ed51-03ef-40da-9a84-dcf8c6c04659", "name": "Reference to the password change.", "originalRequest": { "url": { @@ -127290,7 +127290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1763f3d4-ac82-46c8-8c7f-63d18edceb98", + "id": "7904d731-5a0c-4865-95a7-29d22573fb1c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127346,7 +127346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e229b52d-8fc0-4acd-800a-b5eb48e9db79", + "id": "39c26308-7110-4323-a469-254e2049fcfb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127402,7 +127402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acc9303f-dbed-43ba-afcc-fd7ad6aeef7b", + "id": "51345c7e-bfe2-473e-9e49-823909be00ac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127458,7 +127458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe1828c7-2481-42f8-aa10-569fdd83fc7f", + "id": "9ac7dbaf-9304-40dc-9f38-8ec18c3a33a7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127514,7 +127514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45361e79-620d-4b3c-8361-523d5a30a6ae", + "id": "88c270c9-8835-4f24-ae6b-a4b378c7deb3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127576,7 +127576,7 @@ } }, { - "id": "11fe7261-22d5-461d-8f32-cf52faa7ffec", + "id": "129feb42-95ca-48c3-8e2a-903b75258ab9", "name": "Get Password Change Request Status", "request": { "name": "Get Password Change Request Status", @@ -127596,7 +127596,7 @@ "variable": [ { "type": "any", - "value": "minim", + "value": "exercitation laboris ex sit", "key": "id", "disabled": true, "description": { @@ -127617,7 +127617,7 @@ }, "response": [ { - "id": "ac2d07b9-4f26-4660-bbce-b085c785cdc5", + "id": "c9555c2f-7f24-42e7-9095-71f2cb1ea0d9", "name": "Status of the password change request", "originalRequest": { "url": { @@ -127661,7 +127661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85f3027a-27cd-4873-b5c8-e52e14e364f2", + "id": "c764cfa2-cfdf-4198-858b-37b634f6a871", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127705,7 +127705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7dbbf42-08a7-40d4-9fcb-115170bc4b35", + "id": "e6c7b758-fc08-46a0-9cde-e1556cd58811", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127749,7 +127749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c6e15dc-7734-43a6-837a-33d0e417856f", + "id": "42252a7b-f530-4c5f-b5ad-a662c4542324", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127793,7 +127793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "396cab37-3e1c-417f-a945-03abb9a54273", + "id": "b9728de8-2c80-4c05-9b1f-5d585b9617c2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -127837,7 +127837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92d6a434-439a-4f2f-8283-024070c166e4", + "id": "890d9151-41a8-4296-98da-8dd141ce403a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127893,7 +127893,7 @@ "description": "Use this API to implement password sync group functionality.\nWith this functionality in place, administrators can group sources into password sync groups so that all their applications share the same password.\nThis allows users to update the password for all the applications in a sync group if they want, rather than updating each password individually.\n\nA password sync group is a group of applications that shares a password.\nAdministrators create these groups by grouping the applications' sources.\nFor example, an administrator can group the ActiveDirectory, GitHub, and G Suite sources together so that all those sources' applications can also be grouped to share a password.\nA user can then update his or her password for ActiveDirectory, GitHub, Gmail, Google Drive, and Google Calendar all at once, rather then updating each one individually.\n\nThe following are required for administrators to create a password sync group in IdentityNow:\n\n- At least two direct connect sources connected to IdentityNow and configured for Password Management.\n\n- Each authentication source in a sync group must have at least one application. Refer to [Adding and Resetting Application Passwords](https://documentation.sailpoint.com/saas/help/pwd/adv_config.html#adding-and-resetting-application-passwords) for more information about adding applications to sources.\n\n- At least one password policy. Refer to [Managing Password Policies](https://documentation.sailpoint.com/saas/help/pwd/policies.html) for more information about password policies.\n\nIn the Admin panel in IdentityNow, administrators can use the Password Mgmt dropdown menu to select Sync Groups.\nTo create a sync group, administrators must provide a name, choose a password policy to be enforced across the sources in the sync group, and select the sources to include in the sync group.\n\nAdministrators can also delete sync groups in IdentityNow, but they should know the following before they do:\n\n- Passwords related to the associated sources will become independent, so changing one will not change the others anymore.\n\n- Passwords for the sources' connected applications will also become independent.\n\n- Password policies assigned to the sync group are then assigned directly to the associated sources.\nTo change the password policy for a source, administrators must edit it directly.\n\nOnce the password sync group has been created, users can update the password for the group in Password Manager.\n\nRefer to [Managing Password Sync Groups](https://documentation.sailpoint.com/saas/help/pwd/sync_grps.html) for more information about password sync groups.\n", "item": [ { - "id": "2c3daca7-6a7d-46ab-9701-185513ebf844", + "id": "a64b89b6-dac3-4f4b-91a3-da5ad0600e9e", "name": "Get Password Sync Group List", "request": { "name": "Get Password Sync Group List", @@ -127950,7 +127950,7 @@ }, "response": [ { - "id": "96609980-e929-4bed-beba-42cac29131c5", + "id": "f4560eb7-3db3-4d03-bd38-cdff4dc383f5", "name": "A list of password sync groups.", "originalRequest": { "url": { @@ -128021,7 +128021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "212ba288-d3df-4dd4-b6a4-d45f5a70ddce", + "id": "8de59ad9-c966-46c4-b083-4ac2b3719069", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128092,7 +128092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73eb6c62-adb3-4448-80cc-e6aa7484bf36", + "id": "fee74b9e-f332-4cc8-9cba-046c388aa89b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128163,7 +128163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd3a131b-e875-446e-8ca0-59d21728c17e", + "id": "d052352c-9d2f-4986-86d8-4afb9f1a4179", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128234,7 +128234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68d647a0-8258-4ec9-9430-1d3e9a39834a", + "id": "4301d95c-6392-4979-96e1-f3820c320738", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128305,7 +128305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69f6d416-0d10-4ff2-b86c-3e091fd3077d", + "id": "a4d506b9-2cb2-44db-b75b-39b766d574a4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128382,7 +128382,7 @@ } }, { - "id": "c3ea7ee0-8e05-441a-ad86-eab7e6758b16", + "id": "cc79072e-3d6f-4ba2-b89e-49b906921aba", "name": "Create Password Sync Group", "request": { "name": "Create Password Sync Group", @@ -128424,7 +128424,7 @@ }, "response": [ { - "id": "444c6f4d-294b-4cfb-8284-ef48c7434281", + "id": "77a40a56-1cad-49cf-8386-ef61813fed59", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -128480,7 +128480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ef07ce3-0610-471e-af35-21c82947fcb5", + "id": "ebda9f53-d93e-486b-8cef-52b11d0eb71b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128536,7 +128536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f41f2fed-3529-4695-8cb9-99b908078822", + "id": "26c08eb9-7db2-4493-8626-12ac6c868c92", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128592,7 +128592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25a2e8dd-628b-4276-a1cb-6d40b0fa159f", + "id": "248067ad-e54a-49eb-9054-d64197ecf0aa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128648,7 +128648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdc83efe-f107-43b8-8fa2-f698989392d2", + "id": "cd2f1cae-ebf8-4862-bb37-91ffff88329c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128704,7 +128704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ad24e5c-b258-4559-8e26-b92319f6b580", + "id": "3cd7399c-a9c0-41d8-8811-dd441352a3b2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128766,7 +128766,7 @@ } }, { - "id": "b81b1baf-f022-46e0-afd6-ef80f934de18", + "id": "f515fd1c-ac35-423b-b7bf-ebeb7dc9134a", "name": "Get Password Sync Group by ID", "request": { "name": "Get Password Sync Group by ID", @@ -128807,7 +128807,7 @@ }, "response": [ { - "id": "f1770d80-427c-4cc4-9087-b327d223a0ca", + "id": "eb475b4a-c613-41de-94cc-af8314a37475", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -128851,7 +128851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aac0d808-ee0f-4485-a0c9-1adc61ad8539", + "id": "861eaff8-0668-4a83-ad06-10d15858cfec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128895,7 +128895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02cc05d7-6ec6-438e-9475-a05ee0062861", + "id": "11732868-cad7-47a5-955d-e743b9db788d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128939,7 +128939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "844d5e60-6716-4b34-bf80-cd775fbdfdae", + "id": "96432742-986f-4d64-b7d0-4851a2802cf6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128983,7 +128983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c38ae2fa-de5c-4558-bc9b-ad584778e2be", + "id": "c7ef34a9-eda2-43c5-88de-58fb6d508029", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -129027,7 +129027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1439a93-9301-4ff9-8538-5a84037e701a", + "id": "461e49c2-a9b9-4f8c-a7e4-e92bc9df31dd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129071,7 +129071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56379cce-6446-4440-99e3-3bab6ccd4436", + "id": "9fbd6249-34a9-4e24-9c96-9f1803826339", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129121,7 +129121,7 @@ } }, { - "id": "6cb82481-35a8-4a2a-8c6b-09731622263b", + "id": "375a8c67-8976-44c5-b8b7-3521a4274b06", "name": "Update Password Sync Group by ID", "request": { "name": "Update Password Sync Group by ID", @@ -129175,7 +129175,7 @@ }, "response": [ { - "id": "c6862665-ec3c-4b3a-8008-a792954c28bf", + "id": "f8483420-c8d2-4ce8-9b0a-93b7bb92fcb5", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -129232,7 +129232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4638cfb1-3fe7-4685-815e-f5f4b5c82bec", + "id": "a2ed7d74-31ce-4f8c-925d-01da77705ee6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129289,7 +129289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5e74627-f48d-44c0-8c9e-768d1f3e8254", + "id": "192b2f9e-8a1a-46fd-aaee-d5f5e333e0f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129346,7 +129346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5f1d5ab-2ecd-441e-a2c7-376ac2ee2d3b", + "id": "3c4851fe-8876-40f3-a557-0902be1345c4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129403,7 +129403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2b6ae1b-d4d8-4293-b3b9-015cebec1d5b", + "id": "de78b46e-404c-4860-9541-414e9c22918c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -129460,7 +129460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d25e21c-1326-497e-a9a7-b1043324f638", + "id": "0a5fc554-84e9-4f08-ad37-fb847104e341", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129517,7 +129517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "264dc734-214e-4bc6-b7de-14eabd3c3b34", + "id": "73798a92-3cda-44ea-8526-504fdeabddf9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129580,7 +129580,7 @@ } }, { - "id": "83c0ea34-8ac8-49ef-9eaa-91e617120877", + "id": "583c9150-7628-4969-8a0d-8e5e96ef126c", "name": "Delete Password Sync Group by ID", "request": { "name": "Delete Password Sync Group by ID", @@ -129621,7 +129621,7 @@ }, "response": [ { - "id": "4d694b79-42d8-479a-97f5-0677b4b1e1e7", + "id": "1c9da725-a58d-4ee4-aedd-b018a574bfa4", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -129655,7 +129655,7 @@ "_postman_previewlanguage": "text" }, { - "id": "cd129027-4092-4be9-b646-14cbc4bf848f", + "id": "c222eeb0-7cc3-46d8-8b99-50b2512f1b62", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129699,7 +129699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1d7f075-b8f5-4337-a0f2-779b37916427", + "id": "3dce1b6d-bc9e-425c-8017-1e2e0b24115b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129743,7 +129743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92cf4667-75a0-4995-b003-bd96b1f4af8f", + "id": "dbafc25d-ba1a-4f2c-848f-76f7682c6fbe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129787,7 +129787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e378c46-a85b-4cae-9ffb-38425cf899ee", + "id": "05bd82fa-fd75-4f4e-9e55-b5301d93e179", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129831,7 +129831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb4c860c-6aac-4aea-b6af-ad7a0f07b3af", + "id": "603ae760-f5fd-4362-ad82-82d8187f39a0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129887,7 +129887,7 @@ "description": "Use this API to implement personal access token (PAT) functionality.\nWith this functionality in place, users can use PATs as an alternative to passwords for authentication in IdentityNow.\n\nPATs embed user information into the client ID and secret.\nThis replaces the API clients' need to store and provide a username and password to establish a connection, improving IdentityNow organizations' integration security.\n\nIn IdentityNow, users can do the following to create and manage their PATs: Select the dropdown menu under their names, select Preferences, and then select Personal Access Tokens.\nThey must then provide a description about the token's purpose.\nThey can then select 'Create Token' at the bottom of the page to generate and view the Secret and Client ID.\n\nRefer to [Managing Personal Access Tokens](https://documentation.sailpoint.com/saas/help/common/generate_tokens.html) for more information about PATs.\n", "item": [ { - "id": "e00df2a9-1175-41b1-9864-8685e93ad2ed", + "id": "8b702c70-19fb-40dc-b4e5-2eda887b2f37", "name": "List Personal Access Tokens", "request": { "name": "List Personal Access Tokens", @@ -129935,7 +129935,7 @@ }, "response": [ { - "id": "199727ba-00db-4ff7-9805-856e26c9c0d3", + "id": "b30382a7-6834-444d-a92e-1e43627c06bf", "name": "List of personal access tokens.", "originalRequest": { "url": { @@ -129997,7 +129997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1784aea5-831a-4b66-9c4e-3b618210a68a", + "id": "c9792f95-49d2-41c0-9361-c473e026a3ac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130059,7 +130059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03b2500e-5029-4b74-a43e-e4c8263ae650", + "id": "9e52fbed-78fe-430b-9851-81e2b6cf0651", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130121,7 +130121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9db86230-e10f-4533-83f7-b2c37e426384", + "id": "c988f558-0e7c-4b4e-aa68-59651a269863", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130183,7 +130183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "172de731-891d-4031-b46d-776ea57bf838", + "id": "3f4c8640-af85-49f7-9f98-1d3a15c7499c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130245,7 +130245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab29ea88-5d73-45a4-bf32-6d1987659134", + "id": "b13d8607-a0ee-4ca6-ac1c-d9f70cde8cdb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130313,7 +130313,7 @@ } }, { - "id": "acd2df67-7429-4ab2-b46b-2ad06118b52b", + "id": "32afdab3-2882-4b14-aa64-8af976a50c2e", "name": "Create Personal Access Token", "request": { "name": "Create Personal Access Token", @@ -130355,7 +130355,7 @@ }, "response": [ { - "id": "bd478217-ba12-4609-a95c-26920d4ccde6", + "id": "5ae6c111-80b3-47b4-8669-3537039686d2", "name": "Created. Note - this is the only time Personal Access Tokens' secret attribute will be displayed.", "originalRequest": { "url": { @@ -130411,7 +130411,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad7283ff-6d93-4b75-b5fd-5ba45e2e6fb2", + "id": "880a178b-f692-4a75-89aa-be0b7be1e842", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130467,7 +130467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5a3f173-4207-4048-b105-a845b57b7834", + "id": "acfbb786-6cfd-4505-ad91-d22059e6e970", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130523,7 +130523,7 @@ "_postman_previewlanguage": "json" }, { - "id": "689bb4a8-c215-4af4-991f-9130b21d2a51", + "id": "52a8c9df-6e5d-4422-844f-bae38b694b68", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130579,7 +130579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b16bb6ea-16e9-4543-8754-f3876a22a66f", + "id": "c6e03417-ba60-4e13-bac2-f3ca92d0eb3b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130635,7 +130635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9036ddbb-4fcc-48b2-a055-417c6f2242e1", + "id": "6924409f-cb50-4b1f-bbdc-f42f1efcec83", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130697,7 +130697,7 @@ } }, { - "id": "f6ea2a92-6303-4504-b852-47b7b2deb958", + "id": "160e4152-5fb1-4fe8-a462-72b5af522253", "name": "Patch Personal Access Token", "request": { "name": "Patch Personal Access Token", @@ -130751,7 +130751,7 @@ }, "response": [ { - "id": "6c10fb14-b7af-4177-b4b5-e4a8ab7761d4", + "id": "d895f338-43b1-4552-a3d2-bd6d8286efa6", "name": "Indicates the PATCH operation succeeded, and returns the PAT's new representation.", "originalRequest": { "url": { @@ -130808,7 +130808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "276cfc77-637c-4d7f-b3e4-03c4a3d5218b", + "id": "2f716a84-e248-45da-907c-e748a52951fd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130865,7 +130865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7281fd61-7695-4a79-ac1d-945904b6fc97", + "id": "d6f8217f-a472-43f0-b8a3-206f35b89617", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130922,7 +130922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "451f59c9-ad22-41c2-b0a8-d10ab65bdeff", + "id": "a4f22ae9-7f8a-4a83-a893-32021318a2e5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130979,7 +130979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e5f7a7b-6870-44f0-bdb6-1565b11a44ae", + "id": "d1e79350-05d1-42a6-855a-b3ebabfa843f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -131036,7 +131036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53efdd3d-6453-4852-8c33-f87b5210a66a", + "id": "44725b77-87a4-41d0-b76e-1b3d19cb4207", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131093,7 +131093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4470ce02-bee5-478b-8ab0-0f409ba148e4", + "id": "445bf46f-c106-4856-bb75-e0fdd9f73dd1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131156,7 +131156,7 @@ } }, { - "id": "cf803f1a-77fa-4070-a611-1554211c8b73", + "id": "126d4d66-60f0-42aa-92e2-593332bd7014", "name": "Delete Personal Access Token", "request": { "name": "Delete Personal Access Token", @@ -131197,7 +131197,7 @@ }, "response": [ { - "id": "804e7694-8e6e-47d4-be1a-c1eb1902a7bd", + "id": "36ada38a-2578-4b78-807d-116a0a82c91c", "name": "No content.", "originalRequest": { "url": { @@ -131231,7 +131231,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1145c720-90d4-4bd0-a9ce-4c1a73a8a2be", + "id": "30524ef8-8dff-40b2-ab65-6d7f580f6512", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131275,7 +131275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01573fd5-6bcd-45f1-87cb-7a5d18c912cb", + "id": "132e6750-cd6e-401e-ad89-3f0c447eaabd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131319,7 +131319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0aad720-2698-4b56-94c9-5db396b3fb43", + "id": "1b5e856b-7d2e-46a6-983a-0d5549f86706", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131363,7 +131363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c53f1e63-af21-434a-8b81-951835bfd3b0", + "id": "42adbf9c-fc92-4226-bf60-e96663de3d68", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -131407,7 +131407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da481796-cab0-4dc3-9714-36b265961f7d", + "id": "24d65b16-e7bf-4104-a607-8cf4bbf39817", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131451,7 +131451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69ba58aa-9030-4ea5-887b-8e4b36b0fc65", + "id": "f88044c0-a415-40b0-8edd-5f73b1f7d86b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131507,7 +131507,7 @@ "description": "Use this API to implement public identity configuration functionality.\nWith this functionality in place, administrators can make up to 5 identity attributes publicly visible so other non-administrator users can see the relevant information they need to make decisions.\nThis can be helpful for access approvers, certification reviewers, managers viewing their direct reports' access, and source owners viewing their tasks.\n\nBy default, non-administrators can select an identity and view the following attributes: email, lifecycle state, and manager.\nHowever, it may be helpful for a non-administrator reviewer to see other identity attributes like department, region, title, etc.\nAdministrators can use this API to make those necessary identity attributes public to non-administrators.\n\nFor example, a non-administrator deciding whether to approve another identity's request for access to the Workday application, whose access may be restricted to members of the HR department, would want to know whether the identity is a member of the HR department.\nIf an administrator has used [Update Public Identity Config](https://developer.sailpoint.com/idn/api/beta/update-public-identity-config) to make the \"department\" attribute public, the approver can see the department and make a decision without requesting any more information.\n", "item": [ { - "id": "6b375ce5-881d-4962-ac88-9e15d5ad4521", + "id": "c4ba1672-dc52-472e-b7bc-25d64e788d65", "name": "Get Public Identity Config", "request": { "name": "Get Public Identity Config", @@ -131536,7 +131536,7 @@ }, "response": [ { - "id": "1dead39b-eeb0-4267-a4a6-0d2e2e4a617c", + "id": "45c468da-3750-4557-8792-d8b527fecfe2", "name": "Request succeeded.", "originalRequest": { "url": { @@ -131579,7 +131579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc0666c0-8f77-4d3c-9dae-f92e135abc1c", + "id": "962a5cf0-014d-4e00-b2ba-f049ea407e75", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131622,7 +131622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49742db7-a5b8-4130-9692-8ac92be61407", + "id": "6f5ce872-6b8b-486b-9e6c-06b94e45ed11", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131665,7 +131665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8721ec4a-8ac9-4e71-b6ac-90d72ac37794", + "id": "6524e73b-0faa-4b8f-90ce-961b5320088d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131708,7 +131708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67c2cfdb-c619-4026-9179-e3784063cdfc", + "id": "271be351-0b1d-442d-b4a6-6083ce420e9c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131751,7 +131751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fe5028c-000e-42bd-8bb0-238e78aa8ca9", + "id": "51464f86-e83b-42be-abf7-7b756d9793c5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131800,7 +131800,7 @@ } }, { - "id": "6118b652-e52b-4c88-afa8-2b614877332a", + "id": "496c2cae-e134-4c08-b127-80e1affc2a17", "name": "Update Public Identity Config", "request": { "name": "Update Public Identity Config", @@ -131842,7 +131842,7 @@ }, "response": [ { - "id": "6b520a7c-ade4-460b-8688-cfc8a833664a", + "id": "efdce4d1-3c53-46f3-a75c-9626972e5abc", "name": "Request succeeded.", "originalRequest": { "url": { @@ -131898,7 +131898,7 @@ "_postman_previewlanguage": "json" }, { - "id": "867490db-8b6d-4e8b-bd9a-96469277cfff", + "id": "ac087948-326c-45b3-9e31-a15e0627d8e2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131954,7 +131954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f828c12-6ca3-4525-8364-b91386dba730", + "id": "946be3c2-0208-49c7-92ef-b07c7d261033", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132010,7 +132010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97afa30f-f275-4bb1-b04a-e937c5894e09", + "id": "7ceb4b3b-6ccb-4d09-8aad-fa67c25fea3d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132066,7 +132066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cbe53b2-2f94-4656-af6f-837447580bab", + "id": "4d9f01c0-e8a1-4224-9122-0a9b180368c3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132122,7 +132122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72cd07e3-2e32-4e3a-9bb7-a4b97e523e53", + "id": "8542b2a2-3214-4bd9-81db-f6413f6be8db", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132190,7 +132190,7 @@ "description": "Use this API to implement requestable object functionality.\nWith this functionality in place, administrators can determine which access items can be requested with the [Access Request APIs](https://developer.sailpoint.com/idn/api/beta/access-requests), along with their statuses.\nThis can be helpful for administrators who are implementing and customizing access request functionality as a way of checking which items are requestable as they are created, assigned, and made available.\n", "item": [ { - "id": "e26c9440-08e7-4b6e-8116-2989a5bd3c6b", + "id": "6ee2885f-8d36-48a6-86f7-801f9bb5361d", "name": "Requestable Objects List", "request": { "name": "Requestable Objects List", @@ -132301,7 +132301,7 @@ }, "response": [ { - "id": "95337df1-42c1-4777-84be-4f19163ace7f", + "id": "cf9f5d22-a2f3-4e47-87e6-5e7a91281474", "name": "List of requestable objects", "originalRequest": { "url": { @@ -132426,7 +132426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "732be5e6-b9c0-4843-8b76-a983e1a21101", + "id": "c5682765-0c56-4e88-bb83-3eeac9021934", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132551,7 +132551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c251e913-0a97-46e0-8328-491c1024d2ed", + "id": "25ea96df-2ff2-4b3b-8c7f-642c0d6ad092", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132676,7 +132676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb50d327-fe4c-408a-8ead-e3d4b06f40e2", + "id": "b7eecb5f-4560-4db4-a4d8-540d8d8b2386", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132801,7 +132801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35881f1c-8e5a-4027-8930-09ca2c9ab37d", + "id": "a7fe8fb3-6ca0-4d3b-b805-a748504a6718", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132926,7 +132926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f18c54d4-90a2-46f2-962a-3d6e8dcdc6fb", + "id": "ed4085a6-dbfc-4ae4-b609-13856da73004", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133063,7 +133063,7 @@ "description": "", "item": [ { - "id": "c8a154b2-8842-4f1d-b332-9e495f9f3577", + "id": "39b13977-027a-46af-acf9-3971cb45eef5", "name": "Generate insights for roles", "request": { "name": "Generate insights for roles", @@ -133093,7 +133093,7 @@ }, "response": [ { - "id": "7f97d7ab-8c73-4aed-9e91-1ffa6317183c", + "id": "ab1d0513-fdb3-4b33-99e5-e9dd7fdcf8bb", "name": "Submitted a role insights generation request", "originalRequest": { "url": { @@ -133137,7 +133137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d429e9eb-88d4-4a60-bb01-038c3fe75ce5", + "id": "d46f0c05-9dbb-48c6-aa05-99b1dc0be57b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133181,7 +133181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f82a489-8fcf-44ba-a67a-07f46a695e52", + "id": "d54b2e61-052c-49e9-9278-aa7b9131dca7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133225,7 +133225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4805cb1-dbe9-410a-8494-34364eb8fe0c", + "id": "f6ef9b6f-6db2-46fd-a1f5-90c1230bfd93", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133269,7 +133269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19229e76-e566-460f-9d27-0a3b1967209c", + "id": "40001468-efda-48a3-8717-a4b7a1120772", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133313,7 +133313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be51397d-adae-4899-ac76-e8c0edc9671f", + "id": "677396a8-eeef-42e1-ae41-a96618921438", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133363,7 +133363,7 @@ } }, { - "id": "1929cf79-9ed0-48eb-9116-d18d19a2843a", + "id": "b30af2c9-e5ce-49a8-b5ad-dd1dcd6ee64a", "name": "Returns metadata from prior request.", "request": { "name": "Returns metadata from prior request.", @@ -133405,7 +133405,7 @@ }, "response": [ { - "id": "f4880952-6a7d-4c0f-8d22-9f3bc55a58a3", + "id": "facc4a12-d276-4e8c-9431-91431182c322", "name": "Succeeded. Returns details of an earlier role insights request.", "originalRequest": { "url": { @@ -133450,7 +133450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "501c56f4-d4a3-440b-b7cd-9c66daa02524", + "id": "b8abbe2e-4cda-42de-b9da-d5d1fd32787a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133495,7 +133495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac8759a2-f0ba-4b83-bb1b-c3301e2eb7a8", + "id": "8c55d6d9-75cb-4857-bc1f-919b167528c0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133540,7 +133540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef09b94c-c120-457a-a700-bf93ef5be42d", + "id": "3eb795b2-2126-41aa-8f75-9a344f07d5d7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133585,7 +133585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "433be49f-ffd0-4e51-a110-16a802a387cd", + "id": "91a3ff37-dab5-4bf7-8a49-3f2b2785300b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133630,7 +133630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc6c48a9-bf94-40ee-bb78-333db7fd5fd9", + "id": "f79d7a47-5204-48e0-8450-b6b5389e03f9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133681,7 +133681,7 @@ } }, { - "id": "8754caf0-e807-4104-95c4-f2ebea689263", + "id": "b8cf014b-ba61-49ee-b588-b9374ba80f32", "name": "Get role insights summary information", "request": { "name": "Get role insights summary information", @@ -133711,7 +133711,7 @@ }, "response": [ { - "id": "1c36c3a1-0895-4bcf-befe-e4d319e8821f", + "id": "bb387cc4-1a32-460d-86b9-9c314d6b1d25", "name": "Succeeded. Returns high level counts.", "originalRequest": { "url": { @@ -133750,12 +133750,12 @@ "value": "application/json" } ], - "body": "{\n \"numberOfUpdates\": 31921693,\n \"lastGenerated\": \"2020-05-19T13:49:37.385Z\",\n \"entitlementsIncludedInRoles\": 45,\n \"totalNumberOfEntitlements\": 250,\n \"identitiesWithAccessViaRoles\": 550,\n \"totalNumberOfIdentities\": 980\n}", + "body": "{\n \"numberOfUpdates\": 60431802,\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": "eff282a0-346e-4012-b5cb-3368219e9ea6", + "id": "8657e474-7aa6-4fa1-8a0c-ced5fdf02706", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133799,7 +133799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff5085eb-28c6-46ef-83ec-733baea587e6", + "id": "6cdcfd91-fde5-4655-9095-d479df30baef", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133843,7 +133843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2445ea9a-09d3-405a-97f5-e3a26d6952cf", + "id": "5f96679a-52d4-4302-80c6-52fbcc940c07", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133887,7 +133887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "616582b7-ffaa-4b4a-9dc8-dd8c2cb649b4", + "id": "69458b20-dd4d-4155-98e9-c2c56c5b4083", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133937,7 +133937,7 @@ } }, { - "id": "dd0d8187-9e71-49fb-b257-8436982b9b45", + "id": "c6f9c488-c47b-40ce-934a-6071949b51b7", "name": "Get role insights", "request": { "name": "Get role insights", @@ -134012,7 +134012,7 @@ }, "response": [ { - "id": "e93188d6-dfaa-435a-a9c7-b8a53c70b4cc", + "id": "1bb1734e-3f94-4f7c-9157-2f4c2b77182f", "name": "Succeeded. Returns a list of roles with information about insights for each role.", "originalRequest": { "url": { @@ -134101,7 +134101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9c59e78-0c80-4272-a2a4-4e3cd2f55a63", + "id": "c5e496a9-8aa1-43a9-8670-0ff3e6e204ca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134190,7 +134190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d712c38-23f5-4972-bcb4-4169963c65db", + "id": "34b5a976-9d40-40c9-b38e-20a42b24b245", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134279,7 +134279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2c83ff3-8a91-4143-b65b-5486a83ec194", + "id": "3900c59f-4bd7-4958-a22f-9f3622d2a68d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134368,7 +134368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f1172cc-ce02-4120-bf17-a8c7924e6a22", + "id": "fe9d4c64-6ba9-4c02-8871-dd138048928c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134463,7 +134463,7 @@ } }, { - "id": "f8abf5b5-33ba-4f67-9cfc-82f73b4c623d", + "id": "3ebed378-f773-4f7e-8d09-031e372628d6", "name": "Get a single role insight", "request": { "name": "Get a single role insight", @@ -134504,7 +134504,7 @@ }, "response": [ { - "id": "0ce9b27e-da2f-4515-89bd-9d423810dce1", + "id": "5dcdd11a-af77-4273-844b-e055c36d0aa3", "name": "Succeeded. Returns information about insights for a single role.", "originalRequest": { "url": { @@ -134548,7 +134548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38fcb638-c5eb-4082-9a04-6c787cd72d9d", + "id": "722ff32a-6423-4b8f-a7d3-deaaac540b0d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134592,7 +134592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14c9eb6e-b49a-468b-9778-f6ca65b6c97b", + "id": "b11c989f-1f14-4632-9f4f-316c2971950d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134636,7 +134636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df5fae5d-99e1-4594-acf8-46754a34f2e1", + "id": "21641d55-a094-46e5-acaa-0791da14eae8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134680,7 +134680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fb504ad-6049-4e52-9315-626647125e72", + "id": "9dfcf8fd-6a9c-4e4a-9b68-9057324057ba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134730,7 +134730,7 @@ } }, { - "id": "f2b9b6f7-4f27-4f2e-ae8a-d4b6bdc51581", + "id": "f2390814-6105-4ccc-9b7c-fd7dad46395b", "name": "Get entitlement insights for a role", "request": { "name": "Get entitlement insights for a role", @@ -134755,7 +134755,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -134791,7 +134791,7 @@ }, "response": [ { - "id": "c8a455cd-5ddb-457e-9770-a40ac168b1dd", + "id": "0d96843b-4f35-478c-8605-9701f5e68595", "name": "Succeeded. Returns a list of entitlements to be added for a role.", "originalRequest": { "url": { @@ -134811,7 +134811,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -134850,12 +134850,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"nulla veniam\",\n \"id\": \"quis Lorem magna\",\n \"description\": \"ex veniam\",\n \"attribute\": \"in\",\n \"value\": \"aliquip laborum nulla \",\n \"source\": \"eu est ad\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000\n }\n },\n {\n \"name\": \"labore in sit tempor dolore\",\n \"id\": \"sed irure labore non\",\n \"description\": \"in aute occaeca\",\n \"attribute\": \"quis non est\",\n \"value\": \"dolor id\",\n \"source\": \"ea la\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000\n }\n }\n]", + "body": "[\n {\n \"name\": \"aute non amet\",\n \"id\": \"nostrud cillum in dolore anim\",\n \"description\": \"irure ut\",\n \"attribute\": \"amet labore reprehenderit adipisicing ut\",\n \"value\": \"ut\",\n \"source\": \"irure cupidatat\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000\n }\n },\n {\n \"name\": \"id enim\",\n \"id\": \"in dolore fugiat consequat\",\n \"description\": \"mollit veniam \",\n \"attribute\": \"sunt magna velit incididunt id\",\n \"value\": \"consequat non reprehenderit tempor\",\n \"source\": \"Lorem\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4c17857f-7cfc-4ec5-9030-49b00f7374ca", + "id": "306eb232-1e53-41e3-b8cc-2369583b1ce6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134875,7 +134875,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -134919,7 +134919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b20799cf-190c-4f2a-925c-f214eec0f92c", + "id": "6fb1751c-189e-43b9-944c-94e5fc37624f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134939,7 +134939,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -134983,7 +134983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17b8224e-1130-4f5e-a17d-77944bc8c6d4", + "id": "d61ed970-512d-40b8-b890-242713bb69eb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135003,7 +135003,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -135047,7 +135047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2acb3861-ff79-4f45-9461-a2c32c7a2e10", + "id": "c571938e-aa8c-4aca-872b-bc326f4dd4aa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135067,7 +135067,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -135117,7 +135117,7 @@ } }, { - "id": "ddea764a-3b15-434e-9965-97debad5a471", + "id": "e3f721ac-c8b6-4aa5-ae9c-47a4af10539d", "name": "Download entitlement insights for a role", "request": { "name": "Download entitlement insights for a role", @@ -135179,7 +135179,7 @@ }, "response": [ { - "id": "23cf1c6d-20f8-4c90-8651-14e61b3f50a7", + "id": "c24dd20f-4928-4e97-aa53-21b45f0c8da5", "name": "Succeeded. Returns a csv file containing a list of entitlements to be added for a role.", "originalRequest": { "url": { @@ -135239,12 +135239,12 @@ "value": "text/csv" } ], - "body": "minim", + "body": "exercitation laboris ex sit", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "ceb8b09a-e6f5-45ca-aef8-b82692093091", + "id": "36236392-aa38-4871-bd45-1d4b0e015c16", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135309,7 +135309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e3ed0ae-b2e6-4bff-b8b7-ebb1ddb24da7", + "id": "3f6538b8-8bce-4d78-ad5f-20b0124564c3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135374,7 +135374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bee9b10-609b-4311-9f51-f562d94a7f90", + "id": "11dcd679-713f-47cd-8adc-323ae9369396", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135439,7 +135439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c185eab-f305-4e38-ac74-2d58a407273b", + "id": "84d9cead-55e5-43be-8d4f-5dfec1ee655a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135510,7 +135510,7 @@ } }, { - "id": "eb975644-6294-4f01-b98a-a49508acb3f2", + "id": "6387a378-7bc0-41b3-8733-789f7663872b", "name": "Get current entitlement for a role", "request": { "name": "Get current entitlement for a role", @@ -135562,7 +135562,7 @@ }, "response": [ { - "id": "4c45c756-26c5-4980-9a58-71052743c4d4", + "id": "a6772a7d-5cd0-4ac2-b6a6-f3691cec7c93", "name": "Succeeded. Returns a list of current or pre-existing entitlements for a role.", "originalRequest": { "url": { @@ -135617,7 +135617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cec84acb-23e6-4a5b-9162-a26704925d4e", + "id": "9d013806-7cbb-4116-a106-b466ade7a454", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135672,7 +135672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b215ebe-a333-4c2a-9a16-40d521a95694", + "id": "dddc9881-6139-4f57-88e1-e700db607d87", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135727,7 +135727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8373077d-277c-4f15-9e84-65e0c3aed4c2", + "id": "e4030b16-f4cc-4876-a95e-c1d567f0def6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135782,7 +135782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28b4a3d0-bbfe-4afd-99f2-a9774051e2bb", + "id": "5aa1417d-9ac5-4d6e-b3c5-38501b810efc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135843,7 +135843,7 @@ } }, { - "id": "b48bb8a7-d862-4150-bfca-a59d8cd6ba08", + "id": "b3d2c108-0549-43f7-a857-485c6b8bdc0d", "name": "Get identities for a suggested entitlement (for a role)", "request": { "name": "Get identities for a suggested entitlement (for a role)", @@ -135952,7 +135952,7 @@ }, "response": [ { - "id": "bf055cd7-d05b-4f09-9b58-7415fe37b451", + "id": "5db5b157-7fd9-4a93-bfd3-6870fb40af6a", "name": "Succeeded. Returns a list of identities with or without the entitlement.", "originalRequest": { "url": { @@ -136054,7 +136054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f293319-684f-41d6-80c4-6c3257c0d13d", + "id": "6b61f907-d3b2-4bd8-958c-965bcdf15d51", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136156,7 +136156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "093ca3b4-8992-4017-8196-a3bbc8f6196c", + "id": "916a8f2f-79de-47e3-a760-7a3e0e20a544", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136258,7 +136258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4a303d7-c12b-4b80-8897-675e3e5254cc", + "id": "5dd0af93-5073-43e5-922b-37ab183d0c03", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136360,7 +136360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a366df7-f63e-42de-ae95-403c15f8ee4b", + "id": "55a33541-3e75-458b-a0e1-69e71e3fcef6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136474,7 +136474,7 @@ "description": "Use this API to implement and customize role functionality.\nWith this functionality in place, administrators can create roles and configure them for use throughout IdentityNow.\nIdentityNow can use established criteria to automatically assign the roles to qualified users. This enables users to get all the access they need quickly and securely and administrators to spend their time on other tasks.\n\nEntitlements represent the most granular level of access in IdentityNow.\nAccess profiles represent the next level and often group entitlements.\nRoles represent the broadest level of access and often group access profiles.\n\nFor example, an Active Directory source in IdentityNow can have multiple entitlements: the first, 'Employees,' may represent the access all employees have at the organization, and a second, 'Developers,' may represent the access all developers have at the organization.\n\nAn administrator can then create a broader set of access in the form of an access profile, 'AD Developers' grouping the 'Employees' entitlement with the 'Developers' entitlement.\n\nAn administrator can then create an even broader set of access in the form of a role grouping the 'AD Developers' access profile with another profile, 'GitHub Developers,' grouping entitlements for the GitHub source.\n\nWhen users only need Active Directory employee access, they can request access to the 'Employees' entitlement.\n\nWhen users need both Active Directory employee and developer access, they can request access to the 'AD Developers' access profile.\n\nWhen users need both the 'AD Developers' access profile and the 'GitHub Developers' access profile, they can request access to the role grouping both.\n\nRoles often represent positions within organizations.\nFor example, an organization's accountant can access all the tools the organization's accountants need with the 'Accountant' role.\nIf the accountant switches to engineering, a qualified member of the organization can quickly revoke the accountant's 'Accountant' access and grant access to the 'Engineer' role instead, granting access to all the tools the organization's engineers need.\n\nIn IdentityNow, adminstrators can use the Access drop-down menu and select Roles to view, configure, and delete existing roles, as well as create new ones.\nAdministrators can enable and disable the role, and they can also make the following configurations:\n\n- Manage Access: Manage the role's access by adding or removing access profiles.\n\n- Define Assignment: Define the criteria IdentityNow uses to assign the role to identities.\nUse the first option, 'Standard Criteria,' to provide specific criteria for assignment like specific account attributes, entitlements, or identity attributes.\nUse the second, 'Identity List,' to specify the identities for assignment.\n\n- Access Requests: Configure roles to be requestable and establish an approval process for any requests that the role be granted or revoked.\nDo not configure a role to be requestable without establishing a secure access request approval process for that role first.\n\nRefer to [Working with Roles](https://documentation.sailpoint.com/saas/help/access/roles.html) for more information about roles.\n", "item": [ { - "id": "63375224-64db-4e38-af63-a15bd5ba006a", + "id": "9a9977f9-6771-4c35-bdbf-e53f9cbff937", "name": "List Roles", "request": { "name": "List Roles", @@ -136576,7 +136576,7 @@ }, "response": [ { - "id": "8ca46bed-8db3-4296-8300-307ccba58bef", + "id": "011d24b5-5a49-43cd-936f-0e201cebcd77", "name": "List of Roles", "originalRequest": { "url": { @@ -136692,7 +136692,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42fcf9c3-f4ac-47c9-8d85-c7e5479fc347", + "id": "68550ce3-04c4-465b-a6f4-6ae3970aa080", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136808,7 +136808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41bbd935-f6a0-4a42-9c4c-e581a6a66980", + "id": "41c5be48-75a6-40a0-9e28-4fd57c723a68", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136924,7 +136924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "232afdd9-04db-4326-90d7-9e2d379ed4ca", + "id": "77aae458-820d-4dea-aec4-32fe3e275f40", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137040,7 +137040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec58e8e1-fe00-4f9a-bb50-b3e6a524c6ba", + "id": "edde9503-7b1c-4016-8ea8-a129b628e6a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137156,7 +137156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e3c94cf-f62d-4b42-a644-5ba0cb68629c", + "id": "5fb9e65e-a3b3-482a-ad88-0cb09c00541a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137278,7 +137278,7 @@ } }, { - "id": "382e327f-d889-4e78-960d-b9b94c30e2ca", + "id": "c60c68a9-6722-452d-954a-5c916f2b6591", "name": "Create a Role", "request": { "name": "Create a Role", @@ -137320,7 +137320,7 @@ }, "response": [ { - "id": "aeeeaf19-3fb0-4cb3-b525-d380c5839203", + "id": "497f2501-720d-48ee-a6e7-3d49c3fd2de6", "name": "Role created", "originalRequest": { "url": { @@ -137376,7 +137376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b9c1932-2191-44ef-8d9e-85d063226b0a", + "id": "b5697b32-a8f7-4bb5-b987-dd8e53d62183", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137432,7 +137432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abfd78b5-4605-4067-8b9b-bdef019043ca", + "id": "c5565fdb-85d5-41e2-9a93-146e9b83eae0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137488,7 +137488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6730c50-e8b5-4122-a8d7-04967d65200a", + "id": "fd4686f9-6505-403a-b942-e8f0b01a6bfb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137544,7 +137544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a7fa8fa-e280-4a0c-b325-c0e7b44e089e", + "id": "b5beb15e-6440-491b-bc7c-e98b2b572e73", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137600,7 +137600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca73beb4-54e7-4e7f-ad93-28c45b839397", + "id": "55dc5c47-7f1f-48cf-8d06-c5013bd20adf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137662,7 +137662,7 @@ } }, { - "id": "2dda4e0b-b76b-47d3-a26b-4192a5a40e56", + "id": "fc58dbf9-5736-4d44-b9ce-841f0c932ef0", "name": "Get a Role", "request": { "name": "Get a Role", @@ -137703,7 +137703,7 @@ }, "response": [ { - "id": "583cd0bf-8431-453c-be9e-2f7f886316a1", + "id": "2c23d3d6-3b0b-4361-92e2-3df0cfccf331", "name": "List of all Roles", "originalRequest": { "url": { @@ -137747,7 +137747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f75c7018-d200-471b-9098-42aaf7391a91", + "id": "25c2d989-ce3e-4c82-b5f6-2731cba0c6a1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137791,7 +137791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afd8f19d-a4a7-48f7-90d7-d8513792ad9e", + "id": "de238e36-e660-42d8-a9d7-6c7598dedda9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137835,7 +137835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24b2ce6e-3b44-4266-9fca-c14b1d7a84a3", + "id": "833c8802-5f95-444d-a872-7533001d3b74", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137879,7 +137879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac59d779-2fb8-45c9-9fc6-3364fd3ce35a", + "id": "742444f3-b56b-4575-81f6-7d9eeedf602c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137923,7 +137923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13ac5cd7-c3d5-483c-a4a0-5c1c111d6157", + "id": "93a25427-1ce6-4f3a-a45f-58c715d2fb9d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137973,7 +137973,7 @@ } }, { - "id": "09274e19-5c9d-4301-ab65-d1285a93a869", + "id": "5564443a-a1f8-4dde-8f2f-041425c473e5", "name": "Patch a specified Role", "request": { "name": "Patch a specified Role", @@ -138027,7 +138027,7 @@ }, "response": [ { - "id": "3be14464-ce34-4da9-bf63-59e4e7539013", + "id": "4a80992c-7792-47cd-9c99-f6ed50fadac7", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -138084,7 +138084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edbbf4b4-3c8d-4bf6-b18a-0126eff431ef", + "id": "e97c1b4f-6b0e-45a4-b7ff-f3ed05dfd5aa", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -138141,7 +138141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ce73c71-a936-4f31-aa51-936cf6400575", + "id": "cdf87318-0819-4f66-a09c-05075e09f7a7", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -138198,7 +138198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36c6e953-2fe3-414c-931c-1013e9a226f7", + "id": "7c0b8311-59f7-43d2-8246-91f20d9f05c3", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -138255,7 +138255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f0247c3-1738-4331-94d1-cdba0c67fd37", + "id": "3a506052-ad2e-4d29-841a-03f7120cbc0d", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -138312,7 +138312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b041bad-6997-45c8-b838-496e5040b530", + "id": "837fbde7-1f24-451b-b34b-ddc160cc691b", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -138369,7 +138369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb219457-d105-453c-a93b-04079604f81b", + "id": "df92a089-f9d3-43dc-843f-d69b3eb27aa0", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -138426,7 +138426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa2f305d-618c-47b1-8966-1bca43093341", + "id": "bbd7fe81-a54a-472c-a9aa-5e86698e56e9", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -138483,7 +138483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fc205cf-ad6f-45a1-8356-50c03d709413", + "id": "0007b6bd-2fcf-4c13-8c88-b2e4ca5dbd84", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -138540,7 +138540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ae40d43-dfc2-4712-9c2a-32e731a53435", + "id": "2fc88069-2e89-4f7a-aefe-878ae6544279", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -138597,7 +138597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fab3f848-fce5-42a9-9bcc-1f02f8324808", + "id": "dbbb0f86-8639-42ff-85ef-5213dc3cc35b", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -138654,7 +138654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88b8c4e6-44a8-4d99-9b98-a8df99051e82", + "id": "88b4a1da-8507-4146-805e-526646e89529", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -138711,7 +138711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d5faccf-2d8e-482a-afb1-867cddb31196", + "id": "e21c9779-c673-4fc8-abb6-1b23fe02233d", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -138768,7 +138768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c12565fe-7026-493c-a0d1-21708170e4be", + "id": "cb43c19e-d698-4e4c-9519-1de7293b26cf", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -138825,7 +138825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82a99642-2a38-4799-84d4-3a4e07360f55", + "id": "386f7ca5-da5e-4856-9aee-46f6c3e219b7", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -138882,7 +138882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3865fa78-7c57-438f-b16b-81f60cec9288", + "id": "ac995e08-7529-4c2d-85d0-3dfe585c6dcd", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -138945,7 +138945,7 @@ } }, { - "id": "24246679-0b0e-4a52-8f84-c63e36e1ec4e", + "id": "b823f8b5-b925-4b68-99cc-2aa333860dd3", "name": "Delete a Role", "request": { "name": "Delete a Role", @@ -138986,7 +138986,7 @@ }, "response": [ { - "id": "b65a00e2-a8b2-433d-a79f-78ac7b7c5fe3", + "id": "0566358c-da69-4547-9a89-1fde4d794e5d", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -139020,7 +139020,7 @@ "_postman_previewlanguage": "text" }, { - "id": "eb7332b6-11de-4a63-b5a6-3664ea74edf0", + "id": "e6ed16d2-8491-46be-83d2-e7f30eee308d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139064,7 +139064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dadbe551-00ed-48bb-9e9a-f16f1da3cf26", + "id": "0f8a878f-415f-4847-8c74-33bc8a3a8800", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139108,7 +139108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9f24692-bd49-4ce7-98a9-64df2638ba33", + "id": "2234842a-0a8f-4d0e-a63c-47bc3576c3c5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139152,7 +139152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a4ce922-d42f-4106-9baa-c16240669bba", + "id": "00efc531-6035-4fd2-a363-bf35f2e91e8e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139196,7 +139196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35819b70-2688-4fb5-96aa-22ac12959f08", + "id": "2fd4e1ec-3ac3-47b2-8270-78f132aa208c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139246,7 +139246,7 @@ } }, { - "id": "d62956e9-db21-4c1b-9f7d-f907a97d883d", + "id": "58c0a9b3-a902-49e9-9de6-f3832626a9e9", "name": "Delete Role(s)", "request": { "name": "Delete Role(s)", @@ -139289,7 +139289,7 @@ }, "response": [ { - "id": "52c6a076-75b1-43a7-94a7-15ecd88a7e4b", + "id": "5ecc6bf2-0009-44bf-9ce8-7f564f52d401", "name": "Returns an object with the id of the task performing the delete operation.", "originalRequest": { "url": { @@ -139346,7 +139346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9fcdf9f-a022-40ad-807b-bf2f7a9aaaab", + "id": "655e3d81-c107-47a6-970d-59b3943e0937", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -139403,7 +139403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e7c2d60-90ba-4163-9432-9ab8d91c6c1e", + "id": "6876c87c-ee4e-4063-a6d2-2c059b0c62c4", "name": "400.1 Role ids limit violation", "originalRequest": { "url": { @@ -139460,7 +139460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27972a4a-7b93-48b5-b50d-0067fbd827bb", + "id": "f7986cef-1d3f-4120-ad54-1074780e3c5a", "name": "400.1.404 Referenced object not found", "originalRequest": { "url": { @@ -139517,7 +139517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59cb1e09-05cd-4da4-a879-35206861b09f", + "id": "e78a0bd0-43b7-4c67-a7a5-8018184e2886", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139574,7 +139574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b44cdddd-63df-4daf-94d0-4e040cda58b3", + "id": "83fbf82f-a915-4159-9581-646994c4b939", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139631,7 +139631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6226ef7c-40ff-4aec-88cc-31184da0c478", + "id": "69621204-dc6b-4225-b11c-65c64b488f37", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139688,7 +139688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25272ec9-8f4b-499b-bdb9-5f2fd3378e81", + "id": "e0267dbd-99ff-4f45-b8a8-58c4c962f5cb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139751,7 +139751,7 @@ } }, { - "id": "be006ce5-3db3-4b2a-a1bd-95c9dd107e0d", + "id": "870b5f6e-cfca-45e4-868f-7a6c2824d882", "name": "Identities assigned a Role", "request": { "name": "Identities assigned a Role", @@ -139836,7 +139836,7 @@ }, "response": [ { - "id": "3b86b2d4-d8a0-4878-b8ae-041d44747925", + "id": "82ea8714-7dee-454d-befc-f71e1078eb1a", "name": "List of Identities assigned the Role", "originalRequest": { "url": { @@ -139927,7 +139927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b25b241a-34f6-4a91-a7b6-cb82c9fb4ab9", + "id": "54fbc98a-7cf7-4e08-96d0-a46fb08d7b8b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140018,7 +140018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8836ffa5-d2fa-47c3-b362-2c0b82800971", + "id": "ca9e6d87-dd5f-4416-b8c4-df47975a8b59", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140109,7 +140109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb056c3d-9986-4d8f-99eb-f997455a8236", + "id": "3ef8bcb7-6d31-4690-bf05-45c5ee73f170", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140200,7 +140200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebd9a881-d483-451a-af7d-c8a7a1e2b0e7", + "id": "1cd7dd9d-f783-4598-a1a6-61119b9ab021", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140291,7 +140291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfc1d6fd-ae02-4652-a22f-1634251dfda0", + "id": "4e27cacf-2d97-427d-9e21-513633ff4024", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140388,7 +140388,7 @@ } }, { - "id": "2287df0e-a12a-4e29-986f-bba43b9bb93c", + "id": "36f05890-a2bc-448e-9fe1-8bba47f242da", "name": "List role's Entitlements", "request": { "name": "List role's Entitlements", @@ -140476,7 +140476,7 @@ }, "response": [ { - "id": "363ebec9-1a14-4a2b-b699-557d4f3c1e7f", + "id": "b5836457-c659-4da7-8edc-2f90e3ec5212", "name": "List of Entitlements", "originalRequest": { "url": { @@ -140567,7 +140567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61e7b278-5adc-4da0-8fdb-4bfb1f0da64f", + "id": "9675d5a7-c316-4dca-a027-cd4ef3ec8ff3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140658,7 +140658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4475e6fe-fb81-4bc0-b55a-9ba5ef4f1f88", + "id": "394c9e24-4049-4757-9e54-c3223d2a23bc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140749,7 +140749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbe6b2ec-fde5-4028-9d64-a4668e83a2c6", + "id": "aac90e78-5456-44ae-a069-1be60df63a47", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140840,7 +140840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93ac8b65-5b51-4a97-92ac-2ba8669b67a9", + "id": "7c25f1bc-e4ca-4ea3-81d5-3e5611eef297", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140931,7 +140931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf82b8b1-f9be-43a9-8be6-17ff180d5aec", + "id": "68dffd1f-e6ff-45a7-82bf-32c062629460", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141034,7 +141034,7 @@ "description": "", "item": [ { - "id": "cac59cc4-1773-48da-91aa-e33770b500eb", + "id": "6e62f8b3-a5a8-44a2-98fb-dea9eb4db750", "name": "Configure/create extended search attributes in IdentityNow.", "request": { "name": "Configure/create extended search attributes in IdentityNow.", @@ -141077,7 +141077,7 @@ }, "response": [ { - "id": "c81a95f1-9785-46db-beb3-156682d7b9f9", + "id": "9bfa9f74-a3ce-4aed-90dd-f3e91a903f76", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -141134,7 +141134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9193939-e9ff-4272-b5a1-85f2819f5ad6", + "id": "6e507385-df6c-420f-accb-b06086d4ab33", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141191,7 +141191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e54b235-65ab-4246-83a7-70d7e0e3dddd", + "id": "fb0b696c-e267-452a-b48d-54be6184d103", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141248,7 +141248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45f272f2-33be-4d8d-8d0d-7a9f0cc08966", + "id": "ea887904-c796-48c1-8ae0-20692de0539a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141305,7 +141305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92b14109-7b61-46db-b54c-f4976a89fdd6", + "id": "286fa131-773f-4a3d-aaa1-e0a7884591e8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -141362,7 +141362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "674626dd-09fc-4f4d-ae0a-6d589b3ffd7b", + "id": "cbf6031d-a862-4970-b9e2-d11a4fab6a9a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141419,7 +141419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dc1893e-a531-42bd-8dbe-8702bf385d6d", + "id": "c32334e3-ff04-45a2-b55d-728224227113", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141482,7 +141482,7 @@ } }, { - "id": "b4144ed4-15b1-4e3d-84c5-972efd3a77ab", + "id": "1fa85d10-415a-40c0-9aff-d516deacf61b", "name": "Retrieve a list of extended search attributes in IdentityNow.", "request": { "name": "Retrieve a list of extended search attributes in IdentityNow.", @@ -141512,7 +141512,7 @@ }, "response": [ { - "id": "6c30332b-c729-4185-bbbb-85a1f5e6ecd3", + "id": "613e67a5-26a2-4e02-ab80-0f3142d3d32c", "name": "List of attribute configurations in IdentityNow.", "originalRequest": { "url": { @@ -141556,7 +141556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef01b4c7-09ef-4f61-a76c-66338a074274", + "id": "4084d22a-82eb-47ea-919b-53a034a8a6f6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141600,7 +141600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6db3208-3e1d-4063-ab1c-cc015c1b5691", + "id": "5a99015c-f9f5-477a-a190-f3ef91768a81", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141644,7 +141644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "711d5e35-2c1e-48c7-a60b-cce0b9cdd4c5", + "id": "874d9639-34eb-4179-ac76-957a738a1a24", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141688,7 +141688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4d0a6be-4c22-4c8a-9888-0c5f99306d49", + "id": "8b5db9c3-4df1-45cf-baba-06eadcff9363", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141738,7 +141738,7 @@ } }, { - "id": "f7e06ce2-039a-42f4-b544-8e4090d63d75", + "id": "8423c711-6566-4a25-97f3-356cc580d596", "name": "Get the details of a specific extended search attribute in IdentityNow.", "request": { "name": "Get the details of a specific extended search attribute in IdentityNow.", @@ -141780,7 +141780,7 @@ }, "response": [ { - "id": "73eb4f12-0bcc-4449-abc0-5269f2364fb3", + "id": "e81b1e12-bd54-4c69-81c1-10b1ae454657", "name": "Specific attribute configuration in IdentityNow.", "originalRequest": { "url": { @@ -141825,7 +141825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96bd6f4c-f43a-4d27-b584-f1b883ec2054", + "id": "7a102e6e-a3f8-47bd-ae27-2b13b95cab7c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -141860,7 +141860,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1c64270b-a827-4843-bbad-6e9ff9677bef", + "id": "a7f77f9b-7958-4ec8-a35f-d70e8c4ebeb6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141905,7 +141905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34008afe-4758-4543-84ff-b11691b6e57b", + "id": "e0b96c0f-3305-460f-9f42-cfb6be166940", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141950,7 +141950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46cba034-6604-4d00-8886-ae849b8fcdb9", + "id": "faf1e62a-c11f-4433-8e36-b27f376a4a9d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -141995,7 +141995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d77b325-f94f-426a-80dd-8c261037a5e2", + "id": "2834d4ea-cd01-4293-9083-ac1b56c304c4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142040,7 +142040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a606e848-9eff-48d4-b125-6bf323c9f42e", + "id": "cfad4004-e8a0-4cfd-bca2-97c69caa5ced", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142091,7 +142091,7 @@ } }, { - "id": "050e7d0c-8224-44f2-888e-5d2a82e00973", + "id": "ecdd8920-6b95-4175-bb64-236056dc0172", "name": "Delete an extended search attribute in IdentityNow.", "request": { "name": "Delete an extended search attribute in IdentityNow.", @@ -142133,7 +142133,7 @@ }, "response": [ { - "id": "ba2bc5d2-ca85-4613-99b9-0d30631e84df", + "id": "1a361db9-8ed3-4b87-8041-64298669ee2f", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -142168,7 +142168,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a6c47173-995b-4a43-86eb-21089bfda603", + "id": "b015f0d3-4dec-49b4-859c-a85987455ef1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142213,7 +142213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47ec7d24-753e-439d-a408-cc3d91ccb5f3", + "id": "ac352c2f-37d3-47cd-a938-a0048d148ac3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142258,7 +142258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45270531-9f23-4c8c-b275-0e5579191298", + "id": "d47b5c3c-96a3-451f-aaf7-1842ce7f5dbc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -142303,7 +142303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f4c37af-d4ed-4872-808f-2f92848c859e", + "id": "05d62be3-c94f-4ca2-8a84-7bb1924c3789", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142348,7 +142348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa8d1529-4c1f-458b-9430-ceab131c0308", + "id": "bc3d5be5-850c-4165-bc35-b479c7019387", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142399,7 +142399,7 @@ } }, { - "id": "15257fef-d393-498a-be80-b25885daf725", + "id": "8d046303-a56d-4842-852d-6ed81e92e537", "name": "Update the details of a specific extended search attribute in IdentityNow.", "request": { "name": "Update the details of a specific extended search attribute in IdentityNow.", @@ -142454,7 +142454,7 @@ }, "response": [ { - "id": "01913de4-3e2c-4818-a4c3-d104cefacbdc", + "id": "efe69bf1-fac0-4658-80f5-7c646b07bb26", "name": "Responds with the Search Attribute Configuration as updated.", "originalRequest": { "url": { @@ -142512,7 +142512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60a7a255-12ed-4539-bbf3-09a29357991b", + "id": "6e3b4ec4-a7bd-4e9c-bb0f-fbf18a1bdacb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142570,7 +142570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "691f1d24-5585-4592-a88b-590685460594", + "id": "bf70cb90-131e-4031-a938-1e7bc8da75db", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142628,7 +142628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "517cc43e-d22e-45c5-86ea-e0a09814e301", + "id": "ebbb7df1-3ad1-47e8-b601-4323786fb0a0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142686,7 +142686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d11cdef6-b881-472c-885e-da93308c7436", + "id": "f4a456ab-e301-40cd-8c4d-b09ca62900ad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -142744,7 +142744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cbe1e1d-e18c-475e-b864-e59e44395ff8", + "id": "75bd89b7-13d8-4da2-8469-a2ccbfff4bd9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142802,7 +142802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35ab24fb-63f4-4b69-b235-96023b49ecc1", + "id": "d53c92a3-614b-4bae-9918-261c14e6ffb0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142872,7 +142872,7 @@ "description": "Use this API to implement and customize access request segment functionality. \nWith this functionality in place, administrators can create and manage access request segments. \nSegments provide organizations with a way to make the access their users have even more granular - this can simply the access request process for the organization's users and improves security by reducing the risk of overprovisoning access. \n\nSegments represent sets of identities, all grouped by specified identity attributes, who are only able to see and access the access items associated with their segments.\nFor example, administrators could group all their organization's London office employees into one segment, \"London Office Employees,\" by their shared location. \nThe administrators could then define the access items the London employees would need, and the identities in the \"London Office Employees\" would then only be able to see and access those items.\n\nIn IdentityNow, administrators can use the 'Access' drop-down menu and select 'Segments' to reach the 'Access Requests Segments' page. \nThis page lists all the existing access request segments, along with their statuses, enabled or disabled. \nAdministrators can use this page to create, edit, enable, disable, and delete segments. \nTo create a segment, an administrator must provide a name, define the identities grouped in the segment, and define the items the identities in the segment can access.\nThese items can be access profiles, roles, or entitlements. \n\nWhen administrators use the API to create and manage segments, they use a JSON expression in the `visibilityCriteria` object to define the segment's identities and access items. \n\nRefer to [Managing Access Request Segments](https://documentation.sailpoint.com/saas/help/requests/segments.html) for more information about segments in IdentityNow. \n", "item": [ { - "id": "cd978ac8-731d-45ca-9493-5a7a1c035e25", + "id": "a183f802-c671-49db-992c-d775508347e8", "name": "Create Segment", "request": { "name": "Create Segment", @@ -142914,7 +142914,7 @@ }, "response": [ { - "id": "b740dfb3-406e-4ef2-a0f1-81bf504dd3c6", + "id": "234bc9ed-3f80-480b-a782-1cce0d88c9e8", "name": "Segment created", "originalRequest": { "url": { @@ -142970,7 +142970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f2f9772-b05f-4bff-a807-d4b77913cdc9", + "id": "be5cd476-f516-4b5c-8e72-07d4b4e17e70", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143026,7 +143026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52ffa02d-2581-415d-b809-3139620f680e", + "id": "91fbbb52-981b-4620-8303-937daf08cbb6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143082,7 +143082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "625b7c14-ec5a-4bdb-a04e-6ff8abedff5c", + "id": "1f78c031-59b1-4e46-a174-ddfcd7967a77", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143138,7 +143138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "150678be-a428-401c-8864-0e69b5978dc5", + "id": "c7b99697-8eaa-4d90-90c7-bdb2062e0f9f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143194,7 +143194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b771fe37-7b09-40c9-a30f-55ad5b76ad51", + "id": "df7395c5-b32a-45c3-87be-66ccf54a72d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -143256,7 +143256,7 @@ } }, { - "id": "ff86afaf-9d9f-41fa-afdd-b5f79f5ff428", + "id": "120eecca-563c-4b84-8926-7a645c46a05d", "name": "List Segments", "request": { "name": "List Segments", @@ -143313,7 +143313,7 @@ }, "response": [ { - "id": "ef5d4e45-0ec4-4b08-a5b9-2b04490205a8", + "id": "7409ace9-6750-4a3a-ae7a-2bcbaa68bdf0", "name": "List of all segments", "originalRequest": { "url": { @@ -143384,7 +143384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e83ce1b0-ed4e-4dbf-8079-78cae2d3b236", + "id": "1d7359c3-ce89-4de6-a32d-b24cec66c65e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143455,7 +143455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b109d318-0d30-4db6-8fa0-d9226c8ee9fb", + "id": "de42577a-4ade-4b47-810f-7a4410a89835", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143526,7 +143526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d26ef051-3632-4e3e-90e4-4e599a8df781", + "id": "839d98b8-4397-4f2f-b82c-337371de5298", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143597,7 +143597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75984078-7348-4708-87ec-68899a671bbe", + "id": "2b21b424-615c-4a85-a76b-d13fe88c98fc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143668,7 +143668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba06736c-f737-4a4f-b4c0-9ea70e620f2b", + "id": "51860fdd-15ef-4292-a328-4009f764ba40", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -143745,7 +143745,7 @@ } }, { - "id": "7c109c7a-7ba3-4181-bdf8-81cb7b92f469", + "id": "bcb3b1a4-cf86-4e30-bd83-3073653d0fde", "name": "Get Segment by ID", "request": { "name": "Get Segment by ID", @@ -143786,7 +143786,7 @@ }, "response": [ { - "id": "4ef1d97d-a859-4847-b554-2ec72ee84c00", + "id": "265a3291-4e1f-4327-bab7-0869b1be5ce0", "name": "Segment", "originalRequest": { "url": { @@ -143830,7 +143830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dba8fb16-b7a0-42d3-861d-c5e435398aa3", + "id": "9c267eb4-8549-4b4c-8209-674f502655de", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143874,7 +143874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cbbfa13-14f8-48f2-82e1-b07fb125ef61", + "id": "8b3b8f39-8d50-481b-9362-31b2db4abe6e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143918,7 +143918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26347eef-10ea-4e95-aecc-a1a79768e854", + "id": "544560ff-eaf8-4cb5-94e1-4b708420537b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143962,7 +143962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "587d5e9b-d474-48b9-bbbe-ad5d64834017", + "id": "b474f151-5e85-409f-901b-d36bfef9ad1d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -144006,7 +144006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71409d4d-cea8-4b2f-9a09-3d7c33fcbc08", + "id": "a5a30838-5b78-4b03-9b8b-80446593cc88", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144050,7 +144050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e246855-21a8-4895-8027-e881a0e6fa95", + "id": "90629cb0-6f80-4a87-94cd-be844a54fe76", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144100,7 +144100,7 @@ } }, { - "id": "27fd3363-cc1b-423c-b6c6-cd7ddfbfa3f0", + "id": "b5683286-41bc-484d-b291-df9b7be4afd9", "name": "Delete Segment by ID", "request": { "name": "Delete Segment by ID", @@ -144141,7 +144141,7 @@ }, "response": [ { - "id": "eec6ca32-12a9-4917-ae7e-58dcc2bf78c8", + "id": "31dad581-9d69-446d-a688-a30e9f59c8d8", "name": "No content.", "originalRequest": { "url": { @@ -144175,7 +144175,7 @@ "_postman_previewlanguage": "text" }, { - "id": "bde4cb28-1bd8-4a8c-b163-0c0c5279248e", + "id": "b8566a2c-5c49-4b72-b354-ecbfcedd546d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144219,7 +144219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc0c3811-6ff0-45d4-afb0-4cc6cabf7b5a", + "id": "6ee7b89e-2aa7-46f0-9ed8-81aeba593645", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144263,7 +144263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b93a824b-2493-44d1-b928-2ad91d1b817d", + "id": "99e1e056-7782-4e40-ab23-e1c6ad934204", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144307,7 +144307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51a004a1-cbcb-4db0-9d73-c05bca6af3f5", + "id": "3d7cb9aa-f24c-45b0-92e6-c851a46e2e5b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -144351,7 +144351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e53c2ed-b564-45d0-a954-b0abb08c8b60", + "id": "13ba92df-e1ee-4deb-b204-6d29e225c804", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144395,7 +144395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a84ddfc-9646-4eca-af0a-e378fa1e185a", + "id": "61b14bfe-1a82-4128-af86-e3b0c083b52a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144445,7 +144445,7 @@ } }, { - "id": "b5e292ac-ba0f-4f2d-bc82-4514f36144f8", + "id": "4dea7d4c-c319-4fae-bc97-d0a1ee639476", "name": "Update Segment", "request": { "name": "Update Segment", @@ -144499,7 +144499,7 @@ }, "response": [ { - "id": "cabeefb5-c8ca-4d9d-8fd1-0f32b4aa372a", + "id": "c909169c-fad4-4108-b618-b37a4bb82288", "name": "Indicates the PATCH operation succeeded, and returns the segment's new representation.", "originalRequest": { "url": { @@ -144556,7 +144556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a5b68e0-054c-42a7-94cc-0e42aec85b91", + "id": "36a76721-f2ca-4f7f-afe1-a4efc83bf9d5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144613,7 +144613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9941c0b-d490-4759-9315-fcdadf2632aa", + "id": "256f16c2-afc0-4021-b845-625d8e49cb91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144670,7 +144670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "347e0d0f-1571-4adb-a624-0b5a230006e5", + "id": "5b3194b5-f3aa-43a2-bae4-16a66bc9a850", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144727,7 +144727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39f6ee28-744f-4015-adc4-51077e20f71e", + "id": "2ae9e147-337c-423d-abac-70468de976f4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -144784,7 +144784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16bd5ddf-6540-4158-b759-873bc98dba4c", + "id": "e4e67552-bf62-4675-9e6d-8e17175bc81b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144841,7 +144841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7f7e913-8d51-4282-8ad2-b7dffce39a53", + "id": "70d17c6a-86fb-41f9-89d5-64678383e0ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144910,7 +144910,7 @@ "description": "Use this API to build an integration between IdentityNow and a service desk ITSM (IT service management) solution.\nOnce an administrator builds this integration between IdentityNow and a service desk, users can use IdentityNow to raise and track tickets that are synchronized between IdentityNow and the service desk.\n\nIn IdentityNow, administrators can create a service desk integration (sometimes also called an SDIM, or Service Desk Integration Module) by going to Admin > Connections > Service Desk and selecting 'Create.'\n\nTo create a Generic Service Desk integration, for example, administrators must provide the required information on the General Settings page, the Connectivity and Authentication information, Ticket Creation information, Status Mapping information, and Requester Source information on the Configure page.\nRefer to [Integrating SailPoint with Generic Service Desk](https://documentation.sailpoint.com/connectors/generic_sd/help/integrating_generic_service_desk/intro.html) for more information about the process of setting up a Generic Service Desk in IdentityNow.\n\nAdministrators can create various service desk integrations, all with their own nuances.\nThe following service desk integrations are available:\n\n- [Atlassian Cloud Jira Service Management](https://documentation.sailpoint.com/connectors/atlassian/jira_cloud/help/integrating_jira_cloud_sd/introduction.html)\n\n- [Atlassian Server Jira Service Management](https://documentation.sailpoint.com/connectors/atlassian/jira_server/help/integrating_jira_server_sd/introduction.html)\n\n- [BMC Helix ITSM Service Desk](https://documentation.sailpoint.com/connectors/bmc/helix_ITSM_sd/help/integrating_bmc_helix_itsm_sd/intro.html)\n\n- [BMC Helix Remedyforce Service Desk](https://documentation.sailpoint.com/connectors/bmc/helix_remedyforce_sd/help/integrating_bmc_helix_remedyforce_sd/intro.html)\n\n- [Generic Service Desk](https://documentation.sailpoint.com/connectors/generic_sd/help/integrating_generic_service_desk/intro.html)\n\n- [ServiceNow Service Desk](https://documentation.sailpoint.com/connectors/servicenow/sdim/help/integrating_servicenow_sdim/intro.html)\n\n- [Zendesk Service Desk](https://documentation.sailpoint.com/connectors/zendesk/help/integrating_zendesk_sd/introduction.html)\n", "item": [ { - "id": "978aaaa4-752b-4b1b-99be-08f6d0bf9eee", + "id": "fc5a6e6d-d3a1-40c1-8542-2d0ffc310599", "name": "List existing Service Desk Integrations", "request": { "name": "List existing Service Desk Integrations", @@ -144985,7 +144985,7 @@ }, "response": [ { - "id": "9fe232fb-51ea-47b8-9d6f-48174d72ab4f", + "id": "272ab037-2c40-4a0c-8538-2b9e3ecccbab", "name": "List of ServiceDeskIntegrationDto", "originalRequest": { "url": { @@ -145074,7 +145074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e296b2b-6a38-44f6-bb9c-941b64199b74", + "id": "628e5bfa-7694-4a43-b481-87d6614ab65a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145163,7 +145163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67b28a1d-11e3-41de-ad5c-12c1f06039ba", + "id": "9dfdc513-97fe-4e75-95cc-d5da959b1209", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145252,7 +145252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb79c12a-2463-40c6-b439-ad08cb7f84de", + "id": "452c3920-2344-4d8c-8f2f-26792b9787d8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145341,7 +145341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24ead956-9b39-4224-9d63-1095a2526e11", + "id": "972a447a-c075-4f12-8abe-5dd22ee7d95f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -145430,7 +145430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcda1bb1-680f-4f38-b50c-e764700c271b", + "id": "7271f06b-e0f8-4b13-ab10-3d4f61a200ce", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145519,7 +145519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f1500d5-e22e-4815-8343-984646062088", + "id": "08ff7498-043e-458f-b23d-b54ffe19b7a5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145614,7 +145614,7 @@ } }, { - "id": "8033dfda-3d96-4d14-8c04-48a1e3564761", + "id": "d681c8ec-8f5e-4588-b191-716364327547", "name": "Create new Service Desk integration", "request": { "name": "Create new Service Desk integration", @@ -145656,7 +145656,7 @@ }, "response": [ { - "id": "70f37f69-2c5a-498f-b49c-2030733157b3", + "id": "610f9b83-319c-499e-8ef0-cb77b3f7ab35", "name": "details of the created integration", "originalRequest": { "url": { @@ -145712,7 +145712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f682ae3-aea3-43d0-b55d-91a9e4a716c5", + "id": "9e92c7e8-033e-4562-a4f6-d17ba23a042d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145768,7 +145768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a16f6cf8-6100-4dca-9fe7-29849cf98c95", + "id": "5072c417-648b-4381-8ffd-ce9f67a9a0a3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145824,7 +145824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d0e46ed-852f-4069-9bc2-186b4cb3174f", + "id": "ce9624db-8208-4bca-9d0c-6636872ad84e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145880,7 +145880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6201e592-fd72-42f6-97ca-c8fb2049d4f0", + "id": "8b8247df-49c5-4124-9e6e-422add5c2af2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -145936,7 +145936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05b167f9-d25c-4df1-a085-4998f8c63364", + "id": "9200cf55-0e70-4510-a384-7e14c85c7ab8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145992,7 +145992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbb53bec-041b-46a9-b542-6cd4a2606fd7", + "id": "ca58419c-43fb-4371-bc32-2a10f695c9fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146054,7 +146054,7 @@ } }, { - "id": "aae2274e-7744-42ee-9f1e-ffb8ef342b1e", + "id": "bc8e3476-4d47-491f-a4af-90cfe64a3b93", "name": "Get a Service Desk integration", "request": { "name": "Get a Service Desk integration", @@ -146095,7 +146095,7 @@ }, "response": [ { - "id": "e8f23a49-1a2c-4118-a1c0-48bdac2820ba", + "id": "0ac3cca2-88dc-40c2-9601-4e887b54009e", "name": "ServiceDeskIntegrationDto with the given ID", "originalRequest": { "url": { @@ -146139,7 +146139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5fccb4b-8bd7-4021-8876-287559ce270a", + "id": "9d6a85bc-3d81-4122-850e-6f9abcdd20bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146183,7 +146183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5886963e-bda9-4e67-89a3-f4af1ded2223", + "id": "8f74fb11-02db-414e-b053-a076dbc731ee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146227,7 +146227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6641e84-61df-429b-ab83-d7a940a3d7d4", + "id": "5d05e44c-6341-4845-8d89-8a31886c0efa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146271,7 +146271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2be02fab-3444-4025-8a84-478a464c223c", + "id": "f71f7fe0-4ad9-42a0-a5cc-1d6201d6d6c0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -146315,7 +146315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf507fa4-875b-4aa9-93ae-1ecc16c57430", + "id": "230d4806-9033-4447-8fa9-b60036463750", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146359,7 +146359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfffbca3-923b-4508-9943-c5f97addea6d", + "id": "d8eb11be-414b-460a-ae56-e33d9306892c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146409,7 +146409,7 @@ } }, { - "id": "7da1ecf9-fded-4783-8eaf-b882e9e52a61", + "id": "cf841d8b-7fb0-46fc-aeba-bd982cee92d7", "name": "Update a Service Desk integration", "request": { "name": "Update a Service Desk integration", @@ -146463,7 +146463,7 @@ }, "response": [ { - "id": "dd9c6d21-ea19-4aaa-b5e5-ed3047e08130", + "id": "48195aba-2bd0-4ff9-90fe-4e3a56b3ead1", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -146520,7 +146520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08abad0f-72d5-49ce-8334-1a32967db244", + "id": "e9074846-e093-46cf-a075-a422095097b8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146577,7 +146577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff85002f-d2ea-44dd-a54a-6dac136458a0", + "id": "c59875fe-af0a-4cf1-b377-8295ad5f6641", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146634,7 +146634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18804b03-5f43-4eb1-a223-bd01f7ee51f2", + "id": "cc8696b3-d6dc-418a-bfce-18d56d01e27f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146691,7 +146691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eae9a472-c4c4-40c0-856f-903c66746383", + "id": "0e112a2a-53a4-421c-bf43-e7a65ffbd44d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -146748,7 +146748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77381155-c8cd-4d97-a3a4-2438575fe122", + "id": "264c2253-2971-4938-b4e0-8085764d7ef8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146805,7 +146805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d13e099-df42-4c23-95a3-5a89a57dada3", + "id": "ed8f4e90-3f5b-4dc4-a3de-f4687a9373fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146868,7 +146868,7 @@ } }, { - "id": "f27017a1-c04f-4ccf-84da-2674d3d4c949", + "id": "1fd30ecf-c687-43ac-a3c5-03d8d58d66b8", "name": "Delete a Service Desk integration", "request": { "name": "Delete a Service Desk integration", @@ -146909,7 +146909,7 @@ }, "response": [ { - "id": "4d924106-7872-457b-9b5c-5501a4409132", + "id": "4ab5de3c-2b9b-407f-8591-e3a01954cd13", "name": "Service Desk integration with the given ID successfully deleted", "originalRequest": { "url": { @@ -146943,7 +146943,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3b2a20f0-9638-4334-9d9d-c32a7ff507ee", + "id": "f7b265b9-4d86-443a-86e2-3b48853fc8b8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146987,7 +146987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1bcfb48-6910-4a9f-9687-023d689a93f6", + "id": "1025b417-d8e4-4702-afa2-da8479a64ada", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147031,7 +147031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8673fc4-a530-47e9-91af-0a4c45d9cfbc", + "id": "db43efc3-208d-452d-ad8c-0d83124f9981", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147075,7 +147075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "302f9782-d35d-4628-adde-fea038e58027", + "id": "e5455505-fd0c-48fd-bcb5-87efcda35849", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -147119,7 +147119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce0c1ade-8b49-4ec8-af6f-f91f248ead28", + "id": "77522b13-4819-4d96-9035-eac5deeb2f89", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147163,7 +147163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d5d3d59-577c-483b-b630-c94da17222fe", + "id": "fadafa0a-b7a7-49b8-8cb9-cddbb8f6ab6c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147213,7 +147213,7 @@ } }, { - "id": "e1373666-d6b7-40da-874d-9dc84dd96269", + "id": "56b2af98-820b-4f8f-93c9-9d3ac825e736", "name": "Service Desk Integration Update PATCH", "request": { "name": "Service Desk Integration Update PATCH", @@ -147267,7 +147267,7 @@ }, "response": [ { - "id": "8bc9f708-5396-4007-a2e1-865a3d96bd00", + "id": "fd16ceeb-2768-4743-b001-7f277fa2ae78", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -147324,7 +147324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9acd6118-9319-4094-99b3-0c6fbcbb63a1", + "id": "ac1a9149-66f2-4bbb-8520-94bb14851de4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147381,7 +147381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f09682cb-6166-4d7c-b06c-83d0def6f2e0", + "id": "2d152342-cf0b-4470-a5c5-b36d1a448f8f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147438,7 +147438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b49ecd1d-2a85-485f-b2c4-0ea5e007e267", + "id": "e7af3d3a-d1fe-4838-a0b5-7b83b07f42a0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147495,7 +147495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e413c47b-eaad-46bb-87b0-208342969bee", + "id": "5384ab2a-9362-401f-8718-bf85b7c3f8e0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -147552,7 +147552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e594343-4a9b-4de9-a716-cd662268e1be", + "id": "22c59b21-b091-4134-a574-1411eec4bcdc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147609,7 +147609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58d5138d-7e42-4526-9690-f24a99f42a6a", + "id": "777281bf-1b7f-4018-8bb9-1bbdf7cd772f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147672,7 +147672,7 @@ } }, { - "id": "2cbca6f7-3a26-4225-baae-04a63ff7e7f3", + "id": "57deed06-b1e7-4549-9922-260e16a5e789", "name": "Service Desk Integration Types List.", "request": { "name": "Service Desk Integration Types List.", @@ -147702,7 +147702,7 @@ }, "response": [ { - "id": "d8dd504f-bf10-4d8e-ae4c-efb449394b1a", + "id": "f27ee888-2a99-42c3-8bf9-f332b7ca0f5f", "name": "Responds with an array of the currently supported Service Desk integration types.", "originalRequest": { "url": { @@ -147746,7 +147746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8abaca51-65fa-4327-92ed-5a112810c053", + "id": "b338f2a2-2fe8-4359-95b2-f3e2b722413f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147790,7 +147790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6b367ba-a57a-45fc-b4ca-d2303e9fe681", + "id": "d19a29f3-7ffe-4e94-b6d7-244a460c588d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147834,7 +147834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe82c7db-1e26-478f-af19-5b0fdbb52885", + "id": "9089d3a4-d699-4f62-9336-36208675d32f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147878,7 +147878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a59cc39-0d9a-4ca7-8501-b357c37fb11b", + "id": "c7c3bfe0-8d8b-4805-819f-d79bd2e13430", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -147922,7 +147922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1bd5abb-b46a-478c-8ce3-6ecacd80c17a", + "id": "d0795ed9-8964-4229-9242-c0d88bee1aa8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147966,7 +147966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5047e4a8-123a-4420-a630-35242aeeb242", + "id": "21afa1cf-68aa-4333-a2f8-af2f29e33820", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148016,7 +148016,7 @@ } }, { - "id": "2e208a73-90da-4674-b6af-36a4fba9ebb8", + "id": "5c7f2d64-b352-40fc-9cdc-af5b6e3ee9ca", "name": "Service Desk integration template by scriptName.", "request": { "name": "Service Desk integration template by scriptName.", @@ -148058,7 +148058,7 @@ }, "response": [ { - "id": "9607bea4-1cde-4013-a2f5-d2bee687bb5c", + "id": "434c4b19-461a-4820-9a30-613d2b30526b", "name": "Responds with the ServiceDeskIntegrationTemplateDto with the specified scriptName.", "originalRequest": { "url": { @@ -148098,12 +148098,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"mollit59b\": -8752732,\n \"veniam_03\": \"fugiat aliqua dolore ut\"\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 \"esse_8de\": \"in ut qui\"\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": "e7162571-6041-4b19-aedd-6074f5188eab", + "id": "723211ba-a45c-4c98-a616-d20244595c11", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148148,7 +148148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa62966c-5f49-43c8-afe1-80b532199280", + "id": "1257d1fa-0626-4dfc-a014-344ccac22720", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148193,7 +148193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ea40b32-a651-414b-add8-74f1b986bddd", + "id": "8d4963b3-6b92-4520-bc94-363b4768688a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148238,7 +148238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a47936d6-5885-45cd-b816-a4c5cc4a835d", + "id": "0493b182-9e4a-4ede-bd3c-2644b97e1e55", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -148283,7 +148283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a088601a-7749-4c5d-9915-8929d1bc663d", + "id": "0774aa9c-ddcb-4fdb-8e87-cab9ef545542", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148328,7 +148328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff058492-2129-4bf4-8922-4ffe1c72a04e", + "id": "77cc8a97-9662-4c9f-b594-1019099e3ad8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148379,7 +148379,7 @@ } }, { - "id": "b5cf418c-f7c8-4c00-8820-09c34b8bfbd3", + "id": "34059724-c61d-4631-aca8-f9a1b60db964", "name": "Get the time check configuration", "request": { "name": "Get the time check configuration", @@ -148409,7 +148409,7 @@ }, "response": [ { - "id": "36546381-5e32-416f-bbc4-6a76103295d8", + "id": "23c35e79-22ac-41c5-aafe-20333dbe6fbc", "name": "QueuedCheckConfigDetails containing the configured values", "originalRequest": { "url": { @@ -148448,12 +148448,12 @@ "value": "application/json" } ], - "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco dolor\",\n \"provisioningMaxStatusCheckDays\": \"consectetur fugiat\"\n}", + "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"co\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "50b89015-862f-4811-9b63-b4f3403baf9f", + "id": "dcdaedd0-7130-4ee2-b9d7-81491a6021ad", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148497,7 +148497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65678923-92ad-43c4-94ea-8e920667b254", + "id": "f0468837-4b69-4e95-9fd8-d2618fd00c33", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148541,7 +148541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cd5a66b-3f0d-4929-819c-783cdbc5ffe9", + "id": "30d9d067-0f96-4eee-94f7-67ce2e357704", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148585,7 +148585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24cb3c44-eef2-43f6-8fc8-151792b52c4b", + "id": "71dc1e17-03b2-4b7b-86df-680a91db4ad6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -148629,7 +148629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "872aa930-bfbd-4630-8707-cf7e7e73f941", + "id": "b1fcd7b6-cccf-46d5-bd9f-7c4b9e16aa69", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148673,7 +148673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14877dbd-6bf8-4f3d-af1c-1ae284bc8bf4", + "id": "9d3cf495-5b6d-4a19-b0ea-680c482a2d74", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148723,7 +148723,7 @@ } }, { - "id": "de45bcb0-cf82-43af-aeb4-a34ad098d3ef", + "id": "ff41f725-bf44-4b41-86d3-2ec365d75371", "name": "Update the time check configuration", "request": { "name": "Update the time check configuration", @@ -148755,7 +148755,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco dolor\",\n \"provisioningMaxStatusCheckDays\": \"consectetur fugiat\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"co\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -148766,7 +148766,7 @@ }, "response": [ { - "id": "1f059420-79d3-4caf-a489-bc0eb85ac45c", + "id": "c3d6271e-e671-4a37-89a9-924dc65ef113", "name": "QueuedCheckConfigDetails as updated", "originalRequest": { "url": { @@ -148801,7 +148801,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco dolor\",\n \"provisioningMaxStatusCheckDays\": \"consectetur fugiat\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"co\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -148818,12 +148818,12 @@ "value": "application/json" } ], - "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco dolor\",\n \"provisioningMaxStatusCheckDays\": \"consectetur fugiat\"\n}", + "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"co\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "02b176dc-301c-48df-9b8b-8ffd1eae52c3", + "id": "6b9a241a-2312-4383-8c2c-4e80efb83ba1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148858,7 +148858,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco dolor\",\n \"provisioningMaxStatusCheckDays\": \"consectetur fugiat\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"co\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -148880,7 +148880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73c1ed41-3a7a-43d4-b43e-c4c88987c699", + "id": "09bdc4f7-dd26-493c-bc33-04188ee2c3af", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148915,7 +148915,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco dolor\",\n \"provisioningMaxStatusCheckDays\": \"consectetur fugiat\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"co\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -148937,7 +148937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7838d379-768b-4d8a-b888-8915c36212fb", + "id": "e3c9a1cf-62c6-4c01-95d1-def851bb01e3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148972,7 +148972,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco dolor\",\n \"provisioningMaxStatusCheckDays\": \"consectetur fugiat\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"co\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -148994,7 +148994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a4e4f91-2de2-4514-9e70-2c8294670771", + "id": "366f8000-51d5-4b5a-a11f-0d6a32ba489c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -149029,7 +149029,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco dolor\",\n \"provisioningMaxStatusCheckDays\": \"consectetur fugiat\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"co\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -149051,7 +149051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e939d8c8-7738-4bef-ac31-1f0a25d5ae06", + "id": "71121954-8ed6-4add-bed9-4068036142ae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149086,7 +149086,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco dolor\",\n \"provisioningMaxStatusCheckDays\": \"consectetur fugiat\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"co\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -149108,7 +149108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf1c00be-50dd-4551-ab27-eeecc3f738d2", + "id": "2208fed6-3b79-4bd0-9883-589c61427a94", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149143,7 +149143,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ullamco dolor\",\n \"provisioningMaxStatusCheckDays\": \"consectetur fugiat\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"co\",\n \"provisioningMaxStatusCheckDays\": \"\"\n}", "options": { "raw": { "headerFamily": "json", @@ -149177,7 +149177,7 @@ "description": "Use this API to implement and manage \"separation of duties\" (SOD) policies. \nWith SOD policy functionality in place, administrators can organize the access in their tenants to prevent individuals from gaining conflicting or excessive access. \n\n\"Separation of duties\" refers to the concept that people shouldn't have conflicting sets of access - all their access should be configured in a way that protects your organization's assets and data. \nFor example, people who record monetary transactions shouldn't be able to issue payment for those transactions.\nAny changes to major system configurations should be approved by someone other than the person requesting the change. \n\nOrganizations can use \"separation of duties\" (SOD) policies to enforce and track their internal security rules throughout their tenants.\nThese SOD policies limit each user's involvement in important processes and protects the organization from individuals gaining excessive access. \n\nTo create SOD policies in IdentityNow, administrators use 'Search' and then access 'Policies'.\nTo create a policy, they must configure two lists of access items. Each access item can only be added to one of the two lists.\nThey can search for the entitlements they want to add to these access lists.\n\n>Note: You can have a maximum of 500 policies of any type (including general policies) in your organization. In each access-based SOD policy, you can have a maximum of 50 entitlements in each access list.\n\nOnce a SOD policy is in place, if an identity has access items on both lists, a SOD violation will trigger. \nThese violations are included in SOD violation reports that other users will see in emails at regular intervals if they're subscribed to the SOD policy.\nThe other users can then better help to enforce these SOD policies. \n\nTo create a subscription to a SOD policy in IdentityNow, administrators use 'Search' and then access 'Layers'.\nThey can create a subscription to the policy and schedule it to run at a regular interval. \n\nRefer to [Managing Policies](https://documentation.sailpoint.com/saas/help/sod/manage-policies.html) for more information about SOD policies. \n\nRefer to [Subscribe to a SOD Policy](https://documentation.sailpoint.com/saas/help/sod/policy-violations.html#subscribe-to-an-sod-policy) for more information about SOD policy subscriptions. \n", "item": [ { - "id": "953b3d14-470a-479f-ba59-d12cbdcbfa20", + "id": "f7b70219-8f32-456b-b9d4-4cfdad5d0e14", "name": "Create SOD policy", "request": { "name": "Create SOD policy", @@ -149219,7 +149219,7 @@ }, "response": [ { - "id": "3f79b1ff-7802-4c37-9bb8-9ce5c403ef26", + "id": "d1f4e96e-da3a-4797-9721-c2a316e0fca8", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -149275,7 +149275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fba39bb-b545-4179-aaae-b54ea8a75bb3", + "id": "ccf7bfe6-5b6f-4336-9351-0fba11b1d4f5", "name": "General Policy", "originalRequest": { "url": { @@ -149331,7 +149331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7dd85375-6e6f-4da1-8577-8c062a38eda2", + "id": "23b62618-5fe5-40fe-bd08-744dd4c3449f", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -149387,7 +149387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5081011d-87c4-4cf9-b9c7-1b711959c5bf", + "id": "7f62fa61-d3e3-44fc-83b2-249a63a220f8", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -149443,7 +149443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d2def66-9709-4bac-925e-485916e735c6", + "id": "bbf9b7f0-24d9-4898-89d1-366ef7f51ca5", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -149499,7 +149499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed646ee2-93f8-48ad-be15-575b142db100", + "id": "1eb69648-acb7-49db-90e4-4731a089b18e", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -149555,7 +149555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c82764d4-9aa5-4915-b381-4a9e5a5e01a7", + "id": "fcb2335d-5e09-4fc0-8b15-818117788a40", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -149617,7 +149617,7 @@ } }, { - "id": "58437bc8-5824-416e-9427-fe10cb8ce9b5", + "id": "142b183d-6bad-4899-bbad-13fb95eb5c35", "name": "List SOD policies", "request": { "name": "List SOD policies", @@ -149683,7 +149683,7 @@ }, "response": [ { - "id": "127bf3a2-2592-4089-b0ab-fb5815d349c8", + "id": "cacc77d7-5f10-47e8-99e6-ee58adf915e2", "name": "List of all SOD policies.", "originalRequest": { "url": { @@ -149763,7 +149763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec32e3be-7330-4be2-a830-eb45685cb8aa", + "id": "86b8b356-53d2-474c-8a74-b69f2378aef6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149843,7 +149843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "418f87da-5981-4d52-814f-a750ad32a537", + "id": "81894024-5947-4daf-9442-ef40a3ae23d4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149923,7 +149923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb05b012-bf87-4fa1-9861-00d6dbdbdeeb", + "id": "4a24519c-d1d2-4c35-bcb9-b2cc05e860e9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150003,7 +150003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75223744-e634-404d-a780-5b444ee62409", + "id": "591b98e7-e38c-4d5b-9d85-73cdc086d827", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150083,7 +150083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edd3b569-da4a-46c6-890c-0319deb01e0b", + "id": "65c22bba-dc08-423d-91be-51165b03ddf6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150169,7 +150169,7 @@ } }, { - "id": "9cf54ede-8527-4657-b13d-eb871e2fb9c6", + "id": "0282945c-1acd-4e56-a343-ed56291606ce", "name": "Get SOD policy by ID", "request": { "name": "Get SOD policy by ID", @@ -150210,7 +150210,7 @@ }, "response": [ { - "id": "1c33269f-cb20-488a-944d-b27765f84f11", + "id": "75c49894-7124-4c7b-bf25-ea3d3da6a0e1", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -150254,7 +150254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f08d08b8-1928-4758-914b-53efdaf4f1a8", + "id": "8049e210-0e5c-4571-9d30-e6f6921c0c95", "name": "General Policy", "originalRequest": { "url": { @@ -150298,7 +150298,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6891d65f-a243-4dbf-9260-64653a86c9cd", + "id": "580c2a49-b761-4c5f-b323-51e8a0528c22", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150342,7 +150342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "776cb05b-24be-416c-9114-bed5e10c2db0", + "id": "b261cae9-f223-4d16-96f5-e7ca18bd634d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150386,7 +150386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae9db8ba-f601-4e40-bf1e-b87799915b55", + "id": "ed46f1a1-9081-4c38-b8e8-e4ec7dbad711", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150430,7 +150430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5352deb-d7e5-4f0f-b043-4be1ffe23ccf", + "id": "3002d700-339e-4ed0-a40e-831e8bb7c391", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -150474,7 +150474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9c146b6-24d6-4180-948c-fc0ae747dbe6", + "id": "4934743c-7bbf-4bac-bee2-bb689252dfb6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150518,7 +150518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b05b37ec-5ce4-4dc2-9daa-265bac86859d", + "id": "59431a4b-722f-4c3d-b442-0df265e776c2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150568,7 +150568,7 @@ } }, { - "id": "40c90cc2-0908-4e7e-8908-701f7108b035", + "id": "3c313466-868a-4dba-884e-b118d9f88f86", "name": "Update SOD policy by ID", "request": { "name": "Update SOD policy by ID", @@ -150622,7 +150622,7 @@ }, "response": [ { - "id": "c5873240-d7bc-4bce-b967-4c51ce6a690b", + "id": "e7ec7c3c-0f8d-45ca-897f-f0ce82abe840", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -150679,7 +150679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9172f8f6-4990-4c83-83c1-57c7700cf1d8", + "id": "e9aa642a-b961-4e17-8f59-c5ce1a83f7a5", "name": "General Policy", "originalRequest": { "url": { @@ -150736,7 +150736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c08db6e4-4778-4887-83c8-c89a2e9a1f51", + "id": "72fcb0db-b1e5-423b-a36f-308afc824ad4", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -150793,7 +150793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb6056ab-acf3-43cd-9d6e-4cedb0a81f2d", + "id": "a8ea8217-3958-49d8-87c1-90611ebfe695", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -150850,7 +150850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6af514e3-a3fa-4f2c-9aa4-5ef6fc1185b4", + "id": "847a5bdd-0cc9-4ae9-8d39-c67d93d53ede", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -150907,7 +150907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81ecfecf-3228-4df2-82d0-e172cd8dc5eb", + "id": "fd8fdaa9-4e7a-431d-80f7-8752a37cc0b1", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -150964,7 +150964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fdc2a1c-475d-4281-8337-fa4088789425", + "id": "66caa6c8-cf61-4bf6-89c5-ea7e0f9e6747", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -151021,7 +151021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20b91a56-f6ec-44aa-84aa-bcc6af9015fe", + "id": "e372404b-f5d3-4df6-852b-1f51e10e2961", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -151084,7 +151084,7 @@ } }, { - "id": "363cc169-2800-4bef-8ecf-cd08206d01e2", + "id": "8da93830-4a2c-4e8e-80b1-f2292074dc4b", "name": "Delete SOD policy by ID", "request": { "name": "Delete SOD policy by ID", @@ -151135,7 +151135,7 @@ }, "response": [ { - "id": "1e1a0ab2-5dfc-4309-8232-af5fa93db6e3", + "id": "a6d93ee5-1d9e-4ab6-8a5d-ff82abf85286", "name": "No content.", "originalRequest": { "url": { @@ -151179,7 +151179,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f8bd35de-2243-40c2-a044-b55635cd39ba", + "id": "ec4a034b-8ea1-4a22-8b03-13b57ee0dfe7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151233,7 +151233,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48386d60-02c4-4a1e-87f1-0ee72e3f1b37", + "id": "deda717a-2336-4451-9f59-84a410b158a9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151287,7 +151287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c55bd523-b252-4faa-9848-710f79aa60c7", + "id": "05775d2a-3ef5-4154-99a6-28a9c389cd22", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151341,7 +151341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27d396d3-5208-410f-a8d9-f0a4e66bac3d", + "id": "1f712306-c73d-43fa-b22f-7eaf5b134d81", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -151395,7 +151395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34f2c6e7-dade-4ee5-8164-6dd5171f5990", + "id": "75c664e0-28d9-44d4-ab65-a097bd9e28b7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151449,7 +151449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f91eeff0-0ae3-4e96-9140-a8abe4802808", + "id": "13db428f-0846-4ccc-850b-95954b944a73", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151509,7 +151509,7 @@ } }, { - "id": "f6651cae-384a-46d6-bddd-1b39c8ab352a", + "id": "b38e6ee3-5cab-4cf5-898f-36a12339cd05", "name": "Patch a SOD policy", "request": { "name": "Patch a SOD policy", @@ -151563,7 +151563,7 @@ }, "response": [ { - "id": "3c38b373-51df-465a-a927-b355c4605947", + "id": "c5912e3d-9a58-4ad4-8c5a-45901c2cb43d", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -151620,7 +151620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "027e0b2e-ec4f-4c24-818b-743045637cc8", + "id": "745b17ef-8082-43e0-acba-3864bf024182", "name": "General Policy", "originalRequest": { "url": { @@ -151677,7 +151677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5ced2a9-df37-4d72-99da-579604c44a40", + "id": "865e85ee-d70a-453b-b2db-4f7a5bab9a11", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -151734,7 +151734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a34c91a7-bf14-4694-b7f5-a033ee836f29", + "id": "e16e5758-6a8c-411d-b22d-bb5a6707a6a3", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -151791,7 +151791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3cc1ee9-1086-43e8-bb76-ac28accff468", + "id": "0e5c4a7c-f788-4490-b9d3-4e7580b3cfd5", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -151848,7 +151848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99a7df24-7903-4ba4-a2ca-7c97d123196b", + "id": "e51fe1de-4d9e-4524-8f18-dad18aebd0e7", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -151905,7 +151905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf00cb56-be91-46e4-9017-38937dfaafb6", + "id": "2befdf7d-e80b-4749-9530-d960306be71e", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -151962,7 +151962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67395f3f-343b-4e61-87c6-d7d87af0832b", + "id": "89d7c7da-44ed-4687-a500-5002dcddbf29", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -152025,7 +152025,7 @@ } }, { - "id": "c323642f-2ed1-48ca-a0d4-c094accf4837", + "id": "99b894ea-2d95-434c-8279-b3943232f511", "name": "Get SOD policy schedule", "request": { "name": "Get SOD policy schedule", @@ -152067,7 +152067,7 @@ }, "response": [ { - "id": "71481ebb-dd36-4cb6-9bff-32690d113ec6", + "id": "615d1225-5dcc-4b96-ac7a-b9a1f1a114e8", "name": "SOD policy ID.", "originalRequest": { "url": { @@ -152112,7 +152112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a46f4f34-461e-4fec-94bd-0a2b50447fd8", + "id": "fb79a64d-bbac-4bc3-b9ab-1a5fc00eb3d7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152157,7 +152157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e1c2add-dbe8-447e-9cbb-fb34fb09226d", + "id": "a1914413-58c2-4545-8cd3-a26129e40326", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152202,7 +152202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b51ea0bc-2a5f-4781-8fd8-96ddb8bda589", + "id": "f5abaa1f-b63c-4d04-8cad-d9f7335db535", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152247,7 +152247,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c21db128-8adb-4425-9191-ff86392f9e18", + "id": "12e6221a-ded6-4855-82fe-256de6452bb4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152292,7 +152292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ea3878b-b278-451b-8017-1449a9e7feea", + "id": "81ba5fd3-faeb-4c64-8329-680fd9489589", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152343,7 +152343,7 @@ } }, { - "id": "12448ec9-1a41-4192-b2f0-75c4e779f8be", + "id": "c52238d6-b1c6-4356-9a4a-b246abeb11bf", "name": "Update SOD Policy schedule", "request": { "name": "Update SOD Policy schedule", @@ -152398,7 +152398,7 @@ }, "response": [ { - "id": "0c44c30e-35bd-469c-8db8-b66146cb2d29", + "id": "ef6475ce-b4f7-423d-9b8b-18ac45275ae2", "name": "SOD policy by ID.", "originalRequest": { "url": { @@ -152456,7 +152456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c10e397c-1d5a-4016-8d33-1c383b624498", + "id": "4f4cd1fb-4b74-42e4-a600-76711dfceb10", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152514,7 +152514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abbe8aeb-0053-4996-8e50-329787616ee4", + "id": "212be868-bfc6-494f-9248-280e780b56ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152572,7 +152572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "840828c3-247e-4533-82b5-dcaf584653a1", + "id": "a138f47b-ad98-4e14-9501-35a850845210", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152630,7 +152630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05c5976e-0231-4864-96ac-e69bfb90c728", + "id": "1aa32286-6626-461b-b926-7c4bad3aea0b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152688,7 +152688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5b7c247-5914-44db-b846-9537b0fafa7c", + "id": "42595c1d-744b-4125-b2c6-e485439ca22e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152752,7 +152752,7 @@ } }, { - "id": "2fbab77f-08e5-402e-a6ba-879bd480477b", + "id": "c764664c-025f-4e64-94d9-b5b981e0b647", "name": "Delete SOD policy schedule", "request": { "name": "Delete SOD policy schedule", @@ -152794,7 +152794,7 @@ }, "response": [ { - "id": "1c5d1009-1c2c-4604-83cb-4e3912a456b8", + "id": "5307110b-718c-46be-b0bb-1a0b4e558fd3", "name": "No content.", "originalRequest": { "url": { @@ -152829,7 +152829,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2f62af37-aa4d-48ca-bf0a-0de943c3d830", + "id": "83808cca-13a0-422b-92aa-f35870e74e55", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152874,7 +152874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b95a2df-65d3-4938-9774-8828d135d386", + "id": "6be207f1-eb2e-436e-aa1c-23fb36608f1f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152919,7 +152919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42a8ae9d-da1c-44cb-8c25-4e9926c2a2d7", + "id": "957449fb-8505-4033-8408-5b860dadf46a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152964,7 +152964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1f68c59-8928-42db-afc6-eb42ef08f368", + "id": "66421bc8-8877-4649-8281-6f5c660e5a0f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -153009,7 +153009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e844b8b4-7afb-4a00-a004-03e2e1bf0aa9", + "id": "898e46a5-dd27-4186-a9ab-d0c696a0bd6d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153054,7 +153054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe95a263-8678-4f7d-953d-7ecba0f257d4", + "id": "fbb14440-4a13-40d1-9e29-e82f6faefb35", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153105,7 +153105,7 @@ } }, { - "id": "8613f28b-656d-493e-aab9-f1e6dcfe8176", + "id": "c7789d10-2921-4ecb-b8d2-d4ff45d12419", "name": "Runs SOD policy violation report", "request": { "name": "Runs SOD policy violation report", @@ -153148,7 +153148,7 @@ }, "response": [ { - "id": "bdf070a1-0063-43a9-8c44-2826405cdbbe", + "id": "38f99606-4d51-4a4c-986d-b5acd7966abf", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -153194,7 +153194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebcb2840-b0eb-42af-a7bb-d8892ea9e6b5", + "id": "187988be-2817-472e-b9f7-14728d5b7fcc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153240,7 +153240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "633ef97f-bc72-45fa-b50c-021365b4324e", + "id": "559e8659-95b5-44f4-b9a9-9a4074b8024e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153286,7 +153286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "406674ef-c6fb-4d35-98a3-15e4e2827b12", + "id": "1aa8adb4-2d03-479e-9201-63b4408a55bd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153332,7 +153332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b294ce4-3174-47eb-a57b-5550473f777f", + "id": "bfd391d7-343d-40fd-8155-8d5b00349dc0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -153378,7 +153378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64ce3bf1-fc6c-4372-8e63-9c2a16efd596", + "id": "ddde4c54-7549-4514-9e63-8e4f3c98b2fa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153424,7 +153424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a2fd8fc-cb33-4148-baf9-8d85687addea", + "id": "99da77ad-c6e3-41f0-a9fa-d6846b762400", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153476,7 +153476,7 @@ } }, { - "id": "fd878ff0-10db-458f-9488-8350e1e57e8b", + "id": "9ad7662b-1429-4d0a-8457-da780dcff289", "name": "Get SOD violation report status", "request": { "name": "Get SOD violation report status", @@ -153518,7 +153518,7 @@ }, "response": [ { - "id": "86f9869d-098c-4c69-a7a4-c3e70325972b", + "id": "1ac828b8-ae36-4c47-b9f6-89b5f82bacde", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -153563,7 +153563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "accc3a4c-b6e6-443d-8bc7-ba286551bb87", + "id": "a76c3b6a-0efd-4663-a899-f5fe57a44d8a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153608,7 +153608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8af03dcd-b4b7-46bf-ab7c-34b8b80dc14a", + "id": "e09331a4-86bb-4e7e-ba33-1e0be4422f57", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153653,7 +153653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cbde846-6230-4787-a7b4-3331316d16cf", + "id": "563012e6-dfee-4299-8b2f-26a74c9e24c3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153698,7 +153698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4e342e9-6324-4508-bb85-59f4b5dd14ff", + "id": "948fc00c-ad49-408e-a877-36ec9e4c0fa9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -153743,7 +153743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19c61ec6-2cc9-475e-8d92-4976a7a7b7f4", + "id": "7da6bf4d-4fc5-4b05-b9ad-f4f985e6c9ac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153788,7 +153788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfad9ca0-632f-4f31-ae9f-f837ccd29164", + "id": "9a6cdfc4-0e13-41a6-a7a9-46c9196d15e7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153839,7 +153839,7 @@ } }, { - "id": "b2c9461c-a88e-4c2e-9e29-5162728f25a3", + "id": "550bd878-c772-4e17-936e-eb2f643b62bb", "name": "Get violation report run status", "request": { "name": "Get violation report run status", @@ -153881,7 +153881,7 @@ }, "response": [ { - "id": "1658d76c-7822-48a5-8009-45232005a8ce", + "id": "70df6037-e78d-41f3-b8d3-5da4906b0c14", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -153926,7 +153926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ce8f0b7-c87e-4c63-ad84-47063183785f", + "id": "85962649-eecd-4389-8d16-0f17567b84d6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153971,7 +153971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2af916d6-6beb-4afe-b29e-a6e1e9c564ca", + "id": "0a05d349-d260-4f4e-898f-ce89d137f276", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154016,7 +154016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "148f5a24-6c55-437a-91de-07f5e67df2ad", + "id": "ea6604fc-415d-478c-a5dd-4dd4609a4c75", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154061,7 +154061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce291953-0e8f-4463-96c2-c9dff3063b1b", + "id": "ff64489a-14fc-4285-9627-0a98ca24468c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -154106,7 +154106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1bf435e-3295-4a37-aa32-95f6bcd3030a", + "id": "fe96401f-f840-4280-be0f-88eb82ddbcc2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154151,7 +154151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89153548-652f-486a-9a61-986068fcda30", + "id": "c6f5b2c4-6c33-4839-99db-33ebdda02e6e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154202,7 +154202,7 @@ } }, { - "id": "e4c35a2c-ed57-4cad-aee2-cf13edec45a5", + "id": "fdbeffde-f8d4-4212-b45c-1cce9d16a088", "name": "Runs all policies for org", "request": { "name": "Runs all policies for org", @@ -154245,7 +154245,7 @@ }, "response": [ { - "id": "7e3c7a6b-7050-4114-93db-b2cb86a89902", + "id": "5f4ef59d-5ac7-436d-9b16-4f3a45ed370a", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -154302,7 +154302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdf422ba-1790-4127-9034-8cedfef226a9", + "id": "1eddb918-77ea-46e3-abdc-3a4e3395a87b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -154359,7 +154359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86110405-9e80-4e77-8140-7dda77862f28", + "id": "c2b9e23a-984c-468d-9103-db5dedaaea72", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154416,7 +154416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2af6a86-250c-4e5b-adfc-5fecd8a48e06", + "id": "2d20b514-d5d8-43c5-8e20-57759864a8b0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154473,7 +154473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93fbd33c-0e7b-4fa9-9d4c-d55ae0c48c42", + "id": "7cc67bb6-4bff-4d68-9c23-1a506596964b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154530,7 +154530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67167829-2868-4afe-8f61-67bfac106e08", + "id": "cf171e74-a0d3-4d40-9968-1028f53ff78d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154593,7 +154593,7 @@ } }, { - "id": "d16f46a9-7d3a-4fc1-881f-bd78abf3bab6", + "id": "eb870291-c2a6-455d-a64b-cc25971fba20", "name": "Get multi-report run task status", "request": { "name": "Get multi-report run task status", @@ -154622,7 +154622,7 @@ }, "response": [ { - "id": "89efb8cc-7aa4-4498-8768-b1219564750f", + "id": "f3ddc794-9c34-4123-9f9e-18f86e21fdc6", "name": "Status of the violation report run task for all policy run.", "originalRequest": { "url": { @@ -154665,7 +154665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8619a66a-6eed-45d5-835d-2873eda73ef7", + "id": "8e307cf6-d833-45dd-8582-362976e80a05", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -154708,7 +154708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5e94f1d-9c76-40d0-b602-6d1340999848", + "id": "5eb2c86d-5e6e-4dc5-a790-7feec8275b11", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154751,7 +154751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d056336-7abf-42e0-beaf-ad1f3f2e8c81", + "id": "bd7200d5-3007-4c25-9916-fc4f53f2d900", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154794,7 +154794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e72bd8b-a5fe-4ef3-a472-2d5c7a9f4fa8", + "id": "ef84393c-5906-47d8-9803-445e7a5eebe8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154837,7 +154837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcf826bc-25cb-4554-94e9-7eb0524454b7", + "id": "c067e5c5-2384-45b1-807c-b1ab30af5959", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154886,7 +154886,7 @@ } }, { - "id": "7f51b956-befe-4560-a870-89d8b7e093fe", + "id": "c8759516-6d85-474b-8bff-1fb2235e54b9", "name": "Download violation report", "request": { "name": "Download violation report", @@ -154928,7 +154928,7 @@ }, "response": [ { - "id": "f4e21479-92a2-409a-8ead-544a5d820f3b", + "id": "a7134ad1-a601-4386-a9d0-c765a8c157fe", "name": "Returns the PolicyReport.zip that contains the violation report file.", "originalRequest": { "url": { @@ -154968,12 +154968,12 @@ "value": "application/zip" } ], - "body": "minim", + "body": "exercitation laboris ex sit", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "507daaa4-66b9-482a-8fed-c7bf3fcdb9d8", + "id": "98b2b28d-0889-40f8-82bc-7e855c252a97", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155018,7 +155018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "952da1a9-f8fb-4176-a05a-f39a47532b8e", + "id": "0aa5fe5c-54ac-4961-9644-925285a320ee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155063,7 +155063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb5d3cae-fab4-4d78-ae9a-6f8f1d89af95", + "id": "be0c5a80-6fb2-4df4-a38c-a95b48219938", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155108,7 +155108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2670a52-3253-46cc-bdad-0aae24b52872", + "id": "00a679a9-77cd-4307-8f45-8951dd402725", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -155153,7 +155153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85aa6287-e773-4b59-82f9-e5debd5bbdf9", + "id": "e48c9d0f-5cf3-45ce-bf9c-54c078d4822a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155198,7 +155198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43c8e446-5b9b-4d33-925c-9324babc369c", + "id": "23461319-080c-4d4a-8d77-33ff07f9a516", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155249,7 +155249,7 @@ } }, { - "id": "769bc346-e5bc-4e4c-add6-10a913f4e5c1", + "id": "aad1d6a0-ad18-462d-9b0c-609c81c455ee", "name": "Download custom violation report", "request": { "name": "Download custom violation report", @@ -155302,7 +155302,7 @@ }, "response": [ { - "id": "c8fb0b64-c1d7-4286-9b0c-fcaaf7ca44b5", + "id": "b4d51eca-b7d3-46f8-85e9-656e995a4652", "name": "Returns the zip file with given custom name that contains the violation report file.", "originalRequest": { "url": { @@ -155343,12 +155343,12 @@ "value": "application/zip" } ], - "body": "minim", + "body": "exercitation laboris ex sit", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "52725e74-3d6a-4b5e-bbe6-9f054a7a7efb", + "id": "ab9bb92d-37d9-46a8-adbe-5e2f286923e2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155394,7 +155394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0917a1df-0da5-4c70-a7f2-bbfc76e47f05", + "id": "4fdc5723-e72e-499d-89be-997d72ab6cdc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155440,7 +155440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4df1724-fd24-4f4c-a8de-82cb33cf1ebe", + "id": "e0f1dff3-58ad-4023-ac5c-2313d5c901a0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155486,7 +155486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85ae4439-5032-4407-b1a4-28542efb3bf4", + "id": "6a00cb78-d252-4c04-a70b-0b8d96ff4dc9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -155532,7 +155532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43240435-4aa7-4f30-82bf-6d1e4a75ade9", + "id": "f04fef45-c7cd-4b82-a154-2d27f912d284", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155578,7 +155578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54c43916-2ef3-4e86-8838-d71d0ac013c3", + "id": "2f1445aa-0890-4a71-9881-9bfcb5962604", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155636,7 +155636,7 @@ "description": "Use this API to check for current \"separation of duties\" (SOD) policy violations as well as potential future SOD policy violations. \nWith SOD violation functionality in place, administrators can get information about current SOD policy violations and predict whether an access change will trigger new violations, which helps to prevent them from occurring at all. \n\n\"Separation of duties\" refers to the concept that people shouldn't have conflicting sets of access - all their access should be configured in a way that protects your organization's assets and data. \nFor example, people who record monetary transactions shouldn't be able to issue payment for those transactions.\nAny changes to major system configurations should be approved by someone other than the person requesting the change. \n\nOrganizations can use \"separation of duties\" (SOD) policies to enforce and track their internal security rules throughout their tenants.\nThese SOD policies limit each user's involvement in important processes and protects the organization from individuals gaining excessive access. \n\nOnce a SOD policy is in place, if an identity has conflicting access items, a SOD violation will trigger. \nThese violations are included in SOD violation reports that other users will see in emails at regular intervals if they're subscribed to the SOD policy.\nThe other users can then better help to enforce these SOD policies.\n\nAdministrators can use the SOD violations APIs to check a set of identities for any current SOD violations, and they can use them to check whether adding an access item would potentially trigger a SOD violation. \nThis second option is a good way to prevent SOD violations from triggering at all. \n\nRefer to [Handling Policy Violations](https://documentation.sailpoint.com/saas/help/sod/policy-violations.html) for more information about SOD policy violations. \n", "item": [ { - "id": "f9591029-d0d3-4d9d-96c2-59686dc99008", + "id": "2b4922ac-ef4e-4586-b1e2-1e209120ad6c", "name": "Predict SOD violations for identity.", "request": { "name": "Predict SOD violations for identity.", @@ -155679,7 +155679,7 @@ }, "response": [ { - "id": "1b67ada7-4405-4db0-b26b-e463e4e7b4a9", + "id": "1f81c22d-88a4-4984-93fc-bf3715015466", "name": "Violation Contexts", "originalRequest": { "url": { @@ -155736,7 +155736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3007308-1a90-48f2-81ad-2f62f70d86ed", + "id": "f159bbe5-f3a4-4ced-b387-46f71d8706d5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155793,7 +155793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c870f9c-1210-4296-8134-98c4b8c228e0", + "id": "190b8610-09da-4436-99ec-66e5823cbd84", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155850,7 +155850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44076f1c-5e7a-4578-83a8-8eedbee717c7", + "id": "209e62d2-f284-4b49-bbd6-6b7246262a0f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155907,7 +155907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c630fb22-bb7f-4dbd-862b-3fdcd195ee73", + "id": "9390f371-c535-4a2b-8f30-60dca998a6ee", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -155964,7 +155964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "559e7af3-7fc7-413c-b565-6312dab4115a", + "id": "8681db86-89c8-4405-b7cb-8f831de8cd93", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156021,7 +156021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "668dcf8a-7475-4992-905b-47a4b4d269ca", + "id": "be70e16e-b2a5-41c3-90d1-0d61d1c4f194", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156090,7 +156090,7 @@ "description": "Use this API to implement source usage insight functionality.\nWith this functionality in place, administrators can gather information and insights about how their tenants' sources are being used.\nThis allows organizations to get the information they need to start optimizing and securing source usage.\n", "item": [ { - "id": "396e6971-ef26-4cfa-80a9-b573edbe2d1d", + "id": "03569373-e28a-4eba-a571-21790ab7959f", "name": "Finds status of source usage", "request": { "name": "Finds status of source usage", @@ -156132,7 +156132,7 @@ }, "response": [ { - "id": "be86f3ab-e96b-4738-875c-b5fe9f0ae5d2", + "id": "2d6c5304-e140-48f1-b152-33b00201bf88", "name": "Status of the source usage insights setup by IDN source ID.", "originalRequest": { "url": { @@ -156177,7 +156177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba707562-72c9-46c7-bacc-170366e8e018", + "id": "f7c512d8-a132-4314-b06b-da796f2aa714", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156222,7 +156222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c4ae2bd-a923-4281-add1-94447e89c2e8", + "id": "2912507b-4ba1-4fa9-8ea4-566bef9a038e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156267,7 +156267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91885275-f61a-4198-9414-df0b7200d91b", + "id": "aa220eda-1e10-4374-9312-871ce84eda09", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156312,7 +156312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cb180ca-7faa-4f4c-8c4f-0386766727fe", + "id": "ff4e0b47-7656-4b2d-8908-dc0fbf3c32df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156357,7 +156357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c321449b-f456-41b9-89de-00c68f251b08", + "id": "b6c0cf52-ca8c-4f31-9025-d79a4422d167", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156408,7 +156408,7 @@ } }, { - "id": "9a21afb3-59c9-4606-87ed-60944f995965", + "id": "f1c8b1dc-fc25-40ca-a4b9-ef6f9334269a", "name": "Returns source usage insights", "request": { "name": "Returns source usage insights", @@ -156487,7 +156487,7 @@ }, "response": [ { - "id": "75515545-298c-4027-a175-51ebc19c661f", + "id": "bc942d41-8d6b-4f6d-80ef-3ef9d260ccfa", "name": "Summary of source usage insights for past 12 months.", "originalRequest": { "url": { @@ -156569,7 +156569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e893e6a-4d66-40b7-8455-4a97af6fd774", + "id": "8660b8d7-83c5-4f09-9e99-08b803f1c3a8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156651,7 +156651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "097e2d42-cd81-416c-b605-c44ce46087aa", + "id": "9b925642-2823-4dee-9044-ff9be036d9a2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156733,7 +156733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff14174b-caa3-47ff-9740-cecfa32d6802", + "id": "2d5cf770-a85e-4e67-ae98-0fc2931e4872", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156815,7 +156815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47476503-0ada-4a36-888a-d330370c3c1b", + "id": "aef498b4-9a6f-4c46-b879-17ff7d6c88a9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156897,7 +156897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "455ac610-09c6-4d3c-bea5-20f38fb4f230", + "id": "1a29e14c-1b20-46c1-938a-e089521a577d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156991,7 +156991,7 @@ "description": "Use this API to implement and customize source functionality.\nWith source functionality in place, organizations can use IdentityNow to connect their various sources and user data sets and manage access across all those different sources in a secure, scalable way.\n\n[Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html) refer to the IdentityNow representations for external applications, databases, and directory management systems that maintain their own sets of users, like Dropbox, GitHub, and Workday, for example.\nOrganizations may use hundreds, if not thousands, of different source systems, and any one employee within an organization likely has a different user record on each source, often with different permissions on many of those records.\nConnecting these sources to IdentityNow makes it possible to manage user access across them all.\nThen, if a new hire starts at an organization, IdentityNow can grant the new hire access to all the sources they need.\nIf an employee moves to a new department and needs access to new sources but no longer needs access to others, IdentityNow can grant the necessary access and revoke the unnecessary access for all the employee's various sources.\nIf an employee leaves the company, IdentityNow can revoke access to all the employee's various source accounts immediately.\nThese are just a few examples of the many ways that source functionality makes identity governance easier, more efficient, and more secure.\n\nIn IdentityNow, administrators can create configure, manage, and edit sources, and they can designate other users as source admins to be able to do so.\nThey can also designate users as source sub-admins, who can perform the same source actions but only on sources associated with their governance groups.\nAdmins go to Connections > Sources to see a list of the existing source representations in their organizations.\nThey can create new sources or select existing ones.\n\nTo create a new source, the following must be specified: Source Name, Description, Source Owner, and Connection Type.\nRefer to [Configuring a Source](https://documentation.sailpoint.com/saas/help/accounts/loading_data.html#configuring-a-source) for more information about the source configuration process.\n\nIdentityNow connects with its sources either by a direct communication with the source server (connection information specific to the source must be provided) or a flat file feed, a CSV file containing all the relevant information about the accounts to be loaded in.\nDifferent sources use different connectors to share data with IdentityNow, and each connector's setup process is specific to that connector.\nSailPoint has built a number of connectors to come out of the box and connect to the most common sources, and SailPoint actively maintains these connectors.\nRefer to [IdentityNow Connectors](https://documentation.sailpoint.com/connectors/identitynow/landingpages/help/landingpages/identitynow_connectivity_landing.html) for more information about these SailPoint supported connectors.\nRefer to the following links for more information about two useful connectors:\n\n- [JDBC Connector](https://documentation.sailpoint.com/connectors/jdbc/help/integrating_jdbc/introduction.html): This customizable connector an directly connect to databases that support JDBC (Java Database Connectivity).\n\n- [Web Services Connector](https://documentation.sailpoint.com/connectors/webservices/help/integrating_webservices/introduction.html): This connector can directly connect to databases that support Web Services.\n\nRefer to [SaaS Connectivity](https://developer.sailpoint.com/idn/docs/saas-connectivity) for more information about SailPoint's new connectivity framework that makes it easy to build and manage custom connectors to SaaS sources.\n\nWhen admins select existing sources, they can view the following information about the source:\n\n- Associated connections (any associated identity profiles, apps, or references to the source in a transform).\n\n- Associated user accounts. These accounts are linked to their identities - this provides a more complete picture of each user's access across sources.\n\n- Associated entitlements (sets of access rights on sources).\n\n- Associated access profiles (groupings of entitlements).\n\nThe user account data and the entitlements update with each data aggregation from the source.\nOrganizations generally run scheduled, automated data aggregations to ensure that their data is always in sync between their sources and their IdentityNow tenants so an access change on a source is detected quickly in IdentityNow.\nAdmins can view a history of these aggregations, and they can also run manual imports.\nRefer to [Loading Account Data](https://documentation.sailpoint.com/saas/help/accounts/loading_data.html) for more information about manual and scheduled aggregations.\n\nAdmins can also make changes to determine which user account data IdentityNow collects from the source and how it correlates that account data with identity data.\nTo define which account attributes the source shares with IdentityNow, admins can edit the account schema on the source.\nRefer to [Managing Source Account Schemas](https://documentation.sailpoint.com/saas/help/accounts/schema.html) for more information about source account schemas and how to edit them.\nTo define the mapping between the source account attributes and their correlating identity attributes, admins can edit the correlation configuration on the source.\nRefer to [Assigning Source Accounts to Identities](https://documentation.sailpoint.com/saas/help/accounts/correlation.html) for more information about this correlation process between source accounts and identities.\n\nAdmins can also delete sources, but they must first ensure that the sources no longer have any active connections: the source must not be associated with any identity profile or any app, and it must not be referenced by any transform.\nRefer to [Deleting Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html#deleting-sources) for more information about deleting sources.\n\nWell organized, mapped out connections between sources and IdentityNow are essential to achieving comprehensive identity access governance across all the source systems organizations need.\nRefer to [Managing Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html) for more information about all the different things admins can do with sources once they are connected.\n", "item": [ { - "id": "57180d2f-9201-44dc-954a-b4ba97adfa0d", + "id": "e07461d9-b177-44be-bafd-ae4b12823a34", "name": "Lists all sources in IdentityNow.", "request": { "name": "Lists all sources in IdentityNow.", @@ -157075,7 +157075,7 @@ }, "response": [ { - "id": "ca44b357-0322-4467-ace7-8cc7eb0b064f", + "id": "773ae495-c349-451f-b5e8-6b9b4f4988b1", "name": "List of Source objects", "originalRequest": { "url": { @@ -157173,7 +157173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac791f62-28ec-4e9b-91b3-20d9420b8b78", + "id": "926bab64-4dc4-48f9-a975-39a485633ac6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157271,7 +157271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "937e652a-a5f3-4206-bc2a-e1e8b86c0030", + "id": "ad9057d3-5127-4461-b93a-10b235775307", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157369,7 +157369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3580695-3f4b-45e4-8208-1b93c4a4fdde", + "id": "a586d560-21bf-4c37-8707-1aa3a7a6e6e4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157467,7 +157467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e96cc7d1-b7ec-4bef-b624-8696dd512e30", + "id": "6e0e6c9f-99ca-47a7-9d5d-29e4ae6f80ac", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -157565,7 +157565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71d8c719-1c71-46af-b5d5-a7f02c87d01f", + "id": "e119992e-7635-4ce8-859d-99ebb11cfaf5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157663,7 +157663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "902f7291-5f7a-44c0-91eb-4edc441ae2d3", + "id": "ba244fde-2638-4ae8-8819-1cc86784898a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157767,7 +157767,7 @@ } }, { - "id": "e7efee04-90a5-4b23-8c7e-f2cbf224b62d", + "id": "c3c58e0a-b200-4dbb-ad48-94d3fa5b3661", "name": "Creates a source in IdentityNow.", "request": { "name": "Creates a source in IdentityNow.", @@ -157819,7 +157819,7 @@ }, "response": [ { - "id": "54beee83-3363-4f5e-b9eb-7d555c5f9d94", + "id": "7e3799b3-9f6a-4610-ab32-d10958caa804", "name": "Created Source object. Any passwords will only show the the encrypted cipher-text, as they are not decrypt-able in IdentityNow cloud-based services, per IdentityNow security design.", "originalRequest": { "url": { @@ -157885,7 +157885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c88b17b9-6d93-4d55-b563-02a8b3df43c8", + "id": "83f20467-58db-47ae-be4b-f5bfbedffc12", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157951,7 +157951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec097ccc-4059-44e4-800e-4eb2395b087c", + "id": "394b719b-7c51-4797-b475-381bb4cde436", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158017,7 +158017,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5300b49-7291-4bd0-9afc-5e4be3bb603b", + "id": "883fd401-100a-4bdd-b5f3-8d321a289f46", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158083,7 +158083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7968deab-9274-4ba3-a839-6544b005bd38", + "id": "d4bc76d0-ca34-4fc1-9eeb-2aaa6870dc14", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158149,7 +158149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e036c90f-a489-40ac-9571-80e566a871c1", + "id": "09e83d9e-57ec-4058-8055-4292cca894eb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158221,7 +158221,7 @@ } }, { - "id": "41fc4b2a-d660-4996-9c23-3511c0f45034", + "id": "57eb8ade-7f39-46cd-81a2-4b2fa460ee41", "name": "Get Source by ID", "request": { "name": "Get Source by ID", @@ -158262,7 +158262,7 @@ }, "response": [ { - "id": "c327ef86-6620-46f8-a67a-e5e6a3962c58", + "id": "4eb49909-a283-4a3e-b558-36583e3c6ac0", "name": "A Source object", "originalRequest": { "url": { @@ -158306,7 +158306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9af387d3-7488-45c6-857a-2b85f6f30e42", + "id": "fd2cc708-1949-4d7a-b521-54b608a7f19b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158350,7 +158350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f33de525-c7b9-46fc-8e4e-30d7cb6ccb01", + "id": "96f12fc4-0a5c-499d-b66a-0a17472fa169", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158394,7 +158394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4d70d2b-d56d-4cd4-a6d8-20af38dadd0e", + "id": "cfb80903-54fb-4c5f-8e4f-78ae6d6821a6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158438,7 +158438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34943b1d-9a22-4975-8fb0-59f3cefb13c9", + "id": "3ce0fc03-1199-4b55-86f4-579ac835c6ad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -158482,7 +158482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "035bbe72-3687-4d70-ae16-095e0216efa3", + "id": "b357152a-6e86-438c-8663-9da5946aa308", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158526,7 +158526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4083a59-57db-4b0e-ac78-d6f65445719b", + "id": "7bca80af-9c45-4f68-a352-fe075633c693", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158576,7 +158576,7 @@ } }, { - "id": "9c133b24-71a9-4f8a-89b6-7b0dc35cb3c7", + "id": "85a2ca79-f61a-42b9-b352-349ce29a862b", "name": "Update Source (Full)", "request": { "name": "Update Source (Full)", @@ -158630,7 +158630,7 @@ }, "response": [ { - "id": "d04f543e-e9b0-467c-9503-4227bd8f556c", + "id": "093e8256-7370-43b2-ab86-ae14e55d43c0", "name": "Updated Source object. Any passwords will only show the the encrypted cipher-text, as they are not decrypt-able in IdentityNow cloud-based services, per IdentityNow security design.", "originalRequest": { "url": { @@ -158687,7 +158687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbebef62-aeeb-456c-a047-f2b99cf5331f", + "id": "e13d84c6-9115-4d5e-95b5-eae2317485f8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158744,7 +158744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c631020-0c79-496c-9b9b-bcaeaa129bf7", + "id": "af34c1da-4669-48e0-bb8e-ead3b815b357", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158801,7 +158801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b3fd131-5d22-439d-9a45-ba779898728c", + "id": "970ac34f-b2ec-4364-b813-f29fa6bbc1e1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158858,7 +158858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "488f3ea6-0d02-4e1a-94a9-e191f5ea31e7", + "id": "3391a939-7e41-401d-9647-35f8cbb9769d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -158915,7 +158915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b63dcaf9-4a04-44ca-9d76-63be8512281d", + "id": "2fa46346-2050-4d90-9b92-51b38601b4c1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158972,7 +158972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fee23a61-ec74-4531-90d0-cafc0b9255f1", + "id": "46d080b9-a005-4677-90a0-c4028bb0ef4d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159035,7 +159035,7 @@ } }, { - "id": "8ed494ed-f118-48a9-ba1b-186ca3d333ac", + "id": "631a4ef5-30d0-4937-b812-8b4ab1e616aa", "name": "Update Source (Partial)", "request": { "name": "Update Source (Partial)", @@ -159089,7 +159089,7 @@ }, "response": [ { - "id": "f2cfdf6a-813c-455a-815e-0133c33618ea", + "id": "806c88be-3e0f-4030-b502-4daea1d2ca88", "name": "Edit the source description", "originalRequest": { "url": { @@ -159146,7 +159146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14b63371-4de9-473f-bb81-75e70bc27128", + "id": "cab9bc41-4b79-41d9-b3f9-538b5753576a", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -159203,7 +159203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bd8dbbb-182e-4d44-aeb7-b1dbfeb56bc4", + "id": "ac8cd2fb-777a-4869-93d8-07fcccb8cd21", "name": "Edit source features", "originalRequest": { "url": { @@ -159260,7 +159260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94099c77-99cb-4599-b8ac-d8a59660547c", + "id": "24c02cfd-8b40-4e9e-a971-a8ca893db81c", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -159317,7 +159317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d383573-d74a-4936-b3de-ac3f332b9166", + "id": "db14bff4-e81f-4b83-9c0d-25e39fec0ee6", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -159374,7 +159374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27f0e254-07f1-41f4-8e68-581ce38099a9", + "id": "b67fab7c-297f-446d-a756-91837adca191", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -159431,7 +159431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c999f6c8-b65f-407c-967c-a09094371e61", + "id": "4533f7c3-29e2-44f9-9834-aeb3575b6e4f", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -159488,7 +159488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4267ac6-ca4f-479b-a9fd-7fc5046ec642", + "id": "f37c9294-e22b-4f14-8c09-f4ac87bc257c", "name": "Edit source features", "originalRequest": { "url": { @@ -159545,7 +159545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05359c10-bb8e-4464-9fc9-0ebe8ad95cdb", + "id": "e6746baf-95da-4a98-af41-f46ac62fec37", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -159602,7 +159602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3719380-e52c-44a0-a597-c85efde825e9", + "id": "31033b2e-a28d-4726-b729-dbd02b2dd601", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -159659,7 +159659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8aeeb8a-8c7a-4118-9801-48eb56890b21", + "id": "c63388d2-24ed-4ef3-9255-d25a58400900", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -159716,7 +159716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b977150d-1a71-4241-afee-f8d5a3f33487", + "id": "dfba7d13-5632-4564-91c2-fe1d7afa29b1", "name": "Edit source features", "originalRequest": { "url": { @@ -159773,7 +159773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4e4bc31-f1ce-4f84-b805-668eb76b2dbd", + "id": "5de2eb66-88b9-4ebd-8135-ff1265da7953", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -159830,7 +159830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c79297d9-3d85-4ba8-af76-2f38a3e5a130", + "id": "3ce81fd8-fc32-408c-b953-71a8059a7c74", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -159887,7 +159887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34db6b85-ba90-4aa6-91a3-c00e63602f73", + "id": "7006c2a9-91a9-4b4f-9447-26b10ee38dfc", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -159944,7 +159944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "139c9fe8-a45d-4825-8cd6-61dc4483386c", + "id": "295d165b-2be8-4785-9110-82e625eaa15c", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -160001,7 +160001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7daf10da-f208-443d-b32a-9791d395bf50", + "id": "6a0799a8-19a8-41e7-996c-98669ca40934", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -160058,7 +160058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39a8cb36-8572-47a5-943d-36ae3a806737", + "id": "7e10c6f7-a080-4f26-bc63-2aa0c2740926", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -160115,7 +160115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c33ff5e-196c-4dbf-b0ec-0198dc146ed9", + "id": "eb9987f3-1909-4c6e-a526-711847679628", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -160172,7 +160172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a73a39dd-1950-449a-a542-4dc38935135f", + "id": "880c5899-da64-43ae-8d00-782362a6d61b", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -160229,7 +160229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9157ed82-be79-463e-be90-e1a2ef284130", + "id": "c6f52170-5852-4abd-bf2a-7b12fe315ace", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -160286,7 +160286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37a92d0d-6c60-48a6-bf25-647480a27f2c", + "id": "f0170c0e-ab8a-4cce-974e-8a221d300d3d", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -160349,7 +160349,7 @@ } }, { - "id": "3c793429-0a50-43c9-a6a9-a5df5584066c", + "id": "e97eda79-5d5f-4737-848f-b0f13f2fdb82", "name": "Delete Source by ID", "request": { "name": "Delete Source by ID", @@ -160390,7 +160390,7 @@ }, "response": [ { - "id": "13d5134f-ae15-4a31-94a5-a5c8b92182d0", + "id": "e53b0348-0403-4a6c-802f-3502581cd988", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -160434,7 +160434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f23f2a1c-bcd7-450c-b555-6be64cc04336", + "id": "079240f3-5cb0-4d8c-9492-4227c5c45680", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160478,7 +160478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12230daa-ac86-434d-bf06-f7837e230f9e", + "id": "309af04f-6444-44c9-8deb-180fae21b30f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160522,7 +160522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "436728f7-c9ff-4ffe-a5ea-ba07051023cc", + "id": "46eab22e-1cf9-4957-8b0a-b6b5e1c43331", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160566,7 +160566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a42e651d-f6b4-4e47-80b8-207e7d31a252", + "id": "7adbde89-6bf5-44d4-905b-e21cd31d7805", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -160610,7 +160610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30d467aa-03c3-4b21-8dd4-51f53ff5747f", + "id": "6c62bd9f-1c3d-4208-88be-6cad0d8e68dc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160654,7 +160654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "989ef8c0-e362-4216-b98f-64cf5850ab3f", + "id": "5dfa3496-223d-4584-b73d-93738a037baa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160704,7 +160704,7 @@ } }, { - "id": "0411a406-d85e-4a70-b4a4-a1d9cd89cfc5", + "id": "b093170c-adf0-478f-8935-2bf393fdbb5b", "name": "Attribute Sync Config", "request": { "name": "Attribute Sync Config", @@ -160746,7 +160746,7 @@ }, "response": [ { - "id": "20681473-bf73-4d59-a2ba-399a7c1faf07", + "id": "e0e7d6a4-6fc4-4f3a-9da6-9c9956ef72c5", "name": "Attribute synchronization configuration for a source", "originalRequest": { "url": { @@ -160791,7 +160791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b4d0c26-18e5-4fee-8a5e-cb983979615a", + "id": "290adebb-0860-480f-a9b3-d3c18221f101", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160836,7 +160836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ac5e1f5-47de-49a3-8dda-d6fef32eb5e9", + "id": "ceb22194-f097-49b7-8989-864fc01f3896", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160881,7 +160881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f771c197-7678-48e9-a1dd-1fad80a22738", + "id": "ac7a71a4-8fe3-4fb3-a009-94840e320ce5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160926,7 +160926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08b473d3-2ad2-4b39-8cb4-ff5b8889c61b", + "id": "381e4dc5-1a82-4459-bc08-58738f75b2f1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -160971,7 +160971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09892af0-b73a-4d11-a59f-10593674214a", + "id": "c0c0ecfc-b272-42ad-8801-fffa43fd9bfa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161016,7 +161016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "749a9e33-f64b-42a5-a117-89377391fb15", + "id": "e624175e-a894-4b84-9a81-357f53f35a3b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161067,7 +161067,7 @@ } }, { - "id": "7eabe70a-0fb2-402e-8ce4-1900ecbff91b", + "id": "0d2a2e05-e9f1-4932-b3b7-4cc0000cf638", "name": "Update Attribute Sync Config", "request": { "name": "Update Attribute Sync Config", @@ -161122,7 +161122,7 @@ }, "response": [ { - "id": "0711564e-0043-42c1-99d2-70e4e4fe6220", + "id": "1b64d806-db72-4926-b405-43e192c58acc", "name": "Updated attribute synchronization configuration for a source", "originalRequest": { "url": { @@ -161180,7 +161180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cf58c3f-df6b-43df-a334-eb17c65d7d82", + "id": "f4af375f-c3dc-4970-b453-832c661d67a0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161238,7 +161238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acf81597-7cac-4a28-b3cc-c8e4299c88f2", + "id": "6a7099c0-fdb1-4524-a4ef-f250c73165af", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161296,7 +161296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb7843d0-ff92-46d1-9a21-619c2d38fa4e", + "id": "562a3323-2f7b-4d06-82fc-1d048e082335", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161354,7 +161354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37f99766-58fe-4936-8560-e7793e92fc2f", + "id": "bb252006-7701-4d5a-8217-b445ec9b0dbf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161412,7 +161412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e106e4be-3b4c-4271-9ff9-9f4ac63e43ff", + "id": "6f5b890a-99dd-4255-a6cb-85c8d8b56ecb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161470,7 +161470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddae4125-f877-4265-9ad4-1517379ef963", + "id": "58a9f3ac-8624-4365-abc0-438668cd0e55", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161534,7 +161534,7 @@ } }, { - "id": "b64f2436-9b7d-44a2-9603-488d5114a49b", + "id": "81bf6998-3a72-4bf3-abe4-48a570961d16", "name": "Check connection for source connector.", "request": { "name": "Check connection for source connector.", @@ -161577,7 +161577,7 @@ }, "response": [ { - "id": "9f37c2bf-0703-4330-aed7-69da59f135bf", + "id": "c7f0d41f-526c-40b1-b819-31adf50be86c", "name": "The result of checking connection to the source connector with response from it.", "originalRequest": { "url": { @@ -161623,7 +161623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "647a517c-42a4-4ebc-a2dc-5e63b0b528e8", + "id": "5d10289f-8e7f-4022-b834-da68f8d951c6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161669,7 +161669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10e03d78-1fc1-4412-a8a1-31a1e5ede7e3", + "id": "1879ccd4-fa82-4672-817d-8edf8518a9aa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161715,7 +161715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "955b77e4-71a4-41fe-9a5b-27871af7579a", + "id": "2ca08018-6f89-4dc8-ab27-472c12cb8aeb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161761,7 +161761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0540b329-9020-49b1-acf4-33e6fe382c11", + "id": "67c2252e-9a93-472d-ae33-3b1b8ba48e98", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161807,7 +161807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7056408b-5792-4ec9-836b-4b337dc37978", + "id": "ae61a176-f9c0-44a5-9847-35d838cbfb05", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161853,7 +161853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36034c97-9fa4-4c7e-aae2-3b7efcd85e5f", + "id": "57f54535-caed-4a10-a4bd-b4e9e1fc043c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161905,7 +161905,7 @@ } }, { - "id": "242c12ed-1f9f-4ed0-bfc0-c0023055aabd", + "id": "2d0817e7-2198-47b3-a850-32450a563120", "name": "Peek source connector's resource objects", "request": { "name": "Peek source connector's resource objects", @@ -161961,7 +161961,7 @@ }, "response": [ { - "id": "56737430-394c-4f53-86e6-d38a0b75717c", + "id": "5dde137a-6a93-4329-b9b6-c2cea5af004e", "name": "List of resource objects that was fetched from the source connector.", "originalRequest": { "url": { @@ -162015,12 +162015,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"ODS-AD-Test [source-999999]\",\n \"objectCount\": 25,\n \"elapsedMillis\": 1055,\n \"resourceObjects\": [\n {\n \"instance\": \"culpa sint\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"consectetur\",\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\": \"magna dolor i\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"Excepteur ullam\",\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\": \"dolor consequat aute pariatur\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"laboris enim sint laborum\",\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\": \"ex et Duis\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"dolor cillum reprehenderit pariatur\",\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": "c6b878ab-cc89-4f7a-9e1e-7b8ee5606e81", + "id": "d6cd1b6c-9115-4c7c-b71c-6a0a1097c4cb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162079,7 +162079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46432a23-a8e0-49ef-b78a-a9ff8b449468", + "id": "bf19df5f-4fc9-4742-a788-7a31ef0bdcbd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162138,7 +162138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21f7817f-dfc4-4a11-8085-c2b68be6ea35", + "id": "288c5832-3ec8-4f78-80fa-db4676f0d6bb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162197,7 +162197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b49e23de-6160-4267-8ee3-a719710b898d", + "id": "74527792-b619-4c40-9dfe-865f29d4f28f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -162256,7 +162256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2de1ecc3-fd19-4c8f-ba3a-80ff8cbac360", + "id": "cbe9acb5-f844-4ead-89c2-422021c8c3a6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162315,7 +162315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2702e4ee-8d4f-4d72-893d-b695da79e29a", + "id": "0905d6c2-a5bd-4226-af96-ece7acaa4f95", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162380,7 +162380,7 @@ } }, { - "id": "2f344719-015b-44ff-b1b4-0b4f03760784", + "id": "980b914c-dc10-47bd-853e-3916f9094696", "name": "Ping cluster for source connector", "request": { "name": "Ping cluster for source connector", @@ -162423,7 +162423,7 @@ }, "response": [ { - "id": "2c02b83d-ef81-47d6-af4f-4fac67de9287", + "id": "d0037124-a809-4435-aec7-e97dba40b58c", "name": "The result of pinging connection with the source connector.", "originalRequest": { "url": { @@ -162469,7 +162469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a1542fd-45cc-46de-a580-ef9cbbe848d3", + "id": "020be9f8-4fb7-4242-b495-b269120c0072", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162515,7 +162515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0e559c6-551b-4849-ba83-55618fb1a949", + "id": "a4f679c7-f312-4e1a-a4b6-eb3a05ea8d24", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162561,7 +162561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "464e61cf-1ac1-4983-b034-00bb74bda92d", + "id": "a9128dda-af42-45fc-b110-89898543b368", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162607,7 +162607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2caf649-42fa-4990-bad0-75025293a5a2", + "id": "e2d33517-2f0e-42ca-9550-bfd25bc68d31", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -162653,7 +162653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27ca0478-9c1b-4952-a7bc-5dc0ee555d74", + "id": "bec115f3-339f-414a-a9bc-2745194a6e12", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162699,7 +162699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19c7f1a8-39a3-4859-ae13-e6d3f99544e4", + "id": "d7aa464d-eee3-41dd-804a-24547505077e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162751,7 +162751,7 @@ } }, { - "id": "ae0e8550-9f90-48ff-b7b0-cdd343e72283", + "id": "eb6da361-053c-4bb7-8470-07c8c68f8da7", "name": "Test configuration for source connector", "request": { "name": "Test configuration for source connector", @@ -162794,7 +162794,7 @@ }, "response": [ { - "id": "c8e57d2a-03ad-4e94-a102-d2e394101d39", + "id": "17d049c4-c75e-42d8-80b6-ab5a5739f142", "name": "The result of testing source connector configuration with response from it.", "originalRequest": { "url": { @@ -162840,7 +162840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "304316d5-82c1-44a5-bdde-60c19b5a8cd2", + "id": "34acd174-1963-4d1c-b9b8-09b3f8bd5606", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162886,7 +162886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d077a7ee-b62f-4b75-9c8d-0aa472fc7042", + "id": "802a0877-c613-4b78-9d6e-6c581fcca65b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162932,7 +162932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ff8e251-e2ac-4ff6-8e79-b2c00096e475", + "id": "a6224652-20cd-4cab-a3c4-adb4d8d4741b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162978,7 +162978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a342e9cc-5c61-4ebe-b407-28b8c32b9cb2", + "id": "0ebea03a-fd73-4522-bfe8-23436a7f6b6c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163024,7 +163024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a08c13b-d5ec-4637-ae1e-d4ba4c371f30", + "id": "decbb32c-ff6c-4d63-9742-af886685d221", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163070,7 +163070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9069fbdf-e1e4-4de1-9c98-5eeaacf8f220", + "id": "4ef3ce27-8067-4e4d-8343-1f0814f034bf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163122,7 +163122,7 @@ } }, { - "id": "0d0a1eaf-f78c-46e2-a26f-688276e36173", + "id": "0a999b1b-f73f-4cda-a4e4-e5395fc7526d", "name": "Gets source config with language translations", "request": { "name": "Gets source config with language translations", @@ -163148,13 +163148,13 @@ "type": "text/plain" }, "key": "locale", - "value": "zh-TW" + "value": "pl" } ], "variable": [ { "type": "any", - "value": "minim", + "value": "exercitation laboris ex sit", "key": "id", "disabled": true, "description": { @@ -163175,7 +163175,7 @@ }, "response": [ { - "id": "8b8b6920-8ce3-4d54-8001-f4903b258645", + "id": "1df3fd02-7e4d-46a8-a58f-34c4485259e1", "name": "A Connector Detail object", "originalRequest": { "url": { @@ -163196,7 +163196,7 @@ "type": "text/plain" }, "key": "locale", - "value": "zh-TW" + "value": "pl" } ], "variable": [] @@ -163226,12 +163226,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"JDBC\",\n \"sourceConfigXml\": \"
\\n\\t
\",\n \"sourceConfig\": \"ut dolore\",\n \"directConnect\": true,\n \"fileUpload\": false,\n \"uploadedFiles\": \"aute ex incididunt\",\n \"connectorMetadata\": {\n \"supportedUI\": \"EXTJS\"\n }\n}", + "body": "{\n \"name\": \"JDBC\",\n \"sourceConfigXml\": \"
\\n\\t
\",\n \"sourceConfig\": \"ex adipisicing\",\n \"directConnect\": true,\n \"fileUpload\": false,\n \"uploadedFiles\": \"culpa ullamco adipisicing Ut velit\",\n \"connectorMetadata\": {\n \"supportedUI\": \"EXTJS\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7617583b-8271-450e-81d7-efc03618d8b4", + "id": "3940bdfb-099f-4bc2-8e80-712874ee5619", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163252,7 +163252,7 @@ "type": "text/plain" }, "key": "locale", - "value": "zh-TW" + "value": "pl" } ], "variable": [] @@ -163287,7 +163287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7d2bff5-a7a5-46d5-a5f4-9073f7a805ee", + "id": "d758ac75-8b96-4879-8aee-48e202e0943c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163308,7 +163308,7 @@ "type": "text/plain" }, "key": "locale", - "value": "zh-TW" + "value": "pl" } ], "variable": [] @@ -163343,7 +163343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8b45c43-1f78-42c3-9608-48d95a5195e3", + "id": "c60aa493-5692-4388-a090-4f8fe6f0d417", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163364,7 +163364,7 @@ "type": "text/plain" }, "key": "locale", - "value": "zh-TW" + "value": "pl" } ], "variable": [] @@ -163399,7 +163399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fc1ad3b-80c9-49a8-9088-d04a4785efd8", + "id": "2716b82c-a518-4e85-a0f9-aa84d3aca66e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163420,7 +163420,7 @@ "type": "text/plain" }, "key": "locale", - "value": "zh-TW" + "value": "pl" } ], "variable": [] @@ -163455,7 +163455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a345606-e695-4b71-953a-8f2f6eb8fed3", + "id": "28428968-6cf3-4477-8e14-bd9cac9af338", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163476,7 +163476,7 @@ "type": "text/plain" }, "key": "locale", - "value": "zh-TW" + "value": "pl" } ], "variable": [] @@ -163517,7 +163517,7 @@ } }, { - "id": "abbb9136-93c6-4501-a462-81e1dec06501", + "id": "7d922f35-4024-48cc-9ed0-d387d86a18d9", "name": "Native Change Detection Configuration", "request": { "name": "Native Change Detection Configuration", @@ -163563,7 +163563,7 @@ }, "response": [ { - "id": "3e396d51-7599-498f-a93c-106739300922", + "id": "6939812a-91a5-4263-bd72-8c036c987f59", "name": "Native change detection configuration for a source", "originalRequest": { "url": { @@ -163608,7 +163608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be3a60e6-8b94-41db-af3c-59513d1efbf0", + "id": "dcea618f-4c26-4251-af7d-d025ef48a49b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163653,7 +163653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb09baab-1eb7-49c7-ae57-28051fbd7483", + "id": "bfbced05-53d1-4522-b21c-234df0eafc4d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163698,7 +163698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4621cdaa-7e0c-45a3-ad44-ae247fc891b4", + "id": "d5d888d8-1e33-4725-b677-c4be079e15d2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163743,7 +163743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02b98f3b-5cfe-4af3-ad98-d16ab75f4928", + "id": "65f8d0a7-648d-4a0f-a1ae-2562470a7aa9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163788,7 +163788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc4f7bd1-9197-43a5-b419-a9a9611cd09d", + "id": "95d571a0-c60c-4b65-9f47-084e41ae9c9e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163833,7 +163833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb16e16f-a465-4df4-804f-f22776dfd752", + "id": "c0f67186-0608-4912-955f-2968436a9ad7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163884,7 +163884,7 @@ } }, { - "id": "212e5487-3364-4107-ad3c-0904e04f7075", + "id": "976999ac-0e8a-4250-85e7-353404b6c1f2", "name": "Update Native Change Detection Configuration", "request": { "name": "Update Native Change Detection Configuration", @@ -163943,7 +163943,7 @@ }, "response": [ { - "id": "521b3d1b-d932-43fb-9b6c-0439397af279", + "id": "bac0489b-23f6-4f75-9de4-477633fe3e6d", "name": "Updated native change detection configuration for a source", "originalRequest": { "url": { @@ -164001,7 +164001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05e8c22d-1e24-4a42-a1df-666b7ab52827", + "id": "5722f016-6f62-42c1-aa18-d1df6c7dec97", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164059,7 +164059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7b6d4aa-297b-4d47-a589-f8e7bdcde2a6", + "id": "f6b43148-d636-4b3a-a2b0-9e67130b8c10", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164117,7 +164117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e7aa880-26bc-41d6-a556-66baa60b1095", + "id": "40fdbf2f-a35c-43df-a92e-dc4fb311a0fe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164175,7 +164175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75dc41aa-09ac-4ffe-842e-7e9aa235d46d", + "id": "8e9b296e-f85b-4c05-bed1-ca9c7e910b9f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164233,7 +164233,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4217303-6478-4470-9e5f-c4f15eb00f82", + "id": "280ac148-22b1-453b-81a3-50457b911298", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164291,7 +164291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88bada8d-74ef-4322-a68d-311ced7eb125", + "id": "7ee04c5e-2a00-4a78-b94d-4f166e75612d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164355,7 +164355,7 @@ } }, { - "id": "3e7603cd-bb76-41b6-9afd-cdc6e2a761cb", + "id": "9bb46d64-4a41-4422-9beb-ea25e57a553c", "name": "Delete Native Change Detection Configuration", "request": { "name": "Delete Native Change Detection Configuration", @@ -164401,7 +164401,7 @@ }, "response": [ { - "id": "8eb24d00-cb04-455f-a154-df2d4ad56229", + "id": "2bfe9c4d-e85d-4f1c-8851-d367e64d3e7b", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -164436,7 +164436,7 @@ "_postman_previewlanguage": "text" }, { - "id": "25ba6684-e8b3-44a7-8b88-d8136e285be2", + "id": "e49d3f5b-3796-4a34-ac97-4cedbdae56ec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164481,7 +164481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab7d6bc9-11d5-49c2-85b8-3033b5c57a50", + "id": "77d46453-1199-450d-a836-f73f0692dace", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164526,7 +164526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c710ee53-a7d5-4cd6-aacf-810abf88137e", + "id": "7a702db5-226e-4d61-a80f-979c9d4b4c30", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164571,7 +164571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fc2d2bb-3b78-4267-a477-d6b61d2007b5", + "id": "52f3c753-8cf2-427c-9545-006213ad9638", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164616,7 +164616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c128a8a-1967-43e4-9f40-8b0ee9330fa5", + "id": "ab58632d-2f87-4674-9ad9-aa895acbeb73", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164661,7 +164661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "648d2bbb-e811-463d-aa06-c31b4e5f1651", + "id": "31297338-e73f-404c-ab75-541903a1f532", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164712,7 +164712,7 @@ } }, { - "id": "22c4fec8-2185-42e3-983b-54c5a73c6825", + "id": "cf80cf17-882d-4870-8551-c744a3557b66", "name": "Lists ProvisioningPolicies", "request": { "name": "Lists ProvisioningPolicies", @@ -164754,7 +164754,7 @@ }, "response": [ { - "id": "a98b2083-1646-425a-b283-2b6fc31828e8", + "id": "2b68b1fe-7063-4ce9-b715-2f1eeb062ef9", "name": "List of ProvisioningPolicyDto objects", "originalRequest": { "url": { @@ -164799,7 +164799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a51e21f-7829-4a3b-affe-70780d3aa549", + "id": "c2d2e1a4-09cc-48b8-95ee-b9520069a9f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164844,7 +164844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2a8f59e-9de7-4f95-98e8-c884883315a6", + "id": "0f56cb78-97df-41d1-a455-5c7c3dcc5c55", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164889,7 +164889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02358d48-48b7-4348-9779-7cef7597ca5a", + "id": "4c647e40-7581-4e21-b34f-ac61f4de898b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164934,7 +164934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74d2e32b-3ff6-45dd-894f-841420e78a8e", + "id": "5ca28cf0-114c-4068-9c3b-c527ef1e6495", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164979,7 +164979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db05dbe0-41c0-4be3-b99a-dfa013224e10", + "id": "2fcb7a7b-5467-43a3-890b-01cbe7848174", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165024,7 +165024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18eadcab-1ea1-4997-85e7-24a82ba7166a", + "id": "7604af8a-771b-49b5-8628-b794db945faa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165075,7 +165075,7 @@ } }, { - "id": "c7ee8480-d61d-45b5-9f19-0bae7921e788", + "id": "3bb2b284-38e5-4edc-9725-b6edade02251", "name": "Create Provisioning Policy", "request": { "name": "Create Provisioning Policy", @@ -165130,7 +165130,7 @@ }, "response": [ { - "id": "4529ddbf-e65b-4185-ac94-49df5b758e0d", + "id": "07b2ff03-a150-4fd7-9ee7-7b648038053d", "name": "Created ProvisioningPolicyDto object", "originalRequest": { "url": { @@ -165188,7 +165188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b3bb14c-546d-4eba-952f-87392dc7870e", + "id": "f9ab6c91-f988-4974-b4bc-a9a68ae31dab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165246,7 +165246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b82805d8-251f-4466-8036-928cfeee8c01", + "id": "6435c62d-ff9b-44b1-97f0-6b9bd16064e2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165304,7 +165304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6f8ee04-890d-4970-b226-433e4ed488df", + "id": "414ec1d7-7905-433b-a6ee-dd755a4dacbd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165362,7 +165362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04b4ffa9-7d97-4f8b-9b17-721187fa685f", + "id": "4ee99d94-0c13-4b38-8424-5a7cf8248b6f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165420,7 +165420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6aae5c07-d746-4b9d-b9ef-f20f8e734435", + "id": "27eed7b6-628d-4ea0-ba66-3fef48c82181", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165478,7 +165478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c351b36f-48c1-4e7a-b79c-939002c3b83f", + "id": "d5749bfe-b5ba-4077-b93c-633a784e284a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165542,7 +165542,7 @@ } }, { - "id": "2aa12f28-ea70-4c3a-957c-d78010e0c9b2", + "id": "a03a459b-fc0b-48ca-970b-bd9a1c295e71", "name": "Get Provisioning Policy by UsageType", "request": { "name": "Get Provisioning Policy by UsageType", @@ -165595,7 +165595,7 @@ }, "response": [ { - "id": "dc2cf587-ad39-422f-ade3-77b6ffa43162", + "id": "101f5d67-3963-4f1f-a133-e22d298bfb61", "name": "The requested ProvisioningPolicyDto was successfully retrieved.", "originalRequest": { "url": { @@ -165641,7 +165641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "558378a2-b5ac-46b7-9d7c-2e72c47c445a", + "id": "0eb5ef41-bc01-483f-9a41-de5996cd43f4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165687,7 +165687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f0bc911-d8bc-4e38-a680-bce4f233e511", + "id": "7cde80a1-0f2b-421f-a50a-3cdeaa10f627", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165733,7 +165733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e02b3bb-d626-417d-a459-f55680f1e426", + "id": "21564eb5-3577-4941-9d4c-2a655d6c3695", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165779,7 +165779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72ec462d-d550-4ab4-915e-4d8697776cb8", + "id": "1f216528-d997-4e55-9290-8ad2b8534c77", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165825,7 +165825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67ffb7cf-e6c7-41f0-bdee-8cf81cc68d77", + "id": "4b130c25-c316-4bba-8c19-b9a265f6461d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165871,7 +165871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bec328b-ff5f-49f5-8a13-767d1b3dc72b", + "id": "9aa728b9-303e-46ea-85a7-5879ca6d1f10", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165923,7 +165923,7 @@ } }, { - "id": "383b0e10-01e9-4f44-894e-622afce8bdec", + "id": "cdb7880a-2e9f-406e-9578-e208641f2721", "name": "Update Provisioning Policy by UsageType", "request": { "name": "Update Provisioning Policy by UsageType", @@ -165989,7 +165989,7 @@ }, "response": [ { - "id": "c08c0426-b256-4866-bc92-af214d1615fc", + "id": "0e4ee99c-10a0-4bc5-b908-46369e7f44b1", "name": "The ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -166048,7 +166048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53170aef-1623-4369-9964-2268f48ecc29", + "id": "a1ff8e21-92ad-49e6-8ef5-49f9b25f10e5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166107,7 +166107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1610d0d0-873b-4f12-b61b-705e9a813f7a", + "id": "4484d4e0-3779-4a8a-80c6-ffd0b8ab5b5c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166166,7 +166166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "552bda0f-317c-4c25-8c6d-3fcc1d94afad", + "id": "77b618d2-64bd-4189-98a5-33ba657647af", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166225,7 +166225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "852cee36-8be0-4243-bffb-52f90d6b091a", + "id": "48858442-6057-483f-a1c0-b367432c07fc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166284,7 +166284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "626fc65d-c427-4f99-9d77-2e0cc6be2b94", + "id": "7544289f-d213-4fd6-b972-d2e5877a316b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166343,7 +166343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c173027-db07-42f2-b1fd-c5a478e4670c", + "id": "c35286c5-5801-47be-a1cc-fd663bf82ea9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166408,7 +166408,7 @@ } }, { - "id": "746b5c10-8484-45d3-ba16-996a00a84183", + "id": "e380d265-de21-4939-8431-7b4fcc8c4440", "name": "Partial update of Provisioning Policy", "request": { "name": "Partial update of Provisioning Policy", @@ -166474,7 +166474,7 @@ }, "response": [ { - "id": "f9c8e108-ef08-41b4-897f-dedf874c452e", + "id": "1e781253-b2f2-469e-bdba-ef7ea6d806fd", "name": "The ProvisioningPolicyDto was successfully updated.", "originalRequest": { "url": { @@ -166533,7 +166533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d2374b5-5e61-4e8a-8743-61bd751aa5de", + "id": "e4ca1823-2f3e-48bf-87a3-03067964a3d5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166592,7 +166592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dad2bd04-4fc1-4f87-9340-7e1ba62d0442", + "id": "63460151-6a6e-4d67-976a-70f359f8d848", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166651,7 +166651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37ecfd8f-57a2-4494-979e-a3fdd6ecf83d", + "id": "3bdccefb-8003-4859-ad8e-ee69451b13bc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166710,7 +166710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4c92452-d158-44ca-92da-6e083cc459aa", + "id": "67017680-f99a-496d-b013-a2d4a27bd8e1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166769,7 +166769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "168c2451-eb26-4c72-9508-6f1f789aba17", + "id": "d0b70364-93de-47cf-826b-2e165c02abff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166828,7 +166828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b7f308d-5951-4346-b3d3-5321dfd181c2", + "id": "1509b138-af76-4e10-8778-039756f24c06", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166893,7 +166893,7 @@ } }, { - "id": "0c56eec5-8cef-4c8e-8c8c-ea4e88448e4c", + "id": "c2c860d4-91e1-4a08-9cb4-2b4ffb270ea6", "name": "Delete Provisioning Policy by UsageType", "request": { "name": "Delete Provisioning Policy by UsageType", @@ -166946,7 +166946,7 @@ }, "response": [ { - "id": "5af93490-18ff-46b4-aae1-0e6977b85fcd", + "id": "fe2e55c6-98b2-48b1-867f-9266fa0463a6", "name": "The ProvisioningPolicyDto was successfully deleted.", "originalRequest": { "url": { @@ -166982,7 +166982,7 @@ "_postman_previewlanguage": "text" }, { - "id": "20b4b313-2cfa-4051-a739-1fed31ea73c3", + "id": "063b2a58-2da5-4502-8c3d-db1983cf89e7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167028,7 +167028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5941e04e-59d5-46a3-a106-c6ccbcdfb2cf", + "id": "658fc823-b8e3-4205-a4f7-63c15bf7da88", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167074,7 +167074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2d22571-c72e-4073-92da-ecf7cee4cef6", + "id": "a55504a7-5a93-4b05-8cde-0dcfd6060bac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167120,7 +167120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d84711b3-f718-44ac-8242-1b44b10a9018", + "id": "2d371fe1-c497-4616-8045-6b05f82b5c64", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -167166,7 +167166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "360d8f8e-fade-498a-b041-ba8d4536a30a", + "id": "cf759674-3673-46dc-b590-fae1b960a54b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167212,7 +167212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f82480a-4ae8-42dc-9059-f2fbed4c881f", + "id": "63fd4b7f-e5d7-42f0-8403-b50d09d73722", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167264,7 +167264,7 @@ } }, { - "id": "ddb870ab-7704-4fb5-bf74-56acab83d75f", + "id": "0f37a02b-3a43-47d9-9c88-2c00f25d4ef0", "name": "Bulk Update Provisioning Policies", "request": { "name": "Bulk Update Provisioning Policies", @@ -167320,7 +167320,7 @@ }, "response": [ { - "id": "cb3ac72d-163e-4f41-a3df-5b987c694caf", + "id": "6935e37c-0720-4bae-a534-0f5e23dc100f", "name": "A list of the ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -167379,7 +167379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31156d3f-f1d9-4f9c-a8d0-0a74cb277377", + "id": "217558ac-bdab-4d4f-9ca5-1d534ad2d0b6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167438,7 +167438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35974e13-fa6b-4295-b206-c43fcd4f9764", + "id": "0bd272ef-09a3-472b-b34b-c379629cbfa1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167497,7 +167497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d31c584a-bab7-4938-8325-da653bda7519", + "id": "44ce0adf-43c6-402e-80c0-2706537e14d9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167556,7 +167556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "911841a8-2171-49d4-b9c8-1de638bfba94", + "id": "6d77eebd-1a04-4408-ab0d-e8f7ea9d0090", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -167615,7 +167615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ccaeb69-9cd4-4f7b-86d2-ed34c5cc658b", + "id": "777be0ed-f810-462f-99e9-dd7680c02e26", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167674,7 +167674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54445221-e55c-4c8e-a410-825fd9db8276", + "id": "3025b735-d5d5-43b6-9ff0-2c920da89760", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167739,7 +167739,7 @@ } }, { - "id": "c619f9d9-0e5f-4b75-bc2a-85762b85c6f0", + "id": "9995f5b8-8887-41c8-9e64-97c8c1d162b3", "name": "Lists the Schemas that exist on the specified Source in IdentityNow.", "request": { "name": "Lists the Schemas that exist on the specified Source in IdentityNow.", @@ -167788,7 +167788,7 @@ }, "response": [ { - "id": "61e9e741-e613-422c-a0af-de819b2b12fe", + "id": "4b6488cb-2d2c-4aac-aaff-58549cc96121", "name": "The Schemas were successfully retrieved.", "originalRequest": { "url": { @@ -167843,7 +167843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1d0be0b-47b0-4eb2-aaa9-1e27300f1bd6", + "id": "af722af4-6913-4160-a56a-5bf53e0a227f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167898,7 +167898,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bb727c3-f6eb-492d-8353-b9ec8d4c08ee", + "id": "15b90f37-de72-44f8-a1b7-ba842f2cb77b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167953,7 +167953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b755c39-fd8a-40b1-b949-b1ff0d68d74e", + "id": "33a7de89-4d6f-433f-8b29-65d11acc6332", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -168008,7 +168008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a19b1a15-a956-4c12-aff8-8d8490f1ea5f", + "id": "54b118d6-c2b8-43f9-b6c9-a5d29fafe911", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168063,7 +168063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d73194a9-d331-48e0-9233-3173c542e12f", + "id": "19da876b-7606-4dc2-a7a1-69acea389813", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168124,7 +168124,7 @@ } }, { - "id": "18edd071-85a8-4566-99e5-985ce231aecd", + "id": "c04866ab-c0d6-4c6f-a3ea-ff5e72f9277a", "name": "Creates a new Schema on the specified Source in IdentityNow.", "request": { "name": "Creates a new Schema on the specified Source in IdentityNow.", @@ -168176,7 +168176,7 @@ }, "response": [ { - "id": "0bf79583-4722-4e89-8c37-d4ca5d6165c1", + "id": "9338d880-a176-431f-81a6-25353154786a", "name": "The Schema was successfully created on the specified Source.", "originalRequest": { "url": { @@ -168234,7 +168234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14ec536e-8ccd-4be3-9a02-145c071de869", + "id": "15405e2d-1301-4cad-a5fd-a7ceb3605535", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168292,7 +168292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd264a16-9b1c-440f-ab49-620b58a27189", + "id": "1935b645-a35c-4dce-a774-ee342398752c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168350,7 +168350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b80526ec-5dcd-4c8c-ae7e-d70ee435d28c", + "id": "e0fa4b44-c49d-4af4-a2f9-d2e9091cb2ab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168408,7 +168408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc23fe87-127a-4502-913c-eb48d97c29c6", + "id": "5081bf95-18c3-47c4-9128-4573f6b5176e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168466,7 +168466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "444e500c-109b-42d5-9e41-874aab6004bb", + "id": "25d2cbe0-434d-4db3-ac55-60dbe97d82de", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168530,7 +168530,7 @@ } }, { - "id": "4b53f41f-8661-41ea-94bc-2b786aa9ab1d", + "id": "f0f133b9-a96e-4916-9fe3-c0c326684a76", "name": "Get Source Schema by ID", "request": { "name": "Get Source Schema by ID", @@ -168583,7 +168583,7 @@ }, "response": [ { - "id": "b717a23b-570b-4bb7-99eb-e6df1ba5d639", + "id": "050be374-ce87-401c-b020-7e97c10b8582", "name": "The requested Schema was successfully retrieved.", "originalRequest": { "url": { @@ -168629,7 +168629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e8a50d3-a269-46e1-9eb8-4ddd003ffe36", + "id": "fca9afd1-e8e7-4028-ac5f-5862aac381ba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168675,7 +168675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1f8be98-25d8-4eef-ac76-1eb0595dca47", + "id": "2a215613-cf5b-42f8-b4e0-bf33e7368e6c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168721,7 +168721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa50a75f-64f9-4954-84c4-5e401612206c", + "id": "651e8c99-8b2a-4735-9bda-295eafe7b86f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168767,7 +168767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdf755e7-2d27-442a-a4e9-a695569f4e4f", + "id": "01a33dbf-737a-4b90-9eeb-009091f97f6b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -168813,7 +168813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a9456b1-01ed-4725-906a-a1b099bdefde", + "id": "e8539ee5-394d-4c4a-b6df-d1f8d2ee201c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168859,7 +168859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8df10cc5-dc01-4768-8039-933546526f47", + "id": "f7e2c9f4-9559-46e2-8790-1973ff0fd814", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168911,7 +168911,7 @@ } }, { - "id": "a4dccb70-9e2f-45f7-937f-6603adaea71f", + "id": "f721e52f-2e90-442a-8989-8ef101282a00", "name": "Update Source Schema (Full)", "request": { "name": "Update Source Schema (Full)", @@ -168977,7 +168977,7 @@ }, "response": [ { - "id": "e7cfd818-4e92-4833-97d5-8015e838b083", + "id": "4a752f97-db84-4cd3-982c-5eb425f249f2", "name": "The Schema was successfully replaced.", "originalRequest": { "url": { @@ -169036,7 +169036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2232eadf-69a2-46da-8c8a-865ffd6bd8f5", + "id": "63f1c1e3-af70-4ddb-b2a1-8a47e9bd489d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169095,7 +169095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "114a12ff-2e9b-4487-a831-aa683cdc6308", + "id": "8016d539-38bf-4099-9775-5c6a240b3c29", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169154,7 +169154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f062519-9567-4017-b12a-24cf5977fc75", + "id": "499794ec-6467-426b-a648-9fc4f609cd05", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169213,7 +169213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed8ff914-9652-494a-b340-a98161b31b1f", + "id": "f0caba01-5602-43ff-bb78-cbe8a80708ff", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -169272,7 +169272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5cf8db1-b688-49a2-9f22-6ca7351c0491", + "id": "7f89f389-d9c2-431f-a25e-c5bef4d0963c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169331,7 +169331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b831d41f-7047-4f1b-a3d0-eef027d3b55e", + "id": "e9075aa7-860f-40f9-b479-86596f1aa7df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169396,7 +169396,7 @@ } }, { - "id": "fa711fae-1e53-484b-ba5d-5445634279e4", + "id": "ab298d21-b88c-401e-9393-d7365af046ac", "name": "Update Source Schema (Partial)", "request": { "name": "Update Source Schema (Partial)", @@ -169462,7 +169462,7 @@ }, "response": [ { - "id": "2894070a-49ba-4260-9764-11d98dc49740", + "id": "b6d5e725-d251-4665-8d3e-e088d9923e09", "name": "The Schema was successfully updated.", "originalRequest": { "url": { @@ -169521,7 +169521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ce19802-2374-47cd-9a56-f6dfa999fbec", + "id": "56587c0b-4be2-4498-bb1d-39526203ef26", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169580,7 +169580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b83e5c3-a6ac-4972-99fb-9d86e0ff3f85", + "id": "c661bf40-1bc8-4c35-ae42-52b879922e30", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169639,7 +169639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ca703f7-b7ae-48ac-a171-cbcfcf5207d4", + "id": "36cbb955-c0c5-4b0c-ab90-344f7f1ccc89", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169698,7 +169698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3c1990f-42e5-482c-a10c-b27adb1bde13", + "id": "29c19c7c-3595-480e-a506-c0bebe4ddecb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -169757,7 +169757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c04dcb6-95bd-4b55-9abd-35ead40e734a", + "id": "1640301c-d780-493f-aeda-be1c016b294e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169816,7 +169816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c900145a-a159-478b-a840-b4d08a0e2a5e", + "id": "2ed0283a-02a1-491f-88cf-25ec5b3df051", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169881,7 +169881,7 @@ } }, { - "id": "d1b38300-336b-4bdc-90e7-755954b2dd40", + "id": "e6ef75a9-60f9-450f-bbba-618a21d95483", "name": "Delete Source Schema by ID", "request": { "name": "Delete Source Schema by ID", @@ -169931,7 +169931,7 @@ }, "response": [ { - "id": "5c030979-8483-4c8e-8d64-d84db5f54091", + "id": "130d3351-c6ba-4837-8517-931630929312", "name": "The Schema was successfully deleted.", "originalRequest": { "url": { @@ -169967,7 +169967,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7a29a285-b09d-4e2a-9916-100bead6e922", + "id": "2eef27a8-c311-479d-83c9-83f9567b1a7b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170013,7 +170013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f011301a-754e-4db4-95ec-4345bd44b41d", + "id": "454174ab-3413-4287-8ef8-cff019a89879", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170059,7 +170059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26bbb4a4-3d22-4ab3-aedf-fa764bba2a8a", + "id": "958597bb-441d-442e-ba36-2a037b409d4c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170105,7 +170105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8797069d-dcda-4cf6-8c88-8612ef2f501a", + "id": "510d4964-b4da-4455-88a5-3e4e25acb7e1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -170151,7 +170151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5866eb90-3a6c-4470-9e6d-ef0d82406031", + "id": "b67804b4-cfef-4a67-b31e-4f1b7bba9b52", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170197,7 +170197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f8a94ad-69c3-427f-904b-1c625fe0cb24", + "id": "385e7b59-c4b5-4e04-aba7-43912715f7fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170249,7 +170249,7 @@ } }, { - "id": "b8008bac-9e9a-48d3-86d8-d7fe73a3a404", + "id": "9d9d6f3f-6b60-4121-ae6b-1c0cc4ea88d2", "name": "Downloads source accounts schema template", "request": { "name": "Downloads source accounts schema template", @@ -170289,7 +170289,7 @@ }, "response": [ { - "id": "1a34cb3c-8733-4530-81f6-2b0cf1bec09f", + "id": "799a5044-972e-440c-99b8-134e268b2122", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -170335,7 +170335,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6e0ef661-5fa8-4e90-a5b7-3fbcdf625032", + "id": "7c05e99b-5378-461f-afd4-f557a63a39a4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170381,7 +170381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51fef939-3a65-4c0f-adbd-853d5eb70d00", + "id": "fc13fcbc-5dab-42b9-b3a2-470858da04ce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170427,7 +170427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "854a9575-2881-41e2-b24b-228a47e5929d", + "id": "20efc884-3dfa-4306-ba76-a7018f8fb88c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170473,7 +170473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39f8dbaf-ef0c-4468-b8a7-2d7896629240", + "id": "936163d9-cdf8-4f29-9048-44e80529628f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -170519,7 +170519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6810d733-3b1c-463f-9aae-0fa457b461ef", + "id": "f5b8ed24-62fd-45a3-bd1c-ec2c3d2ed4fe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170565,7 +170565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "764ead79-82fc-4e05-b887-423158cdacc8", + "id": "b8a6bb58-d485-4956-8b42-c593e5d48219", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170617,7 +170617,7 @@ } }, { - "id": "9d5e5d3d-837a-4998-b8ab-f930aa812b98", + "id": "64ef294b-58f5-4269-9ae9-9919c6e6c94c", "name": "Uploads source accounts schema template", "request": { "name": "Uploads source accounts schema template", @@ -170669,7 +170669,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -170677,7 +170677,7 @@ }, "response": [ { - "id": "3a87ecb3-9cde-4ec3-ba7a-87457daa5408", + "id": "8c65b4ac-667d-4b7d-acad-3fccf3a32f9d", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -170721,7 +170721,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -170740,7 +170740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38821d1b-078d-447a-ad60-2174a9e9af52", + "id": "9493ee7d-17d9-4921-a105-e4ae7394fb8b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170784,7 +170784,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -170803,7 +170803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cc2be7f-d7b5-43a9-a0d1-f319b9531dda", + "id": "103f6e3d-313e-45e9-8e0b-3e9b34b94147", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170847,7 +170847,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -170866,7 +170866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85c8e7da-85eb-471c-b2b1-bf7c46a89e92", + "id": "003595f0-1a62-4879-b55c-44fa471c5d16", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170910,7 +170910,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -170929,7 +170929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f47cf6ea-31ec-411f-85f3-768bd02f8a9e", + "id": "ea0c41d4-cf19-417e-927c-0b3408a89d9d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170973,7 +170973,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -170992,7 +170992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ece78309-a743-4fb0-90f0-ddfad240baee", + "id": "4a8e28ad-46e1-4cc2-8e23-f8bec70111df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171036,7 +171036,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -171061,7 +171061,7 @@ } }, { - "id": "18f9cbfc-2625-415a-8ca6-1c93b9bd5a96", + "id": "03ccfae7-2eb8-4efb-a61b-3a69bd3861f3", "name": "Downloads source entitlements schema template", "request": { "name": "Downloads source entitlements schema template", @@ -171111,7 +171111,7 @@ }, "response": [ { - "id": "2ebdc09e-24ff-4ad2-a2cb-fba07ce1e9ea", + "id": "adc0b23e-3346-4603-9987-f5a7d77b1fed", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -171167,7 +171167,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b094f79a-a5d0-4f4a-a523-aa82a73e4244", + "id": "2a12dde9-eb60-438c-9588-09b13882de65", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171223,7 +171223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab7a61a4-c2ed-42a9-825f-eecead8d7673", + "id": "da1f923a-25a3-47f7-be19-edb5590ae806", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171279,7 +171279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73dd131f-5394-4a9a-ab7e-b94a6b840479", + "id": "e605e7d4-9cb6-46c1-9877-3e1990b5de2d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171335,7 +171335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1afe0cb-971c-4210-b1fa-df122bcd64ce", + "id": "37e1daa7-fc12-4337-8190-e5f8654fc78d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -171391,7 +171391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9a0ec1d-15c6-44cf-98cf-4ddee4417ca0", + "id": "be8bd833-3bde-4d71-b327-3dc108ac5cdf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171447,7 +171447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6307962f-7d04-41f8-9281-48041571529e", + "id": "a428182a-9c57-4aae-9c23-9bd18ce925b6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171509,7 +171509,7 @@ } }, { - "id": "bc0a38c7-42a1-43f4-8209-b6d62a1fa4b1", + "id": "9aa21da9-97fa-49b0-abcf-9efa19592981", "name": "Uploads source entitlements schema template", "request": { "name": "Uploads source entitlements schema template", @@ -171571,7 +171571,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -171579,7 +171579,7 @@ }, "response": [ { - "id": "94fe608a-c019-463b-a4d1-e6797e05b78e", + "id": "24a0ae16-4bf1-412b-aab2-4a92bea31fe7", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -171633,7 +171633,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -171652,7 +171652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f80574c-f766-47d8-961f-c59407c35b05", + "id": "05a7ef25-888a-4330-b515-c1bcef877eea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171706,7 +171706,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -171725,7 +171725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd580e65-6764-4530-bd57-afcec0a3c014", + "id": "b69d9183-bd7d-4e76-8458-51402fddcdab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171779,7 +171779,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -171798,7 +171798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26f9a947-05a6-4181-939c-d71067d9944b", + "id": "e47f4efd-0a3a-4dc5-be5e-3fed951e555b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171852,7 +171852,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -171871,7 +171871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c871a80b-c05b-4884-a574-49da33e4364f", + "id": "ca06e787-019d-433a-b768-b5f7ab532e5b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171925,7 +171925,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -171944,7 +171944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd426379-91ab-4245-9586-54da7ab66122", + "id": "353fae57-55d3-4b9c-ac68-02c8cb1ebfd7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171998,7 +171998,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -172023,7 +172023,7 @@ } }, { - "id": "09ce9ca1-06c7-40c0-9439-5968b2363e5c", + "id": "11d73067-bbec-4d4f-8e37-6db3c75c4fd7", "name": "Upload connector file to source", "request": { "name": "Upload connector file to source", @@ -172074,7 +172074,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -172082,7 +172082,7 @@ }, "response": [ { - "id": "de3442ad-0dd2-4895-a387-eb017480884d", + "id": "c4ffee4d-7b4b-4b89-a9a5-916eb6e7c0e1", "name": "Uploaded the file successfully and sent all post-upload events", "originalRequest": { "url": { @@ -172125,7 +172125,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -172144,7 +172144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f365003-bbdc-4172-8d0b-af4934f7729f", + "id": "164f2c6a-b285-4c0a-8ef4-7a448b3fa697", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172187,7 +172187,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -172206,7 +172206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "827be49f-c98d-4b02-816c-a5fac0e153a3", + "id": "68717ba7-ee39-40ce-bb43-d6a9c83d81b6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172249,7 +172249,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -172268,7 +172268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36258a1f-9101-421e-b8db-db59d5822431", + "id": "61a61e48-97dc-4905-bbde-4484b2794888", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172311,7 +172311,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -172330,7 +172330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82aa0171-4882-4ef8-8fd9-ab04eaad48ee", + "id": "e8bb26ee-93a0-4d04-aacb-3a761ccee07c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172373,7 +172373,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -172392,7 +172392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78043788-7d72-4d41-8bf9-c76de100919b", + "id": "6a3ab6cf-238b-43ad-9533-c0020ea7e623", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172435,7 +172435,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum voluptate anim in", + "value": "ad est", "type": "text" } ] @@ -172460,7 +172460,7 @@ } }, { - "id": "69a391c0-84e8-41d4-a7be-56e7f52851a0", + "id": "9d4fc2bb-01f8-4a09-9863-a094cff1e270", "name": "Synchronize single source attributes.", "request": { "name": "Synchronize single source attributes.", @@ -172481,7 +172481,7 @@ "variable": [ { "type": "any", - "value": "minim", + "value": "exercitation laboris ex sit", "key": "id", "disabled": true, "description": { @@ -172502,7 +172502,7 @@ }, "response": [ { - "id": "e921631e-33ec-4947-a702-374dbcfdd8c3", + "id": "a9b532fb-07d2-45a9-ac07-f338a5f440be", "name": "A Source Sync job", "originalRequest": { "url": { @@ -172547,7 +172547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6420961-ceba-4875-b59b-f4c9bb4eaafb", + "id": "00bfcc96-8dc8-4292-a40d-d7b90463331f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172592,7 +172592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64017f09-2c65-431f-aae5-1952f598fcbe", + "id": "b1f52e14-5c3f-46cb-9edc-96f0a5f49bae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172637,7 +172637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e69efcf8-8c38-4e28-bfc9-00ccf025e610", + "id": "52c3c421-edde-46b2-bd82-98d78cbf910a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172682,7 +172682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43ed882e-7e8a-4720-95ed-76eb95a8b0d5", + "id": "7b27536a-dbfd-4c88-b0ef-a39c338f927f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -172727,7 +172727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d63ebdc6-ed75-4e68-bf8e-af5bf00e513e", + "id": "d97c3806-d303-4402-b0f9-c144a25fdc25", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172772,7 +172772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c83dd67d-0933-4319-868a-737ca16f8071", + "id": "66e13efa-5aa3-4629-a01c-b6ea87ec8a21", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172823,7 +172823,7 @@ } }, { - "id": "8711566b-2836-4ef1-9a1b-f89f80e219f4", + "id": "9ee5cde4-1e57-4678-b576-63bfc9aa30e6", "name": "Get Source Entitlement Request Configuration", "request": { "name": "Get Source Entitlement Request Configuration", @@ -172859,7 +172859,7 @@ }, "response": [ { - "id": "908c7be8-621b-4d59-b778-3201fb2ca53d", + "id": "e8699fa4-1c69-4a96-90e4-a0122365487d", "name": "Get default config", "originalRequest": { "url": { @@ -172904,7 +172904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c96b83a-c85b-4e10-8118-314cb6494a91", + "id": "31f810ca-6a30-4606-b44a-f28886fca5f4", "name": "Get config with one approval", "originalRequest": { "url": { @@ -172949,7 +172949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7244592-6f8d-4856-b996-cf0c98816ef8", + "id": "d6fc345c-8215-4739-b6aa-5f8b4fcdbc01", "name": "Get config with multiple approvals", "originalRequest": { "url": { @@ -172994,7 +172994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b594280-dfa9-4b5b-be57-a0bccf05301e", + "id": "85d2ff85-d394-4321-a150-ce98fec67db9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173039,7 +173039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7285dab-6e87-4999-afb6-b0f7d4a94c4e", + "id": "bc8aeff7-7599-46fc-a20a-1a23c5efffe5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173084,7 +173084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d6a5c41-ca17-4693-8a05-13df9a917e72", + "id": "890b72f7-63b2-40ba-82d4-ac437b3f83fa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173129,7 +173129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b4fdb0e-93b0-46a3-87d9-442af631ea4d", + "id": "3c2caf19-89a9-4dd2-8d73-c7457ab88398", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173174,7 +173174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a391138-68a3-41e6-91b8-7218c6b5e502", + "id": "acd9dc5b-b908-44a7-8047-90c03593459e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173225,7 +173225,7 @@ } }, { - "id": "7701b42e-e77f-4cb0-92ad-89027b09971c", + "id": "f026e412-583a-4d39-aa38-26cd11582a35", "name": "Update Source Entitlement Request Configuration", "request": { "name": "Update Source Entitlement Request Configuration", @@ -173274,7 +173274,7 @@ }, "response": [ { - "id": "1f4f827b-611b-4fbc-8a65-13c453895cbf", + "id": "4a9db42e-6334-4d18-8fbf-19a9acbe383a", "name": "Set config with no approvals", "originalRequest": { "url": { @@ -173332,7 +173332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86580aa5-3e18-48fd-a3f0-511010f1b056", + "id": "9ddf5202-af0a-48de-82f1-67d9bcf607f8", "name": "Set config with one approval", "originalRequest": { "url": { @@ -173390,7 +173390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d9f489e-950f-4b31-9479-d614e08e0ad9", + "id": "22cac2cf-3181-45ca-9eaa-b9a2d9cdd08d", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -173448,7 +173448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "debf8a1f-78f8-499b-a0fe-0ba55c2aefcd", + "id": "f01284e7-13d0-426e-8f30-4fc6b10d96fe", "name": "Set config with one approval", "originalRequest": { "url": { @@ -173506,7 +173506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb0c5e93-48de-450c-83f3-b33db33390ec", + "id": "3cc6bb95-d6cc-4a5b-bf7c-464b5ff8a406", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -173564,7 +173564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "473f5354-5d77-41ad-9955-61971d89b544", + "id": "46380e98-c4dd-4040-98bb-337d38fbae6b", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -173622,7 +173622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6973523b-07c4-41f6-b276-197bf48947a0", + "id": "c15fb424-11ff-4518-8578-29044a7a1822", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -173680,7 +173680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "613ffec3-2d91-462f-a1e0-b499afe19263", + "id": "a7f46455-7ff2-4869-b451-c7f258320b61", "name": "Set config with no approvals", "originalRequest": { "url": { @@ -173738,7 +173738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b980b276-95df-467a-9c6d-1821c3f03883", + "id": "94e36731-ce70-4810-b0f4-bd89bb451c4b", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -173808,7 +173808,7 @@ "description": "Import and export configuration for some objects between tenants.", "item": [ { - "id": "5accc6ba-f4e1-443c-98ce-4a4d0139ae64", + "id": "9f237822-ff6e-458b-b5be-49e88ff807f8", "name": "Initiates configuration objects export job", "request": { "name": "Initiates configuration objects export job", @@ -173851,7 +173851,7 @@ }, "response": [ { - "id": "957e7f42-7c4d-4634-ba03-194c9c4dcabd", + "id": "d06c0573-e6b6-4fa9-940c-8f28cbebe09e", "name": "Export all objects available", "originalRequest": { "url": { @@ -173908,7 +173908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4526aee-b75b-49bf-9ee0-da528785a747", + "id": "63bbb715-8e42-4247-8ddf-9537289f4299", "name": "Export sources by ID", "originalRequest": { "url": { @@ -173965,7 +173965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "109b0d11-4d37-4286-b1a9-642d449fde70", + "id": "7e7f486e-11a8-44fc-9be3-e6c00007af18", "name": "Export transforms by name", "originalRequest": { "url": { @@ -174022,7 +174022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0f156c7-b03d-40ac-b4e5-ef03dc610b7c", + "id": "d3ab16a3-867f-4757-b3cb-e911d5e14160", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -174079,7 +174079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cd4ad5c-eb59-4f4b-8332-4dba6535c11e", + "id": "f5c60ead-25cd-4c88-828f-9d375501eae4", "name": "Export sources by ID", "originalRequest": { "url": { @@ -174136,7 +174136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e24eb9e-ad3c-4a73-80da-92ec2b735bbd", + "id": "42f64968-c05a-49fc-b4b2-3a79d96402b1", "name": "Export transforms by name", "originalRequest": { "url": { @@ -174193,7 +174193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7098e26f-a6ea-423f-84b0-1a99b613331a", + "id": "605bfc3f-2f53-48ec-9bee-15918ff2cada", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -174250,7 +174250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68acfa4a-dfb7-41e6-9f85-0231aee5288f", + "id": "5e309324-8806-49f4-a77f-869ed71d3d27", "name": "Export transforms by name", "originalRequest": { "url": { @@ -174307,7 +174307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da88780e-fca6-47b4-b3c9-cbd3eda39e16", + "id": "0ea4fe1f-ad69-4e3a-899f-f4338caf3de8", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -174364,7 +174364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99047281-d885-4a52-8dc4-bd34abd93f5a", + "id": "15272f7c-dd00-404a-8501-3310be2508e1", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -174421,7 +174421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e5a8036-6aca-4e58-bf1b-8983c4471faa", + "id": "566f268c-d53b-4f8e-a487-b3f33d0c2435", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -174478,7 +174478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "734e893b-de8c-4214-b4ec-25dde7fc8e13", + "id": "ec125a81-33f7-4772-a444-8531e9684b5c", "name": "Export all objects available", "originalRequest": { "url": { @@ -174535,7 +174535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd5109b8-acb9-4fcb-8bd8-512f732441fb", + "id": "b7152772-b591-49da-9f64-edc9298a84bd", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -174598,7 +174598,7 @@ } }, { - "id": "96e893eb-4199-487e-baa4-2344b3a24ec4", + "id": "2c3076ed-2eab-4afd-886a-bae7842f9ae9", "name": "Get export job status", "request": { "name": "Get export job status", @@ -174640,7 +174640,7 @@ }, "response": [ { - "id": "e446ebd9-a48a-4f2a-96ab-95fe463aa855", + "id": "8552f2a3-acc5-4ecd-80b0-0f4be86607c8", "name": "Export job status successfully returned.", "originalRequest": { "url": { @@ -174685,7 +174685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcfde266-b660-4c86-9a1f-3d048f6ce9b6", + "id": "ded94293-c8c4-43b8-8a51-71679aef8acf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174730,7 +174730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0ea6cb5-de39-4335-955b-4167d53f6d4e", + "id": "01fb6046-f1a7-4adb-9239-72a8131eff64", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174775,7 +174775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "606d6c3e-2b10-4c1e-8a5b-5c71ed2cc165", + "id": "02725ded-ab25-45f4-8468-6b425f7892aa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174820,7 +174820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f519592d-8f1f-4087-96cf-00fd3c0232e1", + "id": "fc47ed30-8ee7-4688-ba12-1902f37cef9a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -174865,7 +174865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "316c3e69-7d82-47b7-962a-982385be1897", + "id": "59311797-1a59-427e-8d2b-50b6dbdaa158", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174910,7 +174910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c798c081-8185-4bfa-a1a0-d198ccd041fd", + "id": "ead31b6f-eafa-4fbe-8b92-6fb915aa98b0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174961,7 +174961,7 @@ } }, { - "id": "e74666de-4832-4976-bce9-eebdebd3f48c", + "id": "4a8a3bdf-a0c2-4a06-a934-d56d9ee0d850", "name": "Download export job result.", "request": { "name": "Download export job result.", @@ -175004,7 +175004,7 @@ }, "response": [ { - "id": "0445ef75-14b3-4f58-84d4-ccee5775e0c7", + "id": "9ff6b6e9-5e0d-4f05-b0d0-b8a3ae87b52d", "name": "Exported JSON objects.", "originalRequest": { "url": { @@ -175045,12 +175045,12 @@ "value": "application/json" } ], - "body": "{\n \"version\": 1,\n \"timestamp\": \"2021-05-11T22:23:16Z\",\n \"tenant\": \"sample-tenant\",\n \"description\": \"Export Job 1 Test\",\n \"options\": {\n \"excludeTypes\": [\n \"SOURCE\",\n \"SOURCE\"\n ],\n \"includeTypes\": [\n \"TRIGGER_SUBSCRIPTION\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"TRIGGER_SUBSCRIPTION\": {\n \"includedIds\": [\n \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\"\n ],\n \"includedNames\": [\n \"Test 2\"\n ]\n }\n }\n },\n \"objects\": [\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"nisi_4\": 43958948\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"nulla76\": 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 \"adipisicing9\": 46794991.058763206\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"in69\": 69230655.72286874,\n \"sint_5\": true,\n \"mollit_dff\": 38629296\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9a2e8389-1e98-4fe3-89f7-8b481e18e554", + "id": "10d58c05-7665-45f8-b68b-18680cf46446", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -175096,7 +175096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d1858ce-0c18-4d68-a696-4718a48966b6", + "id": "c805c173-a9c6-4e65-bd26-563bc92f0214", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175142,7 +175142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01f245ca-9a01-45f4-b268-af627d618886", + "id": "d9be20c0-363a-436d-97b2-e086b136a012", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175188,7 +175188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8e8d103-02fa-46d3-bb68-67ab6778949d", + "id": "2d64f926-4fee-4ca2-b8b8-b2ccde6e52cc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -175234,7 +175234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae8c22f9-6b45-4246-b3a7-b4e45b738a44", + "id": "59c98084-21be-4d5e-825a-0ac3a6d43dac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175280,7 +175280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f9e98fd-5d8a-4eed-b7d7-fc69918f9e7d", + "id": "6fc3cfcd-1bb5-4faa-a0f9-c33eb5350a05", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175332,7 +175332,7 @@ } }, { - "id": "fd87a4d8-697e-4300-848a-f1cb5df39ee1", + "id": "10d3ac3f-955e-471e-8613-8dc164676ccc", "name": "Initiates configuration objects import job", "request": { "name": "Initiates configuration objects import job", @@ -175381,7 +175381,7 @@ "type": "text/plain" }, "key": "data", - "value": "anim consequat magna velit proident", + "value": "ullamco cupidatat velit", "type": "text" }, { @@ -175398,7 +175398,7 @@ }, "response": [ { - "id": "e7afe135-d062-41a0-8b7f-d19b5ebb0b73", + "id": "cf210fce-4f67-478a-82d3-bea9208e7ac6", "name": "Import job accepted and queued for processing.", "originalRequest": { "url": { @@ -175450,7 +175450,7 @@ "type": "text/plain" }, "key": "data", - "value": "anim consequat magna velit proident", + "value": "ullamco cupidatat velit", "type": "text" }, { @@ -175478,7 +175478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84423344-bbed-47f3-9cf9-b157c5b89cbd", + "id": "292bbf8f-222f-400e-8034-f3c54149813b", "name": "Client Error - Returned if the request body is invalid.\n", "originalRequest": { "url": { @@ -175530,7 +175530,7 @@ "type": "text/plain" }, "key": "data", - "value": "anim consequat magna velit proident", + "value": "ullamco cupidatat velit", "type": "text" }, { @@ -175558,7 +175558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d198e53-7aee-4b09-9d96-250f9e275a95", + "id": "3ce248d5-0882-4cba-a702-f0c30d4fa8dc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175610,7 +175610,7 @@ "type": "text/plain" }, "key": "data", - "value": "anim consequat magna velit proident", + "value": "ullamco cupidatat velit", "type": "text" }, { @@ -175638,7 +175638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27d9bf1b-c2ff-49c9-8496-f6b247b76c22", + "id": "1ce6eec8-030e-4923-9185-4c9158107159", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175690,7 +175690,7 @@ "type": "text/plain" }, "key": "data", - "value": "anim consequat magna velit proident", + "value": "ullamco cupidatat velit", "type": "text" }, { @@ -175718,7 +175718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9137e47-5c26-4ff5-b83d-fd276ff1889c", + "id": "531a6c29-8e7d-4022-9429-f159fd7e3234", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -175770,7 +175770,7 @@ "type": "text/plain" }, "key": "data", - "value": "anim consequat magna velit proident", + "value": "ullamco cupidatat velit", "type": "text" }, { @@ -175798,7 +175798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0783034c-1d82-4f6b-9368-5bfc29ce9c83", + "id": "6a73cb9f-a344-4b1e-8a48-d33cc63c7e29", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175850,7 +175850,7 @@ "type": "text/plain" }, "key": "data", - "value": "anim consequat magna velit proident", + "value": "ullamco cupidatat velit", "type": "text" }, { @@ -175878,7 +175878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b634eeaf-c26e-4691-a9b3-f271ec91ae99", + "id": "74fc8ab8-17f3-4939-ac37-488bd2f9277c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175930,7 +175930,7 @@ "type": "text/plain" }, "key": "data", - "value": "anim consequat magna velit proident", + "value": "ullamco cupidatat velit", "type": "text" }, { @@ -175964,7 +175964,7 @@ } }, { - "id": "82c84dff-d18d-403a-9c4c-4380670be273", + "id": "b5843889-5f51-4302-9c3a-243c4c8e5ba7", "name": "Get import job status", "request": { "name": "Get import job status", @@ -176006,7 +176006,7 @@ }, "response": [ { - "id": "aa6d18e0-5413-4b0d-b987-c5a22d2c6a50", + "id": "7ed4084f-a31c-4d95-a2a9-870c840af1d5", "name": "Import job status successfully returned.", "originalRequest": { "url": { @@ -176051,7 +176051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90175869-450b-4fc1-8a51-7b1b14f60f58", + "id": "63d243e8-8009-41a8-9baf-0919a52b7102", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176096,7 +176096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0e009ac-accb-4dd7-859e-07f74b271f9c", + "id": "1d96c4e8-67db-4fcf-ab82-ee5244e68539", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176141,7 +176141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1cfd1e4-6eab-449f-920c-e2f0d2a3db5e", + "id": "bc6b6ca2-1754-4b16-8678-f30034380188", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176186,7 +176186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f444d12f-0cbe-4c1e-8565-6ee4ae684d81", + "id": "57cf4269-ca71-43e9-8d2c-d752fca626db", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -176231,7 +176231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b016eacd-ac0a-4c25-a0bf-69af6c790a9f", + "id": "cb1c32aa-f7b5-42fb-bdfd-07b426b4c31b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176276,7 +176276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d66347e3-9a33-4625-9a4a-8034919bd849", + "id": "3093a969-7303-495f-a36d-b7e4e94fc4f9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176327,7 +176327,7 @@ } }, { - "id": "dea5ef77-7642-4cb9-bf3b-47861968303f", + "id": "11e7670d-f16b-48d7-a2bb-a73767df9397", "name": "Download import job result", "request": { "name": "Download import job result", @@ -176370,7 +176370,7 @@ }, "response": [ { - "id": "f79e97d4-9911-467a-acd4-4ef219c2c771", + "id": "58db541d-7b2e-4a7f-92ce-9e578c787ca0", "name": "Import results JSON object, containing detailed results of the import operation.", "originalRequest": { "url": { @@ -176411,12 +176411,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": {\n \"mollit94d\": {\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 \"reprehenderit_8e9\": {},\n \"Excepteur2\": {},\n \"qui_32\": {}\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 \"voluptate_362\": {},\n \"elit_65\": {},\n \"esseb04\": {},\n \"quisbb\": {}\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 \"nulla9\": {}\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 \"occaecat_b8\": {},\n \"dolore5a\": {},\n \"minim_19\": {}\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 \"quis6\": {}\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 \"deserunt_4\": {},\n \"Lorem_d7\": {}\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 \"tempor1\": {\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 \"enim94\": {}\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 \"nostrud_7\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"quis_22\": {},\n \"voluptate_2\": {},\n \"veniam673\": {},\n \"cupidatatb\": {}\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 \"site\": {},\n \"do_c\": {}\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 \"in_97\": {},\n \"ullamco_5\": {},\n \"mollit17f\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"in_33\": {}\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 \"ullamco_a\": {\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 \"nisi_c\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"in_1\": {}\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 \"esse24\": {}\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 \"est_d4d\": {},\n \"nostrud7f\": {}\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 \"consectetur63\": {},\n \"cupidatat__\": {},\n \"eiusmodb\": {}\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 \"voluptate__\": {}\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": "942596ec-1d53-4940-87f2-2dc48fdce2e4", + "id": "e9a6db10-94de-4821-b0d2-c4a7d13a7967", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176462,7 +176462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e7d9573-cefb-443a-bcb1-b14b16ba2e36", + "id": "5c9bd41a-7095-41b5-9c12-251883c01876", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176508,7 +176508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e09a1b17-671f-4158-86a1-9892f99d132a", + "id": "4602e17b-322c-453f-888c-be33f6d3501b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176554,7 +176554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0787bc07-84e6-4769-b620-6703a6b94f5b", + "id": "9e921937-86b3-46d7-b9ef-4d7b2b22e962", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -176600,7 +176600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6cec2fd-a73f-4832-a1c5-1c2003fd4fc6", + "id": "dd08e01e-65b7-48cf-9170-76a38b8577fc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176646,7 +176646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23302f5f-71a9-464a-aa26-103c6c10837c", + "id": "d321d576-5e83-4ca7-853f-8a02483bb3ba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176698,7 +176698,7 @@ } }, { - "id": "e836815c-bb53-455d-b2cf-3e476429fb6d", + "id": "755c2d03-09c8-41b9-b8b0-f8a5fd91a15a", "name": "Get config object details", "request": { "name": "Get config object details", @@ -176728,7 +176728,7 @@ }, "response": [ { - "id": "1de23466-2bd8-4cfc-a19b-b5343bebcbb2", + "id": "725d5f7c-a215-4988-886c-6ff157b35952", "name": "Object configurations returned successfully.", "originalRequest": { "url": { @@ -176772,7 +176772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6eb1f1c8-e907-4e6a-b0e6-c0827a8e1665", + "id": "b9d7d384-234c-496b-b497-ffc288ad7f6b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176816,7 +176816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d32b14a7-4b3a-4beb-8633-14a1bf6a7d45", + "id": "415405c7-a434-46bd-b156-e09035899581", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176860,7 +176860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87bc87f7-9f94-4d08-a3f6-03e3e4677b45", + "id": "7a35f8c7-be88-4a65-a672-80bec592dc46", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176904,7 +176904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5560e6e3-76e9-410d-828e-3a200df2e989", + "id": "db5f79e9-a371-4e6a-ae67-c7117619736f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -176948,7 +176948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4afb7006-596a-480c-8948-b325576c83e0", + "id": "3f5c2f95-5f0f-4930-aae5-51b1652a5baa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176992,7 +176992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0d7cae1-ce91-4932-a8a2-b8157fe5fe73", + "id": "97286a49-435d-4f0d-9fe3-0766bc161627", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177048,7 +177048,7 @@ "description": "Use this API to implement object tagging functionality. \nWith object tagging functionality in place, any user in an organization can use tags as a way to group objects together and find them more quickly when the user searches IdentityNow. \n\nIn IdentityNow, users can search their tenants for information and add tags objects they find.\nTagging an object provides users with a way of grouping objects together and makes it easier to find these objects in the future. \n\nFor example, if a user is searching for an entitlement that grants a risky level of access to Active Directory, it's possible that the user may have to search through hundreds of entitlements to find the correct one. \nOnce the user finds that entitlement, the user can add a tag to the entitlement, \"AD_RISKY\" to make it easier to find the entitlement again.\nThe user can add the same tag to multiple objects the user wants to group together for an easy future search, and the user can also do so in bulk.\nWhen the user wants to find that tagged entitlement again, the user can search for \"tags:AD_RISKY\" to find all objects with that tag. \n\nWith the API, you can tag even more different object types than you can in IdentityNow (access profiles, entitlements, identities, and roles). \nYou can use the API to tag all these objects:\n\n- Access profiles \n\n- Applications \n\n- Certification campaigns\n\n- Entitlements\n\n- Identities \n\n- Roles \n\n- SOD (separation of duties) policies\n\n- Sources \n\nYou can also use the API to directly find, create, and manage tagged objects without using search queries. \n\nThere are limits to tags: \n\n- You can have up to 500 different tags in your tenant.\n\n- You can apply up to 30 tags to one object. \n\n- You can have up to 10,000 tag associations, pairings of 1 tag to 1 object, in your tenant. \n\nBecause of these limits, it is recommended that you work with your governance experts and security teams to establish a list of tags that are most expressive of governance objects and access managed by IdentityNow. \n\nThese are the types of information often expressed in tags: \n\n- Affected departments\n\n- Compliance and regulatory categories \n\n- Remediation urgency levels \n\n- Risk levels \n\nRefer to [Tagging Items in Search](https://documentation.sailpoint.com/saas/help/search/index.html?h=tags#tagging-items-in-search) for more information about tagging objects in IdentityNow. \n", "item": [ { - "id": "bd907141-9b99-4018-a1fd-a42492f4a823", + "id": "b16b2ac4-33b8-4714-b5e4-e30e6db6f7ab", "name": "List Tagged Objects", "request": { "name": "List Tagged Objects", @@ -177114,7 +177114,7 @@ }, "response": [ { - "id": "771bdf76-fb7d-4f2f-b7ec-25f270fcdc47", + "id": "511dee2f-fd7e-44cf-81a1-efa5ad528205", "name": "List of all tagged objects.", "originalRequest": { "url": { @@ -177194,7 +177194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f11cea2f-dbf0-40f7-8e0d-47db7ddb7bc2", + "id": "2ea145a5-b135-4b95-9b20-a58d95df40be", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -177274,7 +177274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76bb3e42-b442-4554-9051-5cd340663fda", + "id": "82779474-6289-4d64-80e0-6fc341b2f65d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -177354,7 +177354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e7468ff-fc2e-4fc5-b12f-821d7bfa00b3", + "id": "c2ec7504-ca13-4060-bfd2-e704e29a970b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -177434,7 +177434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "452d3c18-d487-46b2-a7a4-7ffda4a37fb8", + "id": "68674d91-946a-4b6b-b75f-8ebaf3908e88", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -177514,7 +177514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d68b229-fc7f-4a49-abb7-bd75053e6a71", + "id": "8459ca3b-477c-4747-8b41-aef61269103e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177600,7 +177600,7 @@ } }, { - "id": "0112e163-369a-4721-b5b6-dfc31e4055f2", + "id": "5d0874ee-a38a-4d76-9663-44af2c4345f9", "name": "Add Tag to Object", "request": { "name": "Add Tag to Object", @@ -177642,7 +177642,7 @@ }, "response": [ { - "id": "b70362ea-88da-4658-8e84-345e22302148", + "id": "4589d99f-fbe3-4550-9b1d-cec95ed19f86", "name": "Created.", "originalRequest": { "url": { @@ -177688,7 +177688,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c89e834c-ba54-4ce6-90b5-3c54dda5231f", + "id": "4959464c-f58d-4ae1-a3a1-e0e4240ad0dc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -177744,7 +177744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0432e924-e168-4ee1-92c7-a5af4fa9218d", + "id": "25facca0-d737-420b-8f03-092696156d66", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -177800,7 +177800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17fb2092-d8db-46a3-b1f5-5d35463f941e", + "id": "bc740462-955a-445b-9962-f10b4689a43b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -177856,7 +177856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d3847c7-efa6-448e-bb8b-1dca91bd183a", + "id": "2c4d2352-214e-4c03-b60e-ed29c284f0ad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -177912,7 +177912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bc66a1a-10cc-4b55-b6ae-583a2206d2f2", + "id": "ba3f0c6d-2821-4cff-8966-447f8b23bd16", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177974,7 +177974,7 @@ } }, { - "id": "96467d3f-5f52-438c-a185-7f0d768ddff2", + "id": "8385c106-7d4d-4623-89a2-c952314a22a8", "name": "List Tagged Objects by Type", "request": { "name": "List Tagged Objects by Type", @@ -178052,7 +178052,7 @@ }, "response": [ { - "id": "c6347317-4a66-4293-ae0d-cfc33f23e6e2", + "id": "97b967f1-fc56-4928-ac11-203388d51396", "name": "List of all tagged objects for specified type.", "originalRequest": { "url": { @@ -178133,7 +178133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b35aa04f-ba25-4fc7-8d42-d85bd38051b9", + "id": "5411b45f-7a87-4b71-8722-b869b6bde59a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -178214,7 +178214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c9ff06d-1629-4036-a08b-191d7da65183", + "id": "064dbd9c-e8a1-41f2-ab02-5fa386fa91a0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178295,7 +178295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91de13a0-bb27-4309-acec-9b89e889e196", + "id": "946b5ff2-c1bc-4aef-ac13-00fb4fdc6f61", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -178376,7 +178376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d251f27-8e2a-4f0e-9327-d8f1cdf7e091", + "id": "e50f2dd6-b20c-40a8-9d87-a9830cf8cbe6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -178457,7 +178457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e72ed43d-d7b7-4c88-b58f-706973325b72", + "id": "de396fbb-3d91-4d99-a9da-b43043b953d0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -178544,7 +178544,7 @@ } }, { - "id": "e3f74aa5-16dc-42c7-91e5-cb94ecf263ff", + "id": "7d8f77c3-c137-4257-aafc-5da0a823e8cc", "name": "Get Tagged Object", "request": { "name": "Get Tagged Object", @@ -178596,7 +178596,7 @@ }, "response": [ { - "id": "859e043e-edcc-44b5-84a9-cd0de5ac51f1", + "id": "8bf26505-7e71-4bb2-92a0-6b4c12673dfd", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -178641,7 +178641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb660f1f-93b0-4eef-89ba-e6c45ed53be0", + "id": "74cb72a6-062d-4e4d-8434-5f152b714b2f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -178686,7 +178686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13ee7fb1-5de0-47f1-8770-59057fb15bf0", + "id": "3a1eb62b-cec4-4c6d-9efc-ed1a2af67469", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178731,7 +178731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d3df85a-b3aa-4f93-830b-bb4cb9becdcb", + "id": "7713a05a-3464-4bd3-83c3-d47b6f9b89fa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -178776,7 +178776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d24257f6-affb-4e4b-8c66-1784fe8c10e2", + "id": "c2a6d714-25a5-45a5-a5df-b123f18c41fb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -178821,7 +178821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa920442-68db-42cb-b959-966b88796d02", + "id": "fe3201e5-30cf-492f-8aef-47695c754df5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -178872,7 +178872,7 @@ } }, { - "id": "d352e12d-ea2e-490e-9ab3-0d39c3bc20f0", + "id": "a97ce8d1-853f-4aa0-9df7-eb931d45d787", "name": "Update Tagged Object", "request": { "name": "Update Tagged Object", @@ -178937,7 +178937,7 @@ }, "response": [ { - "id": "e333d082-cf5f-4d33-9b71-092689d14b29", + "id": "4cad2d91-53d2-44cd-bfcf-c4c42d9695cc", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -178995,7 +178995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7345b2a8-a7a5-49f2-bb67-73d8a34b971a", + "id": "18a4f1d7-805c-4e92-986c-c9cf69d85100", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179053,7 +179053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce449ddc-a8db-437b-a7ce-ab508fe3ce5f", + "id": "d0faf7af-2393-4407-be4f-ae8f354f388e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -179111,7 +179111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f558b85-b0cf-4626-95f5-f6c599a10a30", + "id": "2ca5f05c-b262-4d21-be65-809e2b5acb79", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179169,7 +179169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1b8ebe1-a2ed-4ee4-8132-b544092c53bb", + "id": "16e6c091-bbf7-44cd-a2b8-f86222f8b1d2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179227,7 +179227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c52f543-1faa-41e3-addd-e68648eb1b93", + "id": "1674ef11-8503-46e0-8c85-25dcf71581ec", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -179291,7 +179291,7 @@ } }, { - "id": "10ae68b2-fa0f-493a-a748-ddc7b6d93726", + "id": "09246bd3-d058-4541-a4d8-4e8c1e1eed8e", "name": "Delete Tagged Object", "request": { "name": "Delete Tagged Object", @@ -179343,7 +179343,7 @@ }, "response": [ { - "id": "68fbba4b-22be-447c-bcaf-b57d1c0ce57c", + "id": "4a0e8a54-6362-4cc1-a280-17a5f7f4085b", "name": "No content.", "originalRequest": { "url": { @@ -179378,7 +179378,7 @@ "_postman_previewlanguage": "text" }, { - "id": "78ae7e1f-6f19-4403-a3f9-27ceb30ac868", + "id": "472e91a7-0cb5-43b5-a6b5-770d1ccf20b4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179423,7 +179423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d2e67e5-1c59-4972-916b-1e5fd16d22f4", + "id": "082888ed-4a31-4df3-a0dc-62c2b4453eb8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -179468,7 +179468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b028cdd-b862-4093-b984-13d00c15ad0b", + "id": "15b8a007-a1da-4dae-a30c-fc8c8db53038", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179513,7 +179513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36d20176-8c81-4574-8372-7d8016e91527", + "id": "df0a4946-caf5-498c-ab2a-c2f070421b02", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179558,7 +179558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c37ecdd1-1ec6-4e8e-abe3-48fddd5e4a4e", + "id": "0295ff91-bb4e-471c-93f6-5675d808d9f9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -179609,7 +179609,7 @@ } }, { - "id": "128532f5-fc86-4be0-9132-f8fde1ee8412", + "id": "6c4b48f0-caa2-4b4b-8e18-275c7e64776f", "name": "Tag Multiple Objects", "request": { "name": "Tag Multiple Objects", @@ -179652,7 +179652,7 @@ }, "response": [ { - "id": "761e98e8-4130-4a59-8bb2-537ac965def2", + "id": "74c150ef-a5a4-462c-9e23-4290ed4d247f", "name": "Request succeeded.", "originalRequest": { "url": { @@ -179709,7 +179709,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41b738ec-717e-475a-9507-c8719083857c", + "id": "428c981a-3944-4bf5-bed0-4c26fc0f4b37", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179766,7 +179766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a0bc79f-46fe-4930-8b40-ac06d0c402ed", + "id": "0e17d40b-1406-4e2f-8c77-9ed9fd228448", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -179823,7 +179823,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7882897-5ca1-4cbd-a0db-f3d8d2730647", + "id": "430a86e4-2ae7-4cc9-bdc0-0010baeb63df", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179880,7 +179880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bab7465-ef73-45cd-91aa-5d1a28df8ef0", + "id": "3c5eee69-017e-4067-b039-e282dbc456c7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179937,7 +179937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ca48fce-2634-460c-ba30-f979d2958e08", + "id": "5018730a-8886-4233-81b4-66e42a823b93", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180000,7 +180000,7 @@ } }, { - "id": "d558784c-616d-415e-9010-44eb2d2a7bbd", + "id": "94faf9ef-bb1e-4271-9478-ea8e5264c1f4", "name": "Remove Tags from Multiple Objects", "request": { "name": "Remove Tags from Multiple Objects", @@ -180043,7 +180043,7 @@ }, "response": [ { - "id": "390261bd-a7ab-40a6-9a4c-8ab7995c9ab6", + "id": "6b7f6754-1333-4eef-a4ac-b7b3d9c60d3c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -180090,7 +180090,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f0817e62-867c-4b1e-88f8-64fca877bbf1", + "id": "6a14cd11-29fb-4c56-b495-cfff50099e5f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -180147,7 +180147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f996293c-72dd-437b-88d3-1a2c9ac06f14", + "id": "4bd03b08-9e92-4e09-94de-387d4c58f997", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -180204,7 +180204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fee2853c-9ca8-448a-880e-6f3360a8834f", + "id": "f1ebd67a-265d-4d64-a46d-8332533500cc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -180261,7 +180261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfdcaa04-05e3-4fad-80fb-a4241ebbc3a5", + "id": "1218f646-e9c1-41db-8f92-1ceaf6142b1b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -180318,7 +180318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ecf3a57-d98a-49bc-9e4a-a68b649d7c8e", + "id": "4bfb5e58-910d-4c73-86b3-97a8c6daa17b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180387,7 +180387,7 @@ "description": "", "item": [ { - "id": "f735fffe-8785-4043-a3e5-bcc0d34fbf82", + "id": "8683b64b-bec8-4754-9e69-fbba1516050e", "name": "Get task status by ID.", "request": { "name": "Get task status by ID.", @@ -180428,7 +180428,7 @@ }, "response": [ { - "id": "2398cd48-7038-404b-9e62-58b522e37b22", + "id": "eca51650-2e86-47c0-942c-727a477aefd6", "name": "Responds with a TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -180472,7 +180472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38e7ae33-38ef-4261-a6de-6618f4111a36", + "id": "a7ada346-ab0c-4e51-935c-bca572b4e565", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -180516,7 +180516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c075b1f5-409b-4469-82ab-f9da207d0924", + "id": "e57b4e23-3c35-4578-aeed-334d3820597e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -180560,7 +180560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4d2cd1a-09ce-4140-b1c4-bdb601d293b6", + "id": "21928422-7a8a-42f1-a712-e058c82a0558", "name": "Forbidden, generally due to a lack of security rights", "originalRequest": { "url": { @@ -180594,7 +180594,7 @@ "_postman_previewlanguage": "text" }, { - "id": "60b0692c-4526-4b57-b60a-590ca8dc89b1", + "id": "d8837c27-0145-420d-8377-fd63d547ddf6", "name": "TaskStatus with the given id was not found.", "originalRequest": { "url": { @@ -180628,7 +180628,7 @@ "_postman_previewlanguage": "text" }, { - "id": "64b0d895-65eb-43bf-98cb-4dca3d0bfc40", + "id": "a7b2c12a-9e30-4c0b-9ea0-faa1c8f65b9a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -180672,7 +180672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42df979f-9bb4-4d1e-b9d5-6b9bd2127f32", + "id": "606216b6-b22d-459c-bf56-cbc2f80c937c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180722,7 +180722,7 @@ } }, { - "id": "b8313e47-42b6-4efa-94eb-a8fc5dd9c22d", + "id": "89a9e968-fc43-47bb-bce7-0a8abe080d80", "name": "Update task status by ID", "request": { "name": "Update task status by ID", @@ -180776,7 +180776,7 @@ }, "response": [ { - "id": "26b8bb7a-b957-468d-adf7-6141852edd62", + "id": "db73c642-9afc-4f0a-b543-7f3a5a563729", "name": "Responds with the updated TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -180833,7 +180833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79e6e226-fabb-4935-8c2f-8d9d98417f5c", + "id": "0c7dc51b-0e46-429e-8269-7568ed70b0a3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -180890,7 +180890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25f45069-6994-4b85-825c-718f26d7e41d", + "id": "c0e2f1ab-caf0-427d-af14-3e07498d1e08", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -180947,7 +180947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14f48adc-a663-4e1b-98af-a31059c0459e", + "id": "f003dd12-6ad2-4125-98cd-c9b0f578d501", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -181004,7 +181004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ec1724d-5cf1-427b-8e8b-d36c759411fb", + "id": "92572f36-005b-4a7b-86d3-9d09ea87f2c2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -181061,7 +181061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fca681e0-5894-42ea-a66b-5a5b862cff1e", + "id": "dc0baba4-9604-4d4e-9586-b17bcc49cee2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -181118,7 +181118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0519cb68-7c4d-47a0-a9f0-4771e54e9884", + "id": "dc98b240-103c-4c00-a198-3afc22cc83ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -181181,7 +181181,7 @@ } }, { - "id": "60361c3e-5b05-406f-9191-c4cae0ec2ddb", + "id": "5b1cfef3-9b38-4b05-a0fc-60fbc97d2be2", "name": "Retrieve a task status list.", "request": { "name": "Retrieve a task status list.", @@ -181256,7 +181256,7 @@ }, "response": [ { - "id": "e2788764-85ef-40c0-a710-b99468861bc0", + "id": "cbf13f5d-67c4-4a80-a6f8-db7d44f905b0", "name": "Responds with a TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -181345,7 +181345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bc85aec-22ad-4a20-8b34-94c818b02f8a", + "id": "50bdeb2a-2d43-44be-9884-01b4444b95ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -181434,7 +181434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6aa29261-50f0-46ac-8daa-bd805ea09678", + "id": "4c1d9e7b-cc18-46f6-8cd0-5820ca50bd88", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -181523,7 +181523,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57dcb229-ff2b-4f86-bcf8-df79516a3c09", + "id": "ec00d34f-84fb-4512-8bc7-c99cca91988b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -181612,7 +181612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96b51321-5534-4fa0-9aa7-a5e0440066a5", + "id": "c3e95a0d-c4db-4189-af84-ba4eaf79c5cd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -181701,7 +181701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99e6d88b-04fe-44c3-9275-11098da4a7f3", + "id": "e6dfb074-ac60-4ae2-8801-2613d2974927", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -181790,7 +181790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ed10615-5b9c-4866-9f06-ab1872403dd3", + "id": "99fd2c2f-50fe-453c-8605-5bd3649e4c33", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -181885,7 +181885,7 @@ } }, { - "id": "9d1f25ac-3d5a-4225-8565-03ca7cde68bb", + "id": "80ca84c5-40af-43b4-928f-767e6aa5da9b", "name": "Retrieve a pending task list.", "request": { "name": "Retrieve a pending task list.", @@ -181943,7 +181943,7 @@ }, "response": [ { - "id": "0a420a7c-00e8-4064-829b-9dcd07cc3f8b", + "id": "b0e4e441-e6d6-4472-92eb-b7e3cbdb1dbb", "name": "Responds with a list of TaskStatus for pending tasks.", "originalRequest": { "url": { @@ -182015,7 +182015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37f58e5b-02e9-4c9c-96ef-9e49f45e3e7f", + "id": "faa841ee-1333-47d3-a651-555fab2f26db", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -182077,7 +182077,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0dca0848-f5c0-40cd-8551-35c4b5f5b653", + "id": "33ac6112-4c95-4edc-9078-f9aad539a789", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182149,7 +182149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62bbe638-1eac-451b-a66a-ae0705c2f1e4", + "id": "1b2c9450-03f0-437f-9eea-8a4896bea791", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182227,7 +182227,7 @@ } }, { - "id": "ae6db89a-941e-4380-9349-cb47f5981bce", + "id": "67dd4c80-699c-427e-8e7b-bcf262282504", "name": "Retrieve headers only for pending task list.", "request": { "name": "Retrieve headers only for pending task list.", @@ -182285,7 +182285,7 @@ }, "response": [ { - "id": "3351ea2c-74d0-4a14-badf-97d43fb73873", + "id": "0d707e9f-1ce5-467b-9ce3-a2d94040e4a7", "name": "Responds with headers for List of TaskStatus for pending tasks.", "originalRequest": { "url": { @@ -182347,7 +182347,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c0ab392a-630b-4dff-bea4-f7214f43e2b2", + "id": "36b01550-007f-478b-9879-23f4f735eb4d", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -182409,7 +182409,7 @@ "_postman_previewlanguage": "text" }, { - "id": "84518831-352e-4064-a3d8-5358a13c62ed", + "id": "33ce3a6e-6192-46ca-87d9-a87d9cda00f4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182481,7 +182481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "200b2718-44f9-424e-bb82-df5204d5dcde", + "id": "866902ff-8994-4d2a-ba6e-d8699ed12688", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182565,7 +182565,7 @@ "description": "API for reading tenant details.", "item": [ { - "id": "07157693-055c-46db-a8e8-579aa41aaa78", + "id": "8cabc621-1b4f-4b2a-b8da-67c97b106c40", "name": "Get Tenant Information.", "request": { "name": "Get Tenant Information.", @@ -182594,7 +182594,7 @@ }, "response": [ { - "id": "84e83486-15ae-4257-a051-86f4ca698a86", + "id": "3697e063-927e-4f42-a324-3fae7ed329b1", "name": "Tenant Info", "originalRequest": { "url": { @@ -182637,7 +182637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b564cb1f-ab86-44bd-847d-dbed26ab45ee", + "id": "aa49aae2-026b-4ca5-a491-7813260d472d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182680,7 +182680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9367a10d-2db5-49b4-9932-bc44f143bf7e", + "id": "11493507-98b9-4677-a51d-43538742c771", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -182723,7 +182723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0e0c54b-ab02-4307-a640-9286f7080aa3", + "id": "2998d994-202a-4281-87fd-8ca3b2ac7a42", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182766,7 +182766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8a8789d-b30e-42e5-8e94-c96fe3c9743b", + "id": "afe146af-9b23-4afe-9d1c-383cf9428b85", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -182809,7 +182809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "856fd8e1-7bc2-4f5f-8096-eb53f1a9d5ca", + "id": "c8562aee-a15e-490f-8d52-d20ef7698516", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -182852,7 +182852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59c6ab13-312a-404c-8f0a-2b23665a8b62", + "id": "16146580-be8b-485b-82a7-c9871d45e8c2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -182907,7 +182907,7 @@ "description": "Operations for creating, managing, and deleting transforms", "item": [ { - "id": "688c4bc8-8c7a-4ba1-ba46-65462059ba33", + "id": "f3afd944-f15a-4f2d-8f97-8e311c3f4621", "name": "List transforms", "request": { "name": "List transforms", @@ -182982,7 +182982,7 @@ }, "response": [ { - "id": "05152d3c-51ec-438c-908e-8b08473799f9", + "id": "cc624b86-9664-4c3d-815b-5cf79fb1d6a0", "name": "A list of transforms matching the given criteria.", "originalRequest": { "url": { @@ -183071,7 +183071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97655cbc-3bf9-4152-93f9-7e06970edbf4", + "id": "6f1ffde6-a824-4458-8841-7124ab41059d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -183160,7 +183160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ff61d6e-ec31-4c24-b7df-4e573ea6adcf", + "id": "d4b1e3b9-f4c8-464f-8791-2885c34b3785", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -183249,7 +183249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ace0f7b-bcac-4ceb-8b26-03849ee0a7eb", + "id": "743f4997-89d0-4cac-9643-c9583b04c2bf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183338,7 +183338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b5ae134-77a1-4a4e-a201-7511ae01faec", + "id": "16294708-9522-4635-b522-e715784e962b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -183427,7 +183427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dbf2046-e541-4f6a-9b08-970343809960", + "id": "499956d5-b6b7-4d0b-8330-bdcf25c2ad10", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -183516,7 +183516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8b2c975-ade7-4354-b334-d04ca2132b20", + "id": "7ddc4d36-caf9-4fde-a093-2381f1cdcc9d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -183611,7 +183611,7 @@ } }, { - "id": "7f83e488-146e-466e-9046-a07ed40e5b8e", + "id": "fe5e845b-dab7-4b45-a981-b6e5840d140e", "name": "Create transform", "request": { "name": "Create transform", @@ -183653,7 +183653,7 @@ }, "response": [ { - "id": "5c9576b5-f0d8-4c3a-9fb1-c9629e98de99", + "id": "cdf1d033-5466-4c28-a9b2-b945d6ae1acf", "name": "Indicates the transform was successfully created and returns its representation.", "originalRequest": { "url": { @@ -183709,7 +183709,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ca25f16-fdd9-4146-9aee-3380e40b41f5", + "id": "5e3101af-3ba9-4c0e-ad79-caeba3c86b1d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -183765,7 +183765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9bfed21-c2cd-4b59-ab95-06c1764e28a6", + "id": "5d7f607d-af22-4579-bd9d-1bda912be2c0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -183821,7 +183821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4a08262-b1d8-4f73-970e-06880c4aff79", + "id": "8c4653f7-8194-47df-b27e-462b6cc7491c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183877,7 +183877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43944484-7028-462a-ac4d-219568e9734f", + "id": "97ce00d2-ae02-424b-af10-1ad683aa4a2b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -183933,7 +183933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e3a8014-0995-4325-b9b2-b0252f945942", + "id": "4e398010-cc6a-4992-94f8-61aa621c9e3f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -183989,7 +183989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6919807-3052-4d5e-a17c-04c7a2940509", + "id": "fac0d23a-ff57-41eb-bf1f-88184af1ee98", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -184051,7 +184051,7 @@ } }, { - "id": "61cf8005-9a33-41f9-b676-8830d030e984", + "id": "e7e59b73-cbd0-4a9b-85ef-72b7301cacaf", "name": "Transform by ID", "request": { "name": "Transform by ID", @@ -184092,7 +184092,7 @@ }, "response": [ { - "id": "786b283b-079b-4ffc-91c6-885a66c705e4", + "id": "9f8c2633-4de2-4650-9071-ba8643f6592d", "name": "Transform with the given ID", "originalRequest": { "url": { @@ -184136,7 +184136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "424bc9aa-6bc4-41e9-8964-63f99a8c94d4", + "id": "65a7fcad-e1f1-42c9-8f1a-5ff325e76251", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -184180,7 +184180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f686eba-a998-421c-98f0-ee9966fff6cc", + "id": "cbad52ae-a268-46e7-a536-db315e1abd0a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -184224,7 +184224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00bcfc4d-7682-4a32-802b-69b929773cc9", + "id": "dad3e180-abe0-47cf-a940-60147664c1a5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -184268,7 +184268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96dc3d17-4d17-46b0-b0d8-747287ef0860", + "id": "88c2b080-3871-4d39-b504-f932f2381248", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -184312,7 +184312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91d5a289-0862-43af-93ad-f0e498b1dac1", + "id": "3a41be78-10f0-4666-9fc5-9467c5a78497", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -184356,7 +184356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dea0aa14-f50e-4f07-b9d7-c1a35416ec86", + "id": "aaea1c94-9c21-4bd1-8ae3-8b3fbcb9d529", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -184406,7 +184406,7 @@ } }, { - "id": "e50d68eb-3614-4e26-baa2-02359e424c07", + "id": "2a884862-c459-4366-be49-17afc573b59d", "name": "Update a transform", "request": { "name": "Update a transform", @@ -184460,7 +184460,7 @@ }, "response": [ { - "id": "1019f6ce-6b8e-4376-9e87-252d0d190247", + "id": "6b2b969b-5a40-4519-a8e6-91af615a5fb0", "name": "Indicates the transform was successfully updated and returns its new representation.", "originalRequest": { "url": { @@ -184517,7 +184517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c49251d-754d-4988-a216-086ee061470e", + "id": "cfbfffe0-0dd1-4cd0-9b73-49ecdbf11392", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -184574,7 +184574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53bd914f-6460-4441-a999-ae1fb646ebe4", + "id": "03226bea-db73-4f6c-83dd-627b81c200e7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -184631,7 +184631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79d37432-5f0b-494b-888b-e18c31558751", + "id": "e3a1c99e-822d-4dcb-8d83-ecd9bfd9ce07", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -184688,7 +184688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04d5129b-b62d-4f6c-97ad-0145eec89a6f", + "id": "a52043bf-d699-4fc6-bf99-117a5ffa40fd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -184745,7 +184745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab2ca61d-5e78-4bf5-abcc-ce232f32b13b", + "id": "6f8b0706-87cb-4210-b71e-8e2f34fc1c65", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -184802,7 +184802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ec2cfb6-d24b-4b7f-8ca0-75f7ca4c1f9d", + "id": "7368c001-24fa-4872-a928-8699d6e7f5df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -184865,7 +184865,7 @@ } }, { - "id": "3f864c8d-ba08-4c82-80cf-75216da41688", + "id": "6ab989ce-7823-4831-a896-54b35df3c853", "name": "Delete a transform", "request": { "name": "Delete a transform", @@ -184906,7 +184906,7 @@ }, "response": [ { - "id": "a1a18f53-7b81-439c-a3d3-fb63c87a4876", + "id": "61ca5333-f8bb-4fba-be4b-668441493f9d", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -184940,7 +184940,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7ee7347f-0ba4-425a-bf64-67abd8958cd0", + "id": "c6d38e4e-ee17-4446-82cf-2bf0e806229c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -184984,7 +184984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dd35f45-df7d-4c28-a82e-87a019f2c1a2", + "id": "747fed32-5e98-42a9-810f-e905ba3410db", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -185028,7 +185028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13f9fa9c-e108-4d4f-ad69-98a9b1d300bc", + "id": "32b83295-bb69-42f4-a08b-cb9345d2935f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -185072,7 +185072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3a60dde-8dc7-4866-84e5-9c9427d53b92", + "id": "29476900-7c9e-4dea-8f64-56b85f1c41b5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -185116,7 +185116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6337df4e-7efb-472a-81fe-16b5e2dfcc3e", + "id": "55e0799c-40a6-4f94-a445-c59b5610eb9d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -185160,7 +185160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fd802ea-1fc9-4326-888f-63d78b96a594", + "id": "f34167b3-5585-49be-9aaf-a59360d97125", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -185216,7 +185216,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": "c77e465d-6c0d-4e42-9c2c-2c5b6305f505", + "id": "129fa14c-5edb-42cb-a770-41dbd89e40be", "name": "List Triggers", "request": { "name": "List Triggers", @@ -185291,7 +185291,7 @@ }, "response": [ { - "id": "057b2710-49c6-455c-8189-71425bdae228", + "id": "fc0771b5-2831-4542-adf7-a4c8b7cff349", "name": "List of triggers.", "originalRequest": { "url": { @@ -185380,7 +185380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77834fc7-aa98-4dbe-b192-0f10a77138f2", + "id": "c76573e0-98c9-487d-9a2e-f72a063ac3d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -185469,7 +185469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b56bb55f-b7a6-4ecd-84e5-e79b0d2e757b", + "id": "8d1e7820-46ec-4546-9d26-2b808c801e97", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -185558,7 +185558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bde3c981-1f4a-4530-aae3-9186d5064c20", + "id": "40d281cf-1ecf-4e81-979c-54a171041f5c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -185647,7 +185647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2de64f5-de92-49c8-9606-cea4296c7608", + "id": "cbda2a36-e9bb-45cb-9eba-1a10e0b738cb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -185736,7 +185736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b3367a9-5148-460a-9cf0-6d54dacf1758", + "id": "e3eacfc3-22c7-412c-b65e-48f17a950795", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -185831,7 +185831,7 @@ } }, { - "id": "1c8c4094-97eb-45ad-84e1-50b0996e34fc", + "id": "dbef1e2b-52a3-4956-9a31-1ae92db70161", "name": "Create a Subscription", "request": { "name": "Create a Subscription", @@ -185873,7 +185873,7 @@ }, "response": [ { - "id": "d10992d0-2179-4956-8f61-baa85d7b1af7", + "id": "cc7e998e-7a62-4546-9946-765cd560665e", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -185929,7 +185929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5b38f3d-5117-4077-ad36-95facb25c3b7", + "id": "98ec0279-b3a1-4e0b-9a96-33ff58828699", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -185985,7 +185985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07d54198-3049-4f13-b1d7-b976d261fad0", + "id": "5edf12f4-6a57-43a8-bb8d-831d78645c48", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -186041,7 +186041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fb18165-d22d-431b-8f7e-66cf43508291", + "id": "80aa856c-d342-420c-9bef-478c7a9c54a0", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -186097,7 +186097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "581ae906-bf66-4c63-b936-96f07074ece7", + "id": "997376be-0a93-4e01-8758-926bf3f43517", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -186153,7 +186153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb9ae5bb-cbf0-4bec-8276-5f2e7920fd95", + "id": "6eb72776-cb58-4ccd-b745-b2cee99a7cc6", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -186209,7 +186209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12b6ef6e-02cd-4e9d-b905-92b67feee60c", + "id": "f96ac754-41f0-4964-84a8-8c9ca3e29e74", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -186265,7 +186265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad87c0de-dc1a-47dd-bbb7-4ff438c0f285", + "id": "02b4863d-4413-4975-836c-ac20a6978300", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -186321,7 +186321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0035b855-7908-4ae0-acee-b5468bd4cea9", + "id": "c55b2824-21a5-4730-b618-eea6157f7a46", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -186383,7 +186383,7 @@ } }, { - "id": "44f1790a-a9ff-4cb8-bd7a-3f7655d72b04", + "id": "5ad3c3bc-6971-4b25-b724-1c8631e83b1b", "name": "List Subscriptions", "request": { "name": "List Subscriptions", @@ -186458,7 +186458,7 @@ }, "response": [ { - "id": "49b88214-b81b-414f-afe9-df926148252e", + "id": "b0f59284-882a-499d-97b1-e408738020dc", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -186547,7 +186547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "532df144-6017-486a-83c4-0e40552964b7", + "id": "a7c794df-58b9-4609-8997-3d1c5a144018", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -186636,7 +186636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c96bc6e3-87e9-460a-8eec-be92ddc5136c", + "id": "bb9b71b1-c2e7-427b-b42d-cdb64c23125a", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -186725,7 +186725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89f6c696-7d6f-4b1b-8e2f-d4d7ef35a532", + "id": "62f4aef3-4aa9-4027-92cb-b52c0d0d7e86", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -186814,7 +186814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "673b6968-9895-4837-b9f5-01e843b56d0a", + "id": "38cd1913-6076-4daf-a62d-2a5dad06f7c6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -186903,7 +186903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "832daa86-8cef-4a45-a992-fd83578b3d2b", + "id": "b9c8da7c-c5ae-4119-997d-36aab5a36d12", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -186992,7 +186992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "211618b3-dcbd-4315-9e08-f585f2a8e1ce", + "id": "645a6006-d7d5-44d3-ac68-e368d9a939c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -187081,7 +187081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1340ebb3-733d-4657-9a6e-6cb5dcde2bfa", + "id": "c64267f7-ea41-4ffa-8550-8344bc015767", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -187176,7 +187176,7 @@ } }, { - "id": "8136985d-609c-41e3-ba30-37deb4ce1a69", + "id": "214fa54f-68a0-4c5d-aaeb-96b9c237d953", "name": "Update a Subscription", "request": { "name": "Update a Subscription", @@ -187230,7 +187230,7 @@ }, "response": [ { - "id": "c12da7f6-bf87-48c7-8f74-32c8b1b04456", + "id": "c35e00bc-0c7a-4eca-a8a8-d4e039ad5a1c", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -187287,7 +187287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f6280c7-2d9b-4905-b9c8-860da2f47d13", + "id": "942390ec-0657-41c2-a0fc-4375e713c880", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -187344,7 +187344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85bd8137-640a-4a84-92cf-8c490f87d057", + "id": "2be2be73-2b0e-4cfc-ac2f-7d113ffef51b", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -187401,7 +187401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81db7542-55bd-4651-927a-6eb5dfa780c7", + "id": "66bd2fb3-cec4-47ea-91cb-e6be10f36d59", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -187458,7 +187458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21a49757-f947-485d-9fc2-f194da9940e3", + "id": "0c7f5daa-96b3-4709-b7ef-ada642d1d4eb", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -187515,7 +187515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bb7cb09-b2b1-427d-b782-d1a4fd3e503e", + "id": "436b6d48-0311-4c85-a559-6b73b1ef3a4b", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -187572,7 +187572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e581990d-a193-44f3-a73d-c28ee255cc45", + "id": "703f0c73-e557-48de-bb16-81e747fde756", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -187629,7 +187629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dea29161-c687-40ee-83a9-ae53316ea3fc", + "id": "3844c601-db87-405b-83d3-60dbc7b0e3e4", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -187686,7 +187686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d445b44-5c41-4eb8-ae3a-4613b93f0440", + "id": "b33c5592-ba95-424e-a863-3798601b6f64", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -187743,7 +187743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8458f72-d4be-4339-a4dc-7efefdac141a", + "id": "111da861-8b4a-4b93-8f48-f9813b983e4f", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -187806,7 +187806,7 @@ } }, { - "id": "c5d0537e-3cb0-4d1c-9b5d-e8b14e78ae92", + "id": "67f29dd8-bb95-4394-8c48-f8d840d46e25", "name": "Patch a Subscription", "request": { "name": "Patch a Subscription", @@ -187860,7 +187860,7 @@ }, "response": [ { - "id": "a4de10e6-ec38-4feb-a76c-e029d5a2a050", + "id": "16d47542-ad0f-461a-a904-ae4e2623a758", "name": "Updated subscription.", "originalRequest": { "url": { @@ -187917,7 +187917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24f415b2-7396-4a82-9391-fed04b33505d", + "id": "444c0baf-054a-4a41-96b2-6f76e013a762", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -187974,7 +187974,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76fc0ddc-6923-47b6-9677-01476e37663f", + "id": "d71369ab-2111-450e-a898-744df00fc9c4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -188031,7 +188031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f57b0edf-8837-4b75-8b01-9c7756cefc9f", + "id": "77ef2b4d-8598-4529-9020-a13363140dcf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -188088,7 +188088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6a1c6c2-9298-441a-a726-8805eaee22f7", + "id": "b9c3e68d-7205-4449-97f8-0c1be1db1477", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -188145,7 +188145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1fe39ac-3d63-4ed7-987b-d328dc00ebf4", + "id": "5bb37070-e170-4729-b4ce-7fb08f882a8f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -188202,7 +188202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e39ff6b2-c10e-4081-96cf-95f09571fd48", + "id": "1189e9c1-918b-4b7b-aed0-e2c5fdcd9df2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -188265,7 +188265,7 @@ } }, { - "id": "f8baada6-7794-493e-abb1-40bb3b30239a", + "id": "45522207-fa30-4d88-b303-c96e9fafc212", "name": "Delete a Subscription", "request": { "name": "Delete a Subscription", @@ -188306,7 +188306,7 @@ }, "response": [ { - "id": "eb0b8249-a1ee-4740-bd51-cdb75c22a1ff", + "id": "36f29866-6b71-4def-9ff2-b0410edcbb85", "name": "Subscription is deleted successfully.", "originalRequest": { "url": { @@ -188340,7 +188340,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e954c2c4-6095-40e2-b02e-9abae40e2d43", + "id": "cb398d89-7b73-45c6-af52-4aa891ce1db1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -188384,7 +188384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e31f4da3-4c36-4af0-b0c1-e2984dc33c1c", + "id": "0cb0d786-ccb0-4dd8-b499-b0a3c50fb068", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -188428,7 +188428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17079770-78ae-4623-b436-c817068cb5a4", + "id": "24193931-5b06-428b-8f6e-6aefcf481e50", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -188472,7 +188472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0e9db37-e158-4944-b0e4-613e72a3600b", + "id": "1f61c7c5-087d-44cf-9f84-b35a9c293bca", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -188516,7 +188516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19019dfe-b43f-47cf-91f7-be10e2722c30", + "id": "e3f3e1b3-f309-4641-ba8a-d3a81876510b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -188560,7 +188560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a70eadf-7b9d-447c-bb39-ce45a567fc75", + "id": "9db5f9e7-df50-4e1b-83d8-da8cb59c59d5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -188610,7 +188610,7 @@ } }, { - "id": "02ceb5c3-ff24-43f2-bd1a-ca3dd2af041c", + "id": "64b63730-e7dd-4232-a818-51ba13e35b7c", "name": "Validate a Subscription Filter", "request": { "name": "Validate a Subscription Filter", @@ -188653,7 +188653,7 @@ }, "response": [ { - "id": "23abd229-9f25-4fd3-b1bd-ab91a06a12e4", + "id": "cd0e421e-c20e-4fdf-8c10-134d027abbdc", "name": "Boolean whether specified filter expression is valid against the input.", "originalRequest": { "url": { @@ -188710,7 +188710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a474d341-a638-4b98-bd0b-1f4b45658d25", + "id": "a3df7ea2-2a5d-4532-8a6d-6f515fcb983d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -188767,7 +188767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d62e07a0-fccf-4c46-9504-934387ed2770", + "id": "0e7fcc34-d611-4b6a-9b3e-675453ab7430", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -188824,7 +188824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f42297f-24ce-477f-9df4-cc50be945970", + "id": "89cb5739-f302-461c-b9ab-32f27f91dab1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -188881,7 +188881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc2cca3d-0bf5-4c38-b2a0-425226af99a0", + "id": "b67e4f41-22e9-4328-946b-869e2e3ef8c8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -188938,7 +188938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78310d87-be89-4b6f-8002-5bc7ece163ab", + "id": "43e0e9b7-d656-4f8b-9fb2-cb302ad5eb95", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -189001,7 +189001,7 @@ } }, { - "id": "e15c8744-8190-4edc-844c-94f67e2b03a9", + "id": "f44c5777-bed0-4902-9447-7a9ea942ae7d", "name": "List Latest Invocation Statuses", "request": { "name": "List Latest Invocation Statuses", @@ -189077,7 +189077,7 @@ }, "response": [ { - "id": "67089491-a558-43c2-a5a7-e638a3f0cdbc", + "id": "f584e934-6f62-4fc5-8961-c780b2f7b0fc", "name": "List of latest invocation statuses.", "originalRequest": { "url": { @@ -189167,7 +189167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "754c9512-fc62-4c4e-a48c-3234f903e310", + "id": "033c0f5a-ff97-4d7d-a01b-59bdaccc94e2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -189257,7 +189257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56d0ddb2-ccb1-4ec8-8577-101fc820b78e", + "id": "b1c257dc-1650-4376-9c1b-b666d0e3119c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -189347,7 +189347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b161eaf8-b067-40e7-a8b7-14b7daec62ff", + "id": "866b4504-6c27-4afb-9dcb-b0d5c2d6bc9e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -189437,7 +189437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b1a6aef-058e-45a1-a654-cd988c3ebaec", + "id": "30eb5371-741b-4492-b3c2-8aeae1a30050", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -189527,7 +189527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "779eb202-d3d8-47d8-a84d-06407e73038e", + "id": "413f1f36-f5f1-46b3-b7bf-11dce6315197", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -189623,7 +189623,7 @@ } }, { - "id": "cfa27173-d55b-4382-aba1-ec5a9007eade", + "id": "ba1212d3-4926-4b5b-948a-16b6334d7f51", "name": "Complete Trigger Invocation", "request": { "name": "Complete Trigger Invocation", @@ -189678,7 +189678,7 @@ }, "response": [ { - "id": "fc8b7b36-61e7-4793-a47e-88df6c750661", + "id": "268ef9f3-c95c-43ed-bd9e-87cfa8af07f8", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -189726,7 +189726,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1b3bcc6e-9f53-48c3-9ede-286c183c5fa4", + "id": "595d78c8-b020-4175-be59-eaabfb3c3920", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -189784,7 +189784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de143ac0-b38a-42ac-ad01-b739856095a1", + "id": "a9bda407-855d-4774-9d73-d4612c17b701", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -189842,7 +189842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "589a4a14-7999-461f-96f2-7a656f419caa", + "id": "6316700b-d7b8-479b-9126-9673081f3731", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -189900,7 +189900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94fadb7d-6706-4141-90a2-6e81b7624852", + "id": "bf327b93-2ef4-4cc8-8be3-c36419e70ba3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -189958,7 +189958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5b3c8fe-9128-40f5-9fc3-98ade338a9a7", + "id": "a79e2c69-ec43-4ded-934f-c51345f992ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -190022,7 +190022,7 @@ } }, { - "id": "49d0cf9e-710d-4a30-b13d-99ea42fe16fb", + "id": "1459875a-b51d-4b7c-a59d-b27d3ae2fe3e", "name": "Start a Test Invocation", "request": { "name": "Start a Test Invocation", @@ -190065,7 +190065,7 @@ }, "response": [ { - "id": "02ccb563-ecbd-4f85-94be-9a42c6cea16e", + "id": "6c25e679-0872-4640-80c7-154a194a8cdd", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -190122,7 +190122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b10b41ac-5d4e-4051-bcbf-729700b6ff7b", + "id": "92413ce8-63e9-4c9f-9ca0-d2c363173768", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -190179,7 +190179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ff0d358-b9bb-43cb-9a11-7c8bb62eeab8", + "id": "51319c3d-ac6e-4edc-8d3f-713715a82d2a", "name": "Trigger invocation is skipped, because tenant has not subscribed to the specified trigger.", "originalRequest": { "url": { @@ -190226,7 +190226,7 @@ "_postman_previewlanguage": "text" }, { - "id": "64a09f97-5b5f-4336-9985-a5522cd2c31b", + "id": "4adbb048-714b-4236-9afb-ff5ea0490d60", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -190283,7 +190283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dae5d2d4-7706-4a98-87fa-c00c03df2373", + "id": "50f02dc6-2d7d-45e6-a82e-a6b5904d5fd3", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -190340,7 +190340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6d07a16-ff99-4300-a33d-52a79564fa85", + "id": "7601d533-c7da-47b0-96a2-58ad63febc11", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -190397,7 +190397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54a9b2b9-780d-41bb-a458-b0605631f2a8", + "id": "c3f19ac6-f2eb-4ddc-b22f-a6481c6297fb", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -190454,7 +190454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f70bc70-8a3e-4710-8094-ed70bfaa7560", + "id": "36d93cf5-0977-4476-88a5-f112ece663e2", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -190523,7 +190523,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": "2ce41265-901a-44ed-94ee-b6c3e2b097c2", + "id": "6af70edc-41a6-4117-ba54-afef7ff2a51b", "name": "List Work Items", "request": { "name": "List Work Items", @@ -190573,7 +190573,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -190589,7 +190589,7 @@ }, "response": [ { - "id": "5c43bb36-4ad5-4bb9-b296-1f6a09c17ba9", + "id": "7afdc3fe-9edf-4faa-aec5-c2ae4c3e2704", "name": "List of work items", "originalRequest": { "url": { @@ -190634,7 +190634,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -190669,7 +190669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad75eda8-f21c-4c83-a1c9-956a24ae4def", + "id": "bdd0dfc0-9425-4c64-be52-f89cb68eb4e1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -190714,7 +190714,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -190749,7 +190749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3977a2c1-be01-432a-98a3-a8b78b713f92", + "id": "d93182cf-3595-4539-9eaa-4b98fd99a046", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -190794,7 +190794,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -190829,7 +190829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86d650f4-2a8b-4515-a18c-d70097c065eb", + "id": "a123c1e8-65b7-402e-b4eb-750c500c27eb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -190874,7 +190874,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -190915,7 +190915,7 @@ } }, { - "id": "5c199502-4d11-446d-a849-a3434930ed3f", + "id": "2452d08e-94a0-4f47-a0cc-20414ff2bef8", "name": "Completed Work Items", "request": { "name": "Completed Work Items", @@ -190939,7 +190939,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -190982,7 +190982,7 @@ }, "response": [ { - "id": "93825ebd-c0c1-40c6-bacd-462c6c95bb93", + "id": "1bb6d74a-6eaa-4f84-86b2-9939de1b4747", "name": "List of completed work items.", "originalRequest": { "url": { @@ -191001,7 +191001,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -191063,7 +191063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afd0b286-339e-4849-8205-e29fa275d382", + "id": "fa66b26a-fb45-4117-aa4c-c4c68ff11720", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191082,7 +191082,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -191144,7 +191144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5120b822-0fb1-4697-8f7f-0258ce9d9252", + "id": "9d2489bc-5901-45ba-b6cc-0bd2dff9a959", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -191163,7 +191163,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -191225,7 +191225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78a79bf2-d5ff-4e57-a67b-a30c986899b1", + "id": "b356e613-851d-43c5-b6bc-8b9c0db5fb15", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -191244,7 +191244,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" }, { "disabled": true, @@ -191312,7 +191312,7 @@ } }, { - "id": "d62a88ea-d5a2-4dd0-a8a9-78a6d8f2b433", + "id": "ad64cbcd-e561-48df-8d4b-bbe11404ceed", "name": "Count Work Items", "request": { "name": "Count Work Items", @@ -191336,7 +191336,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -191352,7 +191352,7 @@ }, "response": [ { - "id": "3e208a61-f0bd-493b-86cb-6d0f891eaaa2", + "id": "dc82a634-4c41-494e-9b87-04db80f683d6", "name": "List of work items", "originalRequest": { "url": { @@ -191371,7 +191371,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -191406,7 +191406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f699ff35-a817-4a73-befa-cad99bfb6ee5", + "id": "ef8d3480-94b8-4f2b-a11d-dcaacff75d49", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191425,7 +191425,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -191460,7 +191460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5029cf7c-83bd-4783-846e-040de711075f", + "id": "ef30eca2-f8c7-4bd5-8d12-7d11f7db7533", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -191479,7 +191479,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -191514,7 +191514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d601065-458f-45c0-b9f6-ba32a42ace73", + "id": "84221cb4-eb74-43c2-bed1-8311a925369d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -191533,7 +191533,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -191574,7 +191574,7 @@ } }, { - "id": "0e650b7b-c0be-410a-8a1b-a1476d0ad3e8", + "id": "37478dd7-e0f2-43ac-9f24-5773bd5bddfb", "name": "Count Completed Work Items", "request": { "name": "Count Completed Work Items", @@ -191599,7 +191599,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -191615,7 +191615,7 @@ }, "response": [ { - "id": "3f96c48e-a4c4-4bd3-a93e-1bd6bfa1a97d", + "id": "2a0cb8f8-23f3-4f8d-9b6c-a1bf01370bf4", "name": "List of work items", "originalRequest": { "url": { @@ -191635,7 +191635,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -191670,7 +191670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26a9a679-5da2-4d74-a199-b45e9a2fe2ca", + "id": "1e91e1fa-4ca7-4eb8-9b8e-33e60b15dc41", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191690,7 +191690,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -191725,7 +191725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "484a2a4c-b5ce-4031-850e-b82a1b62560e", + "id": "d772a54f-1289-493b-b4a4-41515d777429", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -191745,7 +191745,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -191780,7 +191780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d35c75c5-194a-456f-b2bc-6a2f56c61cb3", + "id": "79d3807c-1492-4b02-8d6e-f9f784913ef6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -191800,7 +191800,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -191841,7 +191841,7 @@ } }, { - "id": "c214ea24-05a9-47ae-8557-1775a115ac68", + "id": "b971deee-0549-413d-94eb-f2af49c0ff2b", "name": "Work Items Summary", "request": { "name": "Work Items Summary", @@ -191865,7 +191865,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -191881,7 +191881,7 @@ }, "response": [ { - "id": "389873ca-bcea-49cc-8cec-4a45dda6b3e5", + "id": "75b80c8c-92c1-4775-a100-631e031c385a", "name": "List of work items", "originalRequest": { "url": { @@ -191900,7 +191900,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -191935,7 +191935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0ce9f94-2e80-44e4-9594-f9eb69919bff", + "id": "9e372ed3-bef0-44e7-ab52-fe5d82bbd186", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191954,7 +191954,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -191989,7 +191989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cd9895f-4a64-4478-9408-16f0dffc1126", + "id": "5b072b63-2e4f-4d85-b84b-3d7d01a03bf8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -192008,7 +192008,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -192043,7 +192043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60cfeb91-de6a-4e0d-86c1-9f1201a2cbea", + "id": "42d7b0a4-605b-41bc-ae87-3cb5357010e6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -192062,7 +192062,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -192103,7 +192103,7 @@ } }, { - "id": "925f798e-aa75-4296-b446-7fb674a21a11", + "id": "b05dcda6-60a9-4e28-8961-99d13a1d7ff9", "name": "Get a Work Item", "request": { "name": "Get a Work Item", @@ -192127,13 +192127,13 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [ { "type": "any", - "value": "minim", + "value": "exercitation laboris ex sit", "key": "id", "disabled": true, "description": { @@ -192154,7 +192154,7 @@ }, "response": [ { - "id": "9db62beb-323b-4c9f-813f-3fe8d8b3d3f8", + "id": "bd9ec5d4-407d-4b4c-8a36-282d24178fac", "name": "The work item with the given ID.", "originalRequest": { "url": { @@ -192173,7 +192173,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -192208,7 +192208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed41c5e2-697d-45ce-beac-dbd97967cb49", + "id": "582fe9a9-54c7-44e5-83fa-f3299466844c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -192227,7 +192227,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -192262,7 +192262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03e614d2-6d6f-4125-afc6-893054c31c1e", + "id": "eceb7528-9386-4597-b071-7eade662f1c3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -192281,7 +192281,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -192316,7 +192316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42b8716c-e326-483d-90f7-6252e86d68b7", + "id": "618f4f50-1dab-400d-bbfd-8827c93b6e0c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -192335,7 +192335,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "minim" + "value": "exercitation laboris ex sit" } ], "variable": [] @@ -192376,7 +192376,7 @@ } }, { - "id": "9b9b8cca-8539-44ce-b112-35d62f40ed92", + "id": "9b688013-1b74-496c-aa32-9f27b3173dc9", "name": "Complete a Work Item", "request": { "name": "Complete a Work Item", @@ -192417,7 +192417,7 @@ }, "response": [ { - "id": "cbcc9e9f-28fc-4fd6-9032-fe9bf6b37b18", + "id": "036c06e2-09dd-40e1-82ed-adaf64a5338e", "name": "A WorkItems object", "originalRequest": { "url": { @@ -192461,7 +192461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5dafd640-1b84-4c49-b833-01d22b95092b", + "id": "87d108e8-a58a-4e6d-ab2f-b6b0618d69f3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -192505,7 +192505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65045f50-f7ad-4cb3-87b3-6bf1a061ca62", + "id": "c3dcee7e-5387-4f6f-bd76-9df41527d9d8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -192549,7 +192549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c76c4200-e75b-4918-b4fc-db7edf7c7ba0", + "id": "53246639-f85b-483a-9a32-78ce34db6ff2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -192599,7 +192599,7 @@ } }, { - "id": "dff8270b-0cc8-47ab-9df4-5e5da54a931e", + "id": "7d1a8765-573d-40bc-abc5-e65c74484091", "name": "Forward a Work Item", "request": { "name": "Forward a Work Item", @@ -192654,7 +192654,7 @@ }, "response": [ { - "id": "e8fdc8fa-4c24-42d8-b756-6e13f75e0ab5", + "id": "a3fc237d-246a-4548-9085-65f8a88f5dc2", "name": "Success, but no data is returned.", "originalRequest": { "url": { @@ -192702,7 +192702,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b8d88880-5113-4be5-baec-6905f221ad04", + "id": "1e7ef373-6714-4a0f-9887-ebb4551ae36a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -192760,7 +192760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "786bb04d-6b0a-4bae-889f-f14a7d53e9cf", + "id": "66bd8e66-b3db-4d37-b14c-2fc84344bcac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -192818,7 +192818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27887b40-4152-4162-908e-bac4d0ed220d", + "id": "3530e1ed-4cb9-4b8d-a120-2d14b7d18ee9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -192876,7 +192876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68bb44e0-becb-4a03-a4b4-53dff4e35c10", + "id": "bdd4bdbf-bb42-4ee3-b4ee-c4ca194e3028", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -192934,7 +192934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1de08fc4-04b7-462b-bf35-955c1db16e2e", + "id": "5d5743e5-41d1-4407-8448-3c2244081940", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -192998,7 +192998,7 @@ } }, { - "id": "373d8645-2b54-4125-bde6-7b535d373d71", + "id": "a3812aa5-10f5-453a-8506-00617190cf8b", "name": "Approve an Approval Item", "request": { "name": "Approve an Approval Item", @@ -193051,7 +193051,7 @@ }, "response": [ { - "id": "006baf68-89f9-40d6-9343-3b1770c4a2aa", + "id": "980db37e-ab23-4462-a8dc-40ac5f5e4a2b", "name": "A work items details object.", "originalRequest": { "url": { @@ -193097,7 +193097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6542a67b-5eab-40e7-8476-be066ab29d25", + "id": "f6b14ee1-eabc-46ca-95e5-c643ff8b97df", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -193143,7 +193143,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c7a5148-b2e6-4634-b1b1-d21c1bc2e2a0", + "id": "20569024-8561-4343-ad42-c366289116cb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -193189,7 +193189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d841f61-52bc-4da6-9f1f-9fd1656fc7f0", + "id": "24d00272-b1d0-41cc-9102-008006aa8322", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -193241,7 +193241,7 @@ } }, { - "id": "b4eaad22-fe3f-47c1-83ec-04b7eb342bab", + "id": "65e042c1-586e-41c2-92ac-1e4ecb004fb6", "name": "Reject an Approval Item", "request": { "name": "Reject an Approval Item", @@ -193294,7 +193294,7 @@ }, "response": [ { - "id": "a147d4ba-619f-48b7-b8e1-a2d75545e564", + "id": "980a7821-17d5-43eb-94a9-201f1e3ab4b9", "name": "A work items details object.", "originalRequest": { "url": { @@ -193340,7 +193340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7612a658-5f1c-45f8-a232-2be2a163322b", + "id": "a0b264b5-e000-4042-9438-9045e4834f90", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -193386,7 +193386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a02b23eb-c560-4420-8d19-aee94e6e133e", + "id": "c6770fff-c125-49dd-a26b-ccab04fff404", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -193432,7 +193432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbf9293c-695c-4c80-94cb-80b36f6f7de0", + "id": "cace19e4-c8c7-46aa-8f2a-39348f28fb25", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -193484,7 +193484,7 @@ } }, { - "id": "da850e10-71bd-44e4-a749-f3b895407a30", + "id": "1a631252-0d4e-4fed-adae-c80153a2c961", "name": "Bulk approve Approval Items", "request": { "name": "Bulk approve Approval Items", @@ -193526,7 +193526,7 @@ }, "response": [ { - "id": "9e4ee082-166f-4a8d-98dc-ea2983746d47", + "id": "ca1a7d36-d4fd-40e6-afb2-9f6daa2d1c76", "name": "A work items details object.", "originalRequest": { "url": { @@ -193571,7 +193571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c40c91c-fdb9-4022-aa9d-4ef2d52caca8", + "id": "df8ed178-7596-4d43-ae12-bdf6495c4022", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -193616,7 +193616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a274f3b-985d-43c6-86c1-ddcda4f117b4", + "id": "ce30a23f-07c5-4e41-8169-5e9e5175ed08", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -193661,7 +193661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ba7b2d4-8bb7-4e1d-9db4-9bc2bcec0aa8", + "id": "647eb535-ce6c-44e1-ac8d-0aca07b2c7db", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -193712,7 +193712,7 @@ } }, { - "id": "0a76f266-197e-4ba3-a93a-3665f2be67de", + "id": "21a9f23c-f341-4465-8a47-c084367515bf", "name": "Bulk reject Approval Items", "request": { "name": "Bulk reject Approval Items", @@ -193754,7 +193754,7 @@ }, "response": [ { - "id": "0c666cba-757b-413b-aeae-9834547a8dc4", + "id": "fde38fae-98e5-422c-a72e-d67aae84ed1a", "name": "A work items details object.", "originalRequest": { "url": { @@ -193799,7 +193799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b29e08f-fe3c-40dc-ae42-0096e809bb85", + "id": "e2546742-ce65-4da4-bf1d-ba0ba7cdfaba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -193844,7 +193844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52307aa1-b7c2-4813-8c94-dcd328263b73", + "id": "9d1ca891-55e8-4ee9-82f7-df9d5f0c33ee", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -193889,7 +193889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd566f61-f03d-4264-8930-a008c38b41a3", + "id": "aebd51f7-16e3-445a-9348-e51fdafd0d3d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -193940,7 +193940,7 @@ } }, { - "id": "c0f7046a-155e-4a49-8ffe-910677bc7c0d", + "id": "7e52b9c2-dd8f-4fc3-b563-a2a2fcf23ed8", "name": "Submit Account Selections", "request": { "name": "Submit Account Selections", @@ -193995,7 +193995,7 @@ }, "response": [ { - "id": "3d05e493-2a5f-444e-894a-c9c5bd9accbe", + "id": "f4ae2e04-d953-4e73-b98d-5f1551367504", "name": "A work items details object.", "originalRequest": { "url": { @@ -194053,7 +194053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c74f3638-6cd6-43aa-a011-15891ba03a94", + "id": "a2d1b27d-9d8f-4a98-8931-9cd3b1e22422", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -194111,7 +194111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ea0b7c9-8709-4942-9050-ec74a752c446", + "id": "2ba7c374-3623-4ecd-95a1-ada907f1957f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -194169,7 +194169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6feead32-2e20-4729-8e41-69da230075e7", + "id": "1eea344e-afb5-4a77-b220-3d93d4b9789f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -194239,7 +194239,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": "c08a880d-657d-40da-b7ed-3edbe581647e", + "id": "3ab66ca5-1385-4694-a381-b94739acaacf", "name": "List Reassignment Config Types", "request": { "name": "List Reassignment Config Types", @@ -194269,7 +194269,7 @@ }, "response": [ { - "id": "45475ee9-1e5b-487a-bcf1-616aae128316", + "id": "dc6b846b-c7d1-49c6-8bf8-0052d9c01fed", "name": "List of Reassignment Configuration Types", "originalRequest": { "url": { @@ -194313,7 +194313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e5f4fc4-352a-4aea-b9ca-4e579ca62c05", + "id": "e3603258-a89e-4e22-8cc9-2b46b3ecc541", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -194357,7 +194357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7b5daed-bd1c-40ca-b524-37ac60523bc4", + "id": "1f480291-c538-4c4a-bff6-e4760b3094b4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -194401,7 +194401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f545ab5a-9d5a-475f-8aec-4499f57c0510", + "id": "0ed71fcd-94f5-4b42-8fc9-1f06572cf374", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -194445,7 +194445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87c0faaf-349c-44d5-8842-7d8ac7480b3d", + "id": "0ab65784-0c7a-486a-8b41-3f7180ca3575", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -194489,7 +194489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b644907c-2fe5-4762-8402-666ee8010a63", + "id": "165a439e-c82d-48a8-b203-36a0bd6da415", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -194539,7 +194539,7 @@ } }, { - "id": "02c0396e-b991-47e6-afcc-f099d3ad0135", + "id": "2ae3063f-c84a-44be-9573-5cf3d2542bcd", "name": "List Reassignment Configurations", "request": { "name": "List Reassignment Configurations", @@ -194568,7 +194568,7 @@ }, "response": [ { - "id": "1ee2afd8-ac85-4b3d-95dc-29bfcd624a91", + "id": "e5e6a19f-b451-4983-82f5-ceafa86c92e7", "name": "A list of Reassignment Configurations for an org", "originalRequest": { "url": { @@ -194611,7 +194611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b63d28d-ca06-4b18-864f-d4546a10102b", + "id": "72b0eb5c-45b5-4015-940e-68c49dfd6347", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -194654,7 +194654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1aa75cf8-2f71-4930-a0d6-9027f484ea00", + "id": "78e52502-3b7a-46af-8fbe-b327ffaa4682", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -194697,7 +194697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "188f7854-33c2-400c-a6ef-e009b44846f5", + "id": "8eba6418-1990-4c44-9005-213d2d6ad126", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -194740,7 +194740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10fc351c-2575-4673-81fa-d7116132976d", + "id": "abd64a8c-4c68-4d3e-83c5-a55757993568", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -194783,7 +194783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1671945f-880e-42f6-b106-2c9c4d9077de", + "id": "46f2f867-ba88-4199-918a-b04adbb06d13", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -194826,7 +194826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53239293-5835-4561-bd35-a1f04b4257d4", + "id": "3d48630c-7b5b-4470-bd7e-3f815b66ad6b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -194875,7 +194875,7 @@ } }, { - "id": "65dcfd2b-73e6-4433-aeb1-0b8dfe13bf89", + "id": "dc3bc753-150b-490b-8be2-1e53cdfd7000", "name": "Create a Reassignment Configuration", "request": { "name": "Create a Reassignment Configuration", @@ -194917,7 +194917,7 @@ }, "response": [ { - "id": "50b301f3-05c7-435c-b551-2f887269c674", + "id": "00c7e8b7-80f2-418b-8307-5cf847999869", "name": "The newly created Reassignment Configuration object", "originalRequest": { "url": { @@ -194973,7 +194973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ed72992-a1de-4216-af6d-698b858971e6", + "id": "a24ce7df-14d4-468f-8ae3-6990e83a2e5d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195029,7 +195029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b9e9b76-20ca-4315-9ab4-19007dae49f5", + "id": "553cbdd2-23b5-44c7-9b5c-f1109ef12543", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -195085,7 +195085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b641196c-a291-4825-a400-56f7aae3852a", + "id": "7140b70b-4622-490c-ba01-2c79e91df20a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195141,7 +195141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5dc244b-f41a-46d9-8ce1-cddec677b93a", + "id": "34e185fe-e220-49bf-9ad6-68faed669abf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -195197,7 +195197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba91cf0d-54e3-4afe-8e78-921b7ed8fe04", + "id": "ecf865a9-9efa-41f4-b8a8-74f2cb557d78", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -195259,7 +195259,7 @@ } }, { - "id": "948051b1-36df-4432-96cc-12b832baef5f", + "id": "3f9631b7-7977-4ddd-af8f-cc140b2a50b7", "name": "Get Reassignment Configuration", "request": { "name": "Get Reassignment Configuration", @@ -195300,7 +195300,7 @@ }, "response": [ { - "id": "e2b10f6b-b0c3-4335-afe1-e832fc44c5b9", + "id": "1302869d-82a9-48ec-91c2-ed67e1f52f01", "name": "Reassignment Configuration for an identity", "originalRequest": { "url": { @@ -195344,7 +195344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cbcda56-9fcf-474d-887f-a107b97f2f5e", + "id": "cdbc5df9-7f87-4d07-9ac9-49f1489764bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195388,7 +195388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "084abb66-89bd-4d7f-844e-23c894e83438", + "id": "26899daa-6537-44f2-a742-d5143ee5c070", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -195432,7 +195432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6ef09a5-9343-4a48-b448-16bff4c09913", + "id": "5335e7ec-61e1-49b8-a523-9b76b199771c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195476,7 +195476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "313f8522-1e69-4131-8deb-70c06ee788e5", + "id": "3fe55299-bb84-44ea-85e7-6bc0fd99bb9f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -195520,7 +195520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70ed7b41-651f-466d-92ce-3640ae17ec8d", + "id": "437e4b64-1450-4edb-a5a1-2dae59a2c0e9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -195564,7 +195564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f0cb30c-782f-4998-8312-29a2ab032d5a", + "id": "badeb0c8-3ff2-43dc-92b0-452fe5650a5a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -195614,7 +195614,7 @@ } }, { - "id": "0a040cac-fc7d-41c8-8d19-0852ed452631", + "id": "abe745b1-676f-4063-b92d-8e77cf65658d", "name": "Update Reassignment Configuration", "request": { "name": "Update Reassignment Configuration", @@ -195668,7 +195668,7 @@ }, "response": [ { - "id": "53e11d5a-8d22-429e-8028-6aff3186b0c0", + "id": "91d956ea-ea1b-48f3-94d0-1deb2dfde000", "name": "Reassignment Configuration updated", "originalRequest": { "url": { @@ -195725,7 +195725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e84c1437-73f0-4f85-be98-7d4b9d600a5c", + "id": "0edeefd3-9c2c-4cd9-8733-b39a03a2ff58", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195782,7 +195782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "311fc39b-05b6-49cd-8ea7-ee7cb3c918ee", + "id": "74afc885-1d2b-42d6-8f49-55fc33f65c64", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -195839,7 +195839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41517bdb-b372-45f3-bc1c-e5d5896e1695", + "id": "61cdbcb0-db8f-4eb1-b5b5-856e86cd74af", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195896,7 +195896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c4d8d6d-282a-4818-a165-d740924ca1e0", + "id": "e81c6912-fc15-4660-961e-4b0ff727eaa2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -195953,7 +195953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86b306b4-97a2-4c87-bbf0-65d9fe3134bf", + "id": "0e2a8729-309d-4973-ac0a-8b4d83fbd23c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -196016,7 +196016,7 @@ } }, { - "id": "1a6878de-7784-4779-9a02-51850bf4b519", + "id": "ed689962-a051-44eb-bbdd-a38955105a40", "name": "Delete Reassignment Configuration", "request": { "name": "Delete Reassignment Configuration", @@ -196057,7 +196057,7 @@ }, "response": [ { - "id": "ac7f78b7-519a-4ecf-a131-bb382de9c414", + "id": "e8939e4c-ff43-4320-ac07-99dda9e8b4fd", "name": "Reassignment Configuration deleted", "originalRequest": { "url": { @@ -196091,7 +196091,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4ed8e31e-3b38-4385-8288-5985155bfc87", + "id": "703f4351-18e1-4dd1-8130-e82ac121dc9c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -196135,7 +196135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f75f2713-89d4-4049-8ed1-8b328fdd67ed", + "id": "c3abb86e-7f89-4578-9f41-c45aaf0cc895", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -196179,7 +196179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fcdb78f-8e6f-4d47-aeb3-9ef06991da76", + "id": "74d7a997-ae11-4030-806a-332b3a06e34d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -196223,7 +196223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b17cbe9-f79a-4721-a9f1-81b303450cfb", + "id": "c7404932-8705-43ea-85cd-38be9e858cdc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -196267,7 +196267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c993282-028a-4622-9bdc-982eeb322227", + "id": "338a25ac-ea10-405f-98ef-10fe9fbab111", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -196317,7 +196317,7 @@ } }, { - "id": "32f71c50-96cd-4319-8476-b9a3e39bbae5", + "id": "28b4fe00-080f-41d6-a830-a7be2855999c", "name": "Evaluate Reassignment Configuration", "request": { "name": "Evaluate Reassignment Configuration", @@ -196380,7 +196380,7 @@ }, "response": [ { - "id": "00c7bb5e-63be-46be-9bf9-434e175622d5", + "id": "c50b22ce-32b2-46c7-af79-061de2ea6bf2", "name": "Evaluate response when no Reassignment Configuration is found", "originalRequest": { "url": { @@ -196436,7 +196436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbc6bd8c-ad02-4276-8d0a-b05c52577f79", + "id": "3e649237-a09b-4719-bf25-ff7c64a9789f", "name": "Evaluate response when a long Reassignment trail is found", "originalRequest": { "url": { @@ -196492,7 +196492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c786578-3b08-4e00-ba16-57d19dd5abc3", + "id": "4dae941c-1f32-4da8-9cb8-adeb86629d73", "name": "Evaluate response when a self-review is found and manager or org admin escalation is applied", "originalRequest": { "url": { @@ -196548,7 +196548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a4d48f9-e1fd-4fc5-b595-c7daab59638d", + "id": "f5285c56-83ad-4d1c-bbf5-aeb229be4ecf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -196604,7 +196604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e1792b5-7c02-4c4e-99f4-2e5392e5c916", + "id": "aa5be512-4670-4e3a-9160-26613fe1cb89", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -196660,7 +196660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1071d22-bc04-4bea-8076-fbe4ea2ff1fb", + "id": "7e9f059b-f40f-4a02-9d49-f26e96b31b63", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -196716,7 +196716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a94ce548-8b80-4f8f-94b5-adb44ea2d678", + "id": "0ec0aa88-0413-4fab-b24a-7ffe9fbddf08", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -196772,7 +196772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97399ff0-ff82-4b2b-8c47-05e4255e7027", + "id": "265d4f89-5745-4034-8118-64be1920c7d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -196834,7 +196834,7 @@ } }, { - "id": "f64b524c-ba04-438d-ab26-441b34c6078f", + "id": "e86b649c-23d8-46cf-a2db-9cc5e567fd52", "name": "Get Tenant-wide Reassignment Configuration settings", "request": { "name": "Get Tenant-wide Reassignment Configuration settings", @@ -196864,7 +196864,7 @@ }, "response": [ { - "id": "e5bf4c5e-12d7-4f9f-8de1-673fa554f177", + "id": "c97526b8-8625-49bf-9f25-204ae5f4ef35", "name": "Tenant-wide Reassignment Configuration settings", "originalRequest": { "url": { @@ -196908,7 +196908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a3d9397-4e17-43aa-a795-ca35a49f132c", + "id": "f55e5c80-2456-4068-82b0-e356e00d43f2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -196952,7 +196952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0012f9fc-f55a-4150-ae73-97a3e05adbf2", + "id": "ae28235e-12bc-44a9-9f1b-5dd63122a9f4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -196996,7 +196996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae122250-1e8e-479a-bb2e-e70f2bec546b", + "id": "482c87ca-62d3-45a6-8f41-ec199b521f90", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -197040,7 +197040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4c15eeb-2e2e-4623-b130-db5dfddf7dc7", + "id": "116aef69-2edf-4ef0-bcf3-237fae116f47", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -197084,7 +197084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5044950-46c0-4cb1-911c-6804ec3ff37e", + "id": "dba4c006-f03f-44bb-934a-b09b012c1f09", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -197128,7 +197128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1db51bbb-4582-4298-8e8d-c16d94e37a8f", + "id": "b7381c34-d5a4-451c-b085-1621c3f838b1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -197178,7 +197178,7 @@ } }, { - "id": "86acfa12-228d-42ca-ab9c-ddcd57634c53", + "id": "addf70a9-b5d5-439e-b039-cf0faec9cdbe", "name": "Update Tenant-wide Reassignment Configuration settings", "request": { "name": "Update Tenant-wide Reassignment Configuration settings", @@ -197221,7 +197221,7 @@ }, "response": [ { - "id": "738861a3-dd1e-45cc-ba9b-4295876ac72c", + "id": "f8b16d2d-5c9f-463d-8bcc-8979896fba8b", "name": "Tenant-wide Reassignment Configuration settings", "originalRequest": { "url": { @@ -197278,7 +197278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0fd58cc-e922-4973-8fa6-bd461d1a59c5", + "id": "5d5dd4ed-06ae-493e-aef9-4760518cc0dd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -197335,7 +197335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6269e020-37a2-4799-9083-016a950639f9", + "id": "78dc6e76-ff09-439c-9af8-00e29f78329c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -197392,7 +197392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e72cba6-c091-44b4-ae59-1a178c7edff0", + "id": "3f963b8d-f4eb-400e-a3c7-bcd2942db6cb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -197449,7 +197449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f93ca8df-24d8-4ba1-ba20-3ea602c6dbbb", + "id": "218dd56d-2ae9-4cfe-b443-2ce3e82dd28a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -197506,7 +197506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7133d6e8-e542-4254-96c6-748dfae38a78", + "id": "409e6935-66db-4920-8d15-23d9cfa7f7a9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -197575,7 +197575,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": "ac2f0b4a-44cd-419f-8609-b5f82570236a", + "id": "9b832daa-7b17-4e9b-b3c2-17bc193ead42", "name": "Create Workflow", "request": { "name": "Create Workflow", @@ -197617,7 +197617,7 @@ }, "response": [ { - "id": "0740cbc6-def8-4a78-88eb-57d857528d9f", + "id": "fe9c7b02-0f9b-407f-95a1-84fb37888963", "name": "Event Trigger", "originalRequest": { "url": { @@ -197673,7 +197673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49d1093b-fc0a-440e-8e9c-25d61a029e54", + "id": "0729e445-406a-4a86-8dc9-01399f391ccc", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -197729,7 +197729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72084b85-f579-493f-a78f-7dd30b8909f3", + "id": "4eac41a4-354e-4d06-89e0-8c0f1e4965a4", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -197785,7 +197785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d008ad3-bbb8-4773-ac20-9c3bdedc1019", + "id": "5b9f99a2-c0ef-4fc6-b811-4e2c248c9042", "name": "Event Trigger", "originalRequest": { "url": { @@ -197841,7 +197841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a214ee4-c177-4cee-b4cc-b449610792a1", + "id": "3f92d398-0c19-4ccc-a455-8d41528aced1", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -197897,7 +197897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98db1873-aa85-4779-a03a-3f9a0e47281a", + "id": "84a65077-8b41-4a9e-9162-5b4dc57f2ab8", "name": "Event Trigger", "originalRequest": { "url": { @@ -197953,7 +197953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b08f79d3-5c46-4c69-8eb0-46809caf9f4f", + "id": "3bb89a40-0656-460c-9a6b-c26fed30cc40", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -198015,7 +198015,7 @@ } }, { - "id": "76606ed6-ed14-434d-9142-a6fef042f63c", + "id": "4bb4da6e-4895-466c-8f6a-beefb9283c40", "name": "List Workflows", "request": { "name": "List Workflows", @@ -198044,7 +198044,7 @@ }, "response": [ { - "id": "719fb34a-b734-40fc-aac4-547fb1a840fe", + "id": "75a15f6d-00cc-4378-9fb1-4eb3187d901c", "name": "List of workflows", "originalRequest": { "url": { @@ -198087,7 +198087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d86eabea-df09-403a-b208-4a762789ec25", + "id": "159d86a7-174d-4334-a90a-b2578ec8d500", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -198130,7 +198130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dba66a8-5211-40ea-948c-cb0c557cb07e", + "id": "f5ba4f40-9b3f-4093-83f7-fa1a774c207a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -198173,7 +198173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8251b4e7-1791-48b9-82f5-067c9a2df334", + "id": "a7fdf861-04ec-4104-8f85-fbb428df5c95", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -198216,7 +198216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c153ba0-465c-43f0-a073-6cb3ceaf78b3", + "id": "3df4ade6-33ea-4245-9bea-b0eea5ffbe8f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -198259,7 +198259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b753f4c7-468c-40c9-8be2-de647239b0b4", + "id": "28d140cd-e295-4462-a3ab-9e5ae22020f0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -198308,7 +198308,7 @@ } }, { - "id": "90a2cabe-dd33-470e-a940-2efa96357a18", + "id": "c0a48768-4919-4bb7-8f2f-037439583696", "name": "Get Workflow By Id", "request": { "name": "Get Workflow By Id", @@ -198349,7 +198349,7 @@ }, "response": [ { - "id": "a71baa74-7bf2-489f-a04f-fb0b4b001937", + "id": "a5cbfc3e-099f-42db-9773-e56a1147d605", "name": "The workflow object", "originalRequest": { "url": { @@ -198393,7 +198393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39d404ba-a231-4ae3-9a52-1654156decc2", + "id": "900a9c01-7f59-4a3f-92f3-4d0cc908671a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -198437,7 +198437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ad7eb3e-76c6-4d5c-aad2-16259d3c7892", + "id": "a50b9a1d-8c34-4e42-8166-1685bccedc07", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -198481,7 +198481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d33d8ec-cb18-4a7a-821a-d075758dfd73", + "id": "7980ffb2-13c9-4434-a255-d8f19f5fcf9c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -198525,7 +198525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5c8b3c5-ee0d-4632-a4d1-b92845e09077", + "id": "9cb77624-eae2-4c60-acd5-d5608dc3f2c3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -198569,7 +198569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "494ca296-64bb-4a8f-bba3-3a246c455478", + "id": "e91ae533-04cb-4276-b264-83262b79d208", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -198619,7 +198619,7 @@ } }, { - "id": "c13d8b2c-75df-4320-bff9-8492e966885b", + "id": "0da99334-2b67-4e47-8f4a-b5fb21c950d2", "name": "Update Workflow", "request": { "name": "Update Workflow", @@ -198673,7 +198673,7 @@ }, "response": [ { - "id": "b1c39ff8-4b40-4fab-83f3-24921e38b498", + "id": "5a8ff403-32a2-447a-bc60-5dbb2be0f4a3", "name": "The Workflow object", "originalRequest": { "url": { @@ -198730,7 +198730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7638f7a-9382-4e5a-a0d3-d4543f3a3028", + "id": "08cf712e-4dfa-400a-b23d-713b292f0cc9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -198787,7 +198787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c286240a-e9d3-46e9-881d-cb65193feb2b", + "id": "fc6795c8-59e7-420b-a600-9c2587eb96a0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -198844,7 +198844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f5bdd78-dd87-497e-a5a7-e62b3f4bb9ed", + "id": "86a4b1ad-0c33-4f30-a815-74d6df412e8a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -198901,7 +198901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38683d1e-9da9-4e45-98d7-bd7e6c6d62fa", + "id": "f50eb01c-197c-4898-b888-fa73ffe12fe1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -198958,7 +198958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "234ebd9a-f30a-4751-8297-130b0144b756", + "id": "94341e6e-667d-499f-ae03-b363a29e9276", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -199021,7 +199021,7 @@ } }, { - "id": "e5a36b23-a16e-4bd3-833e-5f6e19fcbd61", + "id": "590179ae-897b-474a-92c0-3448388e321e", "name": "Patch Workflow", "request": { "name": "Patch Workflow", @@ -199075,7 +199075,7 @@ }, "response": [ { - "id": "b402959d-747d-48eb-a50e-98a30b031794", + "id": "51f5dc0f-2339-4092-89e8-327a4f46796d", "name": "The Workflow object", "originalRequest": { "url": { @@ -199132,7 +199132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d516906f-8289-4555-a792-c354e151fcc9", + "id": "4dfc7df5-197e-4610-ae96-80d88ccee01a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -199189,7 +199189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81edda60-49f1-4c7b-bba8-294664fdf06a", + "id": "41c6baa4-b8d0-457d-a7e7-1dd420a7de25", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -199246,7 +199246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41de9ae7-168b-4370-817b-fdb8bfc0bedd", + "id": "2172cbb3-56d9-4064-bfb1-c214a38d5981", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -199303,7 +199303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d417d19-344b-44ab-85dc-5b5e29bc1448", + "id": "6cd8193d-e01d-4c5b-a968-ff8e3510930c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -199360,7 +199360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43c8e5ee-ed6b-4a1c-8d74-4c87ab19aa5c", + "id": "8ea5b23f-f0a5-4b3f-9f3e-a9c72af20c68", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -199423,7 +199423,7 @@ } }, { - "id": "3499028a-12d5-4d50-a2b0-2327b6e84a62", + "id": "530388ef-d86e-40cb-8b15-1bd2e05eafe4", "name": "Delete Workflow By Id", "request": { "name": "Delete Workflow By Id", @@ -199464,7 +199464,7 @@ }, "response": [ { - "id": "4b4291e1-965a-4074-8509-623a96a90c82", + "id": "58641f42-769b-4b4d-8d20-77e43e6f220d", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -199498,7 +199498,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0a077005-3f0a-448f-a5f9-7b69f5bc4185", + "id": "6649d74e-e9e9-4ebc-b0f0-482b732e660b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -199542,7 +199542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9b3f789-0796-4b7e-8fa4-ebc2648b86bd", + "id": "e91b1a61-4803-44ed-a688-ffd7424e1912", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -199586,7 +199586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82d66ede-3ff8-4ef4-8e1a-88e5bd1cd96d", + "id": "3cbe9caa-b655-4d2c-8529-ada18b658688", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -199630,7 +199630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aae0ec76-f1fb-4c21-8bc2-0cee6fa6da18", + "id": "f54cd020-b2c2-40fb-a1e8-9e98f38fbe46", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -199674,7 +199674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d426c49-33dd-4bd0-a919-0d14b45a6899", + "id": "4bca0522-5c68-4b40-a420-4206da7be685", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -199724,7 +199724,7 @@ } }, { - "id": "771a565a-c5c7-4096-8657-bd0aa7b29803", + "id": "812c87a6-8058-44c3-8a5f-feb9ca423a54", "name": "Test Workflow By Id", "request": { "name": "Test Workflow By Id", @@ -199779,7 +199779,7 @@ }, "response": [ { - "id": "4ce851bd-da37-4617-a767-68c3f7b9e564", + "id": "d9b74b9a-54e9-461d-9766-cff80b33b3cc", "name": "The Workflow object", "originalRequest": { "url": { @@ -199837,7 +199837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06c596aa-72db-4eb1-b5f1-84331f1fd885", + "id": "27fda1cd-47ed-4a56-8613-45edcb3cf441", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -199895,7 +199895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1896746e-e478-4a92-a3a3-38f84028e728", + "id": "2f1c4960-f39f-44fb-8834-1d5ee5c8d420", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -199953,7 +199953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af85a99f-0cad-4906-8929-d30dbdb10289", + "id": "97470130-bf28-4adf-b902-e6e9cfa67945", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -200011,7 +200011,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccf06cc1-9d86-488a-a3d4-cfd48b25f53e", + "id": "56f091ab-b4d6-42ad-9b3d-c1936275596f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -200069,7 +200069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7718343-02bf-4d81-a069-c19a01b9c74b", + "id": "6e19792e-cf3d-4c87-8f8f-c0c55d4a144d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -200133,7 +200133,7 @@ } }, { - "id": "a103f6bd-28a3-442b-a763-bbc18f28d9a1", + "id": "67c05c4b-9567-45fc-bdb1-9ecffba6beb9", "name": "List Workflow Executions", "request": { "name": "List Workflow Executions", @@ -200212,7 +200212,7 @@ }, "response": [ { - "id": "41001dae-67aa-4620-bc0a-8721ef07f39a", + "id": "d94fc842-e433-48a6-85aa-afd2a062f884", "name": "List of workflow executions for the given workflow", "originalRequest": { "url": { @@ -200294,7 +200294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f711472a-2cbe-49de-9e0a-594d38b12971", + "id": "35a2105e-d270-48c8-9357-b1029677cfee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -200376,7 +200376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e6308b5-7c91-46c2-8991-963744106e29", + "id": "a69c2dbe-07d4-4871-952c-ee24b44b4e45", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -200458,7 +200458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5364462b-2dc6-4d0c-ad49-8460286e83cf", + "id": "7ffacfb2-5177-4ea3-b783-0eccf35ade94", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -200540,7 +200540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c003bc1c-c94e-4abd-9b0e-a6d8ab8d8f4f", + "id": "8c04d983-7220-4566-912c-d0f44a1fce54", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -200622,7 +200622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c951bb92-0012-4032-b2ba-a08cbdc72c6b", + "id": "4eb46ef8-4e5c-400f-a0a2-c1a802872f81", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -200704,7 +200704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27010bac-b602-4718-9d64-442e92f490c4", + "id": "5389c318-fd5b-4eb7-a5c9-4ca4bd9fff19", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -200792,7 +200792,7 @@ } }, { - "id": "c845c01b-c28a-4a00-bdb7-95fb7b854b6c", + "id": "dd3a87c9-5a5c-4261-8e2b-70ffed367452", "name": "Get a Workflow Execution", "request": { "name": "Get a Workflow Execution", @@ -200833,7 +200833,7 @@ }, "response": [ { - "id": "aae78418-1a9c-4266-abfa-cfe2fd1273e2", + "id": "79b51986-e46e-4f6a-89ee-6529f2a39e2b", "name": "The workflow execution", "originalRequest": { "url": { @@ -200877,7 +200877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4c610a3-c6e6-47ef-bf68-28b64e573882", + "id": "fdacf441-3512-42fd-b3da-db86e5724913", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -200921,7 +200921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d33fc86-eff6-4341-a0a0-6a71b1e64f25", + "id": "bfaf3486-0f22-4ff8-b4d8-6c2883cbb4a9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -200965,7 +200965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd59b788-6d5a-4b24-a297-8e29d6e596f6", + "id": "05cbb1e3-ad01-440d-bd6b-3a8b69d0252a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -201009,7 +201009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05ccaf98-4a9e-4ab7-9b71-acc81fc08101", + "id": "133e033d-aab4-42b6-85ef-e7f6dd4385f9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -201053,7 +201053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d6e0c15-7096-4f5b-802e-41525d349b7e", + "id": "eb5fd744-2372-4c10-bae7-e8f2914f3af3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -201097,7 +201097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab8d67dd-a767-42e6-b9e8-ee7b14c302a9", + "id": "132b3b10-efb0-4a80-be64-f002f603c477", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -201147,7 +201147,7 @@ } }, { - "id": "99a0bfe8-2435-4e1d-9e18-093ec7260848", + "id": "64efad81-2aad-4e90-bbc6-c15c22c94efb", "name": "Get Workflow Execution History", "request": { "name": "Get Workflow Execution History", @@ -201189,7 +201189,7 @@ }, "response": [ { - "id": "500281bd-e6e3-48e1-ac9e-6bd9ed67e5a4", + "id": "b25ba9db-ed62-4f9f-975d-4d08b50cad13", "name": "List of workflow execution events for the given workflow execution", "originalRequest": { "url": { @@ -201234,7 +201234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f08f24c-696d-4abd-889b-f92bdb22b358", + "id": "7a924615-0ea1-41e5-8e56-555fe0cd82b3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -201279,7 +201279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b2afd70-a5b9-4fe6-b20f-448163dc3c5d", + "id": "daa037ec-9030-4e1d-a778-71a992f28c8f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -201324,7 +201324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63d9bb73-cd03-4ad5-bff5-042871b4eea5", + "id": "1d3799d8-8ae2-430b-9eed-b1bcda9fb4ab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -201369,7 +201369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f0c67db-0596-4c76-9ef9-b069fc16483f", + "id": "9855ab2b-9be3-428f-9d69-f054d2caa178", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -201414,7 +201414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "645a825c-05b3-42cf-b9bd-189b538151ad", + "id": "f0e77438-a7b7-4bca-a894-d24dd3e58699", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -201459,7 +201459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcbf6df1-8566-4ed1-bcfb-0160705aca9f", + "id": "90375e9f-122d-4631-88d5-e2b3f0d0e0b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -201510,7 +201510,7 @@ } }, { - "id": "98012dc4-a068-4fbe-bd4c-3dfc685ff6ac", + "id": "acab82ba-c778-41bd-a310-a3e9487b777e", "name": "Cancel Workflow Execution by ID", "request": { "name": "Cancel Workflow Execution by ID", @@ -201552,7 +201552,7 @@ }, "response": [ { - "id": "ec89ec01-5467-49f1-bfc9-66b2f610dfe1", + "id": "1938d983-e75f-4dc0-93b5-6df64a00e24e", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -201587,7 +201587,7 @@ "_postman_previewlanguage": "text" }, { - "id": "452df242-1b1f-407c-b87b-70a0b0a256d7", + "id": "abf78031-0508-4875-b328-ef8f26574d5b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -201632,7 +201632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ea38aeb-501f-4021-9ba8-38a860c5b08a", + "id": "ec0f1412-3383-4c02-b134-9dc1b3ae01fc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -201677,7 +201677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca6e2dae-149b-4b91-9a02-71fcaf4555f3", + "id": "76a33f63-b7aa-4d0f-ba8c-4442eb40d4ac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -201722,7 +201722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3acb15f7-0cb0-49af-bd58-f5c51b1c3b8a", + "id": "ef1ada8d-ce1f-4e3f-a1a4-35e379340597", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -201767,7 +201767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c97fb635-3b6c-4edc-8770-5b405ced27d5", + "id": "624a8d4b-0b25-4356-972b-711eaa80e366", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -201812,7 +201812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e10d5f7d-eda3-47d9-83de-49bd52b878db", + "id": "a807a180-fefd-4bcb-802a-e0bd257c4587", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -201863,7 +201863,7 @@ } }, { - "id": "f90ed2e3-1f80-4243-8d22-0eedfb338b31", + "id": "3340d4ec-e0b8-40d5-9d1e-a810c00b802d", "name": "List Complete Workflow Library", "request": { "name": "List Complete Workflow Library", @@ -201911,7 +201911,7 @@ }, "response": [ { - "id": "d6d496eb-04ae-44c6-ae19-1f44250d5e80", + "id": "888e7eee-c25b-4b36-8596-27facee7cee8", "name": "List of workflow steps", "originalRequest": { "url": { @@ -201973,7 +201973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca93c7b5-3547-4b45-aa68-46a7160152ad", + "id": "35cfea80-14a4-4d92-81ff-e2c5c0615b2c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -202035,7 +202035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10c66f20-4b65-4948-97ea-e6dc2f15b608", + "id": "cc3ed0d9-8846-49e8-9464-9e7899769fa7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -202097,7 +202097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "291264a7-a073-4162-890b-2186943e0908", + "id": "2daae2fe-e22b-4eaf-bbbd-4efda278cb6b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -202159,7 +202159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22b24fd3-803a-4de0-a04a-f8bb1d33fc4c", + "id": "d04e8851-754c-4264-8558-42077eaf0f90", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -202221,7 +202221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8ce521d-49da-4e18-8433-87c951cbcb1b", + "id": "9f20884c-2de5-4e79-b449-37426acb25e9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -202289,7 +202289,7 @@ } }, { - "id": "c26eb674-2bc6-4966-8191-fa32e3c45037", + "id": "bc7ed526-d4f3-4509-85dc-22064ca12911", "name": "List Workflow Library Actions", "request": { "name": "List Workflow Library Actions", @@ -202347,7 +202347,7 @@ }, "response": [ { - "id": "238fbde0-6b72-4f45-bc50-cbe861299a34", + "id": "548270f5-3151-4a5d-97be-2c05defce916", "name": "List of workflow actions", "originalRequest": { "url": { @@ -202419,7 +202419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "418442ea-3a43-48c1-8ec3-dc6fca8240cb", + "id": "23f9fa3e-58f2-4b07-9ec8-2c5cc246b3c1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -202491,7 +202491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e214d14-f92c-42ad-9f76-978883f12fb8", + "id": "83fc9d65-a7b7-4010-8d84-167bbefcd163", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -202563,7 +202563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40bc3e08-ff79-46a7-b7b2-da5e30e881c5", + "id": "4665262f-b1d8-4e26-bf6d-a87c843dccd6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -202635,7 +202635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73b3731a-d9cc-4828-a5d5-262406b4c8b6", + "id": "a0d6d406-56be-4b0c-9190-2b25e4349940", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -202707,7 +202707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c086464d-0e01-414a-913e-6b4d22f4fcfc", + "id": "d5f68bcf-52bd-42c6-8c81-919d7577e3db", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -202785,7 +202785,7 @@ } }, { - "id": "86cd13a7-4219-4186-ad3f-020497eea412", + "id": "5a059574-c517-4814-94f6-b6fe180e76ed", "name": "List Workflow Library Triggers", "request": { "name": "List Workflow Library Triggers", @@ -202843,7 +202843,7 @@ }, "response": [ { - "id": "aeae3659-e7bd-4829-9495-c71e8167e851", + "id": "f5677ee3-6500-441d-a8a4-0e47a66f2d4a", "name": "List of workflow triggers", "originalRequest": { "url": { @@ -202915,7 +202915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3feca06e-0b2e-424f-8605-38d5158a295b", + "id": "b4c7a349-67f7-4ce6-ab19-142b60081736", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -202987,7 +202987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02d896b0-a5e3-4603-b480-f92e752c1c29", + "id": "75b66c28-daba-483d-bb80-31b6db1fca3e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -203059,7 +203059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a9467d3-94d6-41c1-99f8-e31894c94819", + "id": "ee6337c9-ae7c-4da3-bd67-0836d7554236", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -203131,7 +203131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af2bf724-9e2c-439f-a4d4-66d3c9c6b16d", + "id": "a0579435-a45a-4c0d-9ded-3e7515a17e16", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -203203,7 +203203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e8c0f1e-38d9-4ae7-a65e-37f6b4b6abb8", + "id": "c29b2f91-2d87-469e-a54f-2a1c2a464153", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -203281,7 +203281,7 @@ } }, { - "id": "c5b83109-a57d-42c8-aae9-093377cb9de4", + "id": "4ed2a893-a30f-46da-8699-6e4dc1b15fe5", "name": "List Workflow Library Operators", "request": { "name": "List Workflow Library Operators", @@ -203311,7 +203311,7 @@ }, "response": [ { - "id": "7dfe036b-7471-476a-b638-aff1f9c2a88d", + "id": "48163ad6-9f9e-4df6-9b7a-e757e839e2b6", "name": "List of workflow operators", "originalRequest": { "url": { @@ -203355,7 +203355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06892871-311e-475c-a751-fae5d5a2ecae", + "id": "111dea10-d097-4031-b35e-d938765fd9cc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -203399,7 +203399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a4fea71-3455-4631-ac97-5ad83c2ce01d", + "id": "6cd364c3-818a-4d37-9f94-503bffd4e74d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -203443,7 +203443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec8fad37-a6cb-48ad-af1f-e69b2bfec499", + "id": "6f896237-6cf8-47d4-830e-9facb9073ad2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -203487,7 +203487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be489f96-681c-4158-bbcc-dcdf05859c9a", + "id": "fc28ee9f-2505-4bc2-b24e-3043f655b2b1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -203531,7 +203531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6de89dd9-1e2a-4d17-9814-d0e992417e35", + "id": "bf00835e-2348-454c-93b5-a4e89c225496", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -203581,7 +203581,7 @@ } }, { - "id": "ebd972a1-5c63-44d7-928f-abe642ca3fa8", + "id": "2fa729d9-4e03-4e2e-b7eb-babbb012ce1e", "name": "Generate External Trigger OAuth Client", "request": { "name": "Generate External Trigger OAuth Client", @@ -203624,7 +203624,7 @@ }, "response": [ { - "id": "ef598dc3-279a-4a7b-bc3e-892bc2f8aefd", + "id": "5ebdc4ef-cdbb-4ea7-85b6-fad737db502f", "name": "The OAuth Client object", "originalRequest": { "url": { @@ -203670,7 +203670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e091d1c1-ff71-46be-ae15-e3db3b1f9d2c", + "id": "3a82df25-987b-442c-affe-e181b39d95e2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -203716,7 +203716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d4bb624-59ce-4662-afaf-cab935ab6d50", + "id": "f8536326-4b61-45ae-94a4-b62adc00ed00", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -203762,7 +203762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76382f6f-fa65-4426-8627-5bd238a13cf1", + "id": "095afc22-ab37-48d3-a12b-a60e3c4a81b5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -203808,7 +203808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8f7f463-5d95-42d5-8582-d049583c6ae4", + "id": "b17ab8c2-6519-478d-9e5c-47c134495af1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -203854,7 +203854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed9e9b52-0ed3-4e79-b2f4-305482d88321", + "id": "c8f1bc56-ac29-4389-9031-4f4011ebffde", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -203906,7 +203906,7 @@ } }, { - "id": "d54cd290-1d4b-4dc9-80ab-6f9ab020e256", + "id": "ce8398e5-a36a-4008-9c2b-b0c11b52b850", "name": "Execute Workflow via External Trigger", "request": { "name": "Execute Workflow via External Trigger", @@ -203962,7 +203962,7 @@ }, "response": [ { - "id": "4ceb139a-81aa-4aea-aea9-f94f3923cc68", + "id": "2e87b9d7-eaf6-4447-b18f-e65c6fcbec31", "name": "The Workflow object", "originalRequest": { "url": { @@ -204021,7 +204021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fd681ca-d74c-4205-bd94-65641ea47d82", + "id": "c870a162-406e-46cd-9999-fcbabee97280", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -204080,7 +204080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31b9ed5f-8cec-48e3-bf66-9bf038e45a92", + "id": "0f640f44-c72c-4f2e-ab8b-1c5583f6f332", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -204139,7 +204139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c21516b-ec3f-44c6-8f6c-75bf3ef0ef6f", + "id": "9f5c532d-5adc-464a-a1f8-801c0ec8a246", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -204198,7 +204198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91ab7e96-acdd-49e3-869e-c3eb27a11b93", + "id": "ba7916d3-9013-4040-b3a5-e7d7bbfd9f9f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -204257,7 +204257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa9c29ab-9827-4e55-9014-6e46d9257bc9", + "id": "fb75438f-b70d-446e-9200-696c439eb314", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -204322,7 +204322,7 @@ } }, { - "id": "1c6fa6a2-92bc-4540-9973-1ab97a2853ab", + "id": "2bf8ab4b-da6f-4672-ab7f-dbaa5f43d177", "name": "Test Workflow via External Trigger", "request": { "name": "Test Workflow via External Trigger", @@ -204379,7 +204379,7 @@ }, "response": [ { - "id": "bc1f862b-877b-4490-ae6e-23082c38ad3c", + "id": "b8733b1a-18dd-4a81-805a-0a51de25d5b6", "name": "Responds with the test input", "originalRequest": { "url": { @@ -204439,7 +204439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "464c5430-4b16-475d-bddf-c43f8f4b4848", + "id": "b0f98a6f-205a-47c4-a7ad-c0499f54e3a1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -204499,7 +204499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7b998ce-4343-4ee3-9fe1-c993162dd4f2", + "id": "1d01fd03-7415-4f42-a270-a43f94d858a2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -204559,7 +204559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f084a387-176a-45b4-8de1-e700cebec30a", + "id": "265ce97f-13fc-4d6e-8ec1-e192e5fed026", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -204619,7 +204619,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3dd7967-9c3f-4954-801c-4aee77453eb7", + "id": "36cf24e0-499b-4733-bd15-ea7c8023d5e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -204679,7 +204679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74bd2e34-e886-4e64-bcf2-9dab2e528db7", + "id": "9ae89a0e-8f63-43fa-b4e3-a3e73c4678eb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -204751,7 +204751,7 @@ "description": "", "item": [ { - "id": "6820f2da-97e2-4742-8df2-29e8b0b1b417", + "id": "b80dd0c2-3a52-4f69-be77-04e6c798652e", "name": "Get list of Auth Profiles.", "request": { "name": "Get list of Auth Profiles.", @@ -204780,7 +204780,7 @@ }, "response": [ { - "id": "74f32a59-f11c-406d-b71b-c2f6a1536aad", + "id": "f63c9263-2fcb-426c-b5f4-28dd06b2b526", "name": "List of Auth Profiles", "originalRequest": { "url": { @@ -204823,7 +204823,7 @@ "_postman_previewlanguage": "json" }, { - "id": "266d1a22-1435-4fe0-9a02-9779f0bbf617", + "id": "ca886c05-4253-4672-ab30-7c3eea50e26e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -204866,7 +204866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ec5d336-7ae2-4103-a0c3-d7f76f22672a", + "id": "e8726efa-061d-4c77-bfa6-dfb3fb73a531", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -204909,7 +204909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc86e2d7-8f45-4ea0-b84e-b09c90a92a8b", + "id": "aec7b686-b4d0-4789-8aae-ed95032ef544", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -204952,7 +204952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6d87779-61c1-4c4e-8677-58fce5a24b96", + "id": "6d63c6f9-d599-4003-9dc2-a63d3b2ed083", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -204995,7 +204995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ade995e-7773-4797-ac1c-1498f5f5b989", + "id": "720de30a-c596-40a7-8e8a-7b807df99063", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -205044,7 +205044,7 @@ } }, { - "id": "a30318e6-737d-49f3-9f9d-88e4a751dab2", + "id": "5669ca4c-3e8f-4795-8f14-b4a323f47281", "name": "Get Auth Profile.", "request": { "name": "Get Auth Profile.", @@ -205079,7 +205079,7 @@ }, "response": [ { - "id": "3a0d11ba-c06c-4dd5-90ad-88b8723d30cd", + "id": "d82e1ad9-8448-4b25-addf-c76ffb1d670b", "name": "Auth Profile", "originalRequest": { "url": { @@ -205123,7 +205123,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2bb84bb-2673-4bd9-b9ec-1aaf34b84790", + "id": "54a5de49-e62f-4d21-b45e-a7f58d8df06f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -205167,7 +205167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ef3854d-195b-4142-97dc-bb11468284c2", + "id": "1d976ff6-caea-4247-bfd6-c2db6f303cc9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -205211,7 +205211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24b2184d-694e-447a-beb7-0b77943a2ad0", + "id": "38569003-ab0c-4f1b-893e-308b9a72568b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -205255,7 +205255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6888352b-3e60-449a-bc59-7a5afe853fd6", + "id": "3985c023-07dd-475a-a4d4-55c6ea2d16f5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -205299,7 +205299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a8873ad-291f-475d-8c71-df76e99117cc", + "id": "fedb5d30-b363-472c-960d-57e87ac142d7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -205343,7 +205343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "166fb0f0-5f8b-4dbb-806c-6dfe80380d6d", + "id": "49be37fa-6fa8-4f73-bf77-a580a7acaa91", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -205393,7 +205393,7 @@ } }, { - "id": "8cac5e13-cf1a-4068-869c-270cde0da0b7", + "id": "5ebff82d-e8ab-494d-bb79-01cf2e62fde5", "name": "Create Auth Profile.", "request": { "name": "Create Auth Profile.", @@ -205441,7 +205441,7 @@ }, "response": [ { - "id": "d2cd44c4-c449-4c2d-b79d-c2b3bc09f904", + "id": "3f04c27b-7fd9-4c5f-a7fc-73def4b22ca1", "name": "Auth Profile details", "originalRequest": { "url": { @@ -205498,7 +205498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8262876-b13d-475d-9e30-29c60486cc1a", + "id": "f79e3d0a-199b-4b35-a211-9bdf0541bc0e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -205555,7 +205555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e322113-8504-4aa5-a4e1-52482474b586", + "id": "de009c5e-7233-41b0-a91c-7c1c4676b78c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -205612,7 +205612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a542eae0-a87f-465d-b88b-ff891352c8ad", + "id": "d06c8bf5-697e-4cab-a76e-e2388eec3f65", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -205669,7 +205669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bc67333-e4fc-4425-afbe-2f27f92d4e8b", + "id": "2d690c5e-fbd3-4899-ae8c-b844f7e8b753", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -205726,7 +205726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75a471bd-a352-4601-8788-78289fc656e3", + "id": "669c0d2e-6a5d-45f6-bdd3-b155c0da4b93", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -205789,7 +205789,7 @@ } }, { - "id": "87003e76-42e7-473b-a527-b4df6a0a6459", + "id": "952862e4-d651-49b2-b4ce-50f9b6212241", "name": "Patch a specified Auth Profile", "request": { "name": "Patch a specified Auth Profile", @@ -205843,7 +205843,7 @@ }, "response": [ { - "id": "549fa30e-a83e-481a-8882-f9ab1b7ee00a", + "id": "b257593d-001e-49d5-8f2a-8c386b7d36c2", "name": "Responds with the Access Profile as updated.", "originalRequest": { "url": { @@ -205900,7 +205900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "625962bc-45bb-47de-b611-c61f53cb32b2", + "id": "50d46bbd-bcd8-474c-9374-d65e0b6f1528", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -205957,7 +205957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b81be2c-f3ac-4526-8a3f-3497adbc8ef2", + "id": "192c3cc8-8509-4c25-aa4e-f6b5d2699e80", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -206014,7 +206014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdf91165-2726-4c81-b2e2-526bb1491895", + "id": "1cc7da4d-8755-44cf-b937-28b794726003", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -206071,7 +206071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8175b6ed-705e-433d-8d7f-32228abb0347", + "id": "53c67f12-1dd5-48e9-bc18-9fcaff52d058", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -206128,7 +206128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebbfb112-fdc7-41ab-b2cc-883ff076b67c", + "id": "db263332-0bcf-4482-83e8-c63640e7cc29", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -206191,7 +206191,7 @@ } }, { - "id": "5eb3deae-8350-4a0f-8849-fcd110ce4c2a", + "id": "65b14846-17dc-4185-94b1-0dd2ce3f7fa9", "name": "Delete the specified Auth Profile", "request": { "name": "Delete the specified Auth Profile", @@ -206232,7 +206232,7 @@ }, "response": [ { - "id": "078510f5-ccc1-487d-aa67-4fa14a594d0d", + "id": "2f99655f-b32d-4352-ada3-8e95d1a2ab3d", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -206266,7 +206266,7 @@ "_postman_previewlanguage": "text" }, { - "id": "301c93e5-f9ad-46d0-87ca-3ceb24eef749", + "id": "d2ce1443-8f16-452f-a50f-c0db72bdc891", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -206310,7 +206310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab386a99-fd16-4cc1-9dcd-0b4249baaca8", + "id": "70e9472b-f91b-40c6-9a99-b43edc150396", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -206354,7 +206354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc360dd6-ca4c-468d-8420-e6b4af016cc1", + "id": "fed4824e-ed44-4149-96d3-4470b28f6791", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -206398,7 +206398,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a836670-8ba1-4298-8af6-0dc9b09d0082", + "id": "de4313de-daa0-44bd-b220-de2abec60f0a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -206442,7 +206442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85124d9f-fbd9-48be-ad29-8e5af6e75069", + "id": "528995cd-2c46-45dd-bcf2-5ea4c6407a31", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -206572,7 +206572,7 @@ } ], "info": { - "_postman_id": "e1a5ef77-2efc-4623-b51a-1488a94d61d5", + "_postman_id": "3e21f525-e6fa-410e-a578-fdbd1f8ea024", "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 2a267bd..a8380ac 100644 --- a/postman/collections/sailpoint-api-nerm.json +++ b/postman/collections/sailpoint-api-nerm.json @@ -5,7 +5,7 @@ "description": "", "item": [ { - "id": "411e40b9-cd0b-47d4-8eac-5a4e368cd52b", + "id": "eaf50fde-5196-45f2-9c36-1b077a1e4448", "name": "Create a new user", "request": { "name": "Create a new user", @@ -48,7 +48,7 @@ }, "response": [ { - "id": "018915c9-66f6-4432-8fac-49c9da5a3a35", + "id": "1ab16f42-cbaf-4978-9059-b53244097483", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -99,12 +99,12 @@ "value": "application/json" } ], - "body": "{\n \"user\": {\n \"id\": \"a6cceb62-1d17-2f63-7126-2c3ce490b08e\",\n \"uid\": \"magna ut Excepteur cillumfugiat \",\n \"name\": \"dolor fugiat in ad\",\n \"email\": \"O6m5iFg@WkJiVZOOLyzuAiqswlzzhLcVUZmas.afr\",\n \"type\": \"NeprofileUser\",\n \"title\": \"eiusmod ullamco\",\n \"status\": \"Active\",\n \"login\": \"in dolor culpa\",\n \"last_login\": \"2009-10-03T22:38:44.620Z\",\n \"cookies_accepted_at\": \"1947-03-05T23:13:21.603Z\",\n \"preferred_language\": \"reprehenderit adipisicing commodo aliquip\"\n }\n}", + "body": "{\n \"user\": {\n \"id\": \"81b203fa-e4ef-4615-99a6-421ec3d0b864\",\n \"uid\": \"Duis adipisicing ut fugiatin nos\",\n \"name\": \"aute minim dolore eiusmod\",\n \"email\": \"G1o5@dvPjEBtjwIkJZEtilvfTrJQYodnGvSasi.sfs\",\n \"type\": \"NeprofileUser\",\n \"title\": \"nulla officia es\",\n \"status\": \"Active\",\n \"login\": \"non occaecat commodo\",\n \"last_login\": \"2009-12-06T15:06:55.010Z\",\n \"cookies_accepted_at\": \"1988-01-08T03:00:02.033Z\",\n \"preferred_language\": \"ut\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3a4d9879-fdda-4027-8a19-b19352511ee7", + "id": "bd4f4ab1-21ff-4724-b901-beb6b2957715", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -160,7 +160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f3948de-326b-4043-bffb-d905ee7aca72", + "id": "073e3ec9-7600-4dc7-81c3-f746542cbe6b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -222,7 +222,7 @@ } }, { - "id": "03330ad0-b4bd-45d8-8052-7b2744cee8e9", + "id": "9621ab86-a552-4797-9eb8-9cef30a3a83d", "name": "Get users", "request": { "name": "Get users", @@ -272,7 +272,7 @@ "type": "text/plain" }, "key": "name", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -281,7 +281,7 @@ "type": "text/plain" }, "key": "login", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -290,7 +290,7 @@ "type": "text/plain" }, "key": "title", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -299,7 +299,7 @@ "type": "text/plain" }, "key": "status", - "value": "Terminated" + "value": "Inactive" }, { "disabled": false, @@ -308,7 +308,7 @@ "type": "text/plain" }, "key": "email", - "value": "zt2Fqug@SjFivzpbTLTXOeLlmkYIXorhCVHyvHT.hn" + "value": "8SxDGOD@Ti.dib" }, { "disabled": false, @@ -334,7 +334,7 @@ }, "response": [ { - "id": "ce93b9d0-49d1-4388-91f6-6c3205006824", + "id": "747e942f-a67e-4807-b737-2f0d437b123b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -379,7 +379,7 @@ "type": "text/plain" }, "key": "name", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -388,7 +388,7 @@ "type": "text/plain" }, "key": "login", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -397,7 +397,7 @@ "type": "text/plain" }, "key": "title", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -406,7 +406,7 @@ "type": "text/plain" }, "key": "status", - "value": "Terminated" + "value": "Inactive" }, { "disabled": false, @@ -415,7 +415,7 @@ "type": "text/plain" }, "key": "email", - "value": "zt2Fqug@SjFivzpbTLTXOeLlmkYIXorhCVHyvHT.hn" + "value": "8SxDGOD@Ti.dib" }, { "disabled": false, @@ -454,12 +454,12 @@ "value": "application/json" } ], - "body": "{\n \"users\": [\n {\n \"id\": \"urn:uuid:9f33fb32-9fc9-f10a-7629-05dfafd2a561\",\n \"uid\": \"occaecat eu dolor cillumLorem do\",\n \"name\": \"aute cillum\",\n \"email\": \"Y-ggfrVrhU@zpwyHfZCXHyytTIwMHUWdmoKan.wpm\",\n \"type\": \"NeprofileUser\",\n \"title\": \"nostrud sit fugiat\",\n \"status\": \"Disabled\",\n \"login\": \"consectetur Excepteur\",\n \"last_login\": \"1944-03-22T13:02:39.131Z\",\n \"cookies_accepted_at\": \"1969-01-25T20:34:07.587Z\",\n \"preferred_language\": \"eu Ut\"\n },\n {\n \"id\": \"urn:uuid:babe2a7b-aed5-41d3-dc67-e387e48569f9\",\n \"uid\": \"sit reprehenderitquiadipisicing \",\n \"name\": \"sint\",\n \"email\": \"4UJkYA@lfSWewIcICwUOtBZVcigUzKxEjxewWH.gmlo\",\n \"type\": \"NeprofileUser\",\n \"title\": \"aliquip irure Duis tempor sit\",\n \"status\": \"Active\",\n \"login\": \"labore\",\n \"last_login\": \"1944-03-30T20:45:27.237Z\",\n \"cookies_accepted_at\": \"1983-01-20T18:06:02.306Z\",\n \"preferred_language\": \"in consectetur incididunt\"\n }\n ],\n \"_metadata\": {\n \"limit\": -38133435,\n \"offset\": 55922627,\n \"total\": -47108990,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"users\": [\n {\n \"id\": \"863bb9e4-9589-9c6a-e312-b63cf3fc560c\",\n \"uid\": \"adipisicing proident laborum ali\",\n \"name\": \"esse consequat aliqua dolor\",\n \"email\": \"Yz5PS5t3btD@QHWJkc.uwm\",\n \"type\": \"NeprofileUser\",\n \"title\": \"ea cupidatat consectetur\",\n \"status\": \"Disabled\",\n \"login\": \"laborum Lorem\",\n \"last_login\": \"1963-04-17T15:07:22.596Z\",\n \"cookies_accepted_at\": \"1948-05-17T07:50:25.426Z\",\n \"preferred_language\": \"nulla\"\n },\n {\n \"id\": \"urn:uuid:ca866129-ea81-406f-e77a-c7fc7bd798df\",\n \"uid\": \"in culpa aliqua in inpariatur ei\",\n \"name\": \"quis aliqua nostrud amet\",\n \"email\": \"B8ATxUazzd@KhYfoAXYtpmeoZNqRnzIke.kcz\",\n \"type\": \"NeprofileUser\",\n \"title\": \"eiusmod amet nostrud minim\",\n \"status\": \"Disabled\",\n \"login\": \"voluptate exercitation consequat\",\n \"last_login\": \"2015-10-16T12:17:56.637Z\",\n \"cookies_accepted_at\": \"1980-08-14T10:18:57.268Z\",\n \"preferred_language\": \"in\"\n }\n ],\n \"_metadata\": {\n \"limit\": -17149376,\n \"offset\": 37090087,\n \"total\": -45088744,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "09041130-f3c1-48ab-a6d5-0490cd3f6ef2", + "id": "2b5a6bdf-28a6-470e-819b-3e13e1835169", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -504,7 +504,7 @@ "type": "text/plain" }, "key": "name", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -513,7 +513,7 @@ "type": "text/plain" }, "key": "login", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -522,7 +522,7 @@ "type": "text/plain" }, "key": "title", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -531,7 +531,7 @@ "type": "text/plain" }, "key": "status", - "value": "Terminated" + "value": "Inactive" }, { "disabled": false, @@ -540,7 +540,7 @@ "type": "text/plain" }, "key": "email", - "value": "zt2Fqug@SjFivzpbTLTXOeLlmkYIXorhCVHyvHT.hn" + "value": "8SxDGOD@Ti.dib" }, { "disabled": false, @@ -584,7 +584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e3a57aa-e6a1-40f8-ae84-a21cfbef8f73", + "id": "6ba92812-57f1-4294-89c9-7e8c0114a4b2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -629,7 +629,7 @@ "type": "text/plain" }, "key": "name", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -638,7 +638,7 @@ "type": "text/plain" }, "key": "login", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -647,7 +647,7 @@ "type": "text/plain" }, "key": "title", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -656,7 +656,7 @@ "type": "text/plain" }, "key": "status", - "value": "Terminated" + "value": "Inactive" }, { "disabled": false, @@ -665,7 +665,7 @@ "type": "text/plain" }, "key": "email", - "value": "zt2Fqug@SjFivzpbTLTXOeLlmkYIXorhCVHyvHT.hn" + "value": "8SxDGOD@Ti.dib" }, { "disabled": false, @@ -715,7 +715,7 @@ } }, { - "id": "f5e8d3c5-491c-4943-9d97-f2738ee95ab5", + "id": "3e03321d-9a8a-4239-9436-2ec6a25ce013", "name": "Create multiple new users", "request": { "name": "Create multiple new users", @@ -758,7 +758,7 @@ }, "response": [ { - "id": "f92d099f-2247-4f91-8998-95461191b80e", + "id": "64803a95-b2d2-45ad-800a-e95f72ee3161", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -809,12 +809,12 @@ "value": "application/json" } ], - "body": "{\n \"users\": [\n {\n \"id\": \"urn:uuid:6ccbca58-2a14-74b2-627f-1531be711679\",\n \"uid\": \"Lorem exercitation euametcommodo\",\n \"name\": \"voluptate\",\n \"email\": \"njSQOv@muxKNlkZneVHdMNafp.defs\",\n \"type\": \"NeprofileUser\",\n \"title\": \"amet\",\n \"status\": \"Disabled\",\n \"login\": \"veniam ut aliquip\",\n \"last_login\": \"2002-09-02T19:07:23.074Z\",\n \"cookies_accepted_at\": \"1977-05-26T19:25:51.713Z\",\n \"preferred_language\": \"ipsum sit ni\"\n },\n {\n \"id\": \"e7e2c156-a62d-963e-af6f-29400d53d820\",\n \"uid\": \"in consequat proidentut commodoe\",\n \"name\": \"exercitation incididunt nulla qui\",\n \"email\": \"vcsCEEWTYGoM8N@zmD.gq\",\n \"type\": \"NeprofileUser\",\n \"title\": \"sed dolor id ut\",\n \"status\": \"Active\",\n \"login\": \"nostrud\",\n \"last_login\": \"1990-12-28T17:27:17.789Z\",\n \"cookies_accepted_at\": \"1962-12-26T07:42:40.231Z\",\n \"preferred_language\": \"exercitation do amet\"\n }\n ]\n}", + "body": "{\n \"users\": [\n {\n \"id\": \"urn:uuid:c7df2c40-9288-472f-a8a2-97395c630e42\",\n \"uid\": \"commodo eiusmodut proidentsint e\",\n \"name\": \"quis aliqua in\",\n \"email\": \"Lt8VZeelQSFT@UMIUlDlphBCKCPXvtLJsunyKKWPHeTSe.ree\",\n \"type\": \"NeprofileUser\",\n \"title\": \"sed eiusmod occaecat ad veniam\",\n \"status\": \"Active\",\n \"login\": \"non commodo cillum\",\n \"last_login\": \"1978-02-24T03:06:59.276Z\",\n \"cookies_accepted_at\": \"1945-12-25T13:24:49.815Z\",\n \"preferred_language\": \"Ut consequat\"\n },\n {\n \"id\": \"0d9a6206-ed64-fae0-6bf6-ba4b5933d66c\",\n \"uid\": \"anim dolor laborisExcepteur cill\",\n \"name\": \"voluptate dolore mollit\",\n \"email\": \"ksLEwKDJg@YdQ.yok\",\n \"type\": \"NeprofileUser\",\n \"title\": \"consectetur\",\n \"status\": \"Active\",\n \"login\": \"veniam mollit velit et\",\n \"last_login\": \"1970-05-30T02:48:27.264Z\",\n \"cookies_accepted_at\": \"1999-11-23T09:14:36.511Z\",\n \"preferred_language\": \"in dolore esse\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9181b452-992e-498b-899b-a68f02467356", + "id": "86fc15a9-e4b2-4b89-8c76-e09e6fc118f5", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -870,7 +870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d104367-f52e-4b11-ab08-0faf575c5264", + "id": "29ed2677-65e2-4544-b2e0-384474cd0f59", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -932,7 +932,7 @@ } }, { - "id": "11b25a48-6002-456c-985f-976d801e88e2", + "id": "c6cc912c-cd4a-4d36-9453-e427caa0de8e", "name": "Update multiple users", "request": { "name": "Update multiple users", @@ -975,7 +975,7 @@ }, "response": [ { - "id": "48524c28-7f6a-4752-b8ac-49b332a4be49", + "id": "822025e2-788f-4a5d-9a41-a6f7fea49625", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1026,12 +1026,12 @@ "value": "application/json" } ], - "body": "{\n \"users\": [\n {\n \"id\": \"urn:uuid:6ccbca58-2a14-74b2-627f-1531be711679\",\n \"uid\": \"Lorem exercitation euametcommodo\",\n \"name\": \"voluptate\",\n \"email\": \"njSQOv@muxKNlkZneVHdMNafp.defs\",\n \"type\": \"NeprofileUser\",\n \"title\": \"amet\",\n \"status\": \"Disabled\",\n \"login\": \"veniam ut aliquip\",\n \"last_login\": \"2002-09-02T19:07:23.074Z\",\n \"cookies_accepted_at\": \"1977-05-26T19:25:51.713Z\",\n \"preferred_language\": \"ipsum sit ni\"\n },\n {\n \"id\": \"e7e2c156-a62d-963e-af6f-29400d53d820\",\n \"uid\": \"in consequat proidentut commodoe\",\n \"name\": \"exercitation incididunt nulla qui\",\n \"email\": \"vcsCEEWTYGoM8N@zmD.gq\",\n \"type\": \"NeprofileUser\",\n \"title\": \"sed dolor id ut\",\n \"status\": \"Active\",\n \"login\": \"nostrud\",\n \"last_login\": \"1990-12-28T17:27:17.789Z\",\n \"cookies_accepted_at\": \"1962-12-26T07:42:40.231Z\",\n \"preferred_language\": \"exercitation do amet\"\n }\n ]\n}", + "body": "{\n \"users\": [\n {\n \"id\": \"urn:uuid:c7df2c40-9288-472f-a8a2-97395c630e42\",\n \"uid\": \"commodo eiusmodut proidentsint e\",\n \"name\": \"quis aliqua in\",\n \"email\": \"Lt8VZeelQSFT@UMIUlDlphBCKCPXvtLJsunyKKWPHeTSe.ree\",\n \"type\": \"NeprofileUser\",\n \"title\": \"sed eiusmod occaecat ad veniam\",\n \"status\": \"Active\",\n \"login\": \"non commodo cillum\",\n \"last_login\": \"1978-02-24T03:06:59.276Z\",\n \"cookies_accepted_at\": \"1945-12-25T13:24:49.815Z\",\n \"preferred_language\": \"Ut consequat\"\n },\n {\n \"id\": \"0d9a6206-ed64-fae0-6bf6-ba4b5933d66c\",\n \"uid\": \"anim dolor laborisExcepteur cill\",\n \"name\": \"voluptate dolore mollit\",\n \"email\": \"ksLEwKDJg@YdQ.yok\",\n \"type\": \"NeprofileUser\",\n \"title\": \"consectetur\",\n \"status\": \"Active\",\n \"login\": \"veniam mollit velit et\",\n \"last_login\": \"1970-05-30T02:48:27.264Z\",\n \"cookies_accepted_at\": \"1999-11-23T09:14:36.511Z\",\n \"preferred_language\": \"in dolore esse\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "db639856-e9fd-4a38-9dc3-73903efebd9b", + "id": "7a5150ab-00d3-493d-9e48-62b443c86187", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1087,7 +1087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74e1fd2d-9874-4987-a3b7-e2788be83fbd", + "id": "7578ed49-0a04-4b6e-9061-c2ef5a898bbf", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1149,7 +1149,7 @@ } }, { - "id": "c7719fad-67cf-4dfc-a5c0-33e9f7df37bd", + "id": "3b548fcb-e684-49cb-9c0c-0309a23cd89f", "name": "Find user by id", "request": { "name": "Find user by id", @@ -1191,7 +1191,7 @@ }, "response": [ { - "id": "46c932ed-4cfc-45ee-b35f-3f1283d2b733", + "id": "687db0a8-394d-4a63-ae1d-3bf3e86fd0c1", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1230,12 +1230,12 @@ "value": "application/json" } ], - "body": "{\n \"user\": {\n \"id\": \"a6cceb62-1d17-2f63-7126-2c3ce490b08e\",\n \"uid\": \"magna ut Excepteur cillumfugiat \",\n \"name\": \"dolor fugiat in ad\",\n \"email\": \"O6m5iFg@WkJiVZOOLyzuAiqswlzzhLcVUZmas.afr\",\n \"type\": \"NeprofileUser\",\n \"title\": \"eiusmod ullamco\",\n \"status\": \"Active\",\n \"login\": \"in dolor culpa\",\n \"last_login\": \"2009-10-03T22:38:44.620Z\",\n \"cookies_accepted_at\": \"1947-03-05T23:13:21.603Z\",\n \"preferred_language\": \"reprehenderit adipisicing commodo aliquip\"\n }\n}", + "body": "{\n \"user\": {\n \"id\": \"81b203fa-e4ef-4615-99a6-421ec3d0b864\",\n \"uid\": \"Duis adipisicing ut fugiatin nos\",\n \"name\": \"aute minim dolore eiusmod\",\n \"email\": \"G1o5@dvPjEBtjwIkJZEtilvfTrJQYodnGvSasi.sfs\",\n \"type\": \"NeprofileUser\",\n \"title\": \"nulla officia es\",\n \"status\": \"Active\",\n \"login\": \"non occaecat commodo\",\n \"last_login\": \"2009-12-06T15:06:55.010Z\",\n \"cookies_accepted_at\": \"1988-01-08T03:00:02.033Z\",\n \"preferred_language\": \"ut\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6f1ffccf-048d-48d0-9e02-4abaa54515be", + "id": "995a9617-9776-41ea-9c54-af1c69f2f8e6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1279,7 +1279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b246b305-453b-4314-885a-d105e759846d", + "id": "697f74a5-d101-4d34-8062-e7d3b83f9f69", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1329,7 +1329,7 @@ } }, { - "id": "4ed740f4-db27-44cd-92c7-daa1accf0fd0", + "id": "45047847-3ffb-4f53-9820-c93fbddbe3bf", "name": "Update a user by id", "request": { "name": "Update a user by id", @@ -1384,7 +1384,7 @@ }, "response": [ { - "id": "7ba1b95b-4e4a-436c-a5f2-11d89e25a433", + "id": "8bc5c9bf-d2ab-4b97-9ec0-c3831441cb37", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1436,12 +1436,12 @@ "value": "application/json" } ], - "body": "{\n \"user\": {\n \"id\": \"a6cceb62-1d17-2f63-7126-2c3ce490b08e\",\n \"uid\": \"magna ut Excepteur cillumfugiat \",\n \"name\": \"dolor fugiat in ad\",\n \"email\": \"O6m5iFg@WkJiVZOOLyzuAiqswlzzhLcVUZmas.afr\",\n \"type\": \"NeprofileUser\",\n \"title\": \"eiusmod ullamco\",\n \"status\": \"Active\",\n \"login\": \"in dolor culpa\",\n \"last_login\": \"2009-10-03T22:38:44.620Z\",\n \"cookies_accepted_at\": \"1947-03-05T23:13:21.603Z\",\n \"preferred_language\": \"reprehenderit adipisicing commodo aliquip\"\n }\n}", + "body": "{\n \"user\": {\n \"id\": \"81b203fa-e4ef-4615-99a6-421ec3d0b864\",\n \"uid\": \"Duis adipisicing ut fugiatin nos\",\n \"name\": \"aute minim dolore eiusmod\",\n \"email\": \"G1o5@dvPjEBtjwIkJZEtilvfTrJQYodnGvSasi.sfs\",\n \"type\": \"NeprofileUser\",\n \"title\": \"nulla officia es\",\n \"status\": \"Active\",\n \"login\": \"non occaecat commodo\",\n \"last_login\": \"2009-12-06T15:06:55.010Z\",\n \"cookies_accepted_at\": \"1988-01-08T03:00:02.033Z\",\n \"preferred_language\": \"ut\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f5ced01e-2f9e-4826-9481-d91be5e55c40", + "id": "586db919-cbf8-421d-bb9a-eda176020d8b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1498,7 +1498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c1c3f60-415b-47fd-b140-265c2b13985f", + "id": "42f88c8c-dc98-454d-8050-653d5eb43ef3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1561,7 +1561,7 @@ } }, { - "id": "5ce84bde-e228-4a48-8053-5dbced07c3ed", + "id": "133acfe9-3908-4eb3-ab5b-fd82690af72f", "name": "Delete a user", "request": { "name": "Delete a user", @@ -1603,7 +1603,7 @@ }, "response": [ { - "id": "0bac0603-7e54-48fb-b668-e3ffd3592dbb", + "id": "57257792-1cfe-42f6-bcff-25fa8d0f0db0", "name": "Info about the operation", "originalRequest": { "url": { @@ -1647,7 +1647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4644694-8def-4baa-8395-189156de103a", + "id": "a52f0ece-eda3-49e1-899a-d3379540e9b9", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1691,7 +1691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99157da4-8ecf-4cde-9cca-2b1b30cb5389", + "id": "614e1b44-ceac-4b09-86f9-12a40d5523d5", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1741,7 +1741,7 @@ } }, { - "id": "4a749036-9be4-402b-843a-d1552dd7dec8", + "id": "403e795a-38e3-4086-8a50-f31b883964a7", "name": "Retrieves the URL of the user avatar", "request": { "name": "Retrieves the URL of the user avatar", @@ -1784,7 +1784,7 @@ }, "response": [ { - "id": "84a0dd4a-9c64-4cb5-a48f-30f36f72446c", + "id": "42b90871-444c-4e5f-b380-ea2145cbef44", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1824,12 +1824,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"et occaecat esse elit\"\n}", + "body": "{\n \"url\": \"fugiat do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c868aaac-ba04-47fc-9de7-5c91ad30e12e", + "id": "7346b819-6346-4d13-9a5b-5d67abbd3695", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1874,7 +1874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af4f0d2f-4212-4de9-a756-92af04a94f66", + "id": "9944c7a7-cff2-4eb0-9a75-806c86195d55", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1925,7 +1925,7 @@ } }, { - "id": "4d5c62a9-5acf-4dd3-b76b-495783d153a1", + "id": "d0800785-9c08-475c-9d43-7427fc7a0e72", "name": "Uploads a new user avatar", "request": { "name": "Uploads a new user avatar", @@ -1976,7 +1976,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum dolore", + "value": "deserunt nisi enim qui", "type": "text" } ] @@ -1985,7 +1985,7 @@ }, "response": [ { - "id": "ead4826b-994e-4663-bbda-3c3510af9fb0", + "id": "c6be5f2e-5100-4542-a11e-c8a666e5f608", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -2028,7 +2028,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum dolore", + "value": "deserunt nisi enim qui", "type": "text" } ] @@ -2042,12 +2042,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"et occaecat esse elit\"\n}", + "body": "{\n \"url\": \"fugiat do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fb344f2a-129f-4695-901d-c33d27b16d62", + "id": "ed25098e-27af-438a-b2e4-04de7ca8bdb3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2090,7 +2090,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum dolore", + "value": "deserunt nisi enim qui", "type": "text" } ] @@ -2109,7 +2109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a77d1ec-92b8-4fa9-aa9a-be99cfc532d0", + "id": "4cf6debf-06ae-4a99-9600-aeb6e45ae8b3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -2152,7 +2152,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum dolore", + "value": "deserunt nisi enim qui", "type": "text" } ] @@ -2183,7 +2183,7 @@ "description": "", "item": [ { - "id": "fa46ce55-b80f-4d30-ad71-bb7814384a63", + "id": "6fe83274-7ecf-4972-99dc-4c5eb0a296a6", "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:e2464f7c-4406-6982-6a7a-d3b6aa34f3d5\",\n \"manager_id\": \"urn:uuid:34a24b8d-38ad-84bc-160b-c39796c769ce\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f74a3c7e-dd17-4593-97cc-337c9a37229c\",\n \"manager_id\": \"e4173204-a64c-e9b1-3af4-f02c52cb2679\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2226,7 +2226,7 @@ }, "response": [ { - "id": "e1647e07-c610-4b0c-95f1-7b4e2ff40bf7", + "id": "af1916f8-7518-4d92-92c6-116fdb3b1a90", "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:e2464f7c-4406-6982-6a7a-d3b6aa34f3d5\",\n \"manager_id\": \"urn:uuid:34a24b8d-38ad-84bc-160b-c39796c769ce\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f74a3c7e-dd17-4593-97cc-337c9a37229c\",\n \"manager_id\": \"e4173204-a64c-e9b1-3af4-f02c52cb2679\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2277,12 +2277,12 @@ "value": "application/json" } ], - "body": "{\n \"user_manager\": {\n \"id\": \"urn:uuid:cad69369-5988-34be-6e9e-2b714b3a8236\",\n \"uid\": \"in dolor eiusmodanim culpa labor\",\n \"user_id\": \"f017ff29-d06d-758e-fafd-cf1953664f4f\",\n \"manager_id\": \"urn:uuid:5de0a56c-6fb1-e0ba-e9b0-ed8577296a34\"\n }\n}", + "body": "{\n \"user_manager\": {\n \"id\": \"e5d64c7d-aee3-a40b-bc68-d4a5cb7c0abc\",\n \"uid\": \"culpa officia ad esselaborisnost\",\n \"user_id\": \"cf7c9bc8-0de9-fc74-4106-061512718dce\",\n \"manager_id\": \"dc8c9f5b-5415-8b0b-182b-936d95b01881\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "65f0afb7-4cd0-4913-8dcf-17a55d06f8a2", + "id": "d3f6b8cf-bbe0-42a4-b53c-fb5846a93da2", "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:e2464f7c-4406-6982-6a7a-d3b6aa34f3d5\",\n \"manager_id\": \"urn:uuid:34a24b8d-38ad-84bc-160b-c39796c769ce\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f74a3c7e-dd17-4593-97cc-337c9a37229c\",\n \"manager_id\": \"e4173204-a64c-e9b1-3af4-f02c52cb2679\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2338,7 +2338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f2b21b9-2e2f-43cf-93e4-7122b66e3525", + "id": "9f505664-5e67-45e2-addd-e5b6a4ccafb9", "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:e2464f7c-4406-6982-6a7a-d3b6aa34f3d5\",\n \"manager_id\": \"urn:uuid:34a24b8d-38ad-84bc-160b-c39796c769ce\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f74a3c7e-dd17-4593-97cc-337c9a37229c\",\n \"manager_id\": \"e4173204-a64c-e9b1-3af4-f02c52cb2679\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2400,7 +2400,7 @@ } }, { - "id": "1e50d459-27f4-40e7-a44e-30dcbe6f6c93", + "id": "04f73b70-6533-43f6-9d86-bcdc98851da7", "name": "Get user-manager relationships", "request": { "name": "Get user-manager relationships", @@ -2459,7 +2459,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -2485,7 +2485,7 @@ }, "response": [ { - "id": "e9cdb151-f121-4d37-80ab-d767ba3991cc", + "id": "70382985-408a-4a24-b697-e907e17a3c3e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -2539,7 +2539,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -2578,12 +2578,12 @@ "value": "application/json" } ], - "body": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:44851725-4d17-537c-6ebc-e1c34ee2a5c7\",\n \"uid\": \"in deserunt culpa pariaturaute p\",\n \"user_id\": \"e7dd3412-9637-a485-7ba5-331148a49cb7\",\n \"manager_id\": \"urn:uuid:2ddd3779-4082-535e-4a90-bd2873be438e\"\n },\n {\n \"id\": \"b5a416c2-31e4-a5df-1bd5-3388a1e789a2\",\n \"uid\": \"fugiat sunt dolore uteu sit veli\",\n \"user_id\": \"urn:uuid:a22ae23c-042f-c144-9f64-bd6b2b2e5dd8\",\n \"manager_id\": \"urn:uuid:4255acc4-31cb-c741-d1c3-c322c3778493\"\n }\n ],\n \"_metadata\": {\n \"limit\": -49461580,\n \"offset\": -21753903,\n \"total\": -43472498,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"user_managers\": [\n {\n \"id\": \"0c163cd6-41b4-d9a1-35c8-fd61fc3ab342\",\n \"uid\": \"minim aliquip Lorem voluptatequi\",\n \"user_id\": \"a36a039b-915e-c0ab-6073-53377c32289a\",\n \"manager_id\": \"da676658-0046-bbe9-6302-9731c85a57c9\"\n },\n {\n \"id\": \"urn:uuid:c17822de-2e94-7990-3202-b8f430a57e68\",\n \"uid\": \"commodo nulla consequatcommodoqu\",\n \"user_id\": \"urn:uuid:9649897c-b30e-a17e-beca-9f4989ceb349\",\n \"manager_id\": \"urn:uuid:9a49d772-2255-b090-2172-d256a4171029\"\n }\n ],\n \"_metadata\": {\n \"limit\": -4746230,\n \"offset\": 94567061,\n \"total\": 2042850,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "79630a26-eb62-49ee-8b65-b041cfa75acf", + "id": "912b8a6d-8870-41b4-bbfc-ebdf455378ae", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2637,7 +2637,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -2681,7 +2681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5b2a532-4ab9-4f10-8a03-f64268ea3750", + "id": "f6551b1b-7ea9-40e1-b5e1-2e99c48f9011", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -2735,7 +2735,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -2785,7 +2785,7 @@ } }, { - "id": "822e34dc-1124-4577-9831-bd60f19d338b", + "id": "35642d02-7c13-4687-b88f-02e274a2b091", "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\": \"233751a0-6301-9136-f758-89d8fdb3c5c3\",\n \"manager_id\": \"urn:uuid:70f957bd-7dce-a854-2df5-85c22003314d\"\n },\n {\n \"user_id\": \"60b7f42b-1f49-0a14-e368-22b8248b5b73\",\n \"manager_id\": \"973a84ce-387d-2182-5943-ccefb7943671\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"urn:uuid:75369206-087f-ec18-090e-08d19ca73e1e\",\n \"manager_id\": \"urn:uuid:6cba87b7-8449-1585-57a1-666f3e1d0e90\"\n },\n {\n \"user_id\": \"4228a309-81e0-2548-da20-6cbff336697d\",\n \"manager_id\": \"urn:uuid:73da5717-26fa-6813-1140-bf4a436f3c77\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2828,7 +2828,7 @@ }, "response": [ { - "id": "78472379-74ed-4c12-b024-b76e3d590c01", + "id": "10550eaa-4b3a-4567-abf6-72c6662c71c2", "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\": \"233751a0-6301-9136-f758-89d8fdb3c5c3\",\n \"manager_id\": \"urn:uuid:70f957bd-7dce-a854-2df5-85c22003314d\"\n },\n {\n \"user_id\": \"60b7f42b-1f49-0a14-e368-22b8248b5b73\",\n \"manager_id\": \"973a84ce-387d-2182-5943-ccefb7943671\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"urn:uuid:75369206-087f-ec18-090e-08d19ca73e1e\",\n \"manager_id\": \"urn:uuid:6cba87b7-8449-1585-57a1-666f3e1d0e90\"\n },\n {\n \"user_id\": \"4228a309-81e0-2548-da20-6cbff336697d\",\n \"manager_id\": \"urn:uuid:73da5717-26fa-6813-1140-bf4a436f3c77\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2884,7 +2884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cecbbd27-cb34-4b78-b3e8-9eb69ada02d0", + "id": "8af2060a-517f-491f-8b47-cfbb2378c63d", "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\": \"233751a0-6301-9136-f758-89d8fdb3c5c3\",\n \"manager_id\": \"urn:uuid:70f957bd-7dce-a854-2df5-85c22003314d\"\n },\n {\n \"user_id\": \"60b7f42b-1f49-0a14-e368-22b8248b5b73\",\n \"manager_id\": \"973a84ce-387d-2182-5943-ccefb7943671\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"urn:uuid:75369206-087f-ec18-090e-08d19ca73e1e\",\n \"manager_id\": \"urn:uuid:6cba87b7-8449-1585-57a1-666f3e1d0e90\"\n },\n {\n \"user_id\": \"4228a309-81e0-2548-da20-6cbff336697d\",\n \"manager_id\": \"urn:uuid:73da5717-26fa-6813-1140-bf4a436f3c77\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -2940,7 +2940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ec1b751-36ab-4719-8936-1a0c6630e5a3", + "id": "f95ce11e-f2ea-4d60-b812-f5768f737a41", "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\": \"233751a0-6301-9136-f758-89d8fdb3c5c3\",\n \"manager_id\": \"urn:uuid:70f957bd-7dce-a854-2df5-85c22003314d\"\n },\n {\n \"user_id\": \"60b7f42b-1f49-0a14-e368-22b8248b5b73\",\n \"manager_id\": \"973a84ce-387d-2182-5943-ccefb7943671\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"urn:uuid:75369206-087f-ec18-090e-08d19ca73e1e\",\n \"manager_id\": \"urn:uuid:6cba87b7-8449-1585-57a1-666f3e1d0e90\"\n },\n {\n \"user_id\": \"4228a309-81e0-2548-da20-6cbff336697d\",\n \"manager_id\": \"urn:uuid:73da5717-26fa-6813-1140-bf4a436f3c77\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3002,7 +3002,7 @@ } }, { - "id": "a5e17647-0166-43ea-abdc-a94579e12f41", + "id": "e6e2b3e0-9b02-4a1a-bf81-630b55ea2288", "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\": \"2c9ca278-6bbc-6d8b-f19f-d31b903b416e\",\n \"user_id\": \"a51287d7-8f3b-48f6-82e6-60777a33a1f6\",\n \"manager_id\": \"13c40450-0bca-103e-c62a-9cd3495ed2f8\"\n },\n {\n \"id\": \"urn:uuid:6ee0aad5-f75e-50f8-52ee-4f522df01ded\",\n \"user_id\": \"9e44023b-cefc-0ea7-4d07-0aed45448c0e\",\n \"manager_id\": \"1b88f94c-eb1f-2218-dbfd-65b4443f83a0\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:6dbc0ed7-444d-1e76-3667-6a8f15f65289\",\n \"user_id\": \"bd85a4a4-a737-cba7-5726-da8541151adf\",\n \"manager_id\": \"d5752a31-ae10-56a2-60ca-877cf519ead6\"\n },\n {\n \"id\": \"urn:uuid:df09688f-a865-f1ae-6249-2bb12b6f35e4\",\n \"user_id\": \"d6d54291-4469-3353-71f1-f7687a91c730\",\n \"manager_id\": \"urn:uuid:faacd7be-83c2-d44c-fda0-4e159d24543b\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3045,7 +3045,7 @@ }, "response": [ { - "id": "db8f85bb-d9c8-41b6-8873-813a27a5fb2f", + "id": "4f516a8a-5fdd-481e-9928-53afca882cf4", "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\": \"2c9ca278-6bbc-6d8b-f19f-d31b903b416e\",\n \"user_id\": \"a51287d7-8f3b-48f6-82e6-60777a33a1f6\",\n \"manager_id\": \"13c40450-0bca-103e-c62a-9cd3495ed2f8\"\n },\n {\n \"id\": \"urn:uuid:6ee0aad5-f75e-50f8-52ee-4f522df01ded\",\n \"user_id\": \"9e44023b-cefc-0ea7-4d07-0aed45448c0e\",\n \"manager_id\": \"1b88f94c-eb1f-2218-dbfd-65b4443f83a0\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:6dbc0ed7-444d-1e76-3667-6a8f15f65289\",\n \"user_id\": \"bd85a4a4-a737-cba7-5726-da8541151adf\",\n \"manager_id\": \"d5752a31-ae10-56a2-60ca-877cf519ead6\"\n },\n {\n \"id\": \"urn:uuid:df09688f-a865-f1ae-6249-2bb12b6f35e4\",\n \"user_id\": \"d6d54291-4469-3353-71f1-f7687a91c730\",\n \"manager_id\": \"urn:uuid:faacd7be-83c2-d44c-fda0-4e159d24543b\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3101,7 +3101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "251231cf-fbb0-40e9-a126-afb266126e06", + "id": "92c046f0-44da-4854-83f7-d6d1651ce296", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3135,7 +3135,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"id\": \"2c9ca278-6bbc-6d8b-f19f-d31b903b416e\",\n \"user_id\": \"a51287d7-8f3b-48f6-82e6-60777a33a1f6\",\n \"manager_id\": \"13c40450-0bca-103e-c62a-9cd3495ed2f8\"\n },\n {\n \"id\": \"urn:uuid:6ee0aad5-f75e-50f8-52ee-4f522df01ded\",\n \"user_id\": \"9e44023b-cefc-0ea7-4d07-0aed45448c0e\",\n \"manager_id\": \"1b88f94c-eb1f-2218-dbfd-65b4443f83a0\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:6dbc0ed7-444d-1e76-3667-6a8f15f65289\",\n \"user_id\": \"bd85a4a4-a737-cba7-5726-da8541151adf\",\n \"manager_id\": \"d5752a31-ae10-56a2-60ca-877cf519ead6\"\n },\n {\n \"id\": \"urn:uuid:df09688f-a865-f1ae-6249-2bb12b6f35e4\",\n \"user_id\": \"d6d54291-4469-3353-71f1-f7687a91c730\",\n \"manager_id\": \"urn:uuid:faacd7be-83c2-d44c-fda0-4e159d24543b\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3157,7 +3157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ca2b78d-14fd-41bf-93c8-f614d32f2517", + "id": "0ee84b90-3b54-4535-96a9-ef49581dd510", "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\": \"2c9ca278-6bbc-6d8b-f19f-d31b903b416e\",\n \"user_id\": \"a51287d7-8f3b-48f6-82e6-60777a33a1f6\",\n \"manager_id\": \"13c40450-0bca-103e-c62a-9cd3495ed2f8\"\n },\n {\n \"id\": \"urn:uuid:6ee0aad5-f75e-50f8-52ee-4f522df01ded\",\n \"user_id\": \"9e44023b-cefc-0ea7-4d07-0aed45448c0e\",\n \"manager_id\": \"1b88f94c-eb1f-2218-dbfd-65b4443f83a0\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:6dbc0ed7-444d-1e76-3667-6a8f15f65289\",\n \"user_id\": \"bd85a4a4-a737-cba7-5726-da8541151adf\",\n \"manager_id\": \"d5752a31-ae10-56a2-60ca-877cf519ead6\"\n },\n {\n \"id\": \"urn:uuid:df09688f-a865-f1ae-6249-2bb12b6f35e4\",\n \"user_id\": \"d6d54291-4469-3353-71f1-f7687a91c730\",\n \"manager_id\": \"urn:uuid:faacd7be-83c2-d44c-fda0-4e159d24543b\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3219,7 +3219,7 @@ } }, { - "id": "06267f6c-b39c-4074-b861-ffa3b0e82e52", + "id": "107cf234-892b-4e6a-88d5-57b17bbc8020", "name": "Find user-manager relationship by id", "request": { "name": "Find user-manager relationship by id", @@ -3261,7 +3261,7 @@ }, "response": [ { - "id": "69db5202-9772-40c5-aa2f-5384e1edd6ea", + "id": "4d804474-3013-4bae-a16f-7d490385cc34", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3300,12 +3300,12 @@ "value": "application/json" } ], - "body": "{\n \"user_manager\": {\n \"id\": \"urn:uuid:cad69369-5988-34be-6e9e-2b714b3a8236\",\n \"uid\": \"in dolor eiusmodanim culpa labor\",\n \"user_id\": \"f017ff29-d06d-758e-fafd-cf1953664f4f\",\n \"manager_id\": \"urn:uuid:5de0a56c-6fb1-e0ba-e9b0-ed8577296a34\"\n }\n}", + "body": "{\n \"user_manager\": {\n \"id\": \"e5d64c7d-aee3-a40b-bc68-d4a5cb7c0abc\",\n \"uid\": \"culpa officia ad esselaborisnost\",\n \"user_id\": \"cf7c9bc8-0de9-fc74-4106-061512718dce\",\n \"manager_id\": \"dc8c9f5b-5415-8b0b-182b-936d95b01881\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ae38dba2-e550-4e06-aa60-e634952db70b", + "id": "aaea72db-94a6-4f67-b291-deb2f68fb84b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3349,7 +3349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cff7b44-b3eb-43a7-bdff-7ce893941f73", + "id": "3f651b33-53ac-47fc-902a-d5783061d528", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -3399,7 +3399,7 @@ } }, { - "id": "ba5a43f0-6fde-4cb9-81c3-c6e56ba520ee", + "id": "3c4fbf0e-a8d4-40c0-a8d4-317535991064", "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:e2464f7c-4406-6982-6a7a-d3b6aa34f3d5\",\n \"manager_id\": \"urn:uuid:34a24b8d-38ad-84bc-160b-c39796c769ce\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f74a3c7e-dd17-4593-97cc-337c9a37229c\",\n \"manager_id\": \"e4173204-a64c-e9b1-3af4-f02c52cb2679\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3454,7 +3454,7 @@ }, "response": [ { - "id": "d207fb66-2b39-42f0-a03c-e4de3ed3fa51", + "id": "ddaf176c-a439-4fa4-b921-ec86f2a54f84", "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:e2464f7c-4406-6982-6a7a-d3b6aa34f3d5\",\n \"manager_id\": \"urn:uuid:34a24b8d-38ad-84bc-160b-c39796c769ce\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f74a3c7e-dd17-4593-97cc-337c9a37229c\",\n \"manager_id\": \"e4173204-a64c-e9b1-3af4-f02c52cb2679\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3506,12 +3506,12 @@ "value": "application/json" } ], - "body": "{\n \"user_manager\": {\n \"id\": \"urn:uuid:cad69369-5988-34be-6e9e-2b714b3a8236\",\n \"uid\": \"in dolor eiusmodanim culpa labor\",\n \"user_id\": \"f017ff29-d06d-758e-fafd-cf1953664f4f\",\n \"manager_id\": \"urn:uuid:5de0a56c-6fb1-e0ba-e9b0-ed8577296a34\"\n }\n}", + "body": "{\n \"user_manager\": {\n \"id\": \"e5d64c7d-aee3-a40b-bc68-d4a5cb7c0abc\",\n \"uid\": \"culpa officia ad esselaborisnost\",\n \"user_id\": \"cf7c9bc8-0de9-fc74-4106-061512718dce\",\n \"manager_id\": \"dc8c9f5b-5415-8b0b-182b-936d95b01881\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a54ddc7a-83c8-4192-a7ae-51d808ddc539", + "id": "8f15c63a-79d5-488f-85e4-3da30695b067", "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:e2464f7c-4406-6982-6a7a-d3b6aa34f3d5\",\n \"manager_id\": \"urn:uuid:34a24b8d-38ad-84bc-160b-c39796c769ce\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f74a3c7e-dd17-4593-97cc-337c9a37229c\",\n \"manager_id\": \"e4173204-a64c-e9b1-3af4-f02c52cb2679\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3568,7 +3568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45a4a923-92e5-4905-ad3e-783a3ed07623", + "id": "6b623295-69bb-4d49-97c8-67dcd5bbdbc7", "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:e2464f7c-4406-6982-6a7a-d3b6aa34f3d5\",\n \"manager_id\": \"urn:uuid:34a24b8d-38ad-84bc-160b-c39796c769ce\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:f74a3c7e-dd17-4593-97cc-337c9a37229c\",\n \"manager_id\": \"e4173204-a64c-e9b1-3af4-f02c52cb2679\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3637,7 +3637,7 @@ "description": "", "item": [ { - "id": "662d97b8-0810-4c3b-9d30-32a4b682e724", + "id": "a8848d0f-1814-44be-b47f-0a32347fcc54", "name": "Get roles", "request": { "name": "Get roles", @@ -3704,7 +3704,7 @@ }, "response": [ { - "id": "9bc91352-2685-416a-87e3-c397d6e5bd92", + "id": "229ff74a-3436-49cd-9ab5-cbcb4f20630a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3779,12 +3779,12 @@ "value": "application/json" } ], - "body": "{\n \"roles\": [\n {\n \"id\": \"81196d4c-6ef1-daff-21a6-42a9c73392b0\",\n \"uid\": \"Excepteur do elit sitconsequat e\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"urn:uuid:c1831d73-0766-f6a8-74e7-1188a04dd49d\",\n \"uid\": \"mollit exercitation laborisaute \",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ],\n \"_metadata\": {\n \"limit\": -19652732,\n \"offset\": 49907923,\n \"total\": -86415896,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"roles\": [\n {\n \"id\": \"fa775a35-f193-263a-0f8a-9bf5bfbe4ddd\",\n \"uid\": \"ex eaproident nullaid dolore vel\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"5647754b-0b94-b61f-8707-5a069e7046f3\",\n \"uid\": \"in proident reprehenderit essecu\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ],\n \"_metadata\": {\n \"limit\": 48818315,\n \"offset\": 69189301,\n \"total\": -47617220,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6b683384-5a35-4a42-a951-4f5152797dbf", + "id": "c54272e8-0a1b-43ce-9dc4-e8200f0ab7db", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3864,7 +3864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3cfbd40-e9a2-4600-a81a-13e612e49f21", + "id": "2776f80f-eed3-4753-8a56-0aa53566b809", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -3950,7 +3950,7 @@ } }, { - "id": "fb15ca5d-46cf-466e-a2dd-871238441c57", + "id": "345a5290-2503-4461-9b8c-4cd180c8505f", "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\": \"sedidullamcovelit cupidatat eius\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"et adipisicingaliquip Duis ea ve\",\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\": \"incididunt ex commodo nonnisi an\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"Lorem minim sitmagna quiaute non\",\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": "cb0074d9-6a82-493e-9841-7e9dd5b4d38a", + "id": "9331a187-3a26-45ee-a87e-35b9735cffb7", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4027,7 +4027,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"uid\": \"sedidullamcovelit cupidatat eius\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"et adipisicingaliquip Duis ea ve\",\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\": \"incididunt ex commodo nonnisi an\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"Lorem minim sitmagna quiaute non\",\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\": \"urn:uuid:73879d61-8ed8-b35e-2bad-e9adf6f44eb1\",\n \"uid\": \"occaecat animdo consecteturin ma\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"urn:uuid:fd436fa2-440d-8312-2999-2b947bcc9e08\",\n \"uid\": \"mollit et nostrud exaliquip nonv\",\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:80e87d09-7691-000d-2d6f-11f7cbff1c0e\",\n \"uid\": \"culpa non dolordolore sit elitsi\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"08b29fe0-33aa-c8d0-6d3a-3e560a98bd40\",\n \"uid\": \"nulla commodoincididunt ea id Du\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "10d72f83-45e5-45fa-a667-eb0c42fb64c9", + "id": "0e891480-3911-4e82-9dcf-3d03b9149f42", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4083,7 +4083,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"uid\": \"sedidullamcovelit cupidatat eius\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"et adipisicingaliquip Duis ea ve\",\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\": \"incididunt ex commodo nonnisi an\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"Lorem minim sitmagna quiaute non\",\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": "3a9c47fa-b39a-439b-9f72-945bd7044f7e", + "id": "6c3dc99f-c0d4-4370-bb72-ab4ea8eff59e", "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\": \"sedidullamcovelit cupidatat eius\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"et adipisicingaliquip Duis ea ve\",\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\": \"incididunt ex commodo nonnisi an\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"Lorem minim sitmagna quiaute non\",\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": "fe2a9c43-5d9a-4eb8-93c0-3179019286a5", + "id": "cfd02dd3-8f1d-4819-ac4d-08ecb0222819", "name": "Update multiple roles", "request": { "name": "Update multiple roles", @@ -4210,7 +4210,7 @@ }, "response": [ { - "id": "0cf525b2-fbd6-4da1-aaa8-10a650d4ea17", + "id": "58d34ce0-6922-4809-a6b4-f62b1ae85a74", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4261,12 +4261,12 @@ "value": "application/json" } ], - "body": "{\n \"roles\": [\n {\n \"id\": \"urn:uuid:73879d61-8ed8-b35e-2bad-e9adf6f44eb1\",\n \"uid\": \"occaecat animdo consecteturin ma\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"urn:uuid:fd436fa2-440d-8312-2999-2b947bcc9e08\",\n \"uid\": \"mollit et nostrud exaliquip nonv\",\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:80e87d09-7691-000d-2d6f-11f7cbff1c0e\",\n \"uid\": \"culpa non dolordolore sit elitsi\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"08b29fe0-33aa-c8d0-6d3a-3e560a98bd40\",\n \"uid\": \"nulla commodoincididunt ea id Du\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1e23a3f9-e45d-47ca-b428-75cc47550af2", + "id": "0757203b-f192-4d5e-9eef-4f43c6084075", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4322,7 +4322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5637e8dc-5663-496d-9906-ec484233f424", + "id": "c09a5898-21c1-45fe-ac59-973aa64f9ec6", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4384,7 +4384,7 @@ } }, { - "id": "58fd2822-b3d3-4eac-b047-de3598b8fcc3", + "id": "2cccfbb1-a87f-4aa6-8fe2-f6e33e9e869f", "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\": \"anim veniam laborummagna Ut ut c\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"ex Loremenim Excepteur aliquadol\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4427,7 +4427,7 @@ }, "response": [ { - "id": "7536a09b-03df-43e0-97a5-01ed30dac89e", + "id": "242ab9f7-b9f4-47f1-b75f-60a03c8514f5", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4461,7 +4461,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"anim veniam laborummagna Ut ut c\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"ex Loremenim Excepteur aliquadol\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4478,12 +4478,12 @@ "value": "application/json" } ], - "body": "{\n \"role\": {\n \"id\": \"urn:uuid:8ad6a9f1-e4b7-0aaf-485f-12470699ee9c\",\n \"uid\": \"magnadolore ea dolor laborismini\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "body": "{\n \"role\": {\n \"id\": \"urn:uuid:807ef174-15be-c2cd-3924-272d0e3382ed\",\n \"uid\": \"ipsum adipisicing laborum sedvol\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "82a866a8-e6ef-4570-a33a-617dd6e7f282", + "id": "590c06ce-6622-4e73-8db6-71ee5e2958d7", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4517,7 +4517,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"anim veniam laborummagna Ut ut c\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"ex Loremenim Excepteur aliquadol\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4539,7 +4539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "faf8336b-5712-4e74-9a5f-22da186ab6bd", + "id": "70ddb7d4-1273-4d0d-9fda-3bf36fbf57c8", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4573,7 +4573,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"anim veniam laborummagna Ut ut c\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"ex Loremenim Excepteur aliquadol\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4601,7 +4601,7 @@ } }, { - "id": "fb09aeb5-4a84-4bf5-9e17-eccc5b4b6b53", + "id": "61b8010c-13cd-4c5e-8f41-690f4e625b7b", "name": "Find role by id", "request": { "name": "Find role by id", @@ -4643,7 +4643,7 @@ }, "response": [ { - "id": "7153040f-e28c-4573-bd1a-1a38b4ca32c1", + "id": "c0ac87b4-6624-4ecd-85ca-51fb5e5a9f1e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4682,12 +4682,12 @@ "value": "application/json" } ], - "body": "{\n \"role\": {\n \"id\": \"urn:uuid:8ad6a9f1-e4b7-0aaf-485f-12470699ee9c\",\n \"uid\": \"magnadolore ea dolor laborismini\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "body": "{\n \"role\": {\n \"id\": \"urn:uuid:807ef174-15be-c2cd-3924-272d0e3382ed\",\n \"uid\": \"ipsum adipisicing laborum sedvol\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bd02afa0-a5d1-40de-8553-485c5cd0b2d1", + "id": "b0927198-40b9-439b-9714-b05e90a9dcc1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4731,7 +4731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "797dc04e-db9b-4813-92de-e69886a9f2f7", + "id": "1d4b71ee-0cf9-4844-a5ea-f42aa61cba23", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4781,7 +4781,7 @@ } }, { - "id": "8e96a675-43d2-4a8c-bfdc-a8deb7d9a94d", + "id": "9803bd1a-4853-47a1-9886-1c28c046d577", "name": "Update an existing role", "request": { "name": "Update an existing role", @@ -4836,7 +4836,7 @@ }, "response": [ { - "id": "d77484fa-d0e2-44aa-82dd-179b0a128792", + "id": "50ba98d2-30f4-491d-9cfc-c7c82208d5aa", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4888,12 +4888,12 @@ "value": "application/json" } ], - "body": "{\n \"role\": {\n \"id\": \"urn:uuid:8ad6a9f1-e4b7-0aaf-485f-12470699ee9c\",\n \"uid\": \"magnadolore ea dolor laborismini\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "body": "{\n \"role\": {\n \"id\": \"urn:uuid:807ef174-15be-c2cd-3924-272d0e3382ed\",\n \"uid\": \"ipsum adipisicing laborum sedvol\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2b7e940f-32cd-4f7a-a75b-dea6bf663103", + "id": "d1f6c97a-2108-4bb1-9196-d53f3ec153a2", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4950,7 +4950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e675771-c288-43e9-bbf2-09d1065d165a", + "id": "a02d1a7b-a449-4c5c-80a5-8651e83a155e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5019,7 +5019,7 @@ "description": "", "item": [ { - "id": "2b58a2cd-1ea1-4a1f-be35-8ec85438288c", + "id": "179e85c5-7d27-4eac-aeb2-a9a288fa2d55", "name": "Create a permission", "request": { "name": "Create a permission", @@ -5062,7 +5062,7 @@ }, "response": [ { - "id": "ac38fb5a-6fc8-4864-8e23-5f547cd0ae2f", + "id": "6984c4ff-836b-465a-95da-3235f9e08562", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -5118,7 +5118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e05e3c42-3cbd-4e56-985b-36b7eb1a6eea", + "id": "e0a03695-92d7-43b2-8a17-432dbf3170b3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5174,7 +5174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a482d8a-529a-4596-87de-6f1e4f40fdb0", + "id": "477e1738-56aa-4b0c-b7ff-58dbc4b1d46a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5242,7 +5242,7 @@ "description": "", "item": [ { - "id": "95b93428-b0f0-4160-a5a7-7a13dca2702f", + "id": "f0bc9b71-b6a3-4db0-b5b7-76d8770ffd4a", "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:afa36d46-94cd-0c82-77f8-b5ddc23c5a57\",\n \"role_id\": \"77277987-9b23-6239-cdb3-da4691570893\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:2d8dee61-419c-06dd-7733-1e80b9c81794\",\n \"role_id\": \"urn:uuid:60feef0e-5158-1a4a-8e78-9bfa9f6d7105\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5285,7 +5285,7 @@ }, "response": [ { - "id": "36e10d9e-a0a7-4cab-8b34-925d7a0c294d", + "id": "34721aaa-1826-4f25-9a1c-c0b4ebfa60c8", "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:afa36d46-94cd-0c82-77f8-b5ddc23c5a57\",\n \"role_id\": \"77277987-9b23-6239-cdb3-da4691570893\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:2d8dee61-419c-06dd-7733-1e80b9c81794\",\n \"role_id\": \"urn:uuid:60feef0e-5158-1a4a-8e78-9bfa9f6d7105\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5336,12 +5336,12 @@ "value": "application/json" } ], - "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:937a339f-7678-e97d-2067-f22847f32815\",\n \"uid\": \"non et inenim elit eu occaecat i\",\n \"user_id\": \"fcba1164-0b93-b19b-e0ce-77fc33ddba41\",\n \"role_id\": \"urn:uuid:d4715040-5c9c-f50b-6298-79c1f2186ba2\"\n }\n}", + "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:fde3bf7f-22a8-a534-0c41-213f614a16a9\",\n \"uid\": \"irure voluptate do consequatdolo\",\n \"user_id\": \"f0452ed2-c142-530d-e277-6fefa4a4a2a3\",\n \"role_id\": \"urn:uuid:18b8fb52-401a-feec-4ebb-f586762abf5b\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "200d10fd-e6c5-4b41-b75b-d68994486ded", + "id": "3ab61798-a347-4e2d-b264-889473069d28", "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:afa36d46-94cd-0c82-77f8-b5ddc23c5a57\",\n \"role_id\": \"77277987-9b23-6239-cdb3-da4691570893\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:2d8dee61-419c-06dd-7733-1e80b9c81794\",\n \"role_id\": \"urn:uuid:60feef0e-5158-1a4a-8e78-9bfa9f6d7105\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5397,7 +5397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e1a9a9f-a64f-41ba-a322-9eb83e5570e3", + "id": "e3fe57c8-4f45-409f-bf0e-ad1b51c8412b", "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:afa36d46-94cd-0c82-77f8-b5ddc23c5a57\",\n \"role_id\": \"77277987-9b23-6239-cdb3-da4691570893\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:2d8dee61-419c-06dd-7733-1e80b9c81794\",\n \"role_id\": \"urn:uuid:60feef0e-5158-1a4a-8e78-9bfa9f6d7105\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5459,7 +5459,7 @@ } }, { - "id": "3a6edadb-c03b-4e79-aed8-d29e6795b0ce", + "id": "e4c184af-d4c2-49d3-98df-6bda12c65bdb", "name": "Get user role pairings", "request": { "name": "Get user role pairings", @@ -5518,7 +5518,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -5544,7 +5544,7 @@ }, "response": [ { - "id": "36e12bb9-dbcc-441d-97dd-fa331ba6faf4", + "id": "8fc81625-1d9a-44f1-88e1-93b0ff844f19", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -5598,7 +5598,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -5637,12 +5637,12 @@ "value": "application/json" } ], - "body": "{\n \"user_roles\": [\n {\n \"id\": \"0c8cf1fd-f93a-fe4e-5181-8b2b6bed09d7\",\n \"uid\": \"aliqua ullamco pariaturminim eli\",\n \"user_id\": \"a7f44a17-9fc5-222a-6922-1dd5e457974f\",\n \"role_id\": \"urn:uuid:ab335f95-3675-b5c6-5288-3658e13f9acb\"\n },\n {\n \"id\": \"bc3ed25c-2012-7d71-cb7c-85367ab575f7\",\n \"uid\": \"deserunt laborumid sit velit ips\",\n \"user_id\": \"91f1c33e-0fb7-58a6-bad0-10043ab75434\",\n \"role_id\": \"urn:uuid:a7ecf4dc-7263-e9c2-8f5d-065f7cab6109\"\n }\n ],\n \"_metadata\": {\n \"limit\": 86001777,\n \"offset\": -24109748,\n \"total\": -70651777,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:c29317da-b4b7-61dd-ac4a-0263db53c1b5\",\n \"uid\": \"quis fugiat in sintdo quifugiat \",\n \"user_id\": \"urn:uuid:e8672f08-94c8-7303-3e2c-d08cfd607f9d\",\n \"role_id\": \"d03cc5da-5a95-e915-bb83-de457bf2bd51\"\n },\n {\n \"id\": \"0732a60b-d6d5-93d6-3428-2d69255ac2e6\",\n \"uid\": \"pariatur ametelit dolore ullamco\",\n \"user_id\": \"941273bc-2aaf-5362-1ee2-64b5b0672767\",\n \"role_id\": \"3c473f9b-bb6c-2fbc-b127-138318bf3363\"\n }\n ],\n \"_metadata\": {\n \"limit\": -83485949,\n \"offset\": -30731263,\n \"total\": -23388629,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d08b963a-565b-41fb-8c4c-ea6b5ddde8c0", + "id": "4205e992-fd4f-4388-a887-18c00c56b7f1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5696,7 +5696,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -5740,7 +5740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df4f546c-4860-405a-8dda-7d8b44db4336", + "id": "8012e4b6-8b0b-4dab-9679-0a5ed813e0b2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5794,7 +5794,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -5844,7 +5844,7 @@ } }, { - "id": "99a64349-03c6-4300-a5f1-e94e43e7d7b5", + "id": "7a150d0b-1b6f-4a58-b7d8-607eb0e87525", "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\": \"9ecffa5d-29c9-f374-07db-fedc89cbcf12\",\n \"role_id\": \"urn:uuid:b6cb7e8a-7d10-9b96-5183-6a449c75fd47\"\n },\n {\n \"user_id\": \"d3ec1480-d70a-e764-881d-fbc6da322e9c\",\n \"role_id\": \"urn:uuid:c0082813-d20d-0c46-d3a9-28efa215279b\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"3afda944-eac2-e626-21fb-de4387d2c28b\",\n \"role_id\": \"urn:uuid:307f8f98-8e38-5db6-73df-01b5b340d93c\"\n },\n {\n \"user_id\": \"urn:uuid:78a93987-9704-db0e-e6cf-001ca21993b2\",\n \"role_id\": \"67910a60-ac4e-1334-4568-1dd13d7764f2\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -5887,7 +5887,7 @@ }, "response": [ { - "id": "b9cab41e-20d0-4548-846e-22e5e02ef907", + "id": "a80cf25b-fe3c-4666-9f43-39ba86c717e2", "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\": \"9ecffa5d-29c9-f374-07db-fedc89cbcf12\",\n \"role_id\": \"urn:uuid:b6cb7e8a-7d10-9b96-5183-6a449c75fd47\"\n },\n {\n \"user_id\": \"d3ec1480-d70a-e764-881d-fbc6da322e9c\",\n \"role_id\": \"urn:uuid:c0082813-d20d-0c46-d3a9-28efa215279b\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"3afda944-eac2-e626-21fb-de4387d2c28b\",\n \"role_id\": \"urn:uuid:307f8f98-8e38-5db6-73df-01b5b340d93c\"\n },\n {\n \"user_id\": \"urn:uuid:78a93987-9704-db0e-e6cf-001ca21993b2\",\n \"role_id\": \"67910a60-ac4e-1334-4568-1dd13d7764f2\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -5938,12 +5938,12 @@ "value": "application/json" } ], - "body": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:dce3d057-e1ef-30d7-28cd-15ab84b8c9b7\",\n \"uid\": \"commodoaliqua commodo ipsum occa\",\n \"user_id\": \"9195d719-7785-a117-d735-93b755a2b265\",\n \"role_id\": \"cd88a173-f8ac-77e7-1e0a-2c12b5cdfa77\"\n },\n {\n \"id\": \"urn:uuid:3cf37e27-9cf8-1fa3-882b-5ff153abc522\",\n \"uid\": \"reprehenderitconsequatculpa elit\",\n \"user_id\": \"0a3c8aa6-1e12-5c9d-ff3d-80e66bbba4e4\",\n \"role_id\": \"urn:uuid:3645411f-84a3-5d1c-f9e1-e43df65ff195\"\n }\n ]\n}", + "body": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:45ce7ce6-d339-5186-372b-10f9c340a350\",\n \"uid\": \"temporofficia nostrud utesse ad \",\n \"user_id\": \"2a64fac8-9eb7-531c-7a71-ba14b919a6cb\",\n \"role_id\": \"urn:uuid:946a5a56-d999-78ae-f811-9323c6e36082\"\n },\n {\n \"id\": \"urn:uuid:5c6f4c3d-476b-6ec4-0fe2-b048fb46a5ff\",\n \"uid\": \"elit eiusmod sed nullaut UtLorem\",\n \"user_id\": \"1cfc74a5-e511-5e15-4ed4-9499586c7469\",\n \"role_id\": \"fb85cf43-921f-dde1-8682-8a87e028bac8\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c19bf657-d93c-4727-9287-4099c9994022", + "id": "6ecd03bb-7c4b-4f55-b9fd-3f9a3cdd3436", "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\": \"9ecffa5d-29c9-f374-07db-fedc89cbcf12\",\n \"role_id\": \"urn:uuid:b6cb7e8a-7d10-9b96-5183-6a449c75fd47\"\n },\n {\n \"user_id\": \"d3ec1480-d70a-e764-881d-fbc6da322e9c\",\n \"role_id\": \"urn:uuid:c0082813-d20d-0c46-d3a9-28efa215279b\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"3afda944-eac2-e626-21fb-de4387d2c28b\",\n \"role_id\": \"urn:uuid:307f8f98-8e38-5db6-73df-01b5b340d93c\"\n },\n {\n \"user_id\": \"urn:uuid:78a93987-9704-db0e-e6cf-001ca21993b2\",\n \"role_id\": \"67910a60-ac4e-1334-4568-1dd13d7764f2\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -5999,7 +5999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2028981f-dcda-4f85-ae19-5ed73dd8f9c0", + "id": "c6b46b4b-b135-4df7-84b3-51c96e2b9172", "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\": \"9ecffa5d-29c9-f374-07db-fedc89cbcf12\",\n \"role_id\": \"urn:uuid:b6cb7e8a-7d10-9b96-5183-6a449c75fd47\"\n },\n {\n \"user_id\": \"d3ec1480-d70a-e764-881d-fbc6da322e9c\",\n \"role_id\": \"urn:uuid:c0082813-d20d-0c46-d3a9-28efa215279b\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"3afda944-eac2-e626-21fb-de4387d2c28b\",\n \"role_id\": \"urn:uuid:307f8f98-8e38-5db6-73df-01b5b340d93c\"\n },\n {\n \"user_id\": \"urn:uuid:78a93987-9704-db0e-e6cf-001ca21993b2\",\n \"role_id\": \"67910a60-ac4e-1334-4568-1dd13d7764f2\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6061,7 +6061,7 @@ } }, { - "id": "36ed5ff6-c93d-43c4-a78e-bd3f222f7556", + "id": "65f4a6e6-4b57-4631-bec8-709c461fb117", "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\": \"bc25bb09-6a34-8114-02c5-41f82efea2ed\",\n \"user_id\": \"ff569778-bdd3-a3b6-fb35-b3197f03324e\",\n \"role_id\": \"f9b7df5e-068c-fdf9-bd8b-4d98134ab58c\"\n },\n {\n \"id\": \"urn:uuid:5c6bac00-e6fd-6fd8-f535-a1ead97d4461\",\n \"user_id\": \"edd7c7a7-171d-3071-0f67-fcb85b76faee\",\n \"role_id\": \"urn:uuid:0098867f-c8e6-c933-b5ce-d89931958691\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:526056f9-c61c-6621-fe6f-d35871935c96\",\n \"user_id\": \"8f4e66ad-5092-eb14-3935-e4f51058714d\",\n \"role_id\": \"3252af99-d273-aadb-a00a-e892e2d91cb4\"\n },\n {\n \"id\": \"urn:uuid:8342420b-e217-380d-717f-46c9e53baefe\",\n \"user_id\": \"urn:uuid:9896848a-1271-3682-e188-1b9cd34a21ef\",\n \"role_id\": \"a0aed6c1-4c60-461a-2d0a-8d3571eaf123\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6104,7 +6104,7 @@ }, "response": [ { - "id": "4f66b548-e6ee-418b-9715-a3cd7f74f52a", + "id": "a4a952ad-fa3b-4578-91bf-b08b328dfbe3", "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\": \"bc25bb09-6a34-8114-02c5-41f82efea2ed\",\n \"user_id\": \"ff569778-bdd3-a3b6-fb35-b3197f03324e\",\n \"role_id\": \"f9b7df5e-068c-fdf9-bd8b-4d98134ab58c\"\n },\n {\n \"id\": \"urn:uuid:5c6bac00-e6fd-6fd8-f535-a1ead97d4461\",\n \"user_id\": \"edd7c7a7-171d-3071-0f67-fcb85b76faee\",\n \"role_id\": \"urn:uuid:0098867f-c8e6-c933-b5ce-d89931958691\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:526056f9-c61c-6621-fe6f-d35871935c96\",\n \"user_id\": \"8f4e66ad-5092-eb14-3935-e4f51058714d\",\n \"role_id\": \"3252af99-d273-aadb-a00a-e892e2d91cb4\"\n },\n {\n \"id\": \"urn:uuid:8342420b-e217-380d-717f-46c9e53baefe\",\n \"user_id\": \"urn:uuid:9896848a-1271-3682-e188-1b9cd34a21ef\",\n \"role_id\": \"a0aed6c1-4c60-461a-2d0a-8d3571eaf123\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6155,12 +6155,12 @@ "value": "application/json" } ], - "body": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:dce3d057-e1ef-30d7-28cd-15ab84b8c9b7\",\n \"uid\": \"commodoaliqua commodo ipsum occa\",\n \"user_id\": \"9195d719-7785-a117-d735-93b755a2b265\",\n \"role_id\": \"cd88a173-f8ac-77e7-1e0a-2c12b5cdfa77\"\n },\n {\n \"id\": \"urn:uuid:3cf37e27-9cf8-1fa3-882b-5ff153abc522\",\n \"uid\": \"reprehenderitconsequatculpa elit\",\n \"user_id\": \"0a3c8aa6-1e12-5c9d-ff3d-80e66bbba4e4\",\n \"role_id\": \"urn:uuid:3645411f-84a3-5d1c-f9e1-e43df65ff195\"\n }\n ]\n}", + "body": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:45ce7ce6-d339-5186-372b-10f9c340a350\",\n \"uid\": \"temporofficia nostrud utesse ad \",\n \"user_id\": \"2a64fac8-9eb7-531c-7a71-ba14b919a6cb\",\n \"role_id\": \"urn:uuid:946a5a56-d999-78ae-f811-9323c6e36082\"\n },\n {\n \"id\": \"urn:uuid:5c6f4c3d-476b-6ec4-0fe2-b048fb46a5ff\",\n \"uid\": \"elit eiusmod sed nullaut UtLorem\",\n \"user_id\": \"1cfc74a5-e511-5e15-4ed4-9499586c7469\",\n \"role_id\": \"fb85cf43-921f-dde1-8682-8a87e028bac8\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bdc4a728-d610-41e2-8dc4-e2b6ba3ae767", + "id": "42fc8741-e0c0-4c51-8745-06df92d84b06", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6194,7 +6194,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"id\": \"bc25bb09-6a34-8114-02c5-41f82efea2ed\",\n \"user_id\": \"ff569778-bdd3-a3b6-fb35-b3197f03324e\",\n \"role_id\": \"f9b7df5e-068c-fdf9-bd8b-4d98134ab58c\"\n },\n {\n \"id\": \"urn:uuid:5c6bac00-e6fd-6fd8-f535-a1ead97d4461\",\n \"user_id\": \"edd7c7a7-171d-3071-0f67-fcb85b76faee\",\n \"role_id\": \"urn:uuid:0098867f-c8e6-c933-b5ce-d89931958691\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:526056f9-c61c-6621-fe6f-d35871935c96\",\n \"user_id\": \"8f4e66ad-5092-eb14-3935-e4f51058714d\",\n \"role_id\": \"3252af99-d273-aadb-a00a-e892e2d91cb4\"\n },\n {\n \"id\": \"urn:uuid:8342420b-e217-380d-717f-46c9e53baefe\",\n \"user_id\": \"urn:uuid:9896848a-1271-3682-e188-1b9cd34a21ef\",\n \"role_id\": \"a0aed6c1-4c60-461a-2d0a-8d3571eaf123\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6216,7 +6216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d62c8dd-5040-43b5-bac5-a585596e6617", + "id": "9044829e-1e7d-437a-b750-d5970e0286d3", "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\": \"bc25bb09-6a34-8114-02c5-41f82efea2ed\",\n \"user_id\": \"ff569778-bdd3-a3b6-fb35-b3197f03324e\",\n \"role_id\": \"f9b7df5e-068c-fdf9-bd8b-4d98134ab58c\"\n },\n {\n \"id\": \"urn:uuid:5c6bac00-e6fd-6fd8-f535-a1ead97d4461\",\n \"user_id\": \"edd7c7a7-171d-3071-0f67-fcb85b76faee\",\n \"role_id\": \"urn:uuid:0098867f-c8e6-c933-b5ce-d89931958691\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:526056f9-c61c-6621-fe6f-d35871935c96\",\n \"user_id\": \"8f4e66ad-5092-eb14-3935-e4f51058714d\",\n \"role_id\": \"3252af99-d273-aadb-a00a-e892e2d91cb4\"\n },\n {\n \"id\": \"urn:uuid:8342420b-e217-380d-717f-46c9e53baefe\",\n \"user_id\": \"urn:uuid:9896848a-1271-3682-e188-1b9cd34a21ef\",\n \"role_id\": \"a0aed6c1-4c60-461a-2d0a-8d3571eaf123\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6278,7 +6278,7 @@ } }, { - "id": "d953be15-2aef-46fc-a380-592b95613806", + "id": "a7c3cd3e-35c1-40fa-a5dd-f3b62c82f707", "name": "Find user role pairing by id", "request": { "name": "Find user role pairing by id", @@ -6320,7 +6320,7 @@ }, "response": [ { - "id": "bd1f761b-8770-45e2-bf92-2fd9e4780144", + "id": "8c5df445-e318-4e64-b7d6-4222932095ad", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -6359,12 +6359,12 @@ "value": "application/json" } ], - "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:937a339f-7678-e97d-2067-f22847f32815\",\n \"uid\": \"non et inenim elit eu occaecat i\",\n \"user_id\": \"fcba1164-0b93-b19b-e0ce-77fc33ddba41\",\n \"role_id\": \"urn:uuid:d4715040-5c9c-f50b-6298-79c1f2186ba2\"\n }\n}", + "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:fde3bf7f-22a8-a534-0c41-213f614a16a9\",\n \"uid\": \"irure voluptate do consequatdolo\",\n \"user_id\": \"f0452ed2-c142-530d-e277-6fefa4a4a2a3\",\n \"role_id\": \"urn:uuid:18b8fb52-401a-feec-4ebb-f586762abf5b\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a85ec967-ae10-43d0-93df-d84b69a641fe", + "id": "85bac388-ea26-4b29-895f-0adb464b2e95", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6408,7 +6408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3029d70a-5b28-4a20-8ee1-769c5aef9cd0", + "id": "410d8139-30dd-414b-8f80-387bba27a184", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6458,7 +6458,7 @@ } }, { - "id": "27f6f667-bd23-41f8-b6cf-f46ec89ad77a", + "id": "713eb4fa-e162-4335-b351-96d518f90590", "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:afa36d46-94cd-0c82-77f8-b5ddc23c5a57\",\n \"role_id\": \"77277987-9b23-6239-cdb3-da4691570893\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:2d8dee61-419c-06dd-7733-1e80b9c81794\",\n \"role_id\": \"urn:uuid:60feef0e-5158-1a4a-8e78-9bfa9f6d7105\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6513,7 +6513,7 @@ }, "response": [ { - "id": "0433e0a6-a282-4beb-b6dc-ecad74182d1b", + "id": "3285488b-193c-45a3-8d2f-5bf18c048ef8", "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:afa36d46-94cd-0c82-77f8-b5ddc23c5a57\",\n \"role_id\": \"77277987-9b23-6239-cdb3-da4691570893\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:2d8dee61-419c-06dd-7733-1e80b9c81794\",\n \"role_id\": \"urn:uuid:60feef0e-5158-1a4a-8e78-9bfa9f6d7105\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6565,12 +6565,12 @@ "value": "application/json" } ], - "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:937a339f-7678-e97d-2067-f22847f32815\",\n \"uid\": \"non et inenim elit eu occaecat i\",\n \"user_id\": \"fcba1164-0b93-b19b-e0ce-77fc33ddba41\",\n \"role_id\": \"urn:uuid:d4715040-5c9c-f50b-6298-79c1f2186ba2\"\n }\n}", + "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:fde3bf7f-22a8-a534-0c41-213f614a16a9\",\n \"uid\": \"irure voluptate do consequatdolo\",\n \"user_id\": \"f0452ed2-c142-530d-e277-6fefa4a4a2a3\",\n \"role_id\": \"urn:uuid:18b8fb52-401a-feec-4ebb-f586762abf5b\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6ed758c3-a533-4ed8-9a85-9329bfffa64a", + "id": "27b94e79-4de2-4d54-bd29-b7e7bd86897e", "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:afa36d46-94cd-0c82-77f8-b5ddc23c5a57\",\n \"role_id\": \"77277987-9b23-6239-cdb3-da4691570893\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:2d8dee61-419c-06dd-7733-1e80b9c81794\",\n \"role_id\": \"urn:uuid:60feef0e-5158-1a4a-8e78-9bfa9f6d7105\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6627,7 +6627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d55b947-7e3e-4d8a-8351-17d97e0cae53", + "id": "c5024df3-9376-49a6-8f0a-3fb189b2b0e0", "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:afa36d46-94cd-0c82-77f8-b5ddc23c5a57\",\n \"role_id\": \"77277987-9b23-6239-cdb3-da4691570893\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:2d8dee61-419c-06dd-7733-1e80b9c81794\",\n \"role_id\": \"urn:uuid:60feef0e-5158-1a4a-8e78-9bfa9f6d7105\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6690,7 +6690,7 @@ } }, { - "id": "9291edcf-54d0-4a11-9f90-e615ee1f22b0", + "id": "679ca8fb-15e6-4d68-85a2-efabc4b229af", "name": "Delete a user role assignment", "request": { "name": "Delete a user role assignment", @@ -6732,7 +6732,7 @@ }, "response": [ { - "id": "d6a59185-f2ee-483e-8461-d99fd6e34fe2", + "id": "9acb5bd7-7546-4de6-96e3-17aa2fbc63a8", "name": "User role was destroyed", "originalRequest": { "url": { @@ -6776,7 +6776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf7328d6-e5ef-411d-b706-d70b560c1da8", + "id": "8cd76905-1349-4012-8a7f-169e928be947", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6820,7 +6820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16794312-5cd8-4190-9ef2-5fcb59f8bc48", + "id": "60b96fa8-cda5-4a15-95c4-9eba4b63fadb", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6876,7 +6876,7 @@ "description": "", "item": [ { - "id": "c0d6200a-3356-4d26-90f7-850c0b47fdd1", + "id": "f6024b17-04a1-4b37-8903-e43fb83d2cde", "name": "Get attribute data in bulk", "request": { "name": "Get attribute data in bulk", @@ -6926,7 +6926,7 @@ "type": "text/plain" }, "key": "label", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -6935,7 +6935,7 @@ "type": "text/plain" }, "key": "data_type", - "value": "tags" + "value": "check boxes" }, { "disabled": false, @@ -6961,7 +6961,7 @@ }, "response": [ { - "id": "642b9dc9-2c36-4c8d-a3d1-5b6abb803771", + "id": "889ee191-2750-4dc4-97e5-934eae70dc37", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7006,7 +7006,7 @@ "type": "text/plain" }, "key": "label", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -7015,7 +7015,7 @@ "type": "text/plain" }, "key": "data_type", - "value": "tags" + "value": "check boxes" }, { "disabled": false, @@ -7054,12 +7054,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attributes\": [\n {\n \"id\": \"acd11890-1290-e658-6174-e151b1194eea\",\n \"uid\": \"est in qui animexercitation culp\",\n \"label\": \"aute sunt incididunt ipsum\",\n \"description\": \"dolore in\",\n \"tool_tip\": \"sit officia incididunt proident\",\n \"crypt\": true,\n \"archived\": false,\n \"archived_on\": \"2018-10-18T12:24:42.269Z\",\n \"created_at\": \"2017-07-11T12:35:44.655Z\",\n \"updated_at\": \"2009-06-10T03:38:12.687Z\",\n \"date_format\": \"mm-dd-yyyy\",\n \"selectable_status\": \"et sit pariatur Duis\",\n \"risk_score_setting\": \"non deserunt consequat exercitation fugiat\",\n \"risk_type\": \"irure Excepteur magna sunt\",\n \"ownership_driver\": false,\n \"allow_multiple_selections\": false,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"urn:uuid:543a7662-23e3-38e2-2275-c7518962f345\",\n \"ne_attribute_filter_id\": \"urn:uuid:75394871-e40f-7cf4-029a-20f3dd114de8\",\n \"reverse_association_attribute_id\": \"urn:uuid:e0a4c858-0232-1bf9-9faf-eaa8bf53bbd1\",\n \"profile_type_id\": \"4413bb44-f05c-7c6f-4d62-a022db81a201\",\n \"legacy_id\": -30169997,\n \"tmp_created_at\": \"1986-10-13T23:54:12.491Z\",\n \"tmp_updated_at\": \"2002-02-10T23:13:18.639Z\"\n },\n {\n \"id\": \"urn:uuid:a3df3722-e9a1-ac90-ef5e-4c43c5bd4dfa\",\n \"uid\": \"consectetur Duis sint adipisicin\",\n \"label\": \"qui consectetur Ut\",\n \"description\": \"nostrud ut reprehen\",\n \"tool_tip\": \"dolore\",\n \"crypt\": true,\n \"archived\": false,\n \"archived_on\": \"1972-04-10T04:22:42.739Z\",\n \"created_at\": \"1959-07-12T01:19:56.719Z\",\n \"updated_at\": \"1977-01-01T09:12:39.575Z\",\n \"date_format\": \"dd/mm/yyyy\",\n \"selectable_status\": \"c\",\n \"risk_score_setting\": \"Excepteur adipisicing non\",\n \"risk_type\": \"eiusmod nisi enim commodo proident\",\n \"ownership_driver\": false,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"27edcab9-8f3f-e45b-c858-d40af3f772e0\",\n \"ne_attribute_filter_id\": \"urn:uuid:758cf24c-7355-e4c4-9c0f-3f19e55ae547\",\n \"reverse_association_attribute_id\": \"c47308b3-9817-8b27-530a-7eaad64f2e0a\",\n \"profile_type_id\": \"urn:uuid:edc3b8f4-b04c-e0a6-8bd4-e9ea02491789\",\n \"legacy_id\": 25187063,\n \"tmp_created_at\": \"1950-11-15T10:00:05.127Z\",\n \"tmp_updated_at\": \"2010-11-09T06:22:35.661Z\"\n }\n ],\n \"_metadata\": {\n \"limit\": 4407951,\n \"offset\": 10003809,\n \"total\": -48851523,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"ne_attributes\": [\n {\n \"id\": \"urn:uuid:5175565a-45a6-212e-ffd9-e5108faa16bf\",\n \"uid\": \"cupidatat minim ad deseruntcupid\",\n \"label\": \"nostrud dolor\",\n \"description\": \"anim ut sint reprehen\",\n \"tool_tip\": \"aute occaecat voluptate sunt\",\n \"crypt\": true,\n \"archived\": false,\n \"archived_on\": \"1951-06-22T13:06:15.888Z\",\n \"created_at\": \"1990-03-22T06:44:39.955Z\",\n \"updated_at\": \"1949-08-02T15:58:01.179Z\",\n \"date_format\": \"yyyy-mm-dd\",\n \"selectable_status\": \"cillum ut pariatur\",\n \"risk_score_setting\": \"consequat\",\n \"risk_type\": \"reprehenderit quis pariatu\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"urn:uuid:c9de3125-65b1-bb4c-7152-41d3a8ba8700\",\n \"ne_attribute_filter_id\": \"6ec97e6d-71c5-106d-467b-111e93729360\",\n \"reverse_association_attribute_id\": \"urn:uuid:0f42012d-dc8d-9470-d471-96d63a7214d5\",\n \"profile_type_id\": \"urn:uuid:3d820f9a-b827-afd8-e5be-dbb54f4a3340\",\n \"legacy_id\": -60573605,\n \"tmp_created_at\": \"1973-10-03T01:01:53.167Z\",\n \"tmp_updated_at\": \"1972-04-19T13:23:23.634Z\"\n },\n {\n \"id\": \"8b6c7947-b147-e01a-48d7-bf769e0e9688\",\n \"uid\": \"cillum adipisicingveniam sedveni\",\n \"label\": \"fugiat dolore nisi magna\",\n \"description\": \"pariatur dolore minim aute\",\n \"tool_tip\": \"Ut dolor nisi\",\n \"crypt\": true,\n \"archived\": false,\n \"archived_on\": \"1973-01-07T15:31:49.167Z\",\n \"created_at\": \"2007-11-10T11:20:08.165Z\",\n \"updated_at\": \"1998-11-03T01:06:05.340Z\",\n \"date_format\": \"dd/mm/yyyy\",\n \"selectable_status\": \"est Duis laboris Excepteur\",\n \"risk_score_setting\": \"et consequat dolore consectetur ea\",\n \"risk_type\": \"ipsum aliquip est laborum\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": false,\n \"filtered_by_ne_attribute\": false,\n \"filtering_ne_attribute_id\": \"urn:uuid:f2c16e13-294a-56dd-28dd-7aa1112018f4\",\n \"ne_attribute_filter_id\": \"4b86ff49-a604-430e-7bbf-2aebb76d904e\",\n \"reverse_association_attribute_id\": \"d1ba3ce1-f894-1d2a-4271-42ca37a809de\",\n \"profile_type_id\": \"21a1e253-fd1e-5d35-c240-f94edbb5420d\",\n \"legacy_id\": 39718314,\n \"tmp_created_at\": \"1953-10-03T19:55:18.719Z\",\n \"tmp_updated_at\": \"1991-11-24T23:08:08.626Z\"\n }\n ],\n \"_metadata\": {\n \"limit\": 99458490,\n \"offset\": -80753317,\n \"total\": -1718358,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "12b2bddb-7c1f-4a2c-ac4e-736b9c20eca2", + "id": "b9238a06-1cd0-41da-be51-f5d1a843ec36", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7104,7 +7104,7 @@ "type": "text/plain" }, "key": "label", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -7113,7 +7113,7 @@ "type": "text/plain" }, "key": "data_type", - "value": "tags" + "value": "check boxes" }, { "disabled": false, @@ -7157,7 +7157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfc34798-2557-4182-9863-4d4a2c2e6a9d", + "id": "637811ed-52de-40d3-af07-4e14798c6890", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7202,7 +7202,7 @@ "type": "text/plain" }, "key": "label", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -7211,7 +7211,7 @@ "type": "text/plain" }, "key": "data_type", - "value": "tags" + "value": "check boxes" }, { "disabled": false, @@ -7261,7 +7261,7 @@ } }, { - "id": "6ce6d08c-fee7-4399-a9e5-c9da4ce24ddd", + "id": "1d02d001-6711-42e6-8ed8-05b6751d02a2", "name": "Find attribute data by id", "request": { "name": "Find attribute data by id", @@ -7303,7 +7303,7 @@ }, "response": [ { - "id": "beaa99b9-e285-4c4c-b27c-3af0aa378deb", + "id": "7915f5c9-0b92-4991-8130-9dd5f3b8f439", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7342,12 +7342,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute\": {\n \"id\": \"1e5a1f22-d4a8-9aca-8673-8b682cc223c9\",\n \"uid\": \"dolor occaecat doloreelit dolore\",\n \"label\": \"laboris ut amet\",\n \"description\": \"esse in deserunt proident m\",\n \"tool_tip\": \"nisi pariatur e\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1960-05-29T07:26:00.881Z\",\n \"created_at\": \"1951-04-23T19:28:49.440Z\",\n \"updated_at\": \"1998-07-14T05:18:42.407Z\",\n \"date_format\": \"yyyy-mm-dd\",\n \"selectable_status\": \"cupidatat\",\n \"risk_score_setting\": \"reprehenderit dolor in eu\",\n \"risk_type\": \"ea Excepteur\",\n \"ownership_driver\": false,\n \"allow_multiple_selections\": false,\n \"filtered_by_ne_attribute\": false,\n \"filtering_ne_attribute_id\": \"urn:uuid:deb8b3c0-18a2-5c13-a153-5eade1971ffa\",\n \"ne_attribute_filter_id\": \"urn:uuid:b1495377-84d9-e5b3-0d2b-7b6cbc5446be\",\n \"reverse_association_attribute_id\": \"urn:uuid:e65a3d24-2155-5238-24d0-93a3feec8f6b\",\n \"profile_type_id\": \"urn:uuid:a92d8f34-0b19-b232-326e-80b987b257fa\",\n \"legacy_id\": -97240615,\n \"tmp_created_at\": \"1962-03-12T02:00:36.202Z\",\n \"tmp_updated_at\": \"1972-02-16T09:03:30.557Z\"\n }\n}", + "body": "{\n \"ne_attribute\": {\n \"id\": \"urn:uuid:9e00c56e-4003-2ebb-a9ac-5005f672447d\",\n \"uid\": \"Excepteur sitofficia consectetur\",\n \"label\": \"ullamco\",\n \"description\": \"tempor incididunt magna quis\",\n \"tool_tip\": \"voluptate laboris sunt\",\n \"crypt\": false,\n \"archived\": true,\n \"archived_on\": \"1963-07-22T00:50:27.124Z\",\n \"created_at\": \"1957-10-13T00:56:18.257Z\",\n \"updated_at\": \"2011-11-17T13:59:58.046Z\",\n \"date_format\": \"yyyy/mm/dd\",\n \"selectable_status\": \"voluptate\",\n \"risk_score_setting\": \"occaecat dolore sunt esse sit\",\n \"risk_type\": \"cupidatat elit id aliquip\",\n \"ownership_driver\": true,\n \"allow_multiple_selections\": false,\n \"filtered_by_ne_attribute\": false,\n \"filtering_ne_attribute_id\": \"urn:uuid:33cdbc81-f0fa-3093-28c0-fd15dcf19e76\",\n \"ne_attribute_filter_id\": \"urn:uuid:4f8e654b-cc33-3b9e-ba1d-baece773d6b9\",\n \"reverse_association_attribute_id\": \"urn:uuid:c4af2b74-62ce-faaa-9204-12e539ef182e\",\n \"profile_type_id\": \"5a8f7814-9bc9-da96-0d74-afc4fdf9068f\",\n \"legacy_id\": -37546011,\n \"tmp_created_at\": \"2012-01-08T07:37:54.524Z\",\n \"tmp_updated_at\": \"1958-01-27T07:36:32.368Z\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6815b9a3-5cf0-4b5c-bb3a-0a8365235023", + "id": "3c22e888-ee88-4a94-8d0b-162623ffbd22", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7391,7 +7391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "affe9d0b-2695-417b-9dd3-75d078f3b726", + "id": "c29e11d3-b64c-422e-977f-450dbfa38390", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7447,7 +7447,7 @@ "description": "", "item": [ { - "id": "62810896-a190-4b12-9043-d281fbffe5a2", + "id": "56421e3d-0b9b-4a7e-b026-de5886b33914", "name": "Add a value to an option based attribute", "request": { "name": "Add a value to an option based attribute", @@ -7478,7 +7478,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"0c7e57bd-e2fa-f4d8-092a-057e4648d05b\",\n \"option\": \"magna mollit\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:154d1c90-a422-97a5-e417-bf75975110ec\",\n \"option\": \"aliquip consequat\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7490,7 +7490,7 @@ }, "response": [ { - "id": "9fcd994d-9ede-4a09-8c57-1099574be92b", + "id": "6b61fcf8-242c-4f68-a008-a05fbabe6b1c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7524,7 +7524,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"0c7e57bd-e2fa-f4d8-092a-057e4648d05b\",\n \"option\": \"magna mollit\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:154d1c90-a422-97a5-e417-bf75975110ec\",\n \"option\": \"aliquip consequat\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7541,12 +7541,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_option\": {\n \"id\": \"e5d3dcb5-8044-a4c1-2e4e-11c22790d3fc\",\n \"uid\": \"laboris culpa officia sintnulla \",\n \"ne_attribute_id\": \"urn:uuid:97480f4e-54ac-97c3-94f6-fcf5070c576c\",\n \"option\": \"nisi ex sit quis\"\n }\n}", + "body": "{\n \"ne_attribute_option\": {\n \"id\": \"urn:uuid:1b23ca28-cc3a-5890-f584-1d9a564bdbdf\",\n \"uid\": \"eiusmodin Utlaboris enim deserun\",\n \"ne_attribute_id\": \"urn:uuid:9cf2e079-fdc0-3737-62e0-d4b9cb466b0e\",\n \"option\": \"commodo nul\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "457d4121-f86d-45d6-b28b-13a690fde44e", + "id": "b5bd52b0-0f30-4e63-8453-88543900ed5a", "name": "Invalid input", "originalRequest": { "url": { @@ -7576,7 +7576,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"0c7e57bd-e2fa-f4d8-092a-057e4648d05b\",\n \"option\": \"magna mollit\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:154d1c90-a422-97a5-e417-bf75975110ec\",\n \"option\": \"aliquip consequat\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7598,7 +7598,7 @@ } }, { - "id": "ef326637-0591-4eb9-9c37-3c5cb8c53efe", + "id": "33c5a401-71a6-48f0-bcc9-4e1c7a2a95aa", "name": "Get option based attribute values", "request": { "name": "Get option based attribute values", @@ -7674,7 +7674,7 @@ }, "response": [ { - "id": "b6b25d8a-023f-40d0-845f-e1de35111202", + "id": "7e5d0ee8-829a-4008-a7df-c3e7c0f64826", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7758,12 +7758,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"03f2c06d-a7f9-ff13-b1d0-35f39aa7a9bb\",\n \"uid\": \"veniam id quiproident mollit exe\",\n \"ne_attribute_id\": \"b59e0f80-98a3-0dd3-aa08-0ff0365fe3ad\",\n \"option\": \"ea reprehenderit officia veniam ad\"\n },\n {\n \"id\": \"3bd876e0-feeb-b04f-9807-cc23ba27029b\",\n \"uid\": \"consequat amet Excepteurofficia \",\n \"ne_attribute_id\": \"40f89a43-3672-6a9b-c869-f2405af38d5c\",\n \"option\": \"non Duis ipsum incididunt enim\"\n }\n ],\n \"_metadata\": {\n \"limit\": 46659823,\n \"offset\": -11041600,\n \"total\": 49749145,\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:c7551788-3b51-616b-0264-db3c92e311ae\",\n \"uid\": \"esse et eiusmodqui laboris exerc\",\n \"ne_attribute_id\": \"a858e033-116f-6954-5238-24a0d63893da\",\n \"option\": \"et veniam dolor ut Lorem\"\n },\n {\n \"id\": \"urn:uuid:a42a9ad2-ac45-10ab-749b-8180cd12d513\",\n \"uid\": \"ea Duiset dolor sint proidenteli\",\n \"ne_attribute_id\": \"42f53b2b-aff8-b917-73ff-3721ae6cfa6d\",\n \"option\": \"fugiat esse ex\"\n }\n ],\n \"_metadata\": {\n \"limit\": -56605717,\n \"offset\": -40332909,\n \"total\": 3938613,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fa446021-d35e-4188-acb7-50d5b5f24627", + "id": "8178b25e-9a06-4f33-ae31-903c5aecc389", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7852,7 +7852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dbb1406-bbc6-4c0a-a946-cb2edc162457", + "id": "4ff8636a-cf52-453b-9d98-2315ce236be2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7947,7 +7947,7 @@ } }, { - "id": "3ba2ae8c-6d45-4897-a077-a9e17868122e", + "id": "41cf302f-267c-4693-9ae6-48907d5b474f", "name": "Create multiple new option based attribute values", "request": { "name": "Create multiple new option based attribute values", @@ -7978,7 +7978,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"1e343761-6962-79e2-9764-d114efa12cc7\",\n \"option\": \"fugiat id culpa consequat\"\n },\n {\n \"ne_attribute_id\": \"0df04e1e-609b-2595-4797-b7934af1eccd\",\n \"option\": \"laborum ut eu Duis mollit\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"75216ae3-c674-9b4b-615e-e0d87ea29713\",\n \"option\": \"Duis ea incididunt voluptate pariatur\"\n },\n {\n \"ne_attribute_id\": \"b6f886f5-8dc7-1a93-2a04-8c1182984de6\",\n \"option\": \"et anim laborum\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -7990,7 +7990,7 @@ }, "response": [ { - "id": "4e168884-28b3-4b80-906b-c4b973caa35b", + "id": "d392d4c8-7918-431e-8351-d4173addcb42", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8024,7 +8024,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"1e343761-6962-79e2-9764-d114efa12cc7\",\n \"option\": \"fugiat id culpa consequat\"\n },\n {\n \"ne_attribute_id\": \"0df04e1e-609b-2595-4797-b7934af1eccd\",\n \"option\": \"laborum ut eu Duis mollit\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"75216ae3-c674-9b4b-615e-e0d87ea29713\",\n \"option\": \"Duis ea incididunt voluptate pariatur\"\n },\n {\n \"ne_attribute_id\": \"b6f886f5-8dc7-1a93-2a04-8c1182984de6\",\n \"option\": \"et anim laborum\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8041,12 +8041,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"d1937a37-71eb-ce2c-f03d-6e44d95d81e0\",\n \"uid\": \"velit elitincididunt consectetur\",\n \"ne_attribute_id\": \"6ab12c0f-0cf0-d356-b717-4c2abd7f6836\",\n \"option\": \"Lorem adipisicing ut\"\n },\n {\n \"id\": \"0f557c6e-fb66-b299-9d72-f707929bf89e\",\n \"uid\": \"nisi veniamex commodoveniam cill\",\n \"ne_attribute_id\": \"urn:uuid:73a33d2b-65c1-663e-1fa9-09c40245a5b3\",\n \"option\": \"amet ullamco ex\"\n }\n ]\n}", + "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:468a3412-cb3e-5eab-3aab-c388c8cd7c89\",\n \"uid\": \"labore estaute reprehenderit qui\",\n \"ne_attribute_id\": \"urn:uuid:0b3cc062-1ec1-b4eb-fe94-4db5089ab9b5\",\n \"option\": \"dolo\"\n },\n {\n \"id\": \"urn:uuid:f4023dee-df86-cfa4-9b5e-cc2c2f9000e8\",\n \"uid\": \"aliquip sunt commodo irureadipis\",\n \"ne_attribute_id\": \"urn:uuid:68668cd8-09c3-c638-81d7-e0ff518b5489\",\n \"option\": \"reprehenderit eiusmod laborum anim\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e1e46e3b-b36e-4905-8483-5b042a52d0bd", + "id": "3cc41d33-3d9b-4f10-9b58-eab0b3607758", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8080,7 +8080,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"1e343761-6962-79e2-9764-d114efa12cc7\",\n \"option\": \"fugiat id culpa consequat\"\n },\n {\n \"ne_attribute_id\": \"0df04e1e-609b-2595-4797-b7934af1eccd\",\n \"option\": \"laborum ut eu Duis mollit\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"75216ae3-c674-9b4b-615e-e0d87ea29713\",\n \"option\": \"Duis ea incididunt voluptate pariatur\"\n },\n {\n \"ne_attribute_id\": \"b6f886f5-8dc7-1a93-2a04-8c1182984de6\",\n \"option\": \"et anim laborum\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8102,7 +8102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fb7a444-420e-4222-ab14-78c5394ca2a2", + "id": "429fbaac-afe1-462e-897f-2183a44b2cc0", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8136,7 +8136,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"1e343761-6962-79e2-9764-d114efa12cc7\",\n \"option\": \"fugiat id culpa consequat\"\n },\n {\n \"ne_attribute_id\": \"0df04e1e-609b-2595-4797-b7934af1eccd\",\n \"option\": \"laborum ut eu Duis mollit\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"75216ae3-c674-9b4b-615e-e0d87ea29713\",\n \"option\": \"Duis ea incididunt voluptate pariatur\"\n },\n {\n \"ne_attribute_id\": \"b6f886f5-8dc7-1a93-2a04-8c1182984de6\",\n \"option\": \"et anim laborum\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8164,7 +8164,7 @@ } }, { - "id": "d637454e-e50a-4c82-af41-3b96305240c0", + "id": "c8d74c91-e6aa-4c35-a841-e66f9e33fdfd", "name": "Update multiple option based attribute values", "request": { "name": "Update multiple option based attribute values", @@ -8195,7 +8195,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:7cbe0486-c69b-31ac-654d-09c5095c3508\",\n \"ne_attribute_id\": \"e6849b56-5f62-66f7-2cb6-d37caf2cd902\",\n \"option\": \"ad officia\"\n },\n {\n \"id\": \"urn:uuid:b900c8de-3007-d89b-3a9e-198e5a9421df\",\n \"ne_attribute_id\": \"fb3bd01a-845e-ac99-f3cb-0cad0751cf29\",\n \"option\": \"incididunt culpa\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"31fefbaa-84f6-3204-b4df-d452c302e2f7\",\n \"ne_attribute_id\": \"urn:uuid:c1a1311f-796c-3a77-bbbd-71dc4ced7473\",\n \"option\": \"nostrud dolor laboris amet\"\n },\n {\n \"id\": \"a4de79fa-912b-4b23-1347-6112c4f32bea\",\n \"ne_attribute_id\": \"urn:uuid:26b5ae01-3080-30f1-e13b-bc0d9265a4e6\",\n \"option\": \"laborum id consequat do dolore\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8207,7 +8207,7 @@ }, "response": [ { - "id": "053dbb8d-29ce-4a4a-9912-f24c11b24f81", + "id": "f46c93ef-08e4-49d8-803e-8b5d09b6453a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8241,7 +8241,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:7cbe0486-c69b-31ac-654d-09c5095c3508\",\n \"ne_attribute_id\": \"e6849b56-5f62-66f7-2cb6-d37caf2cd902\",\n \"option\": \"ad officia\"\n },\n {\n \"id\": \"urn:uuid:b900c8de-3007-d89b-3a9e-198e5a9421df\",\n \"ne_attribute_id\": \"fb3bd01a-845e-ac99-f3cb-0cad0751cf29\",\n \"option\": \"incididunt culpa\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"31fefbaa-84f6-3204-b4df-d452c302e2f7\",\n \"ne_attribute_id\": \"urn:uuid:c1a1311f-796c-3a77-bbbd-71dc4ced7473\",\n \"option\": \"nostrud dolor laboris amet\"\n },\n {\n \"id\": \"a4de79fa-912b-4b23-1347-6112c4f32bea\",\n \"ne_attribute_id\": \"urn:uuid:26b5ae01-3080-30f1-e13b-bc0d9265a4e6\",\n \"option\": \"laborum id consequat do dolore\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8258,12 +8258,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"d1937a37-71eb-ce2c-f03d-6e44d95d81e0\",\n \"uid\": \"velit elitincididunt consectetur\",\n \"ne_attribute_id\": \"6ab12c0f-0cf0-d356-b717-4c2abd7f6836\",\n \"option\": \"Lorem adipisicing ut\"\n },\n {\n \"id\": \"0f557c6e-fb66-b299-9d72-f707929bf89e\",\n \"uid\": \"nisi veniamex commodoveniam cill\",\n \"ne_attribute_id\": \"urn:uuid:73a33d2b-65c1-663e-1fa9-09c40245a5b3\",\n \"option\": \"amet ullamco ex\"\n }\n ]\n}", + "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:468a3412-cb3e-5eab-3aab-c388c8cd7c89\",\n \"uid\": \"labore estaute reprehenderit qui\",\n \"ne_attribute_id\": \"urn:uuid:0b3cc062-1ec1-b4eb-fe94-4db5089ab9b5\",\n \"option\": \"dolo\"\n },\n {\n \"id\": \"urn:uuid:f4023dee-df86-cfa4-9b5e-cc2c2f9000e8\",\n \"uid\": \"aliquip sunt commodo irureadipis\",\n \"ne_attribute_id\": \"urn:uuid:68668cd8-09c3-c638-81d7-e0ff518b5489\",\n \"option\": \"reprehenderit eiusmod laborum anim\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fa234e72-28c2-447f-a071-c0eb8a6d7830", + "id": "3dffb156-dc96-4a44-ab37-98ee2a884e36", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8297,7 +8297,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:7cbe0486-c69b-31ac-654d-09c5095c3508\",\n \"ne_attribute_id\": \"e6849b56-5f62-66f7-2cb6-d37caf2cd902\",\n \"option\": \"ad officia\"\n },\n {\n \"id\": \"urn:uuid:b900c8de-3007-d89b-3a9e-198e5a9421df\",\n \"ne_attribute_id\": \"fb3bd01a-845e-ac99-f3cb-0cad0751cf29\",\n \"option\": \"incididunt culpa\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"31fefbaa-84f6-3204-b4df-d452c302e2f7\",\n \"ne_attribute_id\": \"urn:uuid:c1a1311f-796c-3a77-bbbd-71dc4ced7473\",\n \"option\": \"nostrud dolor laboris amet\"\n },\n {\n \"id\": \"a4de79fa-912b-4b23-1347-6112c4f32bea\",\n \"ne_attribute_id\": \"urn:uuid:26b5ae01-3080-30f1-e13b-bc0d9265a4e6\",\n \"option\": \"laborum id consequat do dolore\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8319,7 +8319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ce1a5ca-95a0-4ad8-a2b5-c2f83f52d349", + "id": "e129e5c7-ebf5-4be0-8ce1-32e916ac79e7", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8353,7 +8353,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:7cbe0486-c69b-31ac-654d-09c5095c3508\",\n \"ne_attribute_id\": \"e6849b56-5f62-66f7-2cb6-d37caf2cd902\",\n \"option\": \"ad officia\"\n },\n {\n \"id\": \"urn:uuid:b900c8de-3007-d89b-3a9e-198e5a9421df\",\n \"ne_attribute_id\": \"fb3bd01a-845e-ac99-f3cb-0cad0751cf29\",\n \"option\": \"incididunt culpa\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"31fefbaa-84f6-3204-b4df-d452c302e2f7\",\n \"ne_attribute_id\": \"urn:uuid:c1a1311f-796c-3a77-bbbd-71dc4ced7473\",\n \"option\": \"nostrud dolor laboris amet\"\n },\n {\n \"id\": \"a4de79fa-912b-4b23-1347-6112c4f32bea\",\n \"ne_attribute_id\": \"urn:uuid:26b5ae01-3080-30f1-e13b-bc0d9265a4e6\",\n \"option\": \"laborum id consequat do dolore\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8381,7 +8381,7 @@ } }, { - "id": "89b33d80-bb59-4829-a7af-690bd1a8acce", + "id": "e89d2b20-1415-41d2-b6a2-1f1adfd1e09f", "name": "Find option based attribute value by id", "request": { "name": "Find option based attribute value by id", @@ -8423,7 +8423,7 @@ }, "response": [ { - "id": "2e2dc96d-91dc-4ddd-989f-12df81696d11", + "id": "0f98dcac-b4ce-409e-8d93-f38e43a840b8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8462,12 +8462,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_option\": {\n \"id\": \"e5d3dcb5-8044-a4c1-2e4e-11c22790d3fc\",\n \"uid\": \"laboris culpa officia sintnulla \",\n \"ne_attribute_id\": \"urn:uuid:97480f4e-54ac-97c3-94f6-fcf5070c576c\",\n \"option\": \"nisi ex sit quis\"\n }\n}", + "body": "{\n \"ne_attribute_option\": {\n \"id\": \"urn:uuid:1b23ca28-cc3a-5890-f584-1d9a564bdbdf\",\n \"uid\": \"eiusmodin Utlaboris enim deserun\",\n \"ne_attribute_id\": \"urn:uuid:9cf2e079-fdc0-3737-62e0-d4b9cb466b0e\",\n \"option\": \"commodo nul\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "285227b6-b188-45d3-a415-f7feefcafb5b", + "id": "cabca10d-a9d3-458d-8f3a-6eb8da28348e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8511,7 +8511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0218a3c-e5e1-41c4-abff-a4aef240f09b", + "id": "505dc070-7286-4094-8e15-86402e2abc09", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8561,7 +8561,7 @@ } }, { - "id": "d7f640f6-5bb6-46dd-abce-922ba0abfd0f", + "id": "d6351171-4cf3-45da-9f28-f1b95928389c", "name": "Update a option based attribute value by id", "request": { "name": "Update a option based attribute value by id", @@ -8604,7 +8604,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"0c7e57bd-e2fa-f4d8-092a-057e4648d05b\",\n \"option\": \"magna mollit\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:154d1c90-a422-97a5-e417-bf75975110ec\",\n \"option\": \"aliquip consequat\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8616,7 +8616,7 @@ }, "response": [ { - "id": "e1ec499f-cfc1-44fe-b922-c24b0f8232da", + "id": "ec2a3d1e-40ee-4125-b00d-e8fcaa3f4062", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8651,7 +8651,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"0c7e57bd-e2fa-f4d8-092a-057e4648d05b\",\n \"option\": \"magna mollit\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:154d1c90-a422-97a5-e417-bf75975110ec\",\n \"option\": \"aliquip consequat\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8668,12 +8668,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_option\": {\n \"id\": \"e5d3dcb5-8044-a4c1-2e4e-11c22790d3fc\",\n \"uid\": \"laboris culpa officia sintnulla \",\n \"ne_attribute_id\": \"urn:uuid:97480f4e-54ac-97c3-94f6-fcf5070c576c\",\n \"option\": \"nisi ex sit quis\"\n }\n}", + "body": "{\n \"ne_attribute_option\": {\n \"id\": \"urn:uuid:1b23ca28-cc3a-5890-f584-1d9a564bdbdf\",\n \"uid\": \"eiusmodin Utlaboris enim deserun\",\n \"ne_attribute_id\": \"urn:uuid:9cf2e079-fdc0-3737-62e0-d4b9cb466b0e\",\n \"option\": \"commodo nul\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "20432f51-06f1-472c-be56-32202b21ecb4", + "id": "f1276747-f5e2-46c7-b516-6ab0366e1833", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8708,7 +8708,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"0c7e57bd-e2fa-f4d8-092a-057e4648d05b\",\n \"option\": \"magna mollit\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:154d1c90-a422-97a5-e417-bf75975110ec\",\n \"option\": \"aliquip consequat\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8730,7 +8730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05f140c5-0fa0-405e-bd6d-975693cd3df1", + "id": "0c6f6272-1e82-4e32-b3c3-27d81aa20af7", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8765,7 +8765,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"0c7e57bd-e2fa-f4d8-092a-057e4648d05b\",\n \"option\": \"magna mollit\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:154d1c90-a422-97a5-e417-bf75975110ec\",\n \"option\": \"aliquip consequat\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8793,7 +8793,7 @@ } }, { - "id": "5007396b-fab1-4b83-8f09-57a30463f2fd", + "id": "802aa905-719b-4339-b0c1-e84a9b5083a4", "name": "Delete a option based attribute value by id", "request": { "name": "Delete a option based attribute value by id", @@ -8835,7 +8835,7 @@ }, "response": [ { - "id": "d22a9842-1ccf-4fcb-9036-d6cb9facd49b", + "id": "d5669fdc-ab6d-43ca-be2c-68c1f7e189fc", "name": "Confirmation of a deleted object", "originalRequest": { "url": { @@ -8879,7 +8879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30afe96c-90b0-4987-bd40-fc8c056fe66b", + "id": "409f6b5d-d90c-4406-b7fa-d6b7410d654c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8923,7 +8923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62e8e0c2-3f6e-4187-b951-94d438edeb00", + "id": "bbee9fdb-aeea-40b1-822d-0db0423f070a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8979,7 +8979,7 @@ "description": "", "item": [ { - "id": "93664e73-0339-4d64-9ad7-0ffba422b80a", + "id": "5a2a8649-5525-41b8-827c-af3055b87b7d", "name": "Create a profile page", "request": { "name": "Create a profile page", @@ -9023,7 +9023,7 @@ }, "response": [ { - "id": "3bab35ec-aeac-491a-afc7-ead1ce29fb9f", + "id": "4000bb6d-dcc8-4321-9943-721fbee19d80", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9080,7 +9080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b34017e-d812-4bac-8388-a583f6c66fc7", + "id": "e57c3ebb-b649-4bd3-8d62-187602c13f86", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9137,7 +9137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcb7ef74-b705-4dd1-af29-4d621fc020e8", + "id": "65bae1b9-67d5-46fc-a6e7-12e08126ff28", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9200,7 +9200,7 @@ } }, { - "id": "12ba40b3-04ff-40c7-b161-f7ad76528c3a", + "id": "e17db417-6171-4764-8ce6-dc45b86ff74e", "name": "Create a workflow page", "request": { "name": "Create a workflow page", @@ -9244,7 +9244,7 @@ }, "response": [ { - "id": "0574345e-5522-4a2c-a01a-4c4b0ae3b483", + "id": "e88bd386-2511-42ae-92e3-f0b82f11c51d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9301,7 +9301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e694f1b-1f96-40dd-8303-7dcdf7958be0", + "id": "560cb843-3019-4dc2-af91-5af95b4d37b3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9358,7 +9358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7508ecb4-aa19-4dcf-8a06-9a6fc65bece6", + "id": "04c77828-b927-4fb2-b167-47d626157f75", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9427,7 +9427,7 @@ "description": "", "item": [ { - "id": "8ddff70d-27bc-4ba8-9fdc-0509cfdc9046", + "id": "e903c8cb-219c-4e1a-927e-a008415d9abf", "name": "Create a profile type", "request": { "name": "Create a profile type", @@ -9458,7 +9458,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ex sunt adin tempor sintquis in \",\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\": \"ea cupidatatex sedcupidatat qui \",\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 veniam sintamet eudolo\",\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\": \"dolorincididunt sed officia moll\",\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\": \"elit do deseruntofficia eaveniam\",\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\": \"consectetur quis Duis utfugiat d\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aute ex magnaanim labore commodo\",\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\": \"doloreest sunt Duiscillum ex 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", @@ -9470,7 +9470,7 @@ }, "response": [ { - "id": "75916961-dcd4-4ca4-994c-e6f5af0dbfd9", + "id": "7af56ab4-5801-4a06-9a97-4d6ac4809bdb", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9504,7 +9504,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ex sunt adin tempor sintquis in \",\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\": \"ea cupidatatex sedcupidatat qui \",\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 veniam sintamet eudolo\",\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\": \"dolorincididunt sed officia moll\",\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\": \"elit do deseruntofficia eaveniam\",\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\": \"consectetur quis Duis utfugiat d\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aute ex magnaanim labore commodo\",\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\": \"doloreest sunt Duiscillum ex 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", @@ -9521,12 +9521,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"consectetur commodo Duis fugiatp\",\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\": \"in dolor Loremproident doloredol\",\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\": \"nisi amet ut consequatlaboris es\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in Lorem cillumut eiusmod minimq\",\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\": \"dolor ad magnaet laborum volupta\",\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\": \"ipsum mollit insuntlaboris fugia\",\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\": \"fugiat reprehenderit ex essedolo\",\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\": \"amet esse cupidatat Duissuntcill\",\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\": \"Excepteur do inDuis anim irure n\",\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\": \"est nisi commodo utin veniamcupi\",\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": "4755ba34-a0f3-4674-aafd-72d65bb1be38", + "id": "292bc4d4-335e-4551-8bc6-eb5e392094ea", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9560,7 +9560,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ex sunt adin tempor sintquis in \",\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\": \"ea cupidatatex sedcupidatat qui \",\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 veniam sintamet eudolo\",\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\": \"dolorincididunt sed officia moll\",\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\": \"elit do deseruntofficia eaveniam\",\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\": \"consectetur quis Duis utfugiat d\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aute ex magnaanim labore commodo\",\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\": \"doloreest sunt Duiscillum ex 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", @@ -9582,7 +9582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6368560-0462-4849-b41c-72dd29f2c373", + "id": "267bc7e7-c5e3-4dba-a0bc-c388c96cd64f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9616,7 +9616,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ex sunt adin tempor sintquis in \",\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\": \"ea cupidatatex sedcupidatat qui \",\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 veniam sintamet eudolo\",\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\": \"dolorincididunt sed officia moll\",\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\": \"elit do deseruntofficia eaveniam\",\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\": \"consectetur quis Duis utfugiat d\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"aute ex magnaanim labore commodo\",\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\": \"doloreest sunt Duiscillum ex 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", @@ -9644,7 +9644,7 @@ } }, { - "id": "80c4bb4e-84b6-430d-b89e-b7901179d24e", + "id": "4b7a41b9-41d1-4bcc-81fb-2daf7000f833", "name": "Get profile types", "request": { "name": "Get profile types", @@ -9694,7 +9694,7 @@ "type": "text/plain" }, "key": "name", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -9729,7 +9729,7 @@ }, "response": [ { - "id": "a691dde3-e0c1-44a8-8d9e-159d0dd5c008", + "id": "e5cfb303-bdbc-445c-8420-05459c75de94", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9774,7 +9774,7 @@ "type": "text/plain" }, "key": "name", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -9822,12 +9822,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_types\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"consectetursint esse incididuntd\",\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\": \"anim doloreoccaecat quis cupidat\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"velit est cupidatatconsectetur p\",\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\": \"nisisint Loremsint proident Lore\",\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\": \"esseExcepteur aliquip pariaturof\",\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\": \"deserunt quis dolore dolorDuis i\",\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 sunt inconsequatdolore u\",\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\": \"euin officiaenimminim cupidatat \",\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\": \"sedvoluptate ex ut estvoluptate \",\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\": \"ut sint dolor laborumincididunt \",\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\": 75579727,\n \"offset\": 19288194,\n \"total\": -87763656,\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\": \"qui laborum occaecat sintanim es\",\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\": \"cillum utsint ea deseruntreprehe\",\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\": \"consequat nostruddolor dolore ve\",\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\": \"deserunt velitnon exercitationel\",\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\": \"velit nulla dolorautequis in non\",\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\": \"sunt sit tempor pariatur Loremid\",\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\": \"eiusmod minimea ininexercitation\",\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\": \"voluptatedolor reprehenderit iru\",\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\": \"dolorculpa enim quisquis 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 \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"officia doloreid qui voluptate c\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n ],\n \"_metadata\": {\n \"limit\": 43149293,\n \"offset\": 31127429,\n \"total\": -15360737,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f63c5b51-af80-4dd1-8fa7-6d4f7ad66353", + "id": "ff50bc04-efd6-4b48-bca5-b3ac803e25d8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9872,7 +9872,7 @@ "type": "text/plain" }, "key": "name", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -9925,7 +9925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac438b7a-6bbf-467d-ac78-687a22a66a7f", + "id": "47edeef6-89cc-4737-b355-b365419bb412", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9970,7 +9970,7 @@ "type": "text/plain" }, "key": "name", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -10029,7 +10029,7 @@ } }, { - "id": "57e104ae-6227-4a1f-bc9e-466919ed2127", + "id": "9d54f9b2-258c-432a-8d74-62bf749e512d", "name": "Find profile type by id", "request": { "name": "Find profile type by id", @@ -10071,7 +10071,7 @@ }, "response": [ { - "id": "52b2ecdc-b0c6-457c-a966-e3764bdd14a3", + "id": "bdf30d52-0d2e-4af7-8662-226d7d99c0c0", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10110,12 +10110,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"consectetur commodo Duis fugiatp\",\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\": \"in dolor Loremproident doloredol\",\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\": \"nisi amet ut consequatlaboris es\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in Lorem cillumut eiusmod minimq\",\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\": \"dolor ad magnaet laborum volupta\",\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\": \"ipsum mollit insuntlaboris fugia\",\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\": \"fugiat reprehenderit ex essedolo\",\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\": \"amet esse cupidatat Duissuntcill\",\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\": \"Excepteur do inDuis anim irure n\",\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\": \"est nisi commodo utin veniamcupi\",\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": "1540d8eb-e4c9-40e9-bba1-8e64af85307d", + "id": "fcd333e1-076b-47ce-883f-40faa120d04d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10159,7 +10159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "212d45e8-2863-4b36-a277-8d106774302b", + "id": "61b8fe74-60a7-4324-a65b-db06a04d6a10", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10209,7 +10209,7 @@ } }, { - "id": "3c12259b-c0b6-4e10-9968-550f4b2cec0a", + "id": "3cb47719-3a1f-4ef4-a51e-21ea3e077cf1", "name": "Update a profile type by id", "request": { "name": "Update a profile type by id", @@ -10252,7 +10252,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"labore adipisicing laborum nulla\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"officia in nostrud Loremproident\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"do Lorem Ut animmollit et id tem\",\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\": \"exercitation culpanonminim conse\",\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\": \"voluptate dolore ullamco dolore \",\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 nisiut commodofugiat deser\",\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\": \"ut eu exercitation aliquipqui al\",\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\": \"Excepteur inex sint cillum ametn\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -10264,7 +10264,7 @@ }, "response": [ { - "id": "9870ad73-3aa7-4499-ba4c-031ec210b682", + "id": "88d1c22e-71af-49b3-b954-4af9d0d59b1d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10299,7 +10299,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"labore adipisicing laborum nulla\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"officia in nostrud Loremproident\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"do Lorem Ut animmollit et id tem\",\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\": \"exercitation culpanonminim conse\",\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\": \"voluptate dolore ullamco dolore \",\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 nisiut commodofugiat deser\",\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\": \"ut eu exercitation aliquipqui al\",\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\": \"Excepteur inex sint cillum ametn\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -10316,12 +10316,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"consectetur commodo Duis fugiatp\",\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\": \"in dolor Loremproident doloredol\",\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\": \"nisi amet ut consequatlaboris es\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in Lorem cillumut eiusmod minimq\",\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\": \"dolor ad magnaet laborum volupta\",\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\": \"ipsum mollit insuntlaboris fugia\",\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\": \"fugiat reprehenderit ex essedolo\",\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\": \"amet esse cupidatat Duissuntcill\",\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\": \"Excepteur do inDuis anim irure n\",\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\": \"est nisi commodo utin veniamcupi\",\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": "5ee3de8b-2219-47dc-bd82-fd69d8f3f3db", + "id": "1766ab63-7661-439c-87aa-675c46d4ef43", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10356,7 +10356,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"labore adipisicing laborum nulla\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"officia in nostrud Loremproident\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"do Lorem Ut animmollit et id tem\",\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\": \"exercitation culpanonminim conse\",\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\": \"voluptate dolore ullamco dolore \",\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 nisiut commodofugiat deser\",\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\": \"ut eu exercitation aliquipqui al\",\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\": \"Excepteur inex sint cillum ametn\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -10378,7 +10378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bfd0129-b565-4982-a320-28d8f371ae90", + "id": "41a548fa-7e73-4d2d-9b95-f198a3ab8fae", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10413,7 +10413,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile_type\": {\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"labore adipisicing laborum nulla\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"officia in nostrud Loremproident\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"do Lorem Ut animmollit et id tem\",\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\": \"exercitation culpanonminim conse\",\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\": \"voluptate dolore ullamco dolore \",\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 nisiut commodofugiat deser\",\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\": \"ut eu exercitation aliquipqui al\",\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\": \"Excepteur inex sint cillum ametn\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -10441,7 +10441,7 @@ } }, { - "id": "2fb573fb-f051-46ee-bf4c-574f50c47b32", + "id": "cbb9f304-242c-4723-8861-b7c985d5e880", "name": "Delete profile type", "request": { "name": "Delete profile type", @@ -10483,7 +10483,7 @@ }, "response": [ { - "id": "9ea5ef36-17db-46be-a6a9-6c11b927c211", + "id": "903a9a3a-288f-4c08-b6b2-e6515c6a57ad", "name": "Info about the operation", "originalRequest": { "url": { @@ -10527,7 +10527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "334b4c5a-83a8-46f3-af0f-3fcdd873f067", + "id": "9abee9ec-ffa9-4868-9017-eb0b7d0e7a8f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10571,7 +10571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf3b949c-f183-4a9f-a2bc-26564ac98888", + "id": "3e0ba790-b1e4-407f-abfe-1865dc6780d0", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10627,7 +10627,7 @@ "description": "", "item": [ { - "id": "799cd589-1eda-419a-94d7-48b7bf6e82f0", + "id": "089fe60c-6be6-44f5-82a4-c6fddca4fb21", "name": "profile_types/ne_attributes synced status", "request": { "name": "profile_types/ne_attributes synced status", @@ -10725,7 +10725,7 @@ }, "response": [ { - "id": "5470ac6c-d361-4485-84bb-028df40cd47c", + "id": "e5368e94-64f9-4344-a503-1bf1398e6857", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10811,12 +10811,12 @@ "value": "application/json" } ], - "body": "{\n \"form\": {\n \"count\": 5,\n \"records\": [\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"advoluptate inaliquip nullasit c\",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n },\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"consequat labore occaecatnonculp\",\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\": \"nostrud consequat magna consecte\",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n },\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"adsunteuofficia cupidatat sednos\",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8b1ddb09-ab31-479c-a7c0-b76c3f66d333", + "id": "7cc97a8e-daf3-4c11-a6d3-0f4bf47d648d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10907,7 +10907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84967918-749d-46da-843b-9694eef43543", + "id": "9355f5da-0cb8-401a-b65f-43b6b1437789", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11004,7 +11004,7 @@ } }, { - "id": "30ed63bf-6c98-49ed-bbdb-049d38b218d9", + "id": "246bfebe-3885-46d1-be0b-507d53ff64c4", "name": "Create a synced attribute", "request": { "name": "Create a synced attribute", @@ -11054,7 +11054,7 @@ }, "response": [ { - "id": "99945553-e1e6-4db5-9aaf-dc996a6bf273", + "id": "b0e31cdd-1c47-4685-8b78-add1991b87a9", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11112,7 +11112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb06e86a-9c41-4dd9-b225-cc825fa8efe2", + "id": "1e628d60-081a-4228-9a9b-292971f27bda", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11170,7 +11170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91e44d57-fa7d-4720-a4cf-cb85f29c817f", + "id": "493f6216-ff15-4c7b-8682-f35ba5870793", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11234,7 +11234,7 @@ } }, { - "id": "c71d7548-a301-4444-8ed4-2ff96ab37d0a", + "id": "449f3ab4-be84-4ba8-93c5-44c12c9ec554", "name": "Delete synced attribute", "request": { "name": "Delete synced attribute", @@ -11288,7 +11288,7 @@ }, "response": [ { - "id": "bc117961-2d66-4b48-9115-04ff2e3fc7ff", + "id": "6314c507-ce01-468b-b6aa-95eaccd0215c", "name": "Info about the operation", "originalRequest": { "url": { @@ -11334,7 +11334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8310563e-e5ac-477b-9ec4-c9f0ebd7e879", + "id": "b19f4eac-72bc-4c85-abb5-a198fed833c0", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11380,7 +11380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "753aa369-1729-464c-a324-776277a1d721", + "id": "92d2ca65-44bd-4c65-a012-b89755547e48", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11438,7 +11438,7 @@ "description": "", "item": [ { - "id": "a0467f7d-5d8b-4a2c-bc18-de78385c616e", + "id": "fbf221df-e68a-4e64-b222-ec65b8f3fc74", "name": "Create a profile type role", "request": { "name": "Create a profile type role", @@ -11481,7 +11481,7 @@ }, "response": [ { - "id": "56d7c23c-a369-41a8-9525-8aeb3a5a853a", + "id": "77a6af21-1727-4a0a-bf02-20df104bdd9f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11537,7 +11537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "769d9815-5e65-487b-bcb8-91b147ad921c", + "id": "387f615e-eaca-40b9-8313-28acad0c7836", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11593,7 +11593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6b895b9-2fb9-443a-8708-84bde6055c4b", + "id": "a9fb6e5a-0921-4266-bd9f-b289ec2e6737", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11661,7 +11661,7 @@ "description": "", "item": [ { - "id": "e54bf75e-2f68-41d1-b0b7-6017d02c11b4", + "id": "a08cfe56-ad1a-41ea-8d2f-41362a7692e2", "name": "Create a profile", "request": { "name": "Create a profile", @@ -11692,7 +11692,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"est tempor occaecat labore esse\",\n \"profile_type_id\": \"urn:uuid:2fbaa619-f741-7e43-271a-dec643518e03\",\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}", + "raw": "{\n \"profile\": {\n \"name\": \"in\",\n \"profile_type_id\": \"4256530c-b12f-d682-6070-e2fee1507b92\",\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}", "options": { "raw": { "headerFamily": "json", @@ -11704,7 +11704,7 @@ }, "response": [ { - "id": "536c2b6a-6ff1-4527-bc7e-ec620b108bf1", + "id": "9fae5acc-f484-4006-a3b2-7d31152d175e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11738,7 +11738,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"est tempor occaecat labore esse\",\n \"profile_type_id\": \"urn:uuid:2fbaa619-f741-7e43-271a-dec643518e03\",\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}", + "raw": "{\n \"profile\": {\n \"name\": \"in\",\n \"profile_type_id\": \"4256530c-b12f-d682-6070-e2fee1507b92\",\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}", "options": { "raw": { "headerFamily": "json", @@ -11755,12 +11755,12 @@ "value": "application/json" } ], - "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"consecteturest culpa amet quiull\",\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\": \"ut cillum sunt reprehenderitad a\",\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": "92ceec1e-54a2-4acb-a905-a7474fb3dd6b", + "id": "c5b6ceb6-0b97-4654-b38c-db1de2f03f30", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11794,7 +11794,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"est tempor occaecat labore esse\",\n \"profile_type_id\": \"urn:uuid:2fbaa619-f741-7e43-271a-dec643518e03\",\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}", + "raw": "{\n \"profile\": {\n \"name\": \"in\",\n \"profile_type_id\": \"4256530c-b12f-d682-6070-e2fee1507b92\",\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}", "options": { "raw": { "headerFamily": "json", @@ -11816,7 +11816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c34ae34-e3b8-483f-af1e-475d5600432c", + "id": "37e034f8-53a8-4abb-97d2-be4045ddf876", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11850,7 +11850,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"est tempor occaecat labore esse\",\n \"profile_type_id\": \"urn:uuid:2fbaa619-f741-7e43-271a-dec643518e03\",\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}", + "raw": "{\n \"profile\": {\n \"name\": \"in\",\n \"profile_type_id\": \"4256530c-b12f-d682-6070-e2fee1507b92\",\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}", "options": { "raw": { "headerFamily": "json", @@ -11878,7 +11878,7 @@ } }, { - "id": "15029393-f88a-459c-9654-fab65280554f", + "id": "4c5dd25c-4429-4b5f-9870-13d70858971b", "name": "Get profiles", "request": { "name": "Get profiles", @@ -11937,7 +11937,7 @@ "type": "text/plain" }, "key": "name", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -11946,7 +11946,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -11955,7 +11955,7 @@ "type": "text/plain" }, "key": "status", - "value": "Terminated" + "value": "Inactive" }, { "disabled": false, @@ -11981,7 +11981,7 @@ }, "response": [ { - "id": "8993469f-153d-4db2-b416-06579d44b1f4", + "id": "a1ba3129-7292-452e-b57b-b4cfcc29b594", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12035,7 +12035,7 @@ "type": "text/plain" }, "key": "name", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -12044,7 +12044,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -12053,7 +12053,7 @@ "type": "text/plain" }, "key": "status", - "value": "Terminated" + "value": "Inactive" }, { "disabled": false, @@ -12092,12 +12092,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"proidentdolorexercitation sit ir\",\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\": \"fugiat esse velit eamollit in ex\",\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\": -63790985,\n \"offset\": -83191448,\n \"total\": 82933857,\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\": \"ipsum minim quiproident reprehen\",\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\": \"officia labore amet deserunt sun\",\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\": -27866049,\n \"offset\": -16323473,\n \"total\": 28745305,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bdba593b-3282-445b-b3ee-20e9b5a477a0", + "id": "c5badc19-2011-426e-add6-1574f51ed5af", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12151,7 +12151,7 @@ "type": "text/plain" }, "key": "name", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -12160,7 +12160,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -12169,7 +12169,7 @@ "type": "text/plain" }, "key": "status", - "value": "Terminated" + "value": "Inactive" }, { "disabled": false, @@ -12213,7 +12213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0899a611-cd31-43c5-91ca-dcd0d4fccdd5", + "id": "8d99c15e-eac0-4346-9864-ef7d26c298df", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12267,7 +12267,7 @@ "type": "text/plain" }, "key": "name", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -12276,7 +12276,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -12285,7 +12285,7 @@ "type": "text/plain" }, "key": "status", - "value": "Terminated" + "value": "Inactive" }, { "disabled": false, @@ -12335,7 +12335,7 @@ } }, { - "id": "bbfe2672-7a47-4804-b0d5-d1f692dacdeb", + "id": "838efd48-f5b1-4e17-b750-b565f0dbd52b", "name": "Create multiple profiles", "request": { "name": "Create multiple profiles", @@ -12366,7 +12366,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"dolor non reprehenderit\",\n \"profile_type_id\": \"a0044311-8628-7566-fed7-83831f969b5d\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"voluptate Excepteur aliqua\",\n \"profile_type_id\": \"urn:uuid:90bbf76d-4dae-b119-118d-a02983b4ae2b\",\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}", + "raw": "{\n \"profiles\": [\n {\n \"name\": \"tempor dolor Ut culpa\",\n \"profile_type_id\": \"22d9fbf0-1540-86eb-4949-a3b9feb6bf53\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"deserunt dolore exercitation\",\n \"profile_type_id\": \"cd0462d8-ee82-2bb8-d53e-d5ad66f3a179\",\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 ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12378,7 +12378,7 @@ }, "response": [ { - "id": "0fe6ae0b-1f58-4131-85a4-4925da28b4ea", + "id": "5d53862b-c1b6-44b3-945e-c58ece806f63", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12412,7 +12412,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"dolor non reprehenderit\",\n \"profile_type_id\": \"a0044311-8628-7566-fed7-83831f969b5d\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"voluptate Excepteur aliqua\",\n \"profile_type_id\": \"urn:uuid:90bbf76d-4dae-b119-118d-a02983b4ae2b\",\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}", + "raw": "{\n \"profiles\": [\n {\n \"name\": \"tempor dolor Ut culpa\",\n \"profile_type_id\": \"22d9fbf0-1540-86eb-4949-a3b9feb6bf53\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"deserunt dolore exercitation\",\n \"profile_type_id\": \"cd0462d8-ee82-2bb8-d53e-d5ad66f3a179\",\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 ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12429,12 +12429,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nostrud culpa aliquip incididunt\",\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\": \"sed velitin tempor dolorvoluptat\",\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\": \"magna consecteturlaborumea aliqu\",\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\": \"utut adipisicing autetemporqui a\",\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": "e31989bb-2998-4d1e-a5bb-b265d3b2da35", + "id": "95301c4e-56ec-442d-b272-20f1fe590f9e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12468,7 +12468,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"dolor non reprehenderit\",\n \"profile_type_id\": \"a0044311-8628-7566-fed7-83831f969b5d\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"voluptate Excepteur aliqua\",\n \"profile_type_id\": \"urn:uuid:90bbf76d-4dae-b119-118d-a02983b4ae2b\",\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}", + "raw": "{\n \"profiles\": [\n {\n \"name\": \"tempor dolor Ut culpa\",\n \"profile_type_id\": \"22d9fbf0-1540-86eb-4949-a3b9feb6bf53\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"deserunt dolore exercitation\",\n \"profile_type_id\": \"cd0462d8-ee82-2bb8-d53e-d5ad66f3a179\",\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 ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12490,7 +12490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5a1cd9f-8b79-4e05-a8d8-fd8d862782b0", + "id": "f31559bd-5a2e-4685-a46a-b24b50a5bb15", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12524,7 +12524,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"dolor non reprehenderit\",\n \"profile_type_id\": \"a0044311-8628-7566-fed7-83831f969b5d\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"voluptate Excepteur aliqua\",\n \"profile_type_id\": \"urn:uuid:90bbf76d-4dae-b119-118d-a02983b4ae2b\",\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}", + "raw": "{\n \"profiles\": [\n {\n \"name\": \"tempor dolor Ut culpa\",\n \"profile_type_id\": \"22d9fbf0-1540-86eb-4949-a3b9feb6bf53\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"deserunt dolore exercitation\",\n \"profile_type_id\": \"cd0462d8-ee82-2bb8-d53e-d5ad66f3a179\",\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 ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12552,7 +12552,7 @@ } }, { - "id": "cfff0c49-53a7-4d50-a011-9e995389be13", + "id": "7a030ce6-6f66-41f8-8b8d-55dfdc990778", "name": "Update multiple profiles", "request": { "name": "Update multiple profiles", @@ -12583,7 +12583,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"3b1cf64a-a3a7-d637-385d-abe933d283f2\",\n \"name\": \"deserunt et laboris exercitation nostrud\",\n \"profile_type_id\": \"7645867c-83eb-4ab7-06d4-76a105a9b889\",\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\": \"0f4f4586-f1a1-1dbe-360f-3e344e073ff5\",\n \"name\": \"ad Ut\",\n \"profile_type_id\": \"urn:uuid:2a036f66-4281-57b5-a071-4f87f2f8d7f4\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:986b6170-a233-7bbd-737b-1104003aaf4c\",\n \"name\": \"enim pariatur nostrud\",\n \"profile_type_id\": \"urn:uuid:f23afc1b-600e-1efc-e983-8c38b4a7da82\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"4cecef8b-1360-64b4-4d28-7953bcb60a54\",\n \"name\": \"officia tempor reprehenderit sed dolore\",\n \"profile_type_id\": \"urn:uuid:c2c5a2ba-d9a0-1739-1931-ffb4aa734f1e\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12595,7 +12595,7 @@ }, "response": [ { - "id": "4c9f3a49-9cbf-4636-9bd1-9c6f9f64c7d4", + "id": "738b082f-fa1f-4bfb-a3c9-f76acb522407", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12629,7 +12629,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"3b1cf64a-a3a7-d637-385d-abe933d283f2\",\n \"name\": \"deserunt et laboris exercitation nostrud\",\n \"profile_type_id\": \"7645867c-83eb-4ab7-06d4-76a105a9b889\",\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\": \"0f4f4586-f1a1-1dbe-360f-3e344e073ff5\",\n \"name\": \"ad Ut\",\n \"profile_type_id\": \"urn:uuid:2a036f66-4281-57b5-a071-4f87f2f8d7f4\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:986b6170-a233-7bbd-737b-1104003aaf4c\",\n \"name\": \"enim pariatur nostrud\",\n \"profile_type_id\": \"urn:uuid:f23afc1b-600e-1efc-e983-8c38b4a7da82\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"4cecef8b-1360-64b4-4d28-7953bcb60a54\",\n \"name\": \"officia tempor reprehenderit sed dolore\",\n \"profile_type_id\": \"urn:uuid:c2c5a2ba-d9a0-1739-1931-ffb4aa734f1e\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12646,12 +12646,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nostrud culpa aliquip incididunt\",\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\": \"sed velitin tempor dolorvoluptat\",\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\": \"magna consecteturlaborumea aliqu\",\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\": \"utut adipisicing autetemporqui a\",\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": "db89a857-65d5-4d9d-8c54-77afe1461165", + "id": "776f6d6c-a214-4c1e-aabd-cbafd48d1b73", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12685,7 +12685,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"3b1cf64a-a3a7-d637-385d-abe933d283f2\",\n \"name\": \"deserunt et laboris exercitation nostrud\",\n \"profile_type_id\": \"7645867c-83eb-4ab7-06d4-76a105a9b889\",\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\": \"0f4f4586-f1a1-1dbe-360f-3e344e073ff5\",\n \"name\": \"ad Ut\",\n \"profile_type_id\": \"urn:uuid:2a036f66-4281-57b5-a071-4f87f2f8d7f4\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:986b6170-a233-7bbd-737b-1104003aaf4c\",\n \"name\": \"enim pariatur nostrud\",\n \"profile_type_id\": \"urn:uuid:f23afc1b-600e-1efc-e983-8c38b4a7da82\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"4cecef8b-1360-64b4-4d28-7953bcb60a54\",\n \"name\": \"officia tempor reprehenderit sed dolore\",\n \"profile_type_id\": \"urn:uuid:c2c5a2ba-d9a0-1739-1931-ffb4aa734f1e\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12707,7 +12707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "168aac9b-3e8e-4f54-8321-d8067400293b", + "id": "60fb6fc5-e1c2-4250-b368-8c43849821b8", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12741,7 +12741,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"3b1cf64a-a3a7-d637-385d-abe933d283f2\",\n \"name\": \"deserunt et laboris exercitation nostrud\",\n \"profile_type_id\": \"7645867c-83eb-4ab7-06d4-76a105a9b889\",\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\": \"0f4f4586-f1a1-1dbe-360f-3e344e073ff5\",\n \"name\": \"ad Ut\",\n \"profile_type_id\": \"urn:uuid:2a036f66-4281-57b5-a071-4f87f2f8d7f4\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:986b6170-a233-7bbd-737b-1104003aaf4c\",\n \"name\": \"enim pariatur nostrud\",\n \"profile_type_id\": \"urn:uuid:f23afc1b-600e-1efc-e983-8c38b4a7da82\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"4cecef8b-1360-64b4-4d28-7953bcb60a54\",\n \"name\": \"officia tempor reprehenderit sed dolore\",\n \"profile_type_id\": \"urn:uuid:c2c5a2ba-d9a0-1739-1931-ffb4aa734f1e\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12769,7 +12769,7 @@ } }, { - "id": "6a48b00c-4762-4efa-9710-ae990074caf3", + "id": "ab6442de-1c52-42c6-9654-7b782cbde7ca", "name": "Delete multiple profiles", "request": { "name": "Delete multiple profiles", @@ -12800,7 +12800,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"a40a68d9-d568-6441-bd21-38101e5ab54f\"\n },\n {\n \"id\": \"urn:uuid:fef6133a-51ee-f023-d853-c18448058d24\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:c1957447-9c49-87b4-35b5-ea58b4af50dc\"\n },\n {\n \"id\": \"urn:uuid:f807a42c-152c-3a8c-1df0-4f44cd86a89b\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12812,7 +12812,7 @@ }, "response": [ { - "id": "ee4f4a8c-f506-4f71-8649-458381e957b2", + "id": "13a41ae9-18f0-47d3-8beb-bfdbf96cef42", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12846,7 +12846,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"a40a68d9-d568-6441-bd21-38101e5ab54f\"\n },\n {\n \"id\": \"urn:uuid:fef6133a-51ee-f023-d853-c18448058d24\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:c1957447-9c49-87b4-35b5-ea58b4af50dc\"\n },\n {\n \"id\": \"urn:uuid:f807a42c-152c-3a8c-1df0-4f44cd86a89b\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12863,12 +12863,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nostrud culpa aliquip incididunt\",\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\": \"sed velitin tempor dolorvoluptat\",\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\": \"magna consecteturlaborumea aliqu\",\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\": \"utut adipisicing autetemporqui a\",\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": "e568cf91-7870-44f4-b489-5dd5e8e23caf", + "id": "fb59c4d5-04b7-4bf9-aa66-bff1ace9728a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12902,7 +12902,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"a40a68d9-d568-6441-bd21-38101e5ab54f\"\n },\n {\n \"id\": \"urn:uuid:fef6133a-51ee-f023-d853-c18448058d24\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:c1957447-9c49-87b4-35b5-ea58b4af50dc\"\n },\n {\n \"id\": \"urn:uuid:f807a42c-152c-3a8c-1df0-4f44cd86a89b\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12924,7 +12924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0bfe677-ad60-4af7-8b6c-f34c6db6aa8a", + "id": "7965df9a-ae19-4427-b111-59f8c3da41b0", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12958,7 +12958,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"a40a68d9-d568-6441-bd21-38101e5ab54f\"\n },\n {\n \"id\": \"urn:uuid:fef6133a-51ee-f023-d853-c18448058d24\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:c1957447-9c49-87b4-35b5-ea58b4af50dc\"\n },\n {\n \"id\": \"urn:uuid:f807a42c-152c-3a8c-1df0-4f44cd86a89b\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -12986,7 +12986,7 @@ } }, { - "id": "f389a4ce-0c96-4ace-8eba-7c2787522f5f", + "id": "29c8bbff-6559-43f9-9c8e-73b80f7eb083", "name": "Find profile by id", "request": { "name": "Find profile by id", @@ -13028,7 +13028,7 @@ }, "response": [ { - "id": "57c9ee4e-f124-4a9f-baf8-2f90a7ec37ff", + "id": "32dc0533-d54f-4b01-a3a5-ab18d3f5e070", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13067,12 +13067,12 @@ "value": "application/json" } ], - "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"consecteturest culpa amet quiull\",\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\": \"ut cillum sunt reprehenderitad a\",\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": "56cc85a2-766e-4fdd-8d3a-7e7038afaabe", + "id": "289b27a9-916d-4345-9349-8b7b4e53a746", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13116,7 +13116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87b0efc7-6603-4ed9-b405-31be9a4c78de", + "id": "141743f6-7fa6-4d38-854c-ac9040dfb4cc", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13166,7 +13166,7 @@ } }, { - "id": "13dd6f70-e92c-4081-ba30-f0373387ddb7", + "id": "70503817-7bb1-403d-ac3d-9f0599db3fcf", "name": "Update a profile by id", "request": { "name": "Update a profile by id", @@ -13209,7 +13209,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"nisi\",\n \"profile_type_id\": \"a18f2dbb-ac54-0b55-08f6-8bd3e7170154\",\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}", + "raw": "{\n \"profile\": {\n \"name\": \"quis laborum\",\n \"profile_type_id\": \"urn:uuid:62fec51b-02af-b6a2-7080-d80c52e4c3b9\",\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", @@ -13221,7 +13221,7 @@ }, "response": [ { - "id": "74d8ce43-6719-4751-8387-f073224abd22", + "id": "f9a6aa71-3b70-4e51-8dfb-8203fd637965", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13256,7 +13256,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"nisi\",\n \"profile_type_id\": \"a18f2dbb-ac54-0b55-08f6-8bd3e7170154\",\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}", + "raw": "{\n \"profile\": {\n \"name\": \"quis laborum\",\n \"profile_type_id\": \"urn:uuid:62fec51b-02af-b6a2-7080-d80c52e4c3b9\",\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", @@ -13273,12 +13273,12 @@ "value": "application/json" } ], - "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"consecteturest culpa amet quiull\",\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\": \"ut cillum sunt reprehenderitad a\",\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": "a36c1585-c72d-44cb-93be-6611639b05e0", + "id": "12fd42b1-d406-4034-be0f-b2114d9f1268", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13313,7 +13313,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"nisi\",\n \"profile_type_id\": \"a18f2dbb-ac54-0b55-08f6-8bd3e7170154\",\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}", + "raw": "{\n \"profile\": {\n \"name\": \"quis laborum\",\n \"profile_type_id\": \"urn:uuid:62fec51b-02af-b6a2-7080-d80c52e4c3b9\",\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", @@ -13335,7 +13335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9aeaf99d-c9d2-4aad-81d7-8efae1e3b301", + "id": "c638bd4a-63ef-49e9-adc8-1610f8ac83b0", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13370,7 +13370,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"nisi\",\n \"profile_type_id\": \"a18f2dbb-ac54-0b55-08f6-8bd3e7170154\",\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}", + "raw": "{\n \"profile\": {\n \"name\": \"quis laborum\",\n \"profile_type_id\": \"urn:uuid:62fec51b-02af-b6a2-7080-d80c52e4c3b9\",\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", @@ -13398,7 +13398,7 @@ } }, { - "id": "ee88eda4-a656-49a4-970a-eafa31e8800e", + "id": "df2b9ac5-0378-47c3-8336-a584a42787f3", "name": "Delete a single profile", "request": { "name": "Delete a single profile", @@ -13440,7 +13440,7 @@ }, "response": [ { - "id": "9849b78f-cddf-465a-9a38-19abbb5394bc", + "id": "0772d1ee-0d43-4aaf-8357-53d6d302afee", "name": "The Profile was successfully deleted.", "originalRequest": { "url": { @@ -13474,7 +13474,7 @@ "_postman_previewlanguage": "text" }, { - "id": "eab2a79e-311c-46c5-b6fa-65bc87950490", + "id": "5e50d430-f512-482e-bc59-1edf34f26862", "name": "Error deleting Profile", "originalRequest": { "url": { @@ -13513,12 +13513,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": \"Duis in\"\n}", + "body": "{\n \"error\": \"occaecat consequat esse cupidatat\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "630c76f7-64cf-4f2b-8b2a-86c81ca9c008", + "id": "c4afd35b-9a05-4747-b1e8-1a53ae397dfe", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13568,7 +13568,7 @@ } }, { - "id": "74d8b498-837e-4904-9ce6-7bf873e31779", + "id": "b57bda85-a22c-49a9-bd0f-b37ebeff3d87", "name": "Retrieves the URL of an attachment attribute value from a profile", "request": { "name": "Retrieves the URL of an attachment attribute value from a profile", @@ -13622,7 +13622,7 @@ }, "response": [ { - "id": "1d847a2c-fc1c-4ab0-ad02-d0f41a6bce6b", + "id": "c38d4d5c-8cff-4518-aa7e-e20823f1da4d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13663,12 +13663,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"et occaecat esse elit\"\n}", + "body": "{\n \"url\": \"fugiat do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "64319f25-cb2a-464c-9b5d-95ce781b72d5", + "id": "d73659c3-4fe3-4801-a19a-eeb6976ea5f8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13714,7 +13714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07acfcde-3ae3-443b-ae2f-2f4727d917ad", + "id": "bf327a19-bc73-48e1-8c27-614a423dc0d9", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13766,7 +13766,7 @@ } }, { - "id": "e05c3946-132d-4c73-a060-e97d506915b1", + "id": "1772d0a0-c058-4d4b-a8f9-d631c5091b70", "name": "Uploads a new attachment attribute value to a profile", "request": { "name": "Uploads a new attachment attribute value to a profile", @@ -13828,7 +13828,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum dolore", + "value": "deserunt nisi enim qui", "type": "text" } ] @@ -13837,7 +13837,7 @@ }, "response": [ { - "id": "1f451aeb-3b5a-477f-b502-0e016a98e40e", + "id": "f88b7f07-c681-46ff-9912-06723e374199", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13881,7 +13881,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum dolore", + "value": "deserunt nisi enim qui", "type": "text" } ] @@ -13895,12 +13895,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"et occaecat esse elit\"\n}", + "body": "{\n \"url\": \"fugiat do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0493c603-61d9-44e7-8c6c-b2c7f8e325a8", + "id": "5c5e738d-89e6-4876-908c-645bb25e8b44", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13944,7 +13944,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum dolore", + "value": "deserunt nisi enim qui", "type": "text" } ] @@ -13963,7 +13963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "135863ca-6626-4f2d-a7ff-92ada5a1b684", + "id": "33c5f468-7bc8-41e6-ac95-75cc0ab2d3ce", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14007,7 +14007,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum dolore", + "value": "deserunt nisi enim qui", "type": "text" } ] @@ -14032,7 +14032,7 @@ } }, { - "id": "67b4414d-d15b-4583-8d6f-adbd46266ab4", + "id": "e547ca44-acfc-4cff-86fc-6cdd01bb51d8", "name": "Retrieves the URL of the profile avatar", "request": { "name": "Retrieves the URL of the profile avatar", @@ -14075,7 +14075,7 @@ }, "response": [ { - "id": "8d89ddc4-dcff-4548-9584-3b2d2196da16", + "id": "6c7fb31d-58f3-49f8-a26f-77ab34262f23", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14115,12 +14115,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"et occaecat esse elit\"\n}", + "body": "{\n \"url\": \"fugiat do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "31d9ba7e-dc75-4255-8bbf-f9dd94a53902", + "id": "50fe13b7-bc5b-4000-a072-e3d29dc717d5", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14165,7 +14165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b23f9613-b584-49ab-a2a9-5b83731dc80d", + "id": "b9c19b72-70e2-4c09-8984-ed1f0b33aa9d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14216,7 +14216,7 @@ } }, { - "id": "c6047fac-7ea6-4e17-851a-2b8e82750eb3", + "id": "450cbdc8-833a-4af7-b5c4-68312f18de15", "name": "Uploads a new profile avatar", "request": { "name": "Uploads a new profile avatar", @@ -14267,7 +14267,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum dolore", + "value": "deserunt nisi enim qui", "type": "text" } ] @@ -14276,7 +14276,7 @@ }, "response": [ { - "id": "21821ae7-a9e7-4e7e-bc87-275c884271d8", + "id": "e5101b73-fe94-43b7-a6e2-3928bab1abee", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14319,7 +14319,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum dolore", + "value": "deserunt nisi enim qui", "type": "text" } ] @@ -14333,12 +14333,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"et occaecat esse elit\"\n}", + "body": "{\n \"url\": \"fugiat do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7a944e12-f140-4183-b771-9fa357d04536", + "id": "5bac9ffb-ba60-41e9-ac0c-4e6f3736825d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14381,7 +14381,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum dolore", + "value": "deserunt nisi enim qui", "type": "text" } ] @@ -14400,7 +14400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9388289-32e4-4c5d-a1d6-6899c6e62eab", + "id": "55eddfc9-84c2-45a9-a70a-f1fa27ff5033", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14443,7 +14443,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum dolore", + "value": "deserunt nisi enim qui", "type": "text" } ] @@ -14474,7 +14474,7 @@ "description": "", "item": [ { - "id": "4db36a44-e33d-40a8-82e2-3e2b7548665b", + "id": "c9ec91fb-a955-4323-817e-d984edf65b8d", "name": "Get risk score data in bulk", "request": { "name": "Get risk score data in bulk", @@ -14524,7 +14524,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -14542,7 +14542,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -14551,7 +14551,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -14560,7 +14560,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -14586,7 +14586,7 @@ }, "response": [ { - "id": "a0208be1-6a22-4801-bb46-eb98b4f6086d", + "id": "99b8053c-5933-49c4-a479-c6da949b467c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14631,7 +14631,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -14649,7 +14649,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -14658,7 +14658,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -14667,7 +14667,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -14706,12 +14706,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_scores\": [\n {\n \"id\": \"83f47ba7-053e-5867-13d9-e7f1b7becc02\",\n \"uid\": \"adipisicingconsectetur nulla ips\",\n \"object_id\": \"urn:uuid:509c8346-4f21-8625-7df0-dd91772dfaaa\",\n \"object_type\": \"Profile\",\n \"overall_score\": 97419407.67,\n \"overall_risk_level_id\": \"630f66f1-3fdb-d1a0-bf41-90c7831b672d\",\n \"impact_score\": 49345130.62,\n \"impact_risk_level_id\": \"urn:uuid:768a63b8-f5fe-1fc2-c3a2-dbd042bb3a16\",\n \"probability_score\": 70431529.01,\n \"probability_risk_level_id\": \"3c3bd018-df4f-6b3a-a6f7-4c92d2ce214f\"\n },\n {\n \"id\": \"urn:uuid:6b5ca53a-362a-0d3b-8348-9b7433904355\",\n \"uid\": \"quis dolor tempor consectetur in\",\n \"object_id\": \"urn:uuid:7ca586a5-beb2-bdcf-fd20-f4c7eab4cc10\",\n \"object_type\": \"Profile\",\n \"overall_score\": 118209729.25,\n \"overall_risk_level_id\": \"urn:uuid:cc70e839-b83d-dcb4-b2a2-0d5336d03294\",\n \"impact_score\": 34528332.67,\n \"impact_risk_level_id\": \"urn:uuid:7c67453d-e20e-3233-d48e-c17c97f979af\",\n \"probability_score\": 100972927.42,\n \"probability_risk_level_id\": \"1241548d-1c78-e677-40c1-07ae7493fd0f\"\n }\n ],\n \"_metadata\": {\n \"limit\": -31261521,\n \"offset\": -35630292,\n \"total\": 89419328,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"risk_scores\": [\n {\n \"id\": \"8c1dfb1d-529c-21d8-5d4c-c31f31bde065\",\n \"uid\": \"cillum nostrud sedDuis commodofu\",\n \"object_id\": \"urn:uuid:cdacab88-eb7d-7d2b-75af-758ada3d98bb\",\n \"object_type\": \"Profile\",\n \"overall_score\": 3508635.77,\n \"overall_risk_level_id\": \"urn:uuid:023800eb-fcb2-27c8-4f3e-f7b8889c17c1\",\n \"impact_score\": 126308910.65,\n \"impact_risk_level_id\": \"urn:uuid:6e31c66c-edd7-091e-55d8-c3431a6d25fc\",\n \"probability_score\": 62006714.68,\n \"probability_risk_level_id\": \"db3f5d9b-d9df-1ea1-99ef-d5d9d36d6919\"\n },\n {\n \"id\": \"urn:uuid:ec303e44-3409-af1f-7058-d0fc3b0e970a\",\n \"uid\": \"ex aute exercitation aliqualabor\",\n \"object_id\": \"2ebbdc6d-d764-8fb6-5a8b-c2758cf5d498\",\n \"object_type\": \"Profile\",\n \"overall_score\": 93126404.59,\n \"overall_risk_level_id\": \"urn:uuid:a96c6db3-c3ac-06e4-dd20-c7fe406e73e6\",\n \"impact_score\": 176036411.81,\n \"impact_risk_level_id\": \"b1c2272c-2c03-8e90-bc40-4fc3d90501c8\",\n \"probability_score\": 155330095.46,\n \"probability_risk_level_id\": \"2289c86d-c232-7500-c474-958c955ffb0d\"\n }\n ],\n \"_metadata\": {\n \"limit\": 14249372,\n \"offset\": -84812161,\n \"total\": -64113207,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2064c9b8-1a67-4520-b662-123e49ff170f", + "id": "151e0e4a-3161-4597-8360-74d50cd8fe12", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14756,7 +14756,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -14774,7 +14774,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -14783,7 +14783,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -14792,7 +14792,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -14836,7 +14836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "787061ea-eef6-4791-b788-25228028ed3d", + "id": "d578b096-2d16-4d54-9c76-2c478f7f1e96", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14881,7 +14881,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -14899,7 +14899,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -14908,7 +14908,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -14917,7 +14917,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -14967,7 +14967,7 @@ } }, { - "id": "0cfc1250-a496-4746-9c38-f78959fccbc0", + "id": "ad40d837-3bbe-4697-9fd9-e32f413e233f", "name": "Find risk score data by id", "request": { "name": "Find risk score data by id", @@ -15009,7 +15009,7 @@ }, "response": [ { - "id": "dc7c70a4-edc5-4474-b68e-2b4429cc8997", + "id": "ff07bd5d-d122-466c-b033-62eedf385d5f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15048,12 +15048,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_score\": {\n \"id\": \"urn:uuid:780fa428-b94f-1805-9f4c-77e2414bac6c\",\n \"uid\": \"irurepariatur aliquip ea officia\",\n \"object_id\": \"7bc2d9f8-491a-894e-7707-411a7d5a3c54\",\n \"object_type\": \"WorkflowSession\",\n \"overall_score\": 176979323.77,\n \"overall_risk_level_id\": \"urn:uuid:9787705a-91c2-cd85-272d-bb2a6e2679b0\",\n \"impact_score\": 81140261.45,\n \"impact_risk_level_id\": \"urn:uuid:319b95a5-b098-ace1-7e4e-c6806f75b3b1\",\n \"probability_score\": 179320185.01,\n \"probability_risk_level_id\": \"1f63b787-9240-2b7b-80c2-5770d8222c88\"\n }\n}", + "body": "{\n \"risk_score\": {\n \"id\": \"f2f0970d-11e6-ddba-e2c5-8ce11fc9e7c3\",\n \"uid\": \"elit deserunt nulla aliquip esti\",\n \"object_id\": \"urn:uuid:0450f1eb-0b96-f541-8962-df218378e5aa\",\n \"object_type\": \"Profile\",\n \"overall_score\": 192770873.03,\n \"overall_risk_level_id\": \"722ad990-56c9-8c6c-c94a-005cbce2fc46\",\n \"impact_score\": 152061843.81,\n \"impact_risk_level_id\": \"26e49864-9f35-b3e8-21de-f9e4351b480e\",\n \"probability_score\": 20955323.66,\n \"probability_risk_level_id\": \"urn:uuid:b7f1950d-ee38-b4e2-69a5-a36e43fa4f6c\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e79a88b-10cb-4c7b-a2c1-52ba5a653db9", + "id": "65af2b34-7c99-4c3d-9ab0-fc0eb79f6749", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15097,7 +15097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e44b4d9-b907-46eb-bb0b-a1a8d82362cf", + "id": "9aea05ba-6c6a-483c-8a79-5c3ecef8fd3d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15153,7 +15153,7 @@ "description": "", "item": [ { - "id": "7e9060e9-e9af-4fe4-9219-81b69b7b87f1", + "id": "d91e7fa3-0169-46bb-aa34-36c828a28123", "name": "Get risk level data in bulk", "request": { "name": "Get risk level data in bulk", @@ -15203,7 +15203,7 @@ "type": "text/plain" }, "key": "label", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -15229,7 +15229,7 @@ }, "response": [ { - "id": "8644a79a-82d0-4b6c-b39a-510ccb0e6e5d", + "id": "912281a7-cc91-479a-bef6-7012f4c1ee75", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15274,7 +15274,7 @@ "type": "text/plain" }, "key": "label", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -15313,12 +15313,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_levels\": [\n {\n \"id\": \"8dfd3802-dc63-38ab-2c91-58d32d4a0e59\",\n \"uid\": \"utipsum dolor aliquipveniam cill\",\n \"label\": \"laboris deserunt\",\n \"points\": 93966563.72,\n \"order\": 91676305\n },\n {\n \"id\": \"urn:uuid:b587f62c-4b40-1456-a49b-f7ac9ceb0b4d\",\n \"uid\": \"ut proident quidolore estnostrud\",\n \"label\": \"tempor dolore\",\n \"points\": 61124629.47,\n \"order\": 58375589\n }\n ],\n \"_metadata\": {\n \"limit\": -47629866,\n \"offset\": 49421201,\n \"total\": -91412184,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"risk_levels\": [\n {\n \"id\": \"urn:uuid:8080cf1a-9ce3-215a-d849-acd309bf428c\",\n \"uid\": \"laboris dolor officialabore aliq\",\n \"label\": \"eiusmod in\",\n \"points\": 99283782.3,\n \"order\": 79608059\n },\n {\n \"id\": \"urn:uuid:44a5be1a-58ef-b293-2ade-f7824e68720f\",\n \"uid\": \"pariatur ut inesse laboredolorea\",\n \"label\": \"eiusmod nostrud minim\",\n \"points\": 143795606.56,\n \"order\": 55241990\n }\n ],\n \"_metadata\": {\n \"limit\": -43337580,\n \"offset\": -88190207,\n \"total\": 37482178,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b4dad8f7-e061-4ae0-8971-940f024f9a09", + "id": "ec18619a-b045-445e-aefa-fd442372d80f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15363,7 +15363,7 @@ "type": "text/plain" }, "key": "label", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -15407,7 +15407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "188d88a0-5fee-4be8-96d4-4eb4478553a5", + "id": "14dafe95-8e5f-4594-be99-5bd2b355a1c8", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15452,7 +15452,7 @@ "type": "text/plain" }, "key": "label", - "value": "veniam" + "value": "eiusmod fugiat" }, { "disabled": false, @@ -15502,7 +15502,7 @@ } }, { - "id": "04445a01-80cc-4f74-8a9d-a299b4edd022", + "id": "6bc94ff3-e735-42bb-b647-82fb047d9ca3", "name": "Find risk level data by id", "request": { "name": "Find risk level data by id", @@ -15544,7 +15544,7 @@ }, "response": [ { - "id": "a4af5acd-28d0-441f-a795-fe72ec9ba2d8", + "id": "77cd4c9f-60ac-44ed-94f3-410649f31dba", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15583,12 +15583,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_level\": {\n \"id\": \"2c3c3a4b-51ff-7561-a371-a80cdfcc3beb\",\n \"uid\": \"est Lorem Utaute Ut consequat nu\",\n \"label\": \"nostrud eius\",\n \"points\": 92585595.19,\n \"order\": 85817385\n }\n}", + "body": "{\n \"risk_level\": {\n \"id\": \"3c4254a4-e87e-49bd-665d-07d82777c89d\",\n \"uid\": \"occaecat pariaturut deserunt ali\",\n \"label\": \"ipsum\",\n \"points\": 167844758.05,\n \"order\": 87697838\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e37ac903-6517-4f29-8dc9-37f7ecb0d3c0", + "id": "43faffcc-acac-4f37-bfa5-19a028efa763", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15632,7 +15632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96803608-aae3-4b81-bac1-5171e88b95a8", + "id": "665d811b-8d1c-4b0c-829a-f6b3029b10b3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15688,7 +15688,7 @@ "description": "", "item": [ { - "id": "ecfd783a-f937-440c-b5f9-9f2046455c38", + "id": "d6465e31-a1ff-43bb-9a03-62198bfe0452", "name": "Create a user-profile contributor relationship", "request": { "name": "Create a user-profile contributor relationship", @@ -15719,7 +15719,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:df8f57c0-f1aa-d78e-b1f7-8a4128e03811\",\n \"profile_id\": \"urn:uuid:d33d5081-9247-a05f-c480-84f759ca03a5\",\n \"ne_attribute_id\": \"urn:uuid:2ae91a71-8723-3d2b-1c69-aa2f06f796d5\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"f7ff6667-d64b-80e8-e801-1b1c687c92f3\",\n \"profile_id\": \"urn:uuid:56b1eb02-0859-41d7-fb97-8b9ba53cf6af\",\n \"ne_attribute_id\": \"urn:uuid:81c30cb5-7c58-14ab-2de8-86f5a8214ad9\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -15731,7 +15731,7 @@ }, "response": [ { - "id": "173174c7-d60f-4d85-a3a7-8b42c03a51ae", + "id": "0ba6f756-868c-4edb-8a10-d1a8cdf11f42", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15765,7 +15765,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:df8f57c0-f1aa-d78e-b1f7-8a4128e03811\",\n \"profile_id\": \"urn:uuid:d33d5081-9247-a05f-c480-84f759ca03a5\",\n \"ne_attribute_id\": \"urn:uuid:2ae91a71-8723-3d2b-1c69-aa2f06f796d5\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"f7ff6667-d64b-80e8-e801-1b1c687c92f3\",\n \"profile_id\": \"urn:uuid:56b1eb02-0859-41d7-fb97-8b9ba53cf6af\",\n \"ne_attribute_id\": \"urn:uuid:81c30cb5-7c58-14ab-2de8-86f5a8214ad9\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -15782,12 +15782,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profile\": {\n \"id\": \"urn:uuid:08f75ded-4f7a-eae0-27b4-0847fd944a63\",\n \"uid\": \"anim in eiusmod doloreut aliquip\",\n \"user_id\": \"8665f2cd-0f60-55fe-8fee-1abb77419b86\",\n \"profile_id\": \"urn:uuid:3391e466-60d8-b8e2-e7ca-38d6fd555528\",\n \"ne_attribute_id\": \"urn:uuid:7ac1cb09-1b09-e6b4-d668-2f5e04b1af70\",\n \"relationship_type\": \"owner\"\n }\n}", + "body": "{\n \"user_profile\": {\n \"id\": \"urn:uuid:7649a61e-7a71-8ef8-8bb3-64bf1e1ef13c\",\n \"uid\": \"ex commodo aliquaelit aliqua dod\",\n \"user_id\": \"5858c178-8763-4b9e-add5-ec3910c51762\",\n \"profile_id\": \"urn:uuid:7ce2cc64-ed09-2255-1a1c-db135a95be91\",\n \"ne_attribute_id\": \"f28c4f06-a30f-f141-12f6-441a287d64fd\",\n \"relationship_type\": \"contributor\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "22457876-3f31-4f54-9baa-d14a2e58e57e", + "id": "d3ee589b-199f-4706-ba8d-02647f0bb1a5", "name": "Invalid input", "originalRequest": { "url": { @@ -15817,7 +15817,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:df8f57c0-f1aa-d78e-b1f7-8a4128e03811\",\n \"profile_id\": \"urn:uuid:d33d5081-9247-a05f-c480-84f759ca03a5\",\n \"ne_attribute_id\": \"urn:uuid:2ae91a71-8723-3d2b-1c69-aa2f06f796d5\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"f7ff6667-d64b-80e8-e801-1b1c687c92f3\",\n \"profile_id\": \"urn:uuid:56b1eb02-0859-41d7-fb97-8b9ba53cf6af\",\n \"ne_attribute_id\": \"urn:uuid:81c30cb5-7c58-14ab-2de8-86f5a8214ad9\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -15839,7 +15839,7 @@ } }, { - "id": "05076479-b94a-4847-aba7-63a139d0c235", + "id": "88eda7be-f1b0-406f-abbe-9ad9ab16b08a", "name": "Get user-profile contributor relationships", "request": { "name": "Get user-profile contributor relationships", @@ -15942,7 +15942,7 @@ }, "response": [ { - "id": "43281005-90bc-4175-9339-7a1df9d2c6eb", + "id": "68a4d985-2220-41ec-ae82-7a9aa53e9337", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16053,12 +16053,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"ab1c62cb-db4d-53d5-f892-b2e8e6244114\",\n \"uid\": \"ex eu dolor ullamcoconsectetur e\",\n \"user_id\": \"urn:uuid:e5cc7c4e-de46-77f5-8779-6aeec47561f6\",\n \"profile_id\": \"urn:uuid:a429e7cb-8e59-6ad7-629e-a1e91d4c974e\",\n \"ne_attribute_id\": \"urn:uuid:e765110b-84ff-e9e4-f443-e451dcbf3720\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"urn:uuid:5b96588d-456a-05fe-83b0-6def755dbf91\",\n \"uid\": \"consectetur Excepteur aliquip la\",\n \"user_id\": \"9de9993f-6396-d6e3-50d8-516a0a11ae55\",\n \"profile_id\": \"f6d09ba0-8a6f-3dd6-c8da-d996d165dcce\",\n \"ne_attribute_id\": \"8aa740df-9b60-b03d-6c3f-d0a5091fdf55\",\n \"relationship_type\": \"owner\"\n }\n ],\n \"_metadata\": {\n \"limit\": -28560266,\n \"offset\": 44006140,\n \"total\": -12390414,\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:0b1e4474-4252-7448-6ca5-826f8551e4c6\",\n \"uid\": \"pariatur consectetur aliqua dese\",\n \"user_id\": \"urn:uuid:c577f7fc-8d0c-d9bb-d026-abd113b42440\",\n \"profile_id\": \"e8ee6af9-fb7f-0a5e-b484-b550a89ec8f1\",\n \"ne_attribute_id\": \"c1561743-a656-e0e5-193a-275a40eecc97\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"c1c9fca6-c221-090a-74fd-182ad2f35a6f\",\n \"uid\": \"reprehenderitin esse consectetur\",\n \"user_id\": \"urn:uuid:37f64394-989e-7dce-9b18-113e54116ce4\",\n \"profile_id\": \"urn:uuid:1a09dc59-a4b1-7b2f-0e6a-8422a91533a4\",\n \"ne_attribute_id\": \"ebf19629-0898-5a0d-689d-6cacd672b69d\",\n \"relationship_type\": \"contributor\"\n }\n ],\n \"_metadata\": {\n \"limit\": -31204402,\n \"offset\": -70685013,\n \"total\": -57605259,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "adf3c498-2a15-420e-bdba-0290c3836060", + "id": "e5def65d-8cb6-44a3-91a6-914e388b23ed", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16174,7 +16174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52e84886-7e0f-49ae-8f63-9364f5db46a2", + "id": "c70e81ce-e226-40d5-8401-6621270833af", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -16296,7 +16296,7 @@ } }, { - "id": "d8081ec0-66bf-4ca5-aa16-f9b4903828be", + "id": "d3aafef2-7de5-4c58-88b0-886f951580e8", "name": "Create multiple user-profile contributor relationships", "request": { "name": "Create multiple user-profile contributor relationships", @@ -16327,7 +16327,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:510d2281-d1e1-301e-c756-ac70c888767f\",\n \"profile_id\": \"7d40cbbc-e796-2ed2-3da9-765c38e90988\",\n \"ne_attribute_id\": \"11c22549-4626-5424-7cb5-bd152a7763e9\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"urn:uuid:94c4ae02-b538-928b-d915-b975c39bc149\",\n \"profile_id\": \"urn:uuid:5fba1bb2-0c94-9e96-c6f1-607a8b4a38bf\",\n \"ne_attribute_id\": \"968d7ba7-5c2d-387a-9a11-81340526dfa8\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:8e248b36-947a-7d50-0d7c-3d9c5bc81c30\",\n \"profile_id\": \"ffcb47bb-11d2-1e5a-e43d-1e8395f91542\",\n \"ne_attribute_id\": \"9697cf94-2443-c14d-2a26-14221d602807\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"bdbeea86-e877-bf39-900f-f7e4c60f7c49\",\n \"profile_id\": \"urn:uuid:0d8a8f24-80d4-9fcd-2cb1-2936b0be499e\",\n \"ne_attribute_id\": \"urn:uuid:f509665c-5eba-2996-2b66-f77f129197ba\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16339,7 +16339,7 @@ }, "response": [ { - "id": "c6f64231-8ad3-426e-a172-f5c1ef0c31b0", + "id": "64481236-d95c-4e69-85ae-1f2ee2a8a9d2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16373,7 +16373,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:510d2281-d1e1-301e-c756-ac70c888767f\",\n \"profile_id\": \"7d40cbbc-e796-2ed2-3da9-765c38e90988\",\n \"ne_attribute_id\": \"11c22549-4626-5424-7cb5-bd152a7763e9\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"urn:uuid:94c4ae02-b538-928b-d915-b975c39bc149\",\n \"profile_id\": \"urn:uuid:5fba1bb2-0c94-9e96-c6f1-607a8b4a38bf\",\n \"ne_attribute_id\": \"968d7ba7-5c2d-387a-9a11-81340526dfa8\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:8e248b36-947a-7d50-0d7c-3d9c5bc81c30\",\n \"profile_id\": \"ffcb47bb-11d2-1e5a-e43d-1e8395f91542\",\n \"ne_attribute_id\": \"9697cf94-2443-c14d-2a26-14221d602807\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"bdbeea86-e877-bf39-900f-f7e4c60f7c49\",\n \"profile_id\": \"urn:uuid:0d8a8f24-80d4-9fcd-2cb1-2936b0be499e\",\n \"ne_attribute_id\": \"urn:uuid:f509665c-5eba-2996-2b66-f77f129197ba\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16390,12 +16390,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"88f21910-5846-4fa1-412c-f1a13c14e72c\",\n \"uid\": \"eu voluptateauteminim ex culpa d\",\n \"user_id\": \"b58d9266-f256-7ef8-6394-7bfca6dc8a6d\",\n \"profile_id\": \"urn:uuid:b0d131af-6a2c-3d91-3587-317b65ffc172\",\n \"ne_attribute_id\": \"90e59d5d-e5a3-2344-3b38-7e0928d1f436\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:0ed5d849-7cb2-7f2e-8343-aa768411585f\",\n \"uid\": \"aliqua adipisicing reprehenderit\",\n \"user_id\": \"faf457bd-6f08-8767-1e48-42548b92fa3d\",\n \"profile_id\": \"urn:uuid:d19594b5-0ec6-750a-6cb0-762bcfa3d7a3\",\n \"ne_attribute_id\": \"urn:uuid:f286953d-5cc1-9d8c-4950-11c0595c9769\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:94117552-ab74-322b-b1c2-539b67f97e20\",\n \"uid\": \"aliquip proident laborumin repre\",\n \"user_id\": \"6b3f9ee8-5ab7-a08e-fb4e-f3e313177a34\",\n \"profile_id\": \"5325f40e-4532-5c75-c864-b2715116bf41\",\n \"ne_attribute_id\": \"urn:uuid:e24bc171-afdd-ef60-b1b9-e90d191ebf18\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:fe360684-b06c-7f38-08a3-61bb78f99b95\",\n \"uid\": \"do in elit culpaenim qui adipisi\",\n \"user_id\": \"urn:uuid:52ca2254-696e-0e6d-4928-279987e68d23\",\n \"profile_id\": \"urn:uuid:206c845e-047a-0597-b96a-6c09a16e9269\",\n \"ne_attribute_id\": \"ce6f401c-a5dd-9638-730c-adc70f61b5f6\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d3143dc2-4826-4a10-87a3-4b6915aff5e1", + "id": "da360197-f6c3-457a-9be3-86432b42766a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16429,7 +16429,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:510d2281-d1e1-301e-c756-ac70c888767f\",\n \"profile_id\": \"7d40cbbc-e796-2ed2-3da9-765c38e90988\",\n \"ne_attribute_id\": \"11c22549-4626-5424-7cb5-bd152a7763e9\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"urn:uuid:94c4ae02-b538-928b-d915-b975c39bc149\",\n \"profile_id\": \"urn:uuid:5fba1bb2-0c94-9e96-c6f1-607a8b4a38bf\",\n \"ne_attribute_id\": \"968d7ba7-5c2d-387a-9a11-81340526dfa8\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:8e248b36-947a-7d50-0d7c-3d9c5bc81c30\",\n \"profile_id\": \"ffcb47bb-11d2-1e5a-e43d-1e8395f91542\",\n \"ne_attribute_id\": \"9697cf94-2443-c14d-2a26-14221d602807\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"bdbeea86-e877-bf39-900f-f7e4c60f7c49\",\n \"profile_id\": \"urn:uuid:0d8a8f24-80d4-9fcd-2cb1-2936b0be499e\",\n \"ne_attribute_id\": \"urn:uuid:f509665c-5eba-2996-2b66-f77f129197ba\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16451,7 +16451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95b31b27-2f9c-472b-b2ec-167ebcc3c9a7", + "id": "45e23a7e-1930-4f66-82c0-a69f1d107953", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -16485,7 +16485,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:510d2281-d1e1-301e-c756-ac70c888767f\",\n \"profile_id\": \"7d40cbbc-e796-2ed2-3da9-765c38e90988\",\n \"ne_attribute_id\": \"11c22549-4626-5424-7cb5-bd152a7763e9\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"urn:uuid:94c4ae02-b538-928b-d915-b975c39bc149\",\n \"profile_id\": \"urn:uuid:5fba1bb2-0c94-9e96-c6f1-607a8b4a38bf\",\n \"ne_attribute_id\": \"968d7ba7-5c2d-387a-9a11-81340526dfa8\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:8e248b36-947a-7d50-0d7c-3d9c5bc81c30\",\n \"profile_id\": \"ffcb47bb-11d2-1e5a-e43d-1e8395f91542\",\n \"ne_attribute_id\": \"9697cf94-2443-c14d-2a26-14221d602807\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"bdbeea86-e877-bf39-900f-f7e4c60f7c49\",\n \"profile_id\": \"urn:uuid:0d8a8f24-80d4-9fcd-2cb1-2936b0be499e\",\n \"ne_attribute_id\": \"urn:uuid:f509665c-5eba-2996-2b66-f77f129197ba\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16513,7 +16513,7 @@ } }, { - "id": "7419e420-51ef-4359-b1d2-306082c1c051", + "id": "dea56558-7b4a-478a-be48-0e188dbc84e0", "name": "Update multiple user-profile contributor relationships", "request": { "name": "Update multiple user-profile contributor relationships", @@ -16544,7 +16544,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"70282881-0e19-fe65-c8e4-8a19d6c63c6d\",\n \"user_id\": \"f64e98c3-ef8e-0fd0-d5f8-a23900be038c\",\n \"profile_id\": \"urn:uuid:11e9cd73-4ea5-228e-fccb-8b48856cbdcf\",\n \"ne_attribute_id\": \"urn:uuid:577e1170-b0bb-4d23-787a-4571d33e1e82\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"a9d46293-70ad-c053-232d-168743a3780c\",\n \"user_id\": \"171089bc-f064-db72-34c3-4ff1eb571d21\",\n \"profile_id\": \"295bce9c-7c11-a750-73c9-8f6c15ba6017\",\n \"ne_attribute_id\": \"6b383e4e-a6a8-29d5-4f24-3216b0724182\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"629ddc2e-d5f7-20fa-2af3-9b2336968333\",\n \"user_id\": \"2cae17b0-57f9-f5f2-d760-10a134d7c73d\",\n \"profile_id\": \"urn:uuid:8a21c97d-4806-55d1-0cfd-d57277590cf9\",\n \"ne_attribute_id\": \"534271f6-3972-e9ae-c5eb-d9b89e3d17ed\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"urn:uuid:e0740c02-d428-41d9-a46c-63798a19d8a0\",\n \"user_id\": \"31644886-64af-cc79-cfd4-55f274b1fc61\",\n \"profile_id\": \"79b7569b-3667-0cb4-9534-ab4cdb159c89\",\n \"ne_attribute_id\": \"urn:uuid:2f3b1b90-6628-eda1-6d74-c8d603e971e5\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16556,7 +16556,7 @@ }, "response": [ { - "id": "24f60761-73ad-44b0-bdcf-f2ea12202fe8", + "id": "97a72950-7e61-43fe-861a-c9e98dbcd826", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16590,7 +16590,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"70282881-0e19-fe65-c8e4-8a19d6c63c6d\",\n \"user_id\": \"f64e98c3-ef8e-0fd0-d5f8-a23900be038c\",\n \"profile_id\": \"urn:uuid:11e9cd73-4ea5-228e-fccb-8b48856cbdcf\",\n \"ne_attribute_id\": \"urn:uuid:577e1170-b0bb-4d23-787a-4571d33e1e82\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"a9d46293-70ad-c053-232d-168743a3780c\",\n \"user_id\": \"171089bc-f064-db72-34c3-4ff1eb571d21\",\n \"profile_id\": \"295bce9c-7c11-a750-73c9-8f6c15ba6017\",\n \"ne_attribute_id\": \"6b383e4e-a6a8-29d5-4f24-3216b0724182\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"629ddc2e-d5f7-20fa-2af3-9b2336968333\",\n \"user_id\": \"2cae17b0-57f9-f5f2-d760-10a134d7c73d\",\n \"profile_id\": \"urn:uuid:8a21c97d-4806-55d1-0cfd-d57277590cf9\",\n \"ne_attribute_id\": \"534271f6-3972-e9ae-c5eb-d9b89e3d17ed\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"urn:uuid:e0740c02-d428-41d9-a46c-63798a19d8a0\",\n \"user_id\": \"31644886-64af-cc79-cfd4-55f274b1fc61\",\n \"profile_id\": \"79b7569b-3667-0cb4-9534-ab4cdb159c89\",\n \"ne_attribute_id\": \"urn:uuid:2f3b1b90-6628-eda1-6d74-c8d603e971e5\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16607,12 +16607,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"88f21910-5846-4fa1-412c-f1a13c14e72c\",\n \"uid\": \"eu voluptateauteminim ex culpa d\",\n \"user_id\": \"b58d9266-f256-7ef8-6394-7bfca6dc8a6d\",\n \"profile_id\": \"urn:uuid:b0d131af-6a2c-3d91-3587-317b65ffc172\",\n \"ne_attribute_id\": \"90e59d5d-e5a3-2344-3b38-7e0928d1f436\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:0ed5d849-7cb2-7f2e-8343-aa768411585f\",\n \"uid\": \"aliqua adipisicing reprehenderit\",\n \"user_id\": \"faf457bd-6f08-8767-1e48-42548b92fa3d\",\n \"profile_id\": \"urn:uuid:d19594b5-0ec6-750a-6cb0-762bcfa3d7a3\",\n \"ne_attribute_id\": \"urn:uuid:f286953d-5cc1-9d8c-4950-11c0595c9769\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:94117552-ab74-322b-b1c2-539b67f97e20\",\n \"uid\": \"aliquip proident laborumin repre\",\n \"user_id\": \"6b3f9ee8-5ab7-a08e-fb4e-f3e313177a34\",\n \"profile_id\": \"5325f40e-4532-5c75-c864-b2715116bf41\",\n \"ne_attribute_id\": \"urn:uuid:e24bc171-afdd-ef60-b1b9-e90d191ebf18\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:fe360684-b06c-7f38-08a3-61bb78f99b95\",\n \"uid\": \"do in elit culpaenim qui adipisi\",\n \"user_id\": \"urn:uuid:52ca2254-696e-0e6d-4928-279987e68d23\",\n \"profile_id\": \"urn:uuid:206c845e-047a-0597-b96a-6c09a16e9269\",\n \"ne_attribute_id\": \"ce6f401c-a5dd-9638-730c-adc70f61b5f6\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5e1fff11-7e26-410b-94a8-a0957d89c3cc", + "id": "65d20966-d167-4739-a813-6922688bc9c8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16646,7 +16646,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"70282881-0e19-fe65-c8e4-8a19d6c63c6d\",\n \"user_id\": \"f64e98c3-ef8e-0fd0-d5f8-a23900be038c\",\n \"profile_id\": \"urn:uuid:11e9cd73-4ea5-228e-fccb-8b48856cbdcf\",\n \"ne_attribute_id\": \"urn:uuid:577e1170-b0bb-4d23-787a-4571d33e1e82\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"a9d46293-70ad-c053-232d-168743a3780c\",\n \"user_id\": \"171089bc-f064-db72-34c3-4ff1eb571d21\",\n \"profile_id\": \"295bce9c-7c11-a750-73c9-8f6c15ba6017\",\n \"ne_attribute_id\": \"6b383e4e-a6a8-29d5-4f24-3216b0724182\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"629ddc2e-d5f7-20fa-2af3-9b2336968333\",\n \"user_id\": \"2cae17b0-57f9-f5f2-d760-10a134d7c73d\",\n \"profile_id\": \"urn:uuid:8a21c97d-4806-55d1-0cfd-d57277590cf9\",\n \"ne_attribute_id\": \"534271f6-3972-e9ae-c5eb-d9b89e3d17ed\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"urn:uuid:e0740c02-d428-41d9-a46c-63798a19d8a0\",\n \"user_id\": \"31644886-64af-cc79-cfd4-55f274b1fc61\",\n \"profile_id\": \"79b7569b-3667-0cb4-9534-ab4cdb159c89\",\n \"ne_attribute_id\": \"urn:uuid:2f3b1b90-6628-eda1-6d74-c8d603e971e5\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16668,7 +16668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "305afb62-b863-43ad-b61f-319f8923e110", + "id": "00b9e4e1-e4d2-4b0e-b3e3-271e8e1c8b40", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -16702,7 +16702,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"70282881-0e19-fe65-c8e4-8a19d6c63c6d\",\n \"user_id\": \"f64e98c3-ef8e-0fd0-d5f8-a23900be038c\",\n \"profile_id\": \"urn:uuid:11e9cd73-4ea5-228e-fccb-8b48856cbdcf\",\n \"ne_attribute_id\": \"urn:uuid:577e1170-b0bb-4d23-787a-4571d33e1e82\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"a9d46293-70ad-c053-232d-168743a3780c\",\n \"user_id\": \"171089bc-f064-db72-34c3-4ff1eb571d21\",\n \"profile_id\": \"295bce9c-7c11-a750-73c9-8f6c15ba6017\",\n \"ne_attribute_id\": \"6b383e4e-a6a8-29d5-4f24-3216b0724182\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"629ddc2e-d5f7-20fa-2af3-9b2336968333\",\n \"user_id\": \"2cae17b0-57f9-f5f2-d760-10a134d7c73d\",\n \"profile_id\": \"urn:uuid:8a21c97d-4806-55d1-0cfd-d57277590cf9\",\n \"ne_attribute_id\": \"534271f6-3972-e9ae-c5eb-d9b89e3d17ed\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"urn:uuid:e0740c02-d428-41d9-a46c-63798a19d8a0\",\n \"user_id\": \"31644886-64af-cc79-cfd4-55f274b1fc61\",\n \"profile_id\": \"79b7569b-3667-0cb4-9534-ab4cdb159c89\",\n \"ne_attribute_id\": \"urn:uuid:2f3b1b90-6628-eda1-6d74-c8d603e971e5\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16730,7 +16730,7 @@ } }, { - "id": "21983e4b-5289-48fd-bbc8-c0c4e2f09e2f", + "id": "53353282-163a-4f7e-bd09-c4dabc6722a0", "name": "Delete multiple user-profile contributor relationships", "request": { "name": "Delete multiple user-profile contributor relationships", @@ -16761,7 +16761,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:ae7caebc-a11f-35e4-f766-70dcc6a2933d\"\n },\n {\n \"id\": \"urn:uuid:b05c26ee-0bcb-30e5-ac66-e99fcec76ba6\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"20934731-9bf2-f4b9-e222-cc43de210a53\"\n },\n {\n \"id\": \"0c351f79-4cbc-62d2-f63c-12c3e7617061\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16773,7 +16773,7 @@ }, "response": [ { - "id": "bd3928fd-9914-4b49-a780-f7227616d43b", + "id": "1eb65ba5-6d00-4927-afbe-682342eb171a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16807,7 +16807,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:ae7caebc-a11f-35e4-f766-70dcc6a2933d\"\n },\n {\n \"id\": \"urn:uuid:b05c26ee-0bcb-30e5-ac66-e99fcec76ba6\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"20934731-9bf2-f4b9-e222-cc43de210a53\"\n },\n {\n \"id\": \"0c351f79-4cbc-62d2-f63c-12c3e7617061\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16824,12 +16824,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"88f21910-5846-4fa1-412c-f1a13c14e72c\",\n \"uid\": \"eu voluptateauteminim ex culpa d\",\n \"user_id\": \"b58d9266-f256-7ef8-6394-7bfca6dc8a6d\",\n \"profile_id\": \"urn:uuid:b0d131af-6a2c-3d91-3587-317b65ffc172\",\n \"ne_attribute_id\": \"90e59d5d-e5a3-2344-3b38-7e0928d1f436\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:0ed5d849-7cb2-7f2e-8343-aa768411585f\",\n \"uid\": \"aliqua adipisicing reprehenderit\",\n \"user_id\": \"faf457bd-6f08-8767-1e48-42548b92fa3d\",\n \"profile_id\": \"urn:uuid:d19594b5-0ec6-750a-6cb0-762bcfa3d7a3\",\n \"ne_attribute_id\": \"urn:uuid:f286953d-5cc1-9d8c-4950-11c0595c9769\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:94117552-ab74-322b-b1c2-539b67f97e20\",\n \"uid\": \"aliquip proident laborumin repre\",\n \"user_id\": \"6b3f9ee8-5ab7-a08e-fb4e-f3e313177a34\",\n \"profile_id\": \"5325f40e-4532-5c75-c864-b2715116bf41\",\n \"ne_attribute_id\": \"urn:uuid:e24bc171-afdd-ef60-b1b9-e90d191ebf18\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:fe360684-b06c-7f38-08a3-61bb78f99b95\",\n \"uid\": \"do in elit culpaenim qui adipisi\",\n \"user_id\": \"urn:uuid:52ca2254-696e-0e6d-4928-279987e68d23\",\n \"profile_id\": \"urn:uuid:206c845e-047a-0597-b96a-6c09a16e9269\",\n \"ne_attribute_id\": \"ce6f401c-a5dd-9638-730c-adc70f61b5f6\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5f0bc07-a84a-4d98-a028-cedbe2fd4244", + "id": "d0496da0-a57e-4275-8321-98db279b58ee", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16863,7 +16863,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:ae7caebc-a11f-35e4-f766-70dcc6a2933d\"\n },\n {\n \"id\": \"urn:uuid:b05c26ee-0bcb-30e5-ac66-e99fcec76ba6\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"20934731-9bf2-f4b9-e222-cc43de210a53\"\n },\n {\n \"id\": \"0c351f79-4cbc-62d2-f63c-12c3e7617061\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16885,7 +16885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd057e51-40b3-47a4-abdc-d0883918499f", + "id": "04407633-962d-4201-8508-e799e8312a98", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -16919,7 +16919,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:ae7caebc-a11f-35e4-f766-70dcc6a2933d\"\n },\n {\n \"id\": \"urn:uuid:b05c26ee-0bcb-30e5-ac66-e99fcec76ba6\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"20934731-9bf2-f4b9-e222-cc43de210a53\"\n },\n {\n \"id\": \"0c351f79-4cbc-62d2-f63c-12c3e7617061\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -16947,7 +16947,7 @@ } }, { - "id": "ad9db7c1-7355-417c-8c44-db858feebb0c", + "id": "ce0f4d96-8acb-43a8-ad29-d28c82caf810", "name": "Find user-profile contributor relationship by id", "request": { "name": "Find user-profile contributor relationship by id", @@ -16989,7 +16989,7 @@ }, "response": [ { - "id": "2ba467bd-75c2-4a0b-aa2d-6f9714d13a6b", + "id": "96f0d04a-7366-4677-a58f-abaf7549eb1f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17028,12 +17028,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profile\": {\n \"id\": \"urn:uuid:08f75ded-4f7a-eae0-27b4-0847fd944a63\",\n \"uid\": \"anim in eiusmod doloreut aliquip\",\n \"user_id\": \"8665f2cd-0f60-55fe-8fee-1abb77419b86\",\n \"profile_id\": \"urn:uuid:3391e466-60d8-b8e2-e7ca-38d6fd555528\",\n \"ne_attribute_id\": \"urn:uuid:7ac1cb09-1b09-e6b4-d668-2f5e04b1af70\",\n \"relationship_type\": \"owner\"\n }\n}", + "body": "{\n \"user_profile\": {\n \"id\": \"urn:uuid:7649a61e-7a71-8ef8-8bb3-64bf1e1ef13c\",\n \"uid\": \"ex commodo aliquaelit aliqua dod\",\n \"user_id\": \"5858c178-8763-4b9e-add5-ec3910c51762\",\n \"profile_id\": \"urn:uuid:7ce2cc64-ed09-2255-1a1c-db135a95be91\",\n \"ne_attribute_id\": \"f28c4f06-a30f-f141-12f6-441a287d64fd\",\n \"relationship_type\": \"contributor\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dc88b2a8-99ce-4c73-ba05-dd11148f0731", + "id": "05ea7d0f-6db3-4968-a4d2-0267172e3e97", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17077,7 +17077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97c63a84-02a4-434d-b13e-7ffcf3eb4cad", + "id": "430a4c3d-7ff2-4b2e-9333-4156af1a7ae0", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17127,7 +17127,7 @@ } }, { - "id": "7231b0da-5036-4719-81a8-1d72edda4a46", + "id": "acca2c60-cace-4f91-8d66-3e72778712f1", "name": "Update a user-profile contributor relationship by id", "request": { "name": "Update a user-profile contributor relationship by id", @@ -17170,7 +17170,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:df8f57c0-f1aa-d78e-b1f7-8a4128e03811\",\n \"profile_id\": \"urn:uuid:d33d5081-9247-a05f-c480-84f759ca03a5\",\n \"ne_attribute_id\": \"urn:uuid:2ae91a71-8723-3d2b-1c69-aa2f06f796d5\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"f7ff6667-d64b-80e8-e801-1b1c687c92f3\",\n \"profile_id\": \"urn:uuid:56b1eb02-0859-41d7-fb97-8b9ba53cf6af\",\n \"ne_attribute_id\": \"urn:uuid:81c30cb5-7c58-14ab-2de8-86f5a8214ad9\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17182,7 +17182,7 @@ }, "response": [ { - "id": "902ab2a7-a5c6-4c18-9d73-defe3df383ef", + "id": "7dc2c680-7efc-4fa2-9f44-87fbbb4a878f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17217,7 +17217,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:df8f57c0-f1aa-d78e-b1f7-8a4128e03811\",\n \"profile_id\": \"urn:uuid:d33d5081-9247-a05f-c480-84f759ca03a5\",\n \"ne_attribute_id\": \"urn:uuid:2ae91a71-8723-3d2b-1c69-aa2f06f796d5\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"f7ff6667-d64b-80e8-e801-1b1c687c92f3\",\n \"profile_id\": \"urn:uuid:56b1eb02-0859-41d7-fb97-8b9ba53cf6af\",\n \"ne_attribute_id\": \"urn:uuid:81c30cb5-7c58-14ab-2de8-86f5a8214ad9\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17234,12 +17234,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profile\": {\n \"id\": \"urn:uuid:08f75ded-4f7a-eae0-27b4-0847fd944a63\",\n \"uid\": \"anim in eiusmod doloreut aliquip\",\n \"user_id\": \"8665f2cd-0f60-55fe-8fee-1abb77419b86\",\n \"profile_id\": \"urn:uuid:3391e466-60d8-b8e2-e7ca-38d6fd555528\",\n \"ne_attribute_id\": \"urn:uuid:7ac1cb09-1b09-e6b4-d668-2f5e04b1af70\",\n \"relationship_type\": \"owner\"\n }\n}", + "body": "{\n \"user_profile\": {\n \"id\": \"urn:uuid:7649a61e-7a71-8ef8-8bb3-64bf1e1ef13c\",\n \"uid\": \"ex commodo aliquaelit aliqua dod\",\n \"user_id\": \"5858c178-8763-4b9e-add5-ec3910c51762\",\n \"profile_id\": \"urn:uuid:7ce2cc64-ed09-2255-1a1c-db135a95be91\",\n \"ne_attribute_id\": \"f28c4f06-a30f-f141-12f6-441a287d64fd\",\n \"relationship_type\": \"contributor\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "446e7b98-c4e4-4a86-902a-9697b225d2fc", + "id": "2f5c4fd7-149d-4b1a-aef8-ee1660ed1208", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17274,7 +17274,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:df8f57c0-f1aa-d78e-b1f7-8a4128e03811\",\n \"profile_id\": \"urn:uuid:d33d5081-9247-a05f-c480-84f759ca03a5\",\n \"ne_attribute_id\": \"urn:uuid:2ae91a71-8723-3d2b-1c69-aa2f06f796d5\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"f7ff6667-d64b-80e8-e801-1b1c687c92f3\",\n \"profile_id\": \"urn:uuid:56b1eb02-0859-41d7-fb97-8b9ba53cf6af\",\n \"ne_attribute_id\": \"urn:uuid:81c30cb5-7c58-14ab-2de8-86f5a8214ad9\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17296,7 +17296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b98df697-fd78-4c6b-9f5f-67581775e411", + "id": "728f1727-0041-4576-bf74-3be21222ae04", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17331,7 +17331,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:df8f57c0-f1aa-d78e-b1f7-8a4128e03811\",\n \"profile_id\": \"urn:uuid:d33d5081-9247-a05f-c480-84f759ca03a5\",\n \"ne_attribute_id\": \"urn:uuid:2ae91a71-8723-3d2b-1c69-aa2f06f796d5\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"f7ff6667-d64b-80e8-e801-1b1c687c92f3\",\n \"profile_id\": \"urn:uuid:56b1eb02-0859-41d7-fb97-8b9ba53cf6af\",\n \"ne_attribute_id\": \"urn:uuid:81c30cb5-7c58-14ab-2de8-86f5a8214ad9\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17359,7 +17359,7 @@ } }, { - "id": "b87ed453-ea05-42d0-9c04-35414848a2c3", + "id": "52eadaeb-2218-4389-9eb9-c7f5d36c271c", "name": "Delete a user profile assignment", "request": { "name": "Delete a user profile assignment", @@ -17401,7 +17401,7 @@ }, "response": [ { - "id": "bf2e23c5-e3af-4bea-b78f-786c3c9fd48a", + "id": "569a5542-c508-4453-88e2-c2d4504eccaf", "name": "User profile was destroyed", "originalRequest": { "url": { @@ -17445,7 +17445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c68e31f-b026-4873-87e2-cbf80a25d08e", + "id": "39a383b5-ef28-4fa2-a955-a7cb146a9a74", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17489,7 +17489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b511d3e1-4922-407f-9ffa-98a902881f99", + "id": "b2deec1a-2458-4e4b-b7ea-3a21800d5ea4", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17545,7 +17545,7 @@ "description": "", "item": [ { - "id": "73588d1f-4aeb-4591-b242-992300a24124", + "id": "26bad30c-7e44-4f20-8718-32da029cb556", "name": "Create a role-profile contributor relationship", "request": { "name": "Create a role-profile contributor relationship", @@ -17576,7 +17576,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"69627fb7-aa0f-7e52-52fa-cc89e47a06de\",\n \"profile_id\": \"cabfb12a-fb9f-bc2b-a66e-0af69480e348\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"d4e0bc0e-4efb-a141-14da-10e2288134c1\",\n \"profile_id\": \"cdbdfec0-948b-5cef-0f08-02e06d68c2dc\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17588,7 +17588,7 @@ }, "response": [ { - "id": "bf76dea3-25ce-484a-a508-2d2ab4552595", + "id": "9463d69c-2204-4a8d-9a1b-dd746b89bd0c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17622,7 +17622,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"69627fb7-aa0f-7e52-52fa-cc89e47a06de\",\n \"profile_id\": \"cabfb12a-fb9f-bc2b-a66e-0af69480e348\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"d4e0bc0e-4efb-a141-14da-10e2288134c1\",\n \"profile_id\": \"cdbdfec0-948b-5cef-0f08-02e06d68c2dc\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17639,12 +17639,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profile\": {\n \"id\": \"5d73203b-cee0-3ca7-ecd2-04f7ca449272\",\n \"uid\": \"eiusmod sintreprehenderit Duis e\",\n \"role_id\": \"f0836471-ce49-841c-b84d-dafb09a4483e\",\n \"profile_id\": \"urn:uuid:a6f0ad14-ea54-f7cd-952f-2ef7d2c4780e\"\n }\n}", + "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:a5248dc2-8112-0315-5f26-75b7b288cb4a\",\n \"uid\": \"et commodo esse deseruntLorem nu\",\n \"role_id\": \"urn:uuid:4968b93f-af5e-e90d-760c-b6d4af889886\",\n \"profile_id\": \"5393d227-61f7-eba7-d615-c0d9c8f5597e\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ca7e81c5-8171-413e-a316-8fd5f7a34978", + "id": "7c0c0812-3e09-4ae7-9713-4f2481cd7b58", "name": "Invalid input", "originalRequest": { "url": { @@ -17674,7 +17674,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"69627fb7-aa0f-7e52-52fa-cc89e47a06de\",\n \"profile_id\": \"cabfb12a-fb9f-bc2b-a66e-0af69480e348\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"d4e0bc0e-4efb-a141-14da-10e2288134c1\",\n \"profile_id\": \"cdbdfec0-948b-5cef-0f08-02e06d68c2dc\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17696,7 +17696,7 @@ } }, { - "id": "3b114ed4-4d1f-45a4-9666-6e361f3ef292", + "id": "aa48abc1-6c63-44b1-b41d-79927f2fd5e8", "name": "Get role-profile contributor relationships", "request": { "name": "Get role-profile contributor relationships", @@ -17746,7 +17746,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -17781,7 +17781,7 @@ }, "response": [ { - "id": "789aa4a6-2ed5-453a-a966-f4aa7dc64cdc", + "id": "57e0df9c-f31b-4a09-9fb9-4a026471bdda", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17826,7 +17826,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -17874,12 +17874,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:2f53a2c8-cb14-2bd7-5d37-f198249b7763\",\n \"uid\": \"sunt Lorem mollit velitdolore au\",\n \"role_id\": \"4078e704-26f6-d987-39f3-c31d59b82428\",\n \"profile_id\": \"urn:uuid:e46c6c56-2b61-1e85-b39b-1050e7802bb6\"\n },\n {\n \"id\": \"5dbc0aec-ca11-2265-de58-dba4cecf52b2\",\n \"uid\": \"in exercitation deserunt essecon\",\n \"role_id\": \"urn:uuid:90a50700-3932-c96d-805b-23eaecc96a3f\",\n \"profile_id\": \"fa7642fc-ae06-14ee-23c1-4a9002cf3f83\"\n }\n ],\n \"_metadata\": {\n \"limit\": -40507409,\n \"offset\": -12924080,\n \"total\": 20366382,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"role_profiles\": [\n {\n \"id\": \"7f78847f-77bc-17a8-8f00-debaf7eb0866\",\n \"uid\": \"sed pariatur dolornulla minim la\",\n \"role_id\": \"urn:uuid:d3dbf10e-79fc-e097-44fb-e7bc65c8b79c\",\n \"profile_id\": \"urn:uuid:48bfc267-eb8d-4fd6-9c46-c4d5821ac358\"\n },\n {\n \"id\": \"1ecffa8f-9964-20f0-051f-cd38fa5d7a14\",\n \"uid\": \"minim irure exercitation Ut dolo\",\n \"role_id\": \"44259b6d-289b-83f5-3a5a-b0d7511f27dd\",\n \"profile_id\": \"urn:uuid:298747ea-3cab-d411-0148-ff078578df02\"\n }\n ],\n \"_metadata\": {\n \"limit\": 64840227,\n \"offset\": -43684043,\n \"total\": -86662002,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ec092b20-daa7-4353-951c-93e325f7383f", + "id": "8980454e-382a-4f3e-b7c4-c3d3194e6ae5", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17924,7 +17924,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -17977,7 +17977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5d33bbe-f12f-4945-b9c6-197c75520793", + "id": "7d739583-8d0d-41e4-8a46-fb252efcb719", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18022,7 +18022,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -18081,7 +18081,7 @@ } }, { - "id": "7916d658-5183-4570-baae-8a36790fbe6e", + "id": "ef014503-bd50-444b-b3f2-7764330c7705", "name": "Create multiple role-profile contributor relationships", "request": { "name": "Create multiple role-profile contributor relationships", @@ -18112,7 +18112,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"bee74d2a-88f4-415e-9972-26a387c308ba\",\n \"profile_id\": \"urn:uuid:fc805af3-2d9b-549d-ff2c-50477313dbc6\"\n },\n {\n \"role_id\": \"74c7f315-8a6f-c4d4-03ba-e5e6d811d16b\",\n \"profile_id\": \"7de18668-abbb-d942-7949-fc16d69c119a\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:0d25af1a-f5a0-dba8-94eb-4f93eeed71e7\",\n \"profile_id\": \"1dd678a4-916b-4876-85f4-6fe5b06562ae\"\n },\n {\n \"role_id\": \"urn:uuid:3589f4fc-527c-9a15-9036-31f558fc8f67\",\n \"profile_id\": \"77c1853b-3ebb-0673-7bee-1975f1f7cf8b\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18124,7 +18124,7 @@ }, "response": [ { - "id": "26f9c0ae-e3f5-439c-b065-26c151981662", + "id": "f2a30ea9-6620-40ba-aecc-508e92f88d5f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18158,7 +18158,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"bee74d2a-88f4-415e-9972-26a387c308ba\",\n \"profile_id\": \"urn:uuid:fc805af3-2d9b-549d-ff2c-50477313dbc6\"\n },\n {\n \"role_id\": \"74c7f315-8a6f-c4d4-03ba-e5e6d811d16b\",\n \"profile_id\": \"7de18668-abbb-d942-7949-fc16d69c119a\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:0d25af1a-f5a0-dba8-94eb-4f93eeed71e7\",\n \"profile_id\": \"1dd678a4-916b-4876-85f4-6fe5b06562ae\"\n },\n {\n \"role_id\": \"urn:uuid:3589f4fc-527c-9a15-9036-31f558fc8f67\",\n \"profile_id\": \"77c1853b-3ebb-0673-7bee-1975f1f7cf8b\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18175,12 +18175,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profiles\": [\n {\n \"id\": \"dc4e0fa3-fa45-963a-07c9-2e2d1c92c6da\",\n \"uid\": \"commodo eueiusmodin consectetur \",\n \"role_id\": \"62367b1f-2547-7ede-669c-099d2422a289\",\n \"profile_id\": \"d1708fdc-c65b-d5bc-a882-d044c0e0e736\"\n },\n {\n \"id\": \"urn:uuid:d00c3645-1897-0c8f-3d77-6605889c8cdd\",\n \"uid\": \"irure utaute aliquip proident ex\",\n \"role_id\": \"urn:uuid:0df2e85e-10b4-b49c-5e67-bfc0af691227\",\n \"profile_id\": \"urn:uuid:c8a736ee-2add-5d31-1688-7482ea0e5adb\"\n }\n ]\n}", + "body": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:17fa17b1-e94c-4e03-26fe-04468cc8548e\",\n \"uid\": \"culpa mollit aliqualabore exDuis\",\n \"role_id\": \"urn:uuid:2fbf29d1-5503-3dc2-2539-a4db5f72b73e\",\n \"profile_id\": \"3f56c928-4977-aa71-93c8-5fcb92502ac1\"\n },\n {\n \"id\": \"9d11f454-7e2e-1041-3da8-8b3120d77068\",\n \"uid\": \"fugiat magna consequatreprehende\",\n \"role_id\": \"fade006f-acec-8bb3-4a08-54443b98f91f\",\n \"profile_id\": \"a895ed26-a991-30f7-9781-bbc7ab1ef695\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "231385d2-b497-48c3-aa74-05c0db0facbc", + "id": "be39653a-4e11-4df7-b3f2-e5371381bf42", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18214,7 +18214,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"bee74d2a-88f4-415e-9972-26a387c308ba\",\n \"profile_id\": \"urn:uuid:fc805af3-2d9b-549d-ff2c-50477313dbc6\"\n },\n {\n \"role_id\": \"74c7f315-8a6f-c4d4-03ba-e5e6d811d16b\",\n \"profile_id\": \"7de18668-abbb-d942-7949-fc16d69c119a\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:0d25af1a-f5a0-dba8-94eb-4f93eeed71e7\",\n \"profile_id\": \"1dd678a4-916b-4876-85f4-6fe5b06562ae\"\n },\n {\n \"role_id\": \"urn:uuid:3589f4fc-527c-9a15-9036-31f558fc8f67\",\n \"profile_id\": \"77c1853b-3ebb-0673-7bee-1975f1f7cf8b\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18236,7 +18236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a44e160-5165-44d3-b421-c897f9f0e5b3", + "id": "3e625a85-da62-4379-a325-9e2afb0aa01e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18270,7 +18270,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"bee74d2a-88f4-415e-9972-26a387c308ba\",\n \"profile_id\": \"urn:uuid:fc805af3-2d9b-549d-ff2c-50477313dbc6\"\n },\n {\n \"role_id\": \"74c7f315-8a6f-c4d4-03ba-e5e6d811d16b\",\n \"profile_id\": \"7de18668-abbb-d942-7949-fc16d69c119a\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:0d25af1a-f5a0-dba8-94eb-4f93eeed71e7\",\n \"profile_id\": \"1dd678a4-916b-4876-85f4-6fe5b06562ae\"\n },\n {\n \"role_id\": \"urn:uuid:3589f4fc-527c-9a15-9036-31f558fc8f67\",\n \"profile_id\": \"77c1853b-3ebb-0673-7bee-1975f1f7cf8b\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18298,7 +18298,7 @@ } }, { - "id": "c9f8ab3c-4a8e-453b-aaec-d8203dc984ed", + "id": "866eeb29-7278-496a-b195-65db8d43e06e", "name": "Update multiple role-profile contributor relationships", "request": { "name": "Update multiple role-profile contributor relationships", @@ -18329,7 +18329,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"2c438876-4e33-ce62-3748-09ec973f3af2\",\n \"role_id\": \"urn:uuid:5a6e41cd-3b5c-941e-a9f9-7e6301905551\",\n \"profile_id\": \"f3a33dc3-b36d-1be0-bb05-d45cb8dda061\"\n },\n {\n \"id\": \"66e97b31-0cb0-78a1-78f0-cd97d2a16414\",\n \"role_id\": \"9690ce04-426c-b720-4fb5-7e40821c9fa4\",\n \"profile_id\": \"eb4817e1-c203-440d-4bf0-5cbeaea761c3\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:18e9f222-3f6c-f745-5ab4-b235375ea6d5\",\n \"role_id\": \"af5a7362-c4c0-6132-7370-9e9d94ed41cb\",\n \"profile_id\": \"72025cdb-310d-a5ff-0b3d-56a9249f18a5\"\n },\n {\n \"id\": \"urn:uuid:b1d19af8-888b-8405-2953-0c511aca8292\",\n \"role_id\": \"325e7a7b-814d-10ac-f2af-ce774c471314\",\n \"profile_id\": \"urn:uuid:525d33bf-529a-b852-3712-5c2a6e4e31d0\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18341,7 +18341,7 @@ }, "response": [ { - "id": "dda076b3-1654-42e3-8ce2-f3fc63e483d8", + "id": "7b527067-adc5-4978-8739-32ed6937eff1", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18375,7 +18375,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"2c438876-4e33-ce62-3748-09ec973f3af2\",\n \"role_id\": \"urn:uuid:5a6e41cd-3b5c-941e-a9f9-7e6301905551\",\n \"profile_id\": \"f3a33dc3-b36d-1be0-bb05-d45cb8dda061\"\n },\n {\n \"id\": \"66e97b31-0cb0-78a1-78f0-cd97d2a16414\",\n \"role_id\": \"9690ce04-426c-b720-4fb5-7e40821c9fa4\",\n \"profile_id\": \"eb4817e1-c203-440d-4bf0-5cbeaea761c3\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:18e9f222-3f6c-f745-5ab4-b235375ea6d5\",\n \"role_id\": \"af5a7362-c4c0-6132-7370-9e9d94ed41cb\",\n \"profile_id\": \"72025cdb-310d-a5ff-0b3d-56a9249f18a5\"\n },\n {\n \"id\": \"urn:uuid:b1d19af8-888b-8405-2953-0c511aca8292\",\n \"role_id\": \"325e7a7b-814d-10ac-f2af-ce774c471314\",\n \"profile_id\": \"urn:uuid:525d33bf-529a-b852-3712-5c2a6e4e31d0\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18392,12 +18392,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profiles\": [\n {\n \"id\": \"dc4e0fa3-fa45-963a-07c9-2e2d1c92c6da\",\n \"uid\": \"commodo eueiusmodin consectetur \",\n \"role_id\": \"62367b1f-2547-7ede-669c-099d2422a289\",\n \"profile_id\": \"d1708fdc-c65b-d5bc-a882-d044c0e0e736\"\n },\n {\n \"id\": \"urn:uuid:d00c3645-1897-0c8f-3d77-6605889c8cdd\",\n \"uid\": \"irure utaute aliquip proident ex\",\n \"role_id\": \"urn:uuid:0df2e85e-10b4-b49c-5e67-bfc0af691227\",\n \"profile_id\": \"urn:uuid:c8a736ee-2add-5d31-1688-7482ea0e5adb\"\n }\n ]\n}", + "body": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:17fa17b1-e94c-4e03-26fe-04468cc8548e\",\n \"uid\": \"culpa mollit aliqualabore exDuis\",\n \"role_id\": \"urn:uuid:2fbf29d1-5503-3dc2-2539-a4db5f72b73e\",\n \"profile_id\": \"3f56c928-4977-aa71-93c8-5fcb92502ac1\"\n },\n {\n \"id\": \"9d11f454-7e2e-1041-3da8-8b3120d77068\",\n \"uid\": \"fugiat magna consequatreprehende\",\n \"role_id\": \"fade006f-acec-8bb3-4a08-54443b98f91f\",\n \"profile_id\": \"a895ed26-a991-30f7-9781-bbc7ab1ef695\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9c881457-2594-40a0-ad72-40ec88f8adb4", + "id": "f0963a4a-32cb-4071-8521-bf02eec5ed1d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18431,7 +18431,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"2c438876-4e33-ce62-3748-09ec973f3af2\",\n \"role_id\": \"urn:uuid:5a6e41cd-3b5c-941e-a9f9-7e6301905551\",\n \"profile_id\": \"f3a33dc3-b36d-1be0-bb05-d45cb8dda061\"\n },\n {\n \"id\": \"66e97b31-0cb0-78a1-78f0-cd97d2a16414\",\n \"role_id\": \"9690ce04-426c-b720-4fb5-7e40821c9fa4\",\n \"profile_id\": \"eb4817e1-c203-440d-4bf0-5cbeaea761c3\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:18e9f222-3f6c-f745-5ab4-b235375ea6d5\",\n \"role_id\": \"af5a7362-c4c0-6132-7370-9e9d94ed41cb\",\n \"profile_id\": \"72025cdb-310d-a5ff-0b3d-56a9249f18a5\"\n },\n {\n \"id\": \"urn:uuid:b1d19af8-888b-8405-2953-0c511aca8292\",\n \"role_id\": \"325e7a7b-814d-10ac-f2af-ce774c471314\",\n \"profile_id\": \"urn:uuid:525d33bf-529a-b852-3712-5c2a6e4e31d0\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18453,7 +18453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43fa76b7-d21a-4d31-ab7f-571189b0b3ad", + "id": "4492431e-004c-40bc-a88d-cf375508c6ee", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18487,7 +18487,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"2c438876-4e33-ce62-3748-09ec973f3af2\",\n \"role_id\": \"urn:uuid:5a6e41cd-3b5c-941e-a9f9-7e6301905551\",\n \"profile_id\": \"f3a33dc3-b36d-1be0-bb05-d45cb8dda061\"\n },\n {\n \"id\": \"66e97b31-0cb0-78a1-78f0-cd97d2a16414\",\n \"role_id\": \"9690ce04-426c-b720-4fb5-7e40821c9fa4\",\n \"profile_id\": \"eb4817e1-c203-440d-4bf0-5cbeaea761c3\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:18e9f222-3f6c-f745-5ab4-b235375ea6d5\",\n \"role_id\": \"af5a7362-c4c0-6132-7370-9e9d94ed41cb\",\n \"profile_id\": \"72025cdb-310d-a5ff-0b3d-56a9249f18a5\"\n },\n {\n \"id\": \"urn:uuid:b1d19af8-888b-8405-2953-0c511aca8292\",\n \"role_id\": \"325e7a7b-814d-10ac-f2af-ce774c471314\",\n \"profile_id\": \"urn:uuid:525d33bf-529a-b852-3712-5c2a6e4e31d0\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18515,7 +18515,7 @@ } }, { - "id": "d2d1b4c2-1406-4aa0-b032-82364f62e14f", + "id": "2d5c179e-58fb-4a59-abdb-bfa46c4e62b4", "name": "Find role-profile contributor relationship by id", "request": { "name": "Find role-profile contributor relationship by id", @@ -18557,7 +18557,7 @@ }, "response": [ { - "id": "b42875ad-8ef1-4956-8ce2-58dd836f8a13", + "id": "e09b1158-cf35-4077-a133-d1e53109c1e5", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18596,12 +18596,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profile\": {\n \"id\": \"5d73203b-cee0-3ca7-ecd2-04f7ca449272\",\n \"uid\": \"eiusmod sintreprehenderit Duis e\",\n \"role_id\": \"f0836471-ce49-841c-b84d-dafb09a4483e\",\n \"profile_id\": \"urn:uuid:a6f0ad14-ea54-f7cd-952f-2ef7d2c4780e\"\n }\n}", + "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:a5248dc2-8112-0315-5f26-75b7b288cb4a\",\n \"uid\": \"et commodo esse deseruntLorem nu\",\n \"role_id\": \"urn:uuid:4968b93f-af5e-e90d-760c-b6d4af889886\",\n \"profile_id\": \"5393d227-61f7-eba7-d615-c0d9c8f5597e\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5e3f5b8-2b6b-45cc-8a7d-857dacc4efb4", + "id": "8f0b4263-a011-4ddb-93d8-de6a6b78acf2", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18645,7 +18645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cc9da71-1beb-4735-b5c8-ba0378d96e49", + "id": "967de2c3-348d-4ecf-affd-2379429a1908", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18695,7 +18695,7 @@ } }, { - "id": "79677452-31ae-4c64-8c9c-94a219f98fdd", + "id": "14cba45b-b437-4b49-8641-be2d34a7483c", "name": "Update a role-profile contributor relationship by id", "request": { "name": "Update a role-profile contributor relationship by id", @@ -18738,7 +18738,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"69627fb7-aa0f-7e52-52fa-cc89e47a06de\",\n \"profile_id\": \"cabfb12a-fb9f-bc2b-a66e-0af69480e348\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"d4e0bc0e-4efb-a141-14da-10e2288134c1\",\n \"profile_id\": \"cdbdfec0-948b-5cef-0f08-02e06d68c2dc\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18750,7 +18750,7 @@ }, "response": [ { - "id": "74db4059-ed31-4439-b98f-8dd847df7401", + "id": "59b6a39a-a6b5-4cfd-85ea-d811053fd034", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18785,7 +18785,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"69627fb7-aa0f-7e52-52fa-cc89e47a06de\",\n \"profile_id\": \"cabfb12a-fb9f-bc2b-a66e-0af69480e348\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"d4e0bc0e-4efb-a141-14da-10e2288134c1\",\n \"profile_id\": \"cdbdfec0-948b-5cef-0f08-02e06d68c2dc\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18802,12 +18802,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profile\": {\n \"id\": \"5d73203b-cee0-3ca7-ecd2-04f7ca449272\",\n \"uid\": \"eiusmod sintreprehenderit Duis e\",\n \"role_id\": \"f0836471-ce49-841c-b84d-dafb09a4483e\",\n \"profile_id\": \"urn:uuid:a6f0ad14-ea54-f7cd-952f-2ef7d2c4780e\"\n }\n}", + "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:a5248dc2-8112-0315-5f26-75b7b288cb4a\",\n \"uid\": \"et commodo esse deseruntLorem nu\",\n \"role_id\": \"urn:uuid:4968b93f-af5e-e90d-760c-b6d4af889886\",\n \"profile_id\": \"5393d227-61f7-eba7-d615-c0d9c8f5597e\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "78a6df31-05d2-4748-b842-a6dd2f31525c", + "id": "a3a1b12d-456d-4c90-b850-4dc06c9683e0", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18842,7 +18842,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"69627fb7-aa0f-7e52-52fa-cc89e47a06de\",\n \"profile_id\": \"cabfb12a-fb9f-bc2b-a66e-0af69480e348\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"d4e0bc0e-4efb-a141-14da-10e2288134c1\",\n \"profile_id\": \"cdbdfec0-948b-5cef-0f08-02e06d68c2dc\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18864,7 +18864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2ef5f02-c51a-48d4-b276-126332946646", + "id": "4e7cbd0d-ce44-4af2-83c4-716f621b1698", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18899,7 +18899,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"69627fb7-aa0f-7e52-52fa-cc89e47a06de\",\n \"profile_id\": \"cabfb12a-fb9f-bc2b-a66e-0af69480e348\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"d4e0bc0e-4efb-a141-14da-10e2288134c1\",\n \"profile_id\": \"cdbdfec0-948b-5cef-0f08-02e06d68c2dc\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18927,7 +18927,7 @@ } }, { - "id": "981661a6-2d52-4447-b379-d75e699cd4c0", + "id": "af904e54-07ae-41bd-8cce-e4ed8469426a", "name": "Delete a role profile assignment", "request": { "name": "Delete a role profile assignment", @@ -18969,7 +18969,7 @@ }, "response": [ { - "id": "dcbfaf81-a62e-48df-8b88-f049ffc16f57", + "id": "9fadd1a1-4987-4c21-9c02-847346e637ce", "name": "Role profile was destroyed", "originalRequest": { "url": { @@ -19013,7 +19013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0873d8f-c572-4ae2-9084-411a7bf92fa6", + "id": "aa6540ae-5eb8-4bb7-9dd9-af423b732a88", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19057,7 +19057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9a1a92e-c110-4560-9673-5d7b1f91711f", + "id": "f0671ec7-2500-4863-a0cf-0418929f402a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19113,7 +19113,7 @@ "description": "", "item": [ { - "id": "d47adfad-6511-4adc-bcb1-852223997ce1", + "id": "23c21aeb-804c-48b2-a3d8-a838cd54a790", "name": "Create a create workflow", "request": { "name": "Create a create workflow", @@ -19157,7 +19157,7 @@ }, "response": [ { - "id": "cb549243-997c-4ddd-8d23-36fe83223599", + "id": "1c179906-cd92-4b80-8869-d78ac4833fed", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19209,12 +19209,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:1622c943-c2a0-71c0-5ade-9c6b36b0b702\",\n \"uid\": \"fugiat consequat ut estcommodosi\",\n \"workflow_id\": \"90f79384-923b-3d8c-82c6-47735a24710d\",\n \"requester_id\": \"14d30d1d-e0c3-9b7a-e6a1-a2f163153f6b\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:736aada7-9139-d37a-73e2-fe20f703ed13\",\n \"profile_ids\": [\n \"85d3243c-10a0-da43-d3f1-eb779b77b6c0\",\n \"80a50f11-fed2-05d5-2cab-3c17354ebbfc\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:65e7e6ac-cd75-fe0c-1f10-98c685dca7c1\",\n \"uid\": \"esse dolore ea DuisDuis non ut e\",\n \"workflow_id\": \"0d8e2a0a-07b6-49a0-93cd-ecb648c8c67a\",\n \"requester_id\": \"047a0109-987d-a620-5aa8-1354d9630494\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:a620552a-692d-4557-e28e-71fc4a12f9e7\",\n \"profile_ids\": [\n \"a0de6287-4be1-c538-c924-9e33fece8b27\",\n \"e36e08f6-6818-8fee-0ece-07e8c6a86c83\"\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": "d3042b98-8165-4e9c-9d18-704176352436", + "id": "744a9ac8-e712-41cc-b820-8dc325a9971a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19271,7 +19271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80efff7a-75ff-449f-abbf-a15bc0f1fde0", + "id": "c8e2f071-284f-413e-ab23-b694a1318899", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19334,7 +19334,7 @@ } }, { - "id": "9087ab0d-60bf-49ba-ae79-fea13a1919fc", + "id": "0ee5a8f3-efa4-45da-b49c-a29466e33fe5", "name": "Create an update workflow", "request": { "name": "Create an update workflow", @@ -19378,7 +19378,7 @@ }, "response": [ { - "id": "b711b536-42a1-4036-b2dd-3952c6e3b9ea", + "id": "fd7ce947-2c75-4d63-acd9-cff8ee75d8d3", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19430,12 +19430,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:1622c943-c2a0-71c0-5ade-9c6b36b0b702\",\n \"uid\": \"fugiat consequat ut estcommodosi\",\n \"workflow_id\": \"90f79384-923b-3d8c-82c6-47735a24710d\",\n \"requester_id\": \"14d30d1d-e0c3-9b7a-e6a1-a2f163153f6b\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:736aada7-9139-d37a-73e2-fe20f703ed13\",\n \"profile_ids\": [\n \"85d3243c-10a0-da43-d3f1-eb779b77b6c0\",\n \"80a50f11-fed2-05d5-2cab-3c17354ebbfc\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:65e7e6ac-cd75-fe0c-1f10-98c685dca7c1\",\n \"uid\": \"esse dolore ea DuisDuis non ut e\",\n \"workflow_id\": \"0d8e2a0a-07b6-49a0-93cd-ecb648c8c67a\",\n \"requester_id\": \"047a0109-987d-a620-5aa8-1354d9630494\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:a620552a-692d-4557-e28e-71fc4a12f9e7\",\n \"profile_ids\": [\n \"a0de6287-4be1-c538-c924-9e33fece8b27\",\n \"e36e08f6-6818-8fee-0ece-07e8c6a86c83\"\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": "92d9ee77-645f-4425-88ed-50a197c78185", + "id": "6024458f-7d78-4ab4-8d03-4f2b648db545", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19492,7 +19492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af9545e1-99b4-4d1b-9e42-66be106a65f8", + "id": "4cf77c77-a439-46ea-a1c9-284dd66405b3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19555,7 +19555,7 @@ } }, { - "id": "9d701d2f-1f1f-4555-9511-4bb82a5f6b6b", + "id": "7f32c3d9-ba98-4db9-ade1-42e0ed8d642e", "name": "Create a batch workflow", "request": { "name": "Create a batch workflow", @@ -19587,7 +19587,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"false\",\n \"multiple_requests\": \"false\"\n }\n }\n}", + "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"true\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19599,7 +19599,7 @@ }, "response": [ { - "id": "da2f4001-fb12-47de-8411-09c85cffe3b1", + "id": "8589083f-1b19-4619-8588-94035feaca6e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19634,7 +19634,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"false\",\n \"multiple_requests\": \"false\"\n }\n }\n}", + "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"true\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19651,12 +19651,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:1622c943-c2a0-71c0-5ade-9c6b36b0b702\",\n \"uid\": \"fugiat consequat ut estcommodosi\",\n \"workflow_id\": \"90f79384-923b-3d8c-82c6-47735a24710d\",\n \"requester_id\": \"14d30d1d-e0c3-9b7a-e6a1-a2f163153f6b\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:736aada7-9139-d37a-73e2-fe20f703ed13\",\n \"profile_ids\": [\n \"85d3243c-10a0-da43-d3f1-eb779b77b6c0\",\n \"80a50f11-fed2-05d5-2cab-3c17354ebbfc\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:65e7e6ac-cd75-fe0c-1f10-98c685dca7c1\",\n \"uid\": \"esse dolore ea DuisDuis non ut e\",\n \"workflow_id\": \"0d8e2a0a-07b6-49a0-93cd-ecb648c8c67a\",\n \"requester_id\": \"047a0109-987d-a620-5aa8-1354d9630494\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:a620552a-692d-4557-e28e-71fc4a12f9e7\",\n \"profile_ids\": [\n \"a0de6287-4be1-c538-c924-9e33fece8b27\",\n \"e36e08f6-6818-8fee-0ece-07e8c6a86c83\"\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": "9f5fc7de-da73-413b-b0a2-65253ab0c3d9", + "id": "c268690d-54eb-481f-98cb-28f04931b40e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19691,7 +19691,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"false\",\n \"multiple_requests\": \"false\"\n }\n }\n}", + "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"true\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19713,7 +19713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37d3bbd3-f6d3-4b1a-b8e8-14d46178231a", + "id": "05f47626-85f8-45f6-9d9c-4fe4849d0fc0", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19748,7 +19748,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"false\",\n \"multiple_requests\": \"false\"\n }\n }\n}", + "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"true\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19776,7 +19776,7 @@ } }, { - "id": "6b2ef0c5-3807-4b75-b6ce-bf6da80ca595", + "id": "3db5dddb-c43e-4d2f-bc3d-0ffd6b1dc9de", "name": "Create an automated workflow", "request": { "name": "Create an automated workflow", @@ -19820,7 +19820,7 @@ }, "response": [ { - "id": "a0cb9071-9ab5-4b51-be90-5e1f48f6569f", + "id": "27d2468c-40fd-4eaa-a2bf-e183da4b9177", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19872,12 +19872,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:1622c943-c2a0-71c0-5ade-9c6b36b0b702\",\n \"uid\": \"fugiat consequat ut estcommodosi\",\n \"workflow_id\": \"90f79384-923b-3d8c-82c6-47735a24710d\",\n \"requester_id\": \"14d30d1d-e0c3-9b7a-e6a1-a2f163153f6b\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:736aada7-9139-d37a-73e2-fe20f703ed13\",\n \"profile_ids\": [\n \"85d3243c-10a0-da43-d3f1-eb779b77b6c0\",\n \"80a50f11-fed2-05d5-2cab-3c17354ebbfc\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:65e7e6ac-cd75-fe0c-1f10-98c685dca7c1\",\n \"uid\": \"esse dolore ea DuisDuis non ut e\",\n \"workflow_id\": \"0d8e2a0a-07b6-49a0-93cd-ecb648c8c67a\",\n \"requester_id\": \"047a0109-987d-a620-5aa8-1354d9630494\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:a620552a-692d-4557-e28e-71fc4a12f9e7\",\n \"profile_ids\": [\n \"a0de6287-4be1-c538-c924-9e33fece8b27\",\n \"e36e08f6-6818-8fee-0ece-07e8c6a86c83\"\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": "fdf71441-f3aa-45ae-a68a-5cf865ddff7f", + "id": "3287c9d9-fef3-4dd1-9a92-5a53e3905b40", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19934,7 +19934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9d064e6-9c91-4f6e-be24-27668fde94bb", + "id": "db262a1e-bcfa-44f9-9df2-da96f82ca914", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19997,7 +19997,7 @@ } }, { - "id": "34b5e39f-09d9-44cf-8707-0f0470e6fe84", + "id": "31653b85-6424-4ae4-a0ed-ca599e6ef3df", "name": "Create a registration workflow", "request": { "name": "Create a registration workflow", @@ -20041,7 +20041,7 @@ }, "response": [ { - "id": "41c5544b-e55a-4401-bcd3-c8e3dd1fe800", + "id": "31fa7c9f-4ec7-47bb-810d-6d4c1a372191", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20093,12 +20093,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:1622c943-c2a0-71c0-5ade-9c6b36b0b702\",\n \"uid\": \"fugiat consequat ut estcommodosi\",\n \"workflow_id\": \"90f79384-923b-3d8c-82c6-47735a24710d\",\n \"requester_id\": \"14d30d1d-e0c3-9b7a-e6a1-a2f163153f6b\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:736aada7-9139-d37a-73e2-fe20f703ed13\",\n \"profile_ids\": [\n \"85d3243c-10a0-da43-d3f1-eb779b77b6c0\",\n \"80a50f11-fed2-05d5-2cab-3c17354ebbfc\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:65e7e6ac-cd75-fe0c-1f10-98c685dca7c1\",\n \"uid\": \"esse dolore ea DuisDuis non ut e\",\n \"workflow_id\": \"0d8e2a0a-07b6-49a0-93cd-ecb648c8c67a\",\n \"requester_id\": \"047a0109-987d-a620-5aa8-1354d9630494\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:a620552a-692d-4557-e28e-71fc4a12f9e7\",\n \"profile_ids\": [\n \"a0de6287-4be1-c538-c924-9e33fece8b27\",\n \"e36e08f6-6818-8fee-0ece-07e8c6a86c83\"\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": "3987e70a-dd72-44ad-a44c-df7dedf237dd", + "id": "2ffc40e3-25e6-4ae6-b27b-d8a237080eb3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20155,7 +20155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ec59c81-e785-4b26-90d8-c9af829e1ce9", + "id": "f4a839f0-10d9-49f2-babe-fce37aa83f81", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20218,7 +20218,7 @@ } }, { - "id": "6aabcacf-8130-455b-891a-56b045ddea88", + "id": "7901573f-cac6-4807-a915-9c08855f3e75", "name": "Create a login workflow", "request": { "name": "Create a login workflow", @@ -20262,7 +20262,7 @@ }, "response": [ { - "id": "eaa062c6-5b26-4766-932b-4c2306ff03c9", + "id": "31109e6a-993c-4916-aae5-259f40f281a5", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20314,12 +20314,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:1622c943-c2a0-71c0-5ade-9c6b36b0b702\",\n \"uid\": \"fugiat consequat ut estcommodosi\",\n \"workflow_id\": \"90f79384-923b-3d8c-82c6-47735a24710d\",\n \"requester_id\": \"14d30d1d-e0c3-9b7a-e6a1-a2f163153f6b\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:736aada7-9139-d37a-73e2-fe20f703ed13\",\n \"profile_ids\": [\n \"85d3243c-10a0-da43-d3f1-eb779b77b6c0\",\n \"80a50f11-fed2-05d5-2cab-3c17354ebbfc\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:65e7e6ac-cd75-fe0c-1f10-98c685dca7c1\",\n \"uid\": \"esse dolore ea DuisDuis non ut e\",\n \"workflow_id\": \"0d8e2a0a-07b6-49a0-93cd-ecb648c8c67a\",\n \"requester_id\": \"047a0109-987d-a620-5aa8-1354d9630494\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:a620552a-692d-4557-e28e-71fc4a12f9e7\",\n \"profile_ids\": [\n \"a0de6287-4be1-c538-c924-9e33fece8b27\",\n \"e36e08f6-6818-8fee-0ece-07e8c6a86c83\"\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": "bc8c9800-7e40-422a-8295-1f4c596823cd", + "id": "d2d4eaea-bc89-4164-858b-ae27dde1c7b2", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20376,7 +20376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7bfcebc-5669-4dc9-b4b7-93a4d5ca7803", + "id": "aeb8161f-c17e-4b55-9fad-4b5866023580", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20439,7 +20439,7 @@ } }, { - "id": "3c2c79e8-6cb5-4892-84ac-23224efed7a4", + "id": "92a5f79b-c021-4836-87ce-cca82e74d429", "name": "Create a password reset workflow", "request": { "name": "Create a password reset workflow", @@ -20483,7 +20483,7 @@ }, "response": [ { - "id": "5db498f9-f83c-433a-a546-73ac42e6912a", + "id": "9aedd1cb-43ff-44d3-bb0b-721680647cdb", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20535,12 +20535,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:1622c943-c2a0-71c0-5ade-9c6b36b0b702\",\n \"uid\": \"fugiat consequat ut estcommodosi\",\n \"workflow_id\": \"90f79384-923b-3d8c-82c6-47735a24710d\",\n \"requester_id\": \"14d30d1d-e0c3-9b7a-e6a1-a2f163153f6b\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:736aada7-9139-d37a-73e2-fe20f703ed13\",\n \"profile_ids\": [\n \"85d3243c-10a0-da43-d3f1-eb779b77b6c0\",\n \"80a50f11-fed2-05d5-2cab-3c17354ebbfc\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:65e7e6ac-cd75-fe0c-1f10-98c685dca7c1\",\n \"uid\": \"esse dolore ea DuisDuis non ut e\",\n \"workflow_id\": \"0d8e2a0a-07b6-49a0-93cd-ecb648c8c67a\",\n \"requester_id\": \"047a0109-987d-a620-5aa8-1354d9630494\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:a620552a-692d-4557-e28e-71fc4a12f9e7\",\n \"profile_ids\": [\n \"a0de6287-4be1-c538-c924-9e33fece8b27\",\n \"e36e08f6-6818-8fee-0ece-07e8c6a86c83\"\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": "1f92f2a2-58d4-4fae-aff2-b69bdd6d0439", + "id": "1731d4d3-a522-4fbb-86ca-a1570b2c1098", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20597,7 +20597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f14cb250-83de-42cd-9413-34fac8023a47", + "id": "f1d68925-8b34-4915-9763-7c3642d49ab7", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20666,7 +20666,7 @@ "description": "", "item": [ { - "id": "85445fda-80c9-4188-a999-11b18098b679", + "id": "400ed1cc-582a-4961-8640-2d5f8611f034", "name": "Create an approval action", "request": { "name": "Create an approval action", @@ -20710,7 +20710,7 @@ }, "response": [ { - "id": "3fc1dce5-80ab-4259-a644-5930c9e83c36", + "id": "327e89de-8c50-4335-bce6-545fe807a221", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20767,7 +20767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6561bf5c-ad5f-464e-b016-f712836fafef", + "id": "606f3423-dfc2-4dc8-b914-378aa73e69f9", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20824,7 +20824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a54baf9-5485-4275-be69-fdd9f1c9f965", + "id": "7253dfec-04bd-4726-a085-aded08ab380a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20887,7 +20887,7 @@ } }, { - "id": "d222806b-048b-4241-a65e-8074b8646a5e", + "id": "939172d4-fcb6-4978-8964-6e0b410f5a55", "name": "Create ask security question action", "request": { "name": "Create ask security question action", @@ -20931,7 +20931,7 @@ }, "response": [ { - "id": "7505d8a0-9db7-408d-9c5f-1b5d7f6f0a8e", + "id": "d86d2827-99d7-4b2d-9f27-972c427edb8a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20988,7 +20988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0957aad6-bf1f-4eee-a052-8be2d9ff46e2", + "id": "f2f09bb5-7dd3-40a0-8485-592475ba8006", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21045,7 +21045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22f2a1b6-8672-4b7f-987c-f0c1c8d8704e", + "id": "2794689e-6340-46d7-9f9f-11c71bcec904", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21108,7 +21108,7 @@ } }, { - "id": "d038235f-e4a5-4d8b-b191-61eabc7cbbab", + "id": "1508f4e4-756f-41da-b8de-c06b8e3205e1", "name": "Create an auto assign action", "request": { "name": "Create an auto assign action", @@ -21152,7 +21152,7 @@ }, "response": [ { - "id": "32368abe-ee82-4897-a077-d08225800346", + "id": "9d4dcbac-a16f-4a18-87cc-7a3e6f5fc724", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21209,7 +21209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42bf3dfe-6b23-4dc6-bafb-d315afa9131b", + "id": "1cc0d2bf-cf69-4bbc-ba79-a5c9907c662c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21266,7 +21266,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe796cd2-5144-4bc1-9a5d-3cedce684180", + "id": "36ea2e37-44ac-4be8-93d9-97f8f7b929f1", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21329,7 +21329,7 @@ } }, { - "id": "bec80355-a1f7-4203-a610-06e1ac7d3d8b", + "id": "a3199616-a538-4156-bd2b-d7ede6daa3fd", "name": "Create a batch update action", "request": { "name": "Create a batch update action", @@ -21373,7 +21373,7 @@ }, "response": [ { - "id": "86246ce8-dd31-4db3-934e-de45891fcaef", + "id": "7f904840-ca65-403b-9317-acde9dc943f3", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21430,7 +21430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48723d17-3e04-4b40-a396-7459d27f9151", + "id": "eb66fdce-1c58-49d8-98c8-afd7a2a6ed25", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21487,7 +21487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8111a2a2-edcc-497a-b3b7-65244a934dd2", + "id": "95fdbf28-90d9-4817-88e3-7665975453fa", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21550,7 +21550,7 @@ } }, { - "id": "dc3b30e0-74a9-4257-80bf-be0c7d522672", + "id": "96a89c59-0e92-4191-beec-a5d3f4699a6f", "name": "Create a close session action", "request": { "name": "Create a close session action", @@ -21594,7 +21594,7 @@ }, "response": [ { - "id": "75383538-944e-4bc7-a527-fc5e33b89447", + "id": "9c595d4f-4689-469d-9aa1-24fd2030e181", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21651,7 +21651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66262325-9c4a-4382-9ff1-19dc50289c86", + "id": "9621ba01-0dd1-43da-abea-c24a638cdc4e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21708,7 +21708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72759689-04c1-46f9-8b60-dac730bc18dc", + "id": "9695e631-2bdc-42cc-89c3-fa2bf8c57197", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21771,7 +21771,7 @@ } }, { - "id": "d3f91474-593e-4930-be37-0b51852497a8", + "id": "96647798-aba2-4047-a63d-053dc1bc3ff6", "name": "Create a contributors action", "request": { "name": "Create a contributors action", @@ -21815,7 +21815,7 @@ }, "response": [ { - "id": "efd53aaf-02a7-4e7d-a531-4a61f1b917c0", + "id": "e28e87a0-e6d6-494d-83c3-267f49bfd025", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21872,7 +21872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77c10eeb-af86-47a2-b846-605515049b39", + "id": "9092f102-2518-4525-abb8-3b59aa3f11bb", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21929,7 +21929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e19589b-222c-41a7-bcd4-d918fb80a7e9", + "id": "1f877797-4331-479b-ac61-caf09ceac8ff", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21992,7 +21992,7 @@ } }, { - "id": "7fca231c-667e-4c33-8132-e03ed8d3b0a5", + "id": "78e3ab12-c58e-43ef-af80-89832b257488", "name": "Create a create profile action", "request": { "name": "Create a create profile action", @@ -22036,7 +22036,7 @@ }, "response": [ { - "id": "1015b8b0-c491-4cd3-8371-6a59f7b244ba", + "id": "d4eee57a-bece-40b4-baec-90ecfb3baa94", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22093,7 +22093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e94565e-4ee8-4234-bc40-a61a4de7afd9", + "id": "ed1f2dfb-883e-4929-9c50-1a72159a2b3b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22150,7 +22150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a58d543-4e85-438c-982a-e871cdbdf48c", + "id": "384fcd36-65c2-4b0b-9552-b7aef2f12644", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22213,7 +22213,7 @@ } }, { - "id": "151829f5-b290-49e1-8027-4568ce1f7614", + "id": "8ffa0abe-e575-448c-9e87-b465efcf26f6", "name": "Create a duplicate prevention action", "request": { "name": "Create a duplicate prevention action", @@ -22257,7 +22257,7 @@ }, "response": [ { - "id": "0e2716e7-30af-4a6d-8043-750ea426b5b4", + "id": "555ff9bf-3c18-47cb-b9f9-13abf7dda19e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22314,7 +22314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33f5e0ec-dba4-43ca-b51a-8d2786693bc6", + "id": "e483d9e5-9b44-4a32-86e8-8d33244cd766", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22371,7 +22371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b413af4-a7b3-410a-ade2-83d43c116067", + "id": "01d1392e-ad70-4382-b4f7-ee7a70e6d46a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22434,7 +22434,7 @@ } }, { - "id": "85636f6b-663a-451f-8a71-3347edb96175", + "id": "1bd3ab5a-f5bf-480e-895e-7826277e5b32", "name": "Create an email verification action", "request": { "name": "Create an email verification action", @@ -22478,7 +22478,7 @@ }, "response": [ { - "id": "f6ef7651-cd51-4ad3-9f9d-ba5c3d3f0a13", + "id": "64cfa04f-6cfe-4f04-bce8-d7b244a85e49", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22535,7 +22535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89077086-c6c3-46f5-805f-d5a69e80051c", + "id": "b9e893cf-94c1-4fd5-89e1-c57ce4030ec4", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22592,7 +22592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16115688-9fca-423f-bf5a-894658b82513", + "id": "6b2608ec-261d-4d08-8ca5-f776946f9690", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22655,7 +22655,7 @@ } }, { - "id": "0d1b99a2-95fc-46cb-b5d6-6df76579ad5d", + "id": "16b6379f-2976-4d08-a54c-a6872252a660", "name": "Create a fulfillment action", "request": { "name": "Create a fulfillment action", @@ -22699,7 +22699,7 @@ }, "response": [ { - "id": "80b26185-b3ba-49b2-804f-37fb6bc2f760", + "id": "d5a71e41-486c-49e8-acb0-b7769308cd21", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22756,7 +22756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "098fe569-377c-4981-b96b-9c48888167af", + "id": "15edee42-0346-47d4-afae-feded1c57a43", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22813,7 +22813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a19249e-4fe6-40ea-9ee2-d555549b0bb9", + "id": "90518947-e3b9-48e1-99b9-af1eaae83cc2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22876,7 +22876,7 @@ } }, { - "id": "ca8515ec-3f9e-425a-9913-65b7a194a80d", + "id": "46d81506-5d59-4a62-9ce3-97cd95e939a4", "name": "Create an identity proofing action", "request": { "name": "Create an identity proofing action", @@ -22920,7 +22920,7 @@ }, "response": [ { - "id": "44642d77-99c1-4db9-a164-e02e695fd734", + "id": "24d0359a-3104-401a-8f17-79ba74d76034", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22977,7 +22977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7b7ad90-a3ce-4416-ada7-5f3ca2194aa7", + "id": "f563f9e9-e1da-43b7-964b-40f0f8747d07", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23034,7 +23034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d817a14e-fbdf-4a53-b78f-60920200d4b7", + "id": "6f793b1d-c83e-4d07-a871-9c853e3503c4", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23097,7 +23097,7 @@ } }, { - "id": "725c9df7-61fc-4e7c-9b73-19b65ce703c1", + "id": "b13d8ba1-3ce6-4dbe-909b-14cf0ff9d7bd", "name": "Create an invitation action", "request": { "name": "Create an invitation action", @@ -23141,7 +23141,7 @@ }, "response": [ { - "id": "7f3cb473-e0c6-4281-8ae5-b64f903fd26e", + "id": "31825257-a24d-4f97-a7f1-575d5a5aa216", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23198,7 +23198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a340bbd-5130-4e32-a12f-5ed5a66efe96", + "id": "3d29f29d-9d34-4c1d-9be0-2b2b8a1676d8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23255,7 +23255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8125c696-96b2-4eed-9471-eb9e5674af54", + "id": "a5c4f6e5-26da-40fe-87d1-d6fdbf7da21a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23318,7 +23318,7 @@ } }, { - "id": "208a8cf0-60b5-4d3e-90f5-df158e4e8ed5", + "id": "2b2175a7-9407-43a8-8bee-1ab4ea43925b", "name": "Create a ldap action", "request": { "name": "Create a ldap action", @@ -23362,7 +23362,7 @@ }, "response": [ { - "id": "4146bb13-5b8a-4486-a2c3-84b3337daf6d", + "id": "21094d80-5a15-4438-a88b-b22e629b7c36", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23419,7 +23419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "097f0eb3-0719-4c4a-a3b7-b3c3e1130cb5", + "id": "0dbd2fef-6666-4302-bc30-5c8609b9bec0", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23476,7 +23476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b498b97a-b10a-4db5-b2d5-706273a823d2", + "id": "969ee89b-a49c-4a99-86b8-d1123c7422a5", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23539,7 +23539,7 @@ } }, { - "id": "280434c9-1748-47d3-9aca-a463f355bdc5", + "id": "2eed413a-5365-4366-bca4-87a536edd89d", "name": "Create a notification action", "request": { "name": "Create a notification action", @@ -23583,7 +23583,7 @@ }, "response": [ { - "id": "405d5c69-691e-4991-b0a0-c89227de8390", + "id": "9a6493bd-d854-4b6c-aa14-617e23e9521a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23640,7 +23640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1c5e38d-2190-4087-a532-d5264fcb4fce", + "id": "ad500eb3-37f2-4e65-b2b8-b0ba1e0bc3e2", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23697,7 +23697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a791619-b795-4e09-b3c3-12e682d2ae1b", + "id": "f60253bf-9c63-4b4f-bd51-1f64d936121f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23760,7 +23760,7 @@ } }, { - "id": "32ba71c2-0c56-44e5-b605-7aa57e8104d1", + "id": "89e74962-7269-43b1-a137-46ebd84fe64d", "name": "Create a password reset action", "request": { "name": "Create a password reset action", @@ -23804,7 +23804,7 @@ }, "response": [ { - "id": "82f060b9-68ae-453b-a4bf-6b1612bf0d23", + "id": "1dd9662a-c61a-4bef-8f81-c9027504456c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23861,7 +23861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73621670-db7b-4475-a9a4-14171056d321", + "id": "7229dcd5-a2d9-4d5f-9a70-c59fb06a44c8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23918,7 +23918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18c24677-ad20-46a6-9365-b60c510a5d1c", + "id": "e6b3ea8a-05a7-47e6-9b1b-4c38eee1a651", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23981,7 +23981,7 @@ } }, { - "id": "4274f2d9-90f7-448e-aa93-2cbbf87d412d", + "id": "5176cb89-1eac-4f62-a4d6-355ab0439616", "name": "Create a profile check action", "request": { "name": "Create a profile check action", @@ -24025,7 +24025,7 @@ }, "response": [ { - "id": "58dc2242-a27a-49bc-8cc0-f7c0c33e802b", + "id": "9c111e34-e86b-4fba-80ea-74ce95df4dea", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24082,7 +24082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "354aebd6-b7c8-4385-94d3-7e3ccdce8bdf", + "id": "f108b14d-60d2-4654-aceb-741946bbfa56", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24139,7 +24139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d68781fe-bcc9-4d4b-b8c1-7bf450305bc3", + "id": "8573d978-32b3-4379-9b63-03b5d0ea371d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24202,7 +24202,7 @@ } }, { - "id": "f82f0187-b589-40ed-8820-60a8000966f4", + "id": "77dbb5ca-ba4e-4619-a8e8-3ed332c2c85e", "name": "Create a profile select action", "request": { "name": "Create a profile select action", @@ -24246,7 +24246,7 @@ }, "response": [ { - "id": "007fb2df-26a9-43d6-8ca3-0039d0525a07", + "id": "ce81c54b-7aa7-4f0e-a8d1-f555010b1d88", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24303,7 +24303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a379d482-dc5b-4baf-a0a2-15e22c2aae00", + "id": "f12ec194-7951-44c4-b5d6-8d60783cf8a4", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24360,7 +24360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d31411f6-7f50-4137-8426-593ec12f2b2a", + "id": "c99a9ead-4018-4316-a5f1-40e2dd0e24ff", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24423,7 +24423,7 @@ } }, { - "id": "560a2e58-ac5d-428c-936f-1bd3fa643c87", + "id": "f74614c4-b8c1-4318-8609-1cc7299ad219", "name": "Create a request action", "request": { "name": "Create a request action", @@ -24467,7 +24467,7 @@ }, "response": [ { - "id": "8a54cc10-0508-4865-88be-0d66eb41a02a", + "id": "cf9ebfa2-1e54-4e8a-b24d-b8677aaa7d7c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24524,7 +24524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bc00eb1-7102-4b04-b672-45347128f16f", + "id": "9e51ad01-4bb6-4ce2-aa59-ea2310981e7e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24581,7 +24581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55b43f88-87f1-41e1-ac05-454a9c14fd21", + "id": "15c60cc3-a97b-406f-825c-ad9ca183530d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24644,7 +24644,7 @@ } }, { - "id": "ffa839ba-44d8-43e3-b1f4-ebf0ac43f9b5", + "id": "48f7393b-0cf9-4cbe-8b7d-f4b96365f110", "name": "Create a REST API action", "request": { "name": "Create a REST API action", @@ -24688,7 +24688,7 @@ }, "response": [ { - "id": "b1508f20-faf7-477b-ac08-60b0953d5c6b", + "id": "3bcbf4c9-4685-4d27-ab41-805f05c81b5c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24745,7 +24745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d78b0d49-899f-4917-9832-34bd9f6e7d1c", + "id": "66fb00f6-4595-429f-b8ae-b366e67f1d28", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24802,7 +24802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df713a80-737d-433c-b7ed-88322a41710d", + "id": "9b83014d-a249-4286-a949-f9d48c89a5d2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24865,7 +24865,7 @@ } }, { - "id": "db5ac868-ebfa-42dd-a59c-09bb4a9ac3d9", + "id": "4996737f-d919-409e-86e8-a765c38f0d38", "name": "Create a review action", "request": { "name": "Create a review action", @@ -24909,7 +24909,7 @@ }, "response": [ { - "id": "372d1330-0b7d-4af7-82a8-f4e50509281a", + "id": "e38d6f3c-2a10-4482-adb7-73f6cc30f4d7", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24966,7 +24966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82215d69-6fab-458b-bdde-7ac309cf2b22", + "id": "955f6cba-0379-4647-b4ce-7b8d4eb6f2db", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25023,7 +25023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ac48c59-153b-4270-90d3-c7f0ae8f1346", + "id": "6c0af1be-bf16-46d7-aa6f-1c84d323a02d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25086,7 +25086,7 @@ } }, { - "id": "50465d63-ef02-4485-8a49-5a757f828470", + "id": "2c3b515c-222d-4312-97e7-c4582f6706dd", "name": "Create a run workflow action", "request": { "name": "Create a run workflow action", @@ -25130,7 +25130,7 @@ }, "response": [ { - "id": "a2ee2190-06d7-4369-a50a-7c0f9d110035", + "id": "c7771ec6-b5ec-4679-99a5-1dc9a8db5a8f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25187,7 +25187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adf3f097-e347-4898-8baa-6c9171c07896", + "id": "ac966772-59f9-41c0-aa1a-a28aa49657da", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25244,7 +25244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d995ad4-8e7e-4205-8308-71d44a451815", + "id": "39aaa693-455c-42c7-a7fe-5509bc9f75d0", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25307,7 +25307,7 @@ } }, { - "id": "66baa38f-954b-4cea-9752-1e800d92e901", + "id": "531cad57-9b4e-4c12-bc4d-45b0e97bca91", "name": "Create a set attributes action", "request": { "name": "Create a set attributes action", @@ -25351,7 +25351,7 @@ }, "response": [ { - "id": "fa7964f9-e831-4eed-b443-2d4fb0328fbd", + "id": "b9fc83bf-4ffb-4cdf-95af-29ea27754ee6", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25408,7 +25408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a16486d5-3a42-4bd5-a320-9bb9a2ba98e2", + "id": "c5fcd093-b990-49c9-9ceb-993f49f920b9", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25465,7 +25465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f265e5c-8ea2-48af-8944-807130aa8b24", + "id": "7ab996cc-8eed-4cdf-870c-8a0e8a5932de", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25528,7 +25528,7 @@ } }, { - "id": "ce5f5456-e1b9-4757-be66-8466df142c64", + "id": "927d89fb-39e9-4e97-b26e-964f52544171", "name": "Create set security question action", "request": { "name": "Create set security question action", @@ -25572,7 +25572,7 @@ }, "response": [ { - "id": "f979e3fc-3f90-4e43-9653-8c890b7cfe69", + "id": "8394bf68-78c0-4f29-bf09-ad5ce1ad9e80", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25629,7 +25629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ade8668-bd2f-41de-bcee-2a764e1a23b5", + "id": "49f88c48-9fa3-4030-b6d6-e5fca50c916f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25686,7 +25686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f019da0-feb8-421a-8aa9-5969ea897b34", + "id": "44edc15c-9976-4d31-8384-7c43e44fbf01", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25749,7 +25749,7 @@ } }, { - "id": "03448647-cf3b-4948-8b28-81e552b45d25", + "id": "e89cb523-f666-428f-95ee-ec93f86c0d09", "name": "Create a SOAP API action", "request": { "name": "Create a SOAP API action", @@ -25793,7 +25793,7 @@ }, "response": [ { - "id": "db1dad9c-385e-4cd1-a180-71a22f4d5123", + "id": "24685226-1211-4895-aede-6c7165661af9", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25850,7 +25850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "400de90c-0bb8-4f65-82a6-ae4eb3057fbc", + "id": "46a816a9-a505-4083-a672-242d942988f8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25907,7 +25907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "215381a4-6ee3-4bf8-95b3-fb0c082eb4e6", + "id": "3e09226e-bafd-4023-8858-6169da526f7a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25970,7 +25970,7 @@ } }, { - "id": "2d7d289f-b1ba-4800-bdb7-c05f42764f38", + "id": "e10e1194-2d2a-4191-8f0d-881da0988f52", "name": "Create a status change action", "request": { "name": "Create a status change action", @@ -26014,7 +26014,7 @@ }, "response": [ { - "id": "0c3e19a5-7f7d-4605-922f-b8d2ffb8c3a5", + "id": "f494a739-b165-4dee-aa4e-99cc58d26eb7", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26071,7 +26071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a6bad22-3620-47df-8a5c-8147f2075ea0", + "id": "4adc09ba-ea8a-42a2-b952-2e980df8081e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26128,7 +26128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a0be571-b07a-4722-a23d-62944bd916c4", + "id": "e45eba8b-5ce1-4060-bfff-d15582807f96", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26191,7 +26191,7 @@ } }, { - "id": "2fac12f0-b1eb-477e-a576-56beba35c1d6", + "id": "b1a00e79-9ea7-4d24-bd42-7c112afd3462", "name": "Create an unassign action", "request": { "name": "Create an unassign action", @@ -26235,7 +26235,7 @@ }, "response": [ { - "id": "ea375e56-8992-44ca-939c-f41ea487b9e8", + "id": "05939e61-6334-45c9-948a-910f74d9bfb0", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26292,7 +26292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d054be4f-5c81-49ec-820e-715f713f0e16", + "id": "e3c75b55-22ce-48a4-b3f2-ff3438d75213", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26349,7 +26349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84ebca53-e27d-4fb5-800f-c5a2a0f4d746", + "id": "df4c6779-82fb-46c8-9c93-b4374457e43b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26412,7 +26412,7 @@ } }, { - "id": "b3b78ab9-b20a-4d8f-9db5-bb5e6f6f5efa", + "id": "ff3db489-0d19-4de1-bacb-e5260a4bbf3d", "name": "Create an update profile action", "request": { "name": "Create an update profile action", @@ -26456,7 +26456,7 @@ }, "response": [ { - "id": "846eb3da-c127-496d-b7cd-4d5b8bb14fc3", + "id": "b4934a45-3144-4a7c-ad78-c626105566c4", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26513,7 +26513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d655d6b-14ea-4691-ab07-56addc924e36", + "id": "f3f10133-52e8-45d7-ae97-017a5bd4cad1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26570,7 +26570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bc6aa89-ef25-487d-a52f-8ea419ab7c75", + "id": "35ec34fc-e8bb-40e0-8aa4-67073881e38d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26633,7 +26633,7 @@ } }, { - "id": "b92b6e52-e802-48ba-9469-bf41d857cd45", + "id": "653c819e-531d-49da-953b-826670f67383", "name": "Create a username password action", "request": { "name": "Create a username password action", @@ -26677,7 +26677,7 @@ }, "response": [ { - "id": "b01bf946-6928-4603-9e9a-d88e45d9aac7", + "id": "b085d408-83c0-4ab6-a83c-768afc843284", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26734,7 +26734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "046652c6-ae11-4b39-8460-b1b59c36d66f", + "id": "a020f9c9-f8e3-4ca4-b65d-5fc7092ec971", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26791,7 +26791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44c43529-38fa-4363-9f52-92a3af7bb9a3", + "id": "4a3593f9-dfaf-49e8-98a1-3ae4c2b8b26f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26854,7 +26854,7 @@ } }, { - "id": "3b7e64b1-812a-4dba-ad20-ab3420716bdc", + "id": "0cffc950-f0f1-4d63-83b6-89ea6601eeda", "name": "Get Workflow Actions", "request": { "name": "Get Workflow Actions", @@ -26894,7 +26894,7 @@ }, "response": [ { - "id": "48a776ce-24c8-426a-b74c-41cc071f69aa", + "id": "fe7cf64d-2464-4c9b-ad52-fd3425741a3f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26947,7 +26947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "deccd66f-975a-4526-9dfb-be1f5eba820b", + "id": "cd956d2e-151f-42ad-aa11-d6a44377db08", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27000,7 +27000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a02cdd2-cb25-4cd3-b3c5-0d2e4f455b75", + "id": "d66fd64a-a390-4fbf-b0b9-895e8ed2e0ee", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27065,7 +27065,7 @@ "description": "", "item": [ { - "id": "9a07cf31-5520-415d-af21-1caa914c6d1b", + "id": "c8add99b-3a58-416e-8dbd-9d8dbb857741", "name": "Get workflow sessions", "request": { "name": "Get workflow sessions", @@ -27124,7 +27124,7 @@ "type": "text/plain" }, "key": "uid", - "value": "ut cupidatatlaborum officia veni" + "value": "ea exercitationid dolor sitvelit" }, { "disabled": false, @@ -27142,7 +27142,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -27151,7 +27151,7 @@ "type": "text/plain" }, "key": "status", - "value": "stored procedure" + "value": "attribute set" }, { "disabled": false, @@ -27177,7 +27177,7 @@ }, "response": [ { - "id": "2edeec23-a27e-4803-8f6e-79e374f4cc26", + "id": "37324391-c2d1-43bf-8329-4f9208a40e6e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27231,7 +27231,7 @@ "type": "text/plain" }, "key": "uid", - "value": "ut cupidatatlaborum officia veni" + "value": "ea exercitationid dolor sitvelit" }, { "disabled": false, @@ -27249,7 +27249,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -27258,7 +27258,7 @@ "type": "text/plain" }, "key": "status", - "value": "stored procedure" + "value": "attribute set" }, { "disabled": false, @@ -27297,12 +27297,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_sessions\": [\n {\n \"id\": \"urn:uuid:aea45971-80d7-17c4-0f3e-6f9e220f86b1\",\n \"uid\": \"nostrud Loremcillum dolore in pr\",\n \"workflow_id\": \"a4a72f33-d36e-d717-6536-36f1a3c36aa9\",\n \"requester_id\": \"5a8f6d8b-165a-9d6d-81ff-fb773c5adb1f\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:1c4d39da-aed7-b970-5e12-73099b768e53\",\n \"profile_ids\": [\n \"urn:uuid:3e720be9-9f3f-cc6b-6ccf-330fffbf169b\",\n \"7083eb09-2494-9ad7-0124-47dfbcceada9\"\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\": \"b074640e-2e06-d63f-12bf-aa9645bbede7\",\n \"uid\": \"cillumex in pariatursed ut do eu\",\n \"workflow_id\": \"urn:uuid:b992fb1a-253d-426b-c8e0-3966dcd29055\",\n \"requester_id\": \"urn:uuid:ebe792cc-f62d-5bdd-0611-9ab4cbbb1df5\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:0397eb29-3880-65e3-4aa5-63b51fe3ec81\",\n \"profile_ids\": [\n \"ed54afad-63dd-a8f9-1858-48b41cf225bf\",\n \"4043ab50-edb5-bbff-8850-b44bbb7a68a8\"\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\": 7532917,\n \"offset\": 49906025,\n \"total\": 45737663,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"workflow_sessions\": [\n {\n \"id\": \"22be9a8a-bc0e-d087-6f9a-ff81b599e88c\",\n \"uid\": \"eiusmod fugiat dolor aliqua ulla\",\n \"workflow_id\": \"urn:uuid:61516ffa-3a8c-a87c-9701-c88330593202\",\n \"requester_id\": \"urn:uuid:33438103-983d-c2ec-fe97-199e47026bba\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"34edb09e-669d-1a89-6af4-62c8e92db65d\",\n \"profile_ids\": [\n \"0051a86f-c071-2d3c-960a-2e73c37da02b\",\n \"c9bb7e40-d383-6265-14b1-134fce4246bf\"\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\": \"b5854d45-ed89-08dd-49be-34d29a2adbd5\",\n \"uid\": \"deserunt commodoconsequat nulla \",\n \"workflow_id\": \"urn:uuid:5c7326fc-5a0b-059c-0792-84979cf7a689\",\n \"requester_id\": \"urn:uuid:cf869577-a086-7d0d-d0af-dca5393309a6\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:d01be096-6514-a152-a7d7-8caaa33f91c5\",\n \"profile_ids\": [\n \"db7fa256-3178-a094-e979-93693bba8b98\",\n \"urn:uuid:79abcda0-fe55-5870-844f-9791a5dc3057\"\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\": -74800323,\n \"offset\": -52361119,\n \"total\": 62859423,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d0887ffc-eb42-4627-8e58-d7f91073fbf5", + "id": "340070f5-6bc7-4f35-be67-58e35af3e3e1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27356,7 +27356,7 @@ "type": "text/plain" }, "key": "uid", - "value": "ut cupidatatlaborum officia veni" + "value": "ea exercitationid dolor sitvelit" }, { "disabled": false, @@ -27374,7 +27374,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -27383,7 +27383,7 @@ "type": "text/plain" }, "key": "status", - "value": "stored procedure" + "value": "attribute set" }, { "disabled": false, @@ -27427,7 +27427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce60bbfa-4365-4fa7-b358-2daec70898ec", + "id": "378755c4-7631-44fc-b13e-f18e1f64a20e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27481,7 +27481,7 @@ "type": "text/plain" }, "key": "uid", - "value": "ut cupidatatlaborum officia veni" + "value": "ea exercitationid dolor sitvelit" }, { "disabled": false, @@ -27499,7 +27499,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -27508,7 +27508,7 @@ "type": "text/plain" }, "key": "status", - "value": "stored procedure" + "value": "attribute set" }, { "disabled": false, @@ -27558,7 +27558,7 @@ } }, { - "id": "a5a492c2-6a0c-49d0-a60e-0ab2c53386bc", + "id": "bfad1b4e-9ebc-4ee3-a308-f0ee8bb1fbad", "name": "Create a workflow session", "request": { "name": "Create a workflow session", @@ -27599,7 +27599,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"8b5d521f-1604-b476-3c25-2a7b7d41797d\",\n \"requester_id\": \"145dcdaf-4f78-28b4-7129-a55dbaaa9447\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:95d427fe-0941-b116-6673-cf4bafe0c0a8\",\n \"profile_ids\": [\n \"urn:uuid:bda077bf-b164-3257-1575-d68fd8eb8726\",\n \"urn:uuid:2bc9f6d3-5eee-715e-7c3f-c09a0c14311a\"\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:42b70683-8653-ae08-8642-059d701f2dae\",\n \"requester_id\": \"urn:uuid:d2e97ac6-212e-6bd8-2510-81b6fdcca512\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:2c0190b2-9723-ed90-d0fc-31bae4813ed0\",\n \"profile_ids\": [\n \"042c6273-96b0-751c-7378-85d5c3a44055\",\n \"urn:uuid:dc412e72-6eab-4bfa-49e4-f4fe634e3fb2\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -27611,7 +27611,7 @@ }, "response": [ { - "id": "d53328ed-902d-478f-9709-0741f6819c28", + "id": "9da31560-d9ed-4035-8118-de021eb0bd1e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27655,7 +27655,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"8b5d521f-1604-b476-3c25-2a7b7d41797d\",\n \"requester_id\": \"145dcdaf-4f78-28b4-7129-a55dbaaa9447\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:95d427fe-0941-b116-6673-cf4bafe0c0a8\",\n \"profile_ids\": [\n \"urn:uuid:bda077bf-b164-3257-1575-d68fd8eb8726\",\n \"urn:uuid:2bc9f6d3-5eee-715e-7c3f-c09a0c14311a\"\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:42b70683-8653-ae08-8642-059d701f2dae\",\n \"requester_id\": \"urn:uuid:d2e97ac6-212e-6bd8-2510-81b6fdcca512\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:2c0190b2-9723-ed90-d0fc-31bae4813ed0\",\n \"profile_ids\": [\n \"042c6273-96b0-751c-7378-85d5c3a44055\",\n \"urn:uuid:dc412e72-6eab-4bfa-49e4-f4fe634e3fb2\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -27672,12 +27672,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_session\": {\n \"id\": \"urn:uuid:9fd526aa-1dff-8390-a0e8-44347b53f977\",\n \"uid\": \"dolornisioccaecat cupidatatvenia\",\n \"workflow_id\": \"68f799e3-0850-135b-1ba1-9a9210f44eb2\",\n \"requester_id\": \"5f81b72e-39ec-d50f-9456-3756e1c61a86\",\n \"requester_type\": \"User\",\n \"profile_id\": \"9b296e63-e496-2535-0478-f1d59eaafde7\",\n \"profile_ids\": [\n \"urn:uuid:35e9cf59-4b9a-201e-25b1-0977adc0d368\",\n \"684b4012-a0f1-92d8-aefc-948ea73d4415\"\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:2e815e1b-27b5-fa66-0d97-bb8ba5e1005c\",\n \"uid\": \"ex pariaturcupidatat dolornon pa\",\n \"workflow_id\": \"074ef299-5f9e-2a66-93e5-5c3289054bc9\",\n \"requester_id\": \"83a95c83-c614-edb3-5c20-4366d3ea520c\",\n \"requester_type\": \"User\",\n \"profile_id\": \"48216743-1dcc-5c7d-a226-6c642fc01449\",\n \"profile_ids\": [\n \"urn:uuid:efb3bf64-6769-1289-55a3-bbcf2c528e46\",\n \"urn:uuid:dca37b00-f0c1-9a7b-722d-b55d1940f37b\"\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": "6208296a-93a7-497d-a09c-624f0bcf2e1a", + "id": "7803c935-de44-4982-a8ef-0583241adc6c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27721,7 +27721,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"8b5d521f-1604-b476-3c25-2a7b7d41797d\",\n \"requester_id\": \"145dcdaf-4f78-28b4-7129-a55dbaaa9447\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:95d427fe-0941-b116-6673-cf4bafe0c0a8\",\n \"profile_ids\": [\n \"urn:uuid:bda077bf-b164-3257-1575-d68fd8eb8726\",\n \"urn:uuid:2bc9f6d3-5eee-715e-7c3f-c09a0c14311a\"\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:42b70683-8653-ae08-8642-059d701f2dae\",\n \"requester_id\": \"urn:uuid:d2e97ac6-212e-6bd8-2510-81b6fdcca512\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:2c0190b2-9723-ed90-d0fc-31bae4813ed0\",\n \"profile_ids\": [\n \"042c6273-96b0-751c-7378-85d5c3a44055\",\n \"urn:uuid:dc412e72-6eab-4bfa-49e4-f4fe634e3fb2\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -27743,7 +27743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24e6a08a-ceec-444d-8ddf-0f21dd021fc4", + "id": "e22c88ee-4cda-4b28-87be-b5e27136ab80", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27787,7 +27787,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"8b5d521f-1604-b476-3c25-2a7b7d41797d\",\n \"requester_id\": \"145dcdaf-4f78-28b4-7129-a55dbaaa9447\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:95d427fe-0941-b116-6673-cf4bafe0c0a8\",\n \"profile_ids\": [\n \"urn:uuid:bda077bf-b164-3257-1575-d68fd8eb8726\",\n \"urn:uuid:2bc9f6d3-5eee-715e-7c3f-c09a0c14311a\"\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:42b70683-8653-ae08-8642-059d701f2dae\",\n \"requester_id\": \"urn:uuid:d2e97ac6-212e-6bd8-2510-81b6fdcca512\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:2c0190b2-9723-ed90-d0fc-31bae4813ed0\",\n \"profile_ids\": [\n \"042c6273-96b0-751c-7378-85d5c3a44055\",\n \"urn:uuid:dc412e72-6eab-4bfa-49e4-f4fe634e3fb2\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -27815,7 +27815,7 @@ } }, { - "id": "68856881-05e7-45fa-ba81-44f792c02741", + "id": "1b23aeea-8467-4f17-bcd8-6ae055a258a1", "name": "Find workflow session by id", "request": { "name": "Find workflow session by id", @@ -27857,7 +27857,7 @@ }, "response": [ { - "id": "5ada7801-0f31-4c6a-aee0-7e1469fcd8e8", + "id": "a2080275-d170-4e6f-9355-e70ede9a01d3", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27896,12 +27896,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_session\": {\n \"id\": \"urn:uuid:9fd526aa-1dff-8390-a0e8-44347b53f977\",\n \"uid\": \"dolornisioccaecat cupidatatvenia\",\n \"workflow_id\": \"68f799e3-0850-135b-1ba1-9a9210f44eb2\",\n \"requester_id\": \"5f81b72e-39ec-d50f-9456-3756e1c61a86\",\n \"requester_type\": \"User\",\n \"profile_id\": \"9b296e63-e496-2535-0478-f1d59eaafde7\",\n \"profile_ids\": [\n \"urn:uuid:35e9cf59-4b9a-201e-25b1-0977adc0d368\",\n \"684b4012-a0f1-92d8-aefc-948ea73d4415\"\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:2e815e1b-27b5-fa66-0d97-bb8ba5e1005c\",\n \"uid\": \"ex pariaturcupidatat dolornon pa\",\n \"workflow_id\": \"074ef299-5f9e-2a66-93e5-5c3289054bc9\",\n \"requester_id\": \"83a95c83-c614-edb3-5c20-4366d3ea520c\",\n \"requester_type\": \"User\",\n \"profile_id\": \"48216743-1dcc-5c7d-a226-6c642fc01449\",\n \"profile_ids\": [\n \"urn:uuid:efb3bf64-6769-1289-55a3-bbcf2c528e46\",\n \"urn:uuid:dca37b00-f0c1-9a7b-722d-b55d1940f37b\"\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": "d4a56176-7c5c-482b-baa4-3e37fa042237", + "id": "57194475-b885-49c4-8bb7-3d18f8cc8553", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27945,7 +27945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5d8cb6e-cc91-433c-88ed-8529b6f4fdc6", + "id": "e59e6f53-d3ec-4b4f-9868-a797126415ab", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27995,7 +27995,7 @@ } }, { - "id": "43c30792-6d0d-4250-b478-4aa86caae6fb", + "id": "97a5f714-3722-47db-b2ce-01ccbd566d88", "name": "Update a workflow session by id", "request": { "name": "Update a workflow session by id", @@ -28048,7 +28048,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"37e7bfe0-72dd-0a5f-9f86-f33814666925\",\n \"requester_id\": \"95bdb900-6ac0-8dac-7c01-79b45b14d4e8\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:29d9621f-8352-032b-7325-70460ffb5843\",\n \"profile_ids\": [\n \"urn:uuid:67f88e5f-dca4-0178-506c-29de68469791\",\n \"urn:uuid:8e909689-369d-b4b6-adb2-34648bbd7feb\"\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:79a862c7-1520-19fb-c985-f87d754264d5\",\n \"requester_id\": \"8ebc4f3a-6f5f-6bd3-7c3b-7f5166a86142\",\n \"requester_type\": \"User\",\n \"profile_id\": \"5eef10da-88ec-ba95-4004-27609bb9c2f3\",\n \"profile_ids\": [\n \"5e89488e-0f29-fd3e-a8d3-5149fb8be531\",\n \"40f48543-1e21-e439-26b3-19f1122e7996\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -28060,7 +28060,7 @@ }, "response": [ { - "id": "6fb56169-0f07-4355-9651-af13fd096079", + "id": "61f6d799-d870-48fe-bf93-40607924de64", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28105,7 +28105,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"37e7bfe0-72dd-0a5f-9f86-f33814666925\",\n \"requester_id\": \"95bdb900-6ac0-8dac-7c01-79b45b14d4e8\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:29d9621f-8352-032b-7325-70460ffb5843\",\n \"profile_ids\": [\n \"urn:uuid:67f88e5f-dca4-0178-506c-29de68469791\",\n \"urn:uuid:8e909689-369d-b4b6-adb2-34648bbd7feb\"\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:79a862c7-1520-19fb-c985-f87d754264d5\",\n \"requester_id\": \"8ebc4f3a-6f5f-6bd3-7c3b-7f5166a86142\",\n \"requester_type\": \"User\",\n \"profile_id\": \"5eef10da-88ec-ba95-4004-27609bb9c2f3\",\n \"profile_ids\": [\n \"5e89488e-0f29-fd3e-a8d3-5149fb8be531\",\n \"40f48543-1e21-e439-26b3-19f1122e7996\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -28122,12 +28122,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_session\": {\n \"id\": \"urn:uuid:9fd526aa-1dff-8390-a0e8-44347b53f977\",\n \"uid\": \"dolornisioccaecat cupidatatvenia\",\n \"workflow_id\": \"68f799e3-0850-135b-1ba1-9a9210f44eb2\",\n \"requester_id\": \"5f81b72e-39ec-d50f-9456-3756e1c61a86\",\n \"requester_type\": \"User\",\n \"profile_id\": \"9b296e63-e496-2535-0478-f1d59eaafde7\",\n \"profile_ids\": [\n \"urn:uuid:35e9cf59-4b9a-201e-25b1-0977adc0d368\",\n \"684b4012-a0f1-92d8-aefc-948ea73d4415\"\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:2e815e1b-27b5-fa66-0d97-bb8ba5e1005c\",\n \"uid\": \"ex pariaturcupidatat dolornon pa\",\n \"workflow_id\": \"074ef299-5f9e-2a66-93e5-5c3289054bc9\",\n \"requester_id\": \"83a95c83-c614-edb3-5c20-4366d3ea520c\",\n \"requester_type\": \"User\",\n \"profile_id\": \"48216743-1dcc-5c7d-a226-6c642fc01449\",\n \"profile_ids\": [\n \"urn:uuid:efb3bf64-6769-1289-55a3-bbcf2c528e46\",\n \"urn:uuid:dca37b00-f0c1-9a7b-722d-b55d1940f37b\"\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": "2db7de66-b3f3-47ee-8d51-a837ded19ef3", + "id": "385ebe58-32d2-4e46-814a-e82c9b82428f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28172,7 +28172,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"37e7bfe0-72dd-0a5f-9f86-f33814666925\",\n \"requester_id\": \"95bdb900-6ac0-8dac-7c01-79b45b14d4e8\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:29d9621f-8352-032b-7325-70460ffb5843\",\n \"profile_ids\": [\n \"urn:uuid:67f88e5f-dca4-0178-506c-29de68469791\",\n \"urn:uuid:8e909689-369d-b4b6-adb2-34648bbd7feb\"\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:79a862c7-1520-19fb-c985-f87d754264d5\",\n \"requester_id\": \"8ebc4f3a-6f5f-6bd3-7c3b-7f5166a86142\",\n \"requester_type\": \"User\",\n \"profile_id\": \"5eef10da-88ec-ba95-4004-27609bb9c2f3\",\n \"profile_ids\": [\n \"5e89488e-0f29-fd3e-a8d3-5149fb8be531\",\n \"40f48543-1e21-e439-26b3-19f1122e7996\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -28194,7 +28194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2dd9272-fac3-47cd-88c0-bd15127e54f6", + "id": "2a729898-320a-46a6-a470-7221fd158520", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28239,7 +28239,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"37e7bfe0-72dd-0a5f-9f86-f33814666925\",\n \"requester_id\": \"95bdb900-6ac0-8dac-7c01-79b45b14d4e8\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:29d9621f-8352-032b-7325-70460ffb5843\",\n \"profile_ids\": [\n \"urn:uuid:67f88e5f-dca4-0178-506c-29de68469791\",\n \"urn:uuid:8e909689-369d-b4b6-adb2-34648bbd7feb\"\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:79a862c7-1520-19fb-c985-f87d754264d5\",\n \"requester_id\": \"8ebc4f3a-6f5f-6bd3-7c3b-7f5166a86142\",\n \"requester_type\": \"User\",\n \"profile_id\": \"5eef10da-88ec-ba95-4004-27609bb9c2f3\",\n \"profile_ids\": [\n \"5e89488e-0f29-fd3e-a8d3-5149fb8be531\",\n \"40f48543-1e21-e439-26b3-19f1122e7996\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -28267,7 +28267,7 @@ } }, { - "id": "4993f784-4b02-4851-8518-ce00b5893be3", + "id": "f65515b0-5081-438e-b648-1e1233107972", "name": "Retrieves the URL of an attachment attribute value from a workflow session", "request": { "name": "Retrieves the URL of an attachment attribute value from a workflow session", @@ -28321,7 +28321,7 @@ }, "response": [ { - "id": "59d763f2-72b9-46a1-89a2-c0aaf8b74943", + "id": "dad1cd7e-ace4-42e2-95e9-634c539cee00", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28362,12 +28362,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"et occaecat esse elit\"\n}", + "body": "{\n \"url\": \"fugiat do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f771eb82-d009-423e-8f08-d6d09111e6cb", + "id": "46f9bd8f-e617-4040-8370-a832b75833f9", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28413,7 +28413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9da7c42-aa05-4f8c-8c45-84481ef433ea", + "id": "35b8755f-4f62-482b-957b-4b4f888b15a2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28465,7 +28465,7 @@ } }, { - "id": "ee38f848-7f9e-4e97-86c5-1a6a87d5fa35", + "id": "1befe1f4-c994-4c98-b3c2-79a718359b79", "name": "Uploads a new attachment attribute value to a workflow session", "request": { "name": "Uploads a new attachment attribute value to a workflow session", @@ -28527,7 +28527,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum dolore", + "value": "deserunt nisi enim qui", "type": "text" } ] @@ -28536,7 +28536,7 @@ }, "response": [ { - "id": "ba420ad1-4c51-4cb9-9736-c87d17e09e6c", + "id": "2ed2adf6-641c-4aef-884a-036b4bf8f962", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28580,7 +28580,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum dolore", + "value": "deserunt nisi enim qui", "type": "text" } ] @@ -28594,12 +28594,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"et occaecat esse elit\"\n}", + "body": "{\n \"url\": \"fugiat do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aeeb2d3a-77a9-46c2-9e52-9e5a8b515f26", + "id": "728ab5d1-e3d0-4e0e-95e4-d0f4ed336bfe", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28643,7 +28643,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum dolore", + "value": "deserunt nisi enim qui", "type": "text" } ] @@ -28662,7 +28662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ab0723c-3502-4e09-8166-7ff25940fe67", + "id": "a78ff082-5a99-47af-8d44-7d3474523ba1", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28706,7 +28706,7 @@ "type": "text/plain" }, "key": "file", - "value": "cillum dolore", + "value": "deserunt nisi enim qui", "type": "text" } ] @@ -28737,7 +28737,7 @@ "description": "", "item": [ { - "id": "be431fe5-20f9-4d50-9429-146a55b9b5fc", + "id": "fbffc4e4-585d-4ac2-a495-e0288f6c850d", "name": "Get identity proofing result data in bulk", "request": { "name": "Get identity proofing result data in bulk", @@ -28796,7 +28796,7 @@ "type": "text/plain" }, "key": "workflow_session_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -28805,7 +28805,7 @@ "type": "text/plain" }, "key": "result", - "value": "pass" + "value": "fail" }, { "disabled": false, @@ -28831,7 +28831,7 @@ }, "response": [ { - "id": "396de218-3cfe-47ff-bae1-4941f451561a", + "id": "7f139100-26fc-4cb7-a39c-011dcc32eb14", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28885,7 +28885,7 @@ "type": "text/plain" }, "key": "workflow_session_id", - "value": "1117f1e7-e844-1900-6707-cc550a69d729" + "value": "993b3c7d-6653-c89a-e2c0-d46d4d870ea3" }, { "disabled": false, @@ -28894,7 +28894,7 @@ "type": "text/plain" }, "key": "result", - "value": "pass" + "value": "fail" }, { "disabled": false, @@ -28933,7 +28933,7 @@ "value": "application/json" } ], - "body": "{\n \"identity_proofing_results\": [\n {\n \"id\": \"urn:uuid:d5f0cb8d-5140-a919-def6-f7b4005bd7b9\",\n \"identity_proofing_action_id\": \"a1c125bf-4e69-c696-6046-e439bacbe0f3\",\n \"workflow_session_id\": \"urn:uuid:9b85b2f6-0216-04b5-e922-a4cc0fdd28bb\",\n \"profile_id\": \"urn:uuid:576bb593-68b1-9f0d-185b-5ba08f53aff0\",\n \"proofing_workflow\": \"urn:uuid:6fb689c4-a00d-17c3-ff0a-2ad7c206d220\",\n \"result\": \"fail\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"1976-03-10T22:32:48.844Z\",\n \"updated_at\": \"1957-07-29T02:28:36.206Z\"\n },\n {\n \"id\": \"urn:uuid:96854fab-a3d1-02b0-a1db-24b68899c9f4\",\n \"identity_proofing_action_id\": \"urn:uuid:e9a341bf-8536-d1c6-431c-6dd41abc872f\",\n \"workflow_session_id\": \"urn:uuid:c46f0bf8-0eda-3186-0369-5399975a9894\",\n \"profile_id\": \"urn:uuid:109fa9c6-ac97-2033-ecb6-16c1551a1e42\",\n \"proofing_workflow\": \"ba83c7e4-5102-315b-b196-7eed042019b4\",\n \"result\": \"pass\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"1979-11-04T14:44:08.140Z\",\n \"updated_at\": \"2023-05-15T13:06:20.112Z\"\n }\n ],\n \"_metadata\": {\n \"limit\": -9321612,\n \"offset\": -59614518,\n \"total\": 51690956,\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:83a687c6-1eba-1443-0ee7-2ba055c01a18\",\n \"identity_proofing_action_id\": \"urn:uuid:79bdd949-4428-3769-71fd-7ea734c9de95\",\n \"workflow_session_id\": \"urn:uuid:6b55b787-d2f4-a5f4-6099-55942f94e3b1\",\n \"profile_id\": \"urn:uuid:8fc4d0be-307c-721b-f519-651d4360e5d5\",\n \"proofing_workflow\": \"urn:uuid:59615bfd-c049-4e1b-3619-ec606f5348ff\",\n \"result\": \"pending\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"1971-06-21T15:14:26.545Z\",\n \"updated_at\": \"1997-02-24T12:53:23.964Z\"\n },\n {\n \"id\": \"bb62bdb6-98c4-51a7-99b3-db09d9821cab\",\n \"identity_proofing_action_id\": \"urn:uuid:7060bd65-41dd-feec-4d35-0f2652edbbcb\",\n \"workflow_session_id\": \"urn:uuid:743d8fd7-c0fb-2e95-95e5-8d1a1cf104c0\",\n \"profile_id\": \"urn:uuid:154828c8-afb1-6d35-2d11-2e29355ab40c\",\n \"proofing_workflow\": \"fc6c40fe-c763-00a6-7b5f-b3bb5a18b52e\",\n \"result\": \"fail\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"1948-03-31T01:54:26.180Z\",\n \"updated_at\": \"1998-08-23T07:16:55.723Z\"\n }\n ],\n \"_metadata\": {\n \"limit\": -74317434,\n \"offset\": -47363182,\n \"total\": 22151728,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -28950,7 +28950,7 @@ "description": "", "item": [ { - "id": "658deff0-d2e7-4fd6-81a4-f28df713a6ea", + "id": "0d2b7680-2bd3-4ed7-98af-4d56aeb659be", "name": "Get saved advanced search queries", "request": { "name": "Get saved advanced search queries", @@ -28980,7 +28980,7 @@ }, "response": [ { - "id": "83b9c6f2-76d9-4d9c-8446-18fd6d93a8db", + "id": "2e439818-179a-42ec-a9d9-1924875feb69", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29018,7 +29018,7 @@ "value": "application/json" } ], - "body": "{\n \"advanced_search\": [\n {\n \"id\": \"faa96025-7e8c-b019-8ae6-a035204ec7f4\",\n \"uid\": \"cillum Excepteurcommodo et eu la\",\n \"label\": \"proident dolor aliqua\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:d03697f7-0730-70cf-a118-add4a7ea462d\",\n \"uid\": \"ut exenim in ametreprehenderit c\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:b25d0b42-c6d3-07e2-8663-8fda2ca2de67\"\n },\n {\n \"id\": \"urn:uuid:98fa179b-5564-bfa6-8c48-0429b8859825\",\n \"uid\": \"magna elitad elitconsequat ea in\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"ab5f1cca-ad26-e642-f5cc-7d51222113e7\"\n }\n ]\n },\n {\n \"id\": \"bf207080-caeb-5c8e-df2c-bdf4ef7594fd\",\n \"uid\": \"nisisunt et Loremofficia eu labo\",\n \"label\": \"ex in\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:a8b9cd7f-66bd-3317-2b92-0aa331783e15\",\n \"uid\": \"proident tempor occaecat pariatu\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"457e1958-9dc3-d9e5-5eb1-839acbc3fc53\"\n },\n {\n \"id\": \"542aaf7b-7f01-770c-a16d-b2668d96b2bb\",\n \"uid\": \"qui id tempor nostrudlabore Ut m\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:7aa10413-e745-3a96-8774-de55002ef3e3\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"advanced_search\": [\n {\n \"id\": \"urn:uuid:aa110349-7876-6feb-8493-6a7311992317\",\n \"uid\": \"autelaborum Duis exercitationaut\",\n \"label\": \"ex incididunt occaecat\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"826765dd-ba18-e758-9753-31c98c0b82ef\",\n \"uid\": \"commodo cillum sunt eiusmodqui m\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:2c89f8cb-d69c-a81f-6fc3-46fdf1cfa755\"\n },\n {\n \"id\": \"urn:uuid:c76c3185-5229-1703-c5ab-76504d5043ff\",\n \"uid\": \"velit Duis indolortempor volupta\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:c27bc604-6ebc-aed8-c0e6-66e20aceac46\"\n }\n ]\n },\n {\n \"id\": \"585b47f2-22b5-96c1-1267-ea39808c0763\",\n \"uid\": \"Excepteur eiusmod consequat cons\",\n \"label\": \"exercitation\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"42e18014-681b-9b3d-1ca5-537a7fb12149\",\n \"uid\": \"in aliquaet commodonulla ullamco\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"179bc28a-7407-b31e-979b-183c9150699c\"\n },\n {\n \"id\": \"urn:uuid:57923be6-e39b-0cc8-535d-0604d970bba0\",\n \"uid\": \"commodo nostrud irure deserunt a\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:eb279209-c24d-2d01-3a05-d2c76eaadac7\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29029,7 +29029,7 @@ } }, { - "id": "3d9c0c57-4245-465e-bc27-a5746bc9c6d8", + "id": "5c850298-3517-4fcf-bb06-481f5c955492", "name": "Save an advanced search query for later use", "request": { "name": "Save an advanced search query for later use", @@ -29060,7 +29060,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"in sint\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"311d9769-2dce-1b63-0146-1d63d8c07aa3\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"597b6e90-6eaa-8b08-e481-dbec91d0cf55\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"est laboris sint dolore\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"35eb9357-7ef4-1b6a-82b0-8d4f202a8c2f\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:f733aed1-45c1-eee2-54dc-d727c45bdec9\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29072,7 +29072,7 @@ }, "response": [ { - "id": "108139ab-5df4-43e9-814f-9fec0adea238", + "id": "db7f3186-1e95-410e-8e3e-da2de1191b76", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29106,7 +29106,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"in sint\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"311d9769-2dce-1b63-0146-1d63d8c07aa3\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"597b6e90-6eaa-8b08-e481-dbec91d0cf55\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"est laboris sint dolore\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"35eb9357-7ef4-1b6a-82b0-8d4f202a8c2f\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:f733aed1-45c1-eee2-54dc-d727c45bdec9\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29123,7 +29123,7 @@ "value": "application/json" } ], - "body": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:9697df6f-e14c-100c-c2ac-87f52af531e3\",\n \"uid\": \"minim aliqua ealaborum aliquip c\",\n \"label\": \"fugiat quis\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"57dbbca6-1466-5d07-39af-85dda11b67db\",\n \"uid\": \"in elit ipsum indolore dolor mol\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:f8b8b2fe-bb3c-bcac-3a35-fc5e15c452dc\"\n },\n {\n \"id\": \"urn:uuid:7e2fe015-81b6-f9ed-c95d-43574cb60086\",\n \"uid\": \"sed nulla fugiatculpa Lorem ut d\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:75e828cb-4305-6d79-55eb-00c726306a00\"\n }\n ]\n }\n}", + "body": "{\n \"advanced_search\": {\n \"id\": \"d0bb7bcd-5e30-8ff5-8b5d-40d3450942a1\",\n \"uid\": \"reprehenderit cupidatat et eudol\",\n \"label\": \"sed ex in ea\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:f720f2a7-a6bf-bdb0-4d38-a9abbf185090\",\n \"uid\": \"commodo velit elit suntest ullam\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"226bf52e-143a-7293-7537-fc41eed06a52\"\n },\n {\n \"id\": \"2f6b2271-916b-21b1-150d-39802bb331c2\",\n \"uid\": \"minim proident in aliquipexercit\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:fc21f128-58df-37de-1520-4c79d60cab8c\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29134,7 +29134,7 @@ } }, { - "id": "9d8ffbad-7d95-42c4-a569-bd93e924ce03", + "id": "d79b2da8-0d2a-46d7-b729-83c60ce68a28", "name": "Run an advanced search for profiles, without saving the query", "request": { "name": "Run an advanced search for profiles, without saving the query", @@ -29194,7 +29194,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"in sint\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"311d9769-2dce-1b63-0146-1d63d8c07aa3\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"597b6e90-6eaa-8b08-e481-dbec91d0cf55\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"est laboris sint dolore\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"35eb9357-7ef4-1b6a-82b0-8d4f202a8c2f\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:f733aed1-45c1-eee2-54dc-d727c45bdec9\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29206,7 +29206,7 @@ }, "response": [ { - "id": "d1d8a098-5dfd-4571-8677-8711b5f8a054", + "id": "c48f9018-66f8-4618-9794-5de094a25a49", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29269,7 +29269,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"in sint\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"311d9769-2dce-1b63-0146-1d63d8c07aa3\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"597b6e90-6eaa-8b08-e481-dbec91d0cf55\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"est laboris sint dolore\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"35eb9357-7ef4-1b6a-82b0-8d4f202a8c2f\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:f733aed1-45c1-eee2-54dc-d727c45bdec9\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29286,7 +29286,7 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nostrud culpa aliquip incididunt\",\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\": \"sed velitin tempor dolorvoluptat\",\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\": \"magna consecteturlaborumea aliqu\",\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\": \"utut adipisicing autetemporqui a\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29297,7 +29297,7 @@ } }, { - "id": "c5ee80b4-54ed-486a-b195-5c8fb8362ef5", + "id": "fbd3cb82-85c6-4201-8d69-d5d115499838", "name": "Update a saved advanced search query", "request": { "name": "Update a saved advanced search query", @@ -29340,7 +29340,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:f159f708-51fd-0b18-6bf7-74255522fef6\",\n \"label\": \"quis amet\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"7aa76963-aba8-a074-21a6-5637cb165111\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"4d697ae0-2c5d-834a-403f-64546b14703b\",\n \"_destroy\": false\n },\n {\n \"id\": \"urn:uuid:eb58706f-3200-1c18-c1fb-ca8c2638b6c8\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:4edad4e1-4d37-5f62-1bcc-1155db5738cf\",\n \"_destroy\": false\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:88ecb18e-1e5c-fbab-fa83-5cb1473fc9aa\",\n \"label\": \"qui aute nisi\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:2359122c-03c8-4abc-85cc-51e7a362976d\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"882e74dd-124e-0ee6-0e0c-27329c60552f\",\n \"_destroy\": false\n },\n {\n \"id\": \"urn:uuid:7d035a1f-62f5-a759-6035-8d879d57b4f8\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"e50e610b-7e27-fe9d-4f89-8450f1813670\",\n \"_destroy\": false\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29352,7 +29352,7 @@ }, "response": [ { - "id": "8d05ca59-d077-4c78-a5c4-e3f900feefdd", + "id": "4ab5c28b-70eb-429e-b933-846917bb741b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29387,7 +29387,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:f159f708-51fd-0b18-6bf7-74255522fef6\",\n \"label\": \"quis amet\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"7aa76963-aba8-a074-21a6-5637cb165111\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"4d697ae0-2c5d-834a-403f-64546b14703b\",\n \"_destroy\": false\n },\n {\n \"id\": \"urn:uuid:eb58706f-3200-1c18-c1fb-ca8c2638b6c8\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:4edad4e1-4d37-5f62-1bcc-1155db5738cf\",\n \"_destroy\": false\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:88ecb18e-1e5c-fbab-fa83-5cb1473fc9aa\",\n \"label\": \"qui aute nisi\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:2359122c-03c8-4abc-85cc-51e7a362976d\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"882e74dd-124e-0ee6-0e0c-27329c60552f\",\n \"_destroy\": false\n },\n {\n \"id\": \"urn:uuid:7d035a1f-62f5-a759-6035-8d879d57b4f8\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"e50e610b-7e27-fe9d-4f89-8450f1813670\",\n \"_destroy\": false\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29404,7 +29404,7 @@ "value": "application/json" } ], - "body": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:9697df6f-e14c-100c-c2ac-87f52af531e3\",\n \"uid\": \"minim aliqua ealaborum aliquip c\",\n \"label\": \"fugiat quis\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"57dbbca6-1466-5d07-39af-85dda11b67db\",\n \"uid\": \"in elit ipsum indolore dolor mol\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:f8b8b2fe-bb3c-bcac-3a35-fc5e15c452dc\"\n },\n {\n \"id\": \"urn:uuid:7e2fe015-81b6-f9ed-c95d-43574cb60086\",\n \"uid\": \"sed nulla fugiatculpa Lorem ut d\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:75e828cb-4305-6d79-55eb-00c726306a00\"\n }\n ]\n }\n}", + "body": "{\n \"advanced_search\": {\n \"id\": \"d0bb7bcd-5e30-8ff5-8b5d-40d3450942a1\",\n \"uid\": \"reprehenderit cupidatat et eudol\",\n \"label\": \"sed ex in ea\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:f720f2a7-a6bf-bdb0-4d38-a9abbf185090\",\n \"uid\": \"commodo velit elit suntest ullam\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"226bf52e-143a-7293-7537-fc41eed06a52\"\n },\n {\n \"id\": \"2f6b2271-916b-21b1-150d-39802bb331c2\",\n \"uid\": \"minim proident in aliquipexercit\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:fc21f128-58df-37de-1520-4c79d60cab8c\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29415,7 +29415,7 @@ } }, { - "id": "6e48070f-a1c0-4a22-bb59-916945b34c59", + "id": "543092cf-4004-4061-a074-a55bee8cc290", "name": "Run a saved advanced search query", "request": { "name": "Run a saved advanced search query", @@ -29486,7 +29486,7 @@ }, "response": [ { - "id": "a63d1f44-5b56-48f5-8df3-508f86737466", + "id": "b7b6a767-7e3a-4594-a4c0-acd89a5e4ecb", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29554,7 +29554,7 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nostrud culpa aliquip incididunt\",\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\": \"sed velitin tempor dolorvoluptat\",\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\": \"magna consecteturlaborumea aliqu\",\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\": \"utut adipisicing autetemporqui a\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29571,7 +29571,7 @@ "description": "", "item": [ { - "id": "e0e877d1-7c3b-4f36-a083-0943e6ef09db", + "id": "cc81b2ca-4cf3-4820-a9d1-4a04b1c6badb", "name": "Get the status of a bulk job", "request": { "name": "Get the status of a bulk job", @@ -29594,7 +29594,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "veniam" + "value": "eiusmod fugiat" } ], "variable": [] @@ -29611,7 +29611,7 @@ }, "response": [ { - "id": "eadbb56a-c570-4133-97ad-bfe88a9d3ef8", + "id": "183c3233-dd17-4b23-86be-9ea506a7be60", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29629,7 +29629,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "veniam" + "value": "eiusmod fugiat" } ], "variable": [] @@ -29659,12 +29659,12 @@ "value": "application/json" } ], - "body": "{\n \"uid\": \"urn:uuid:16adeddf-1007-c88a-1cdf-07aa6cc21159\",\n \"status\": \"complete\",\n \"job_type\": \"import\",\n \"job_data\": [\n {\n \"user_id\": \"urn:uuid:a187864c-bb5a-0152-0b42-de8f4c6799ed\",\n \"manager_id\": \"urn:uuid:38e1445b-69e0-3a6e-8587-d8542d66e08a\",\n \"errors\": [\n \"Validation error for record in job\",\n \"Validation error for record in job\"\n ]\n },\n {\n \"user_id\": \"urn:uuid:2aec25c2-c594-3083-b445-f6e42369bc44\",\n \"manager_id\": \"urn:uuid:ec4a885a-252a-f218-0215-3d56add9b440\",\n \"errors\": [\n \"Validation error for record in job\",\n \"Validation error for record in job\"\n ]\n }\n ]\n}", + "body": "{\n \"uid\": \"687b2ef7-b34d-abe9-3e76-1910893648eb\",\n \"status\": \"complete\",\n \"job_type\": \"import\",\n \"job_data\": [\n {\n \"user_id\": \"urn:uuid:9b53d30e-10d7-3858-d3f6-e76eade61053\",\n \"manager_id\": \"urn:uuid:a6050e5e-57cd-77a9-4740-19d1ee44137e\",\n \"errors\": [\n \"Validation error for record in job\",\n \"Validation error for record in job\"\n ]\n },\n {\n \"user_id\": \"faf78fad-9b1d-256e-f23f-99050185c946\",\n \"manager_id\": \"35f1370a-3207-f460-e5d9-0722376a06db\",\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": "4319ae3a-b32f-4721-a394-4b0d93b0a0b1", + "id": "bc88054e-eff6-4b08-8550-04e2609b8b73", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -29682,7 +29682,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "veniam" + "value": "eiusmod fugiat" } ], "variable": [] @@ -29717,7 +29717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05ad125b-9648-48a4-b6db-613800feb7d5", + "id": "72cb98c3-037c-4f30-8688-50d9b51591a7", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -29735,7 +29735,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "veniam" + "value": "eiusmod fugiat" } ], "variable": [] @@ -29782,7 +29782,7 @@ "description": "", "item": [ { - "id": "40570b0c-5710-406d-b646-7842dd773ea2", + "id": "41203dee-1667-4c48-9b0b-35f289944172", "name": "Create a form", "request": { "name": "Create a form", @@ -29825,7 +29825,7 @@ }, "response": [ { - "id": "aa65c7af-7a4b-4855-8a55-4353ac906f43", + "id": "60cc4f2e-db9b-4ca8-8cec-046798b0a4aa", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29881,7 +29881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5e64c47-3a1d-4464-a5a8-acc13dc75907", + "id": "390f7829-2196-4a81-b84f-189cf9499810", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -29937,7 +29937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7d55e6b-4b69-4755-acfb-6e6a1014a54a", + "id": "f4d5c533-70ce-43fc-871f-19f8771aae24", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -30005,7 +30005,7 @@ "description": "", "item": [ { - "id": "10cf9c4a-9a5f-4c74-a8c6-e38f066a3660", + "id": "973c3c67-d1be-4168-b64b-411cd8e36141", "name": "Create a form attribute", "request": { "name": "Create a form attribute", @@ -30048,7 +30048,7 @@ }, "response": [ { - "id": "a31ba77e-4e91-41e6-bd90-48365cebb755", + "id": "03620ade-bdc3-4480-8430-f5a9d3fdabae", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30104,7 +30104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8c94379-26a6-49bc-b268-ac64b39142cb", + "id": "6ed71b3e-57c2-47e5-83e3-53d1747cceb7", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -30160,7 +30160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2e9a056-bbe4-41ad-8a78-e6cd238dd6c5", + "id": "121d0428-dc05-4b1f-a7d1-15ed649b5e07", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -30246,7 +30246,7 @@ } ], "info": { - "_postman_id": "a7fd5a73-07b6-4f13-9fe7-19af1d82050e", + "_postman_id": "cf4259e6-596d-4d25-a5db-7182055b0ea9", "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 b568c60..4c2feaa 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": "9ad8f73a-7259-4ec7-8e65-d78c4c314019", + "id": "1f7764e1-43b5-40db-84db-732ceef266ba", "name": "List Access Profiles", "request": { "name": "List Access Profiles", @@ -107,7 +107,7 @@ }, "response": [ { - "id": "b3fb67f0-cc1d-4662-a9b6-bf40cbbd090e", + "id": "dfc5cabc-1897-482e-a570-c80b9b05656f", "name": "List of Access Profiles", "originalRequest": { "url": { @@ -223,7 +223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "903f7453-b5b9-49d6-99ed-b5720373abd8", + "id": "45ab5ef2-92d3-41d3-9208-e561468041bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -339,7 +339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c97227d6-e52c-456b-a20d-f74f43936694", + "id": "847c2652-d898-496a-94e3-e70c1762da62", "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": "dafb8500-4c8d-4e96-a26f-25dffec1770d", + "id": "b5a5ff66-dd65-468c-a0bf-a4ff0d1250ad", "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": "f207d262-7a3d-49cd-948f-d90443e03cca", + "id": "46f1bff1-46b3-4f5b-b9c8-11ab1d4542b7", "name": "Too Many Requests - Returned in response to too many requests in 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": "4e2ad93b-b74e-4fbc-a0b4-3fa8674ebaf1", + "id": "9ad6b9e3-2e5c-4bcd-9c86-4cabb782c6ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -809,7 +809,7 @@ } }, { - "id": "d2e9d4a1-d4de-4e76-bd4e-185232b4269f", + "id": "dc034606-23ab-40df-ac36-e89bfac04994", "name": "Create an Access Profile", "request": { "name": "Create an Access Profile", @@ -851,7 +851,7 @@ }, "response": [ { - "id": "93ecf9be-6e66-41d2-a28b-f14ad0dfef47", + "id": "c9c25794-f5ca-4708-9f6d-b4f2b9ef612d", "name": "Access Profile created", "originalRequest": { "url": { @@ -907,7 +907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea99b9c4-70d7-4790-9e61-b76ddf69530d", + "id": "9591893d-9ef0-4f78-b332-ea14d18ea5d4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -963,7 +963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "281d2914-ce8a-4cb4-97bc-91ae8a29068d", + "id": "42a5fdbe-6085-4076-af72-c5eaa9aca7af", "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": "9294e185-c972-4fad-8758-00ca389b9a9b", + "id": "94e81ace-5cea-436f-b731-c13c59efe8c8", "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": "a7c66cd2-008b-4d5a-b2d7-333ae2f7c144", + "id": "b6370ef1-4919-4692-a996-2225a2c3b056", "name": "Too Many Requests - Returned in response to too many requests in 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": "088e4e48-3d81-42cb-947d-2d6d72def315", + "id": "b42ab43a-c769-4ffc-9c6d-85c5feb0fba3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1193,7 +1193,7 @@ } }, { - "id": "4b99373c-86f1-46f0-ba65-49d289b16d28", + "id": "40c3d574-22aa-40d1-8a39-a372605c4e0b", "name": "Get an Access Profile", "request": { "name": "Get an Access Profile", @@ -1234,7 +1234,7 @@ }, "response": [ { - "id": "ae717f7e-333c-4184-a981-cf5b0a9c5114", + "id": "c97a8c52-8fe8-4b72-8d3b-f48f1f4444d6", "name": "An AccessProfile", "originalRequest": { "url": { @@ -1278,7 +1278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7301122-c3dd-4bb9-82fc-990eaef7b5e3", + "id": "57a74566-40b4-4943-833a-4d3bdbf32cf5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1322,7 +1322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c902045-3c8a-411f-b0d5-5234e48c72fa", + "id": "36c03b22-0584-4843-b621-254e1833b7b0", "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": "47cfc519-3f41-4192-8dd5-2fa7cf109b79", + "id": "9b161fe4-b125-4ef9-9f11-292cc357ff88", "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": "08541785-a5c4-42c0-ae9d-7717688be732", + "id": "00471e6c-a33d-4f98-8904-a6424ada4f00", "name": "Too Many Requests - Returned in response to too many requests in 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": "e843918a-1bc7-4764-8312-05e325c294b7", + "id": "a1ded5f8-248a-46bc-ae22-97662402b1d2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1504,7 +1504,7 @@ } }, { - "id": "a21218cd-b499-4e08-ae30-fb3bbc942b1f", + "id": "d13be1fb-6e46-4c04-acab-dd72af9c645e", "name": "Patch a specified Access Profile", "request": { "name": "Patch a specified Access Profile", @@ -1558,7 +1558,7 @@ }, "response": [ { - "id": "b5826700-972a-41c5-8b58-41061dfdbe16", + "id": "9d9fc2c1-590a-4788-8827-bc892841949f", "name": "Add Entitlements", "originalRequest": { "url": { @@ -1615,7 +1615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b08d3a58-eb63-4c07-b876-d3eaa6d7f6f3", + "id": "4fef2910-bb05-430f-a6ca-9c35a2b2eb9b", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -1672,7 +1672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36262025-21ab-46f8-b5fe-032a1418ec02", + "id": "3425a907-f7d6-40f9-adce-8c6a3ff30507", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -1729,7 +1729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "faebb093-20c0-4224-b6f6-c3ac03127551", + "id": "3de3fa71-baa6-4dcf-9ce5-aaf865872c18", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -1786,7 +1786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee24a4f5-c849-4e8a-9719-c9b044612cfd", + "id": "bf2c2975-ab18-4ce7-b20b-5acc9f622a8b", "name": "Replace Source", "originalRequest": { "url": { @@ -1843,7 +1843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbf9b280-2592-46a3-98d6-c79590bed966", + "id": "62408970-2fa4-400b-a5e2-9a9db8c221bf", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -1900,7 +1900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "033d471a-5b53-41e1-ac3a-b692ec8aec09", + "id": "4cbd0110-7ad9-445e-8ed0-0db42f856e33", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -1957,7 +1957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd9774cc-2de2-40e9-a632-a456d5e5f0da", + "id": "8ce9ccdc-e12e-4136-bef9-6881c43e4b1c", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2014,7 +2014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "820ca3df-74cf-4029-b3f8-66a5c649b1d5", + "id": "7e2bdb96-ae83-4d62-b4e9-bcbbecbd10bc", "name": "Replace Source", "originalRequest": { "url": { @@ -2071,7 +2071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fd53efa-f986-4587-8734-5b73868a34b7", + "id": "b715cb6f-7f56-4663-aae2-157306faa5ad", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -2128,7 +2128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09d8a9ae-692d-41cb-9280-977c2a7aab7e", + "id": "8358722f-ddb8-4f63-ae95-cc3eb1f8bd80", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2185,7 +2185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8462e3c1-1188-4d64-b5aa-a969fd174d39", + "id": "f6895b23-4c1d-46d0-b8f9-e6396dd080da", "name": "Replace Source", "originalRequest": { "url": { @@ -2242,7 +2242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d21d5cbb-785c-4b86-a46b-340708ebbc19", + "id": "7a024e04-94fc-4ea9-b10a-933ae39f2b70", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -2299,7 +2299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e39dd3f-bbd6-44fd-8a7c-c88beecd7249", + "id": "296f1253-937e-4c92-8ec0-b09a2c5cca75", "name": "Replace Source", "originalRequest": { "url": { @@ -2356,7 +2356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d53d9855-8b80-4093-9459-4097c4a7b531", + "id": "8e78865c-ca5b-4b61-a0c3-8a78d46fef14", "name": "Replace Source", "originalRequest": { "url": { @@ -2413,7 +2413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "014dd7b0-5bc3-445c-8621-a4f371ec451f", + "id": "f22db9be-ab0a-41af-a7c1-9b133b44d01b", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -2476,7 +2476,7 @@ } }, { - "id": "9a28d155-d30a-4388-8fc0-0355d64fc30c", + "id": "29e012d6-ff72-4206-a200-4d6ddd797601", "name": "Delete the specified Access Profile", "request": { "name": "Delete the specified Access Profile", @@ -2517,7 +2517,7 @@ }, "response": [ { - "id": "d39aa4f5-954e-41de-b26a-9e058a57c5ec", + "id": "80273eaa-3f2f-4897-b2c7-ac90317b8839", "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": "412f6fa5-2adf-4dc9-b87f-36c8399d5fa3", + "id": "d400eea1-846d-4a7b-b751-2c3be5af2615", "name": "Returned when an access profile cannot be deleted as it's being used.", "originalRequest": { "url": { @@ -2595,7 +2595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cb0bb3a-96e5-41d9-9dcf-df805dc3a062", + "id": "803d9858-6b01-4721-8ad9-82277e1b61d3", "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": "452997ab-9eba-448c-9a29-f294f746e858", + "id": "06da75f0-e9b7-468e-a84c-ffa8634d0a19", "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": "5ddb6ae8-b317-4d3f-ae97-0f8439eb650f", + "id": "ec0f3952-b607-4a97-9227-724b8b32d0e4", "name": "Too Many Requests - Returned in response to too many requests in 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": "a957e3af-6ef9-4118-bad5-ee17adc1ac25", + "id": "9e23217c-1cb9-45f6-88e5-6951861af6e5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2777,7 +2777,7 @@ } }, { - "id": "c804d68b-ef94-4d24-a65e-4faaee86bf7d", + "id": "109fbbf2-31db-4256-b614-7347a8ef6020", "name": "Delete Access Profile(s)", "request": { "name": "Delete Access Profile(s)", @@ -2820,7 +2820,7 @@ }, "response": [ { - "id": "6f1719fd-d9fd-4508-adb8-78866d369d08", + "id": "b41ab60e-f44b-4623-b483-a920cf1c9acc", "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": "35df7679-566c-4973-938d-bf3a599b29cb", + "id": "c328339d-ef95-42ae-aed8-0e499cb15c6b", "name": "Returned if at least one deletion will be performed.", "originalRequest": { "url": { @@ -2934,7 +2934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8aa604fb-f817-4981-a49d-df22edd4ab0b", + "id": "d24da368-39b1-4d84-931f-214f53ba6be1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2991,7 +2991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b888ca5d-0e6a-40a5-bede-e1da14f73786", + "id": "ba10cb6b-7934-41c9-bff8-7a7d23e02d76", "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": "f105f8aa-ffe4-496c-9c38-0dcd95b5bed1", + "id": "76778ae2-87f7-49de-84ad-2cc15e1e06f2", "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": "459537fc-d7ef-44e0-a75c-1011d26ec998", + "id": "4b31c935-291c-4a41-9248-6766348a218b", "name": "Too Many Requests - Returned in response to too many requests in 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": "f2748849-7b29-4099-8a85-e3b562fea3bb", + "id": "9be92b24-3988-4a6e-8381-46e8bcca11f3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -3225,7 +3225,7 @@ } }, { - "id": "44a344b3-6358-40b4-9e4a-3de0f1392703", + "id": "1e1703cd-15e7-4bd0-b6b0-5423f52f6792", "name": "List Access Profile's Entitlements", "request": { "name": "List Access Profile's Entitlements", @@ -3313,7 +3313,7 @@ }, "response": [ { - "id": "3e146036-fc20-49f5-b5a3-f459214b607a", + "id": "09570ee4-db74-42af-b34f-a2dbcb0afc63", "name": "List of Entitlements", "originalRequest": { "url": { @@ -3404,7 +3404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc7ba23b-7bae-4e9f-84ad-8b06ed0da5c6", + "id": "66a9699a-d8fa-426d-8af7-271e2697db51", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -3495,7 +3495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c71e4e88-ec9e-4ae2-89dc-cd2b3bd4970a", + "id": "255ad92d-c1fa-449a-afa0-1f15a85b33ae", "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": "70b75ff7-8676-441c-bb27-fbb2865bb5ef", + "id": "0f18c302-8312-46e4-bee5-65b9320dace4", "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": "71e12573-129a-48a0-9cce-93c53e38720b", + "id": "5d950618-3405-4796-8ffd-0dab661cc2ad", "name": "Too Many Requests - Returned in response to too many requests in 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": "f93c91ae-23da-46f3-94eb-d98985941785", + "id": "a71e5913-394c-425d-9a13-aa17537624a7", "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": "a81a6ea6-4dfc-4bb0-b089-ed585cdc6925", + "id": "2689ae33-4096-433a-a45e-325acf08a4f7", "name": "Pending Access Request Approvals List", "request": { "name": "Pending Access Request Approvals List", @@ -3956,7 +3956,7 @@ }, "response": [ { - "id": "04f7ad78-388d-41a7-a96c-f3cc963e8414", + "id": "29c111f4-7118-4d58-b514-562ff7c35716", "name": "List of Pending Approvals.", "originalRequest": { "url": { @@ -4055,7 +4055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53b9f26c-f3bf-4201-86a9-b09282ce4b3e", + "id": "387b76e9-00cc-431e-9faf-ca9884f682a5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -4154,7 +4154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "491ad0d7-04d5-41b1-bd30-bb7a236b0ee2", + "id": "e006955a-ea6c-4b4c-bb58-f493804f5c11", "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": "7237f33f-e965-47c4-a018-9cabf1be20b3", + "id": "778f7a44-38f5-4cd3-8933-ada40e7031b9", "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": "b36bda34-8a33-49e3-b16b-d3a67f7cdfac", + "id": "345ee50b-8394-4cae-8de6-c4f2bd277f10", "name": "Too Many Requests - Returned in response to too many requests in 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": "0082a35a-ce61-48d6-a096-0f5cd519bacd", + "id": "b41b11d9-4563-4890-a15e-4da2a1449237", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4556,7 +4556,7 @@ } }, { - "id": "8b1852ef-437a-454b-b38a-b5d03660ea4a", + "id": "d6410ae5-a4fc-444a-9d99-16f218b7a0f1", "name": "Completed Access Request Approvals List", "request": { "name": "Completed Access Request Approvals List", @@ -4641,7 +4641,7 @@ }, "response": [ { - "id": "42dca051-6780-4809-8215-98c8eb1a06ec", + "id": "1ab39b8b-d615-4b2d-9cdf-5eaf29e9f5f4", "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\": \"quis Lorem deserunt\"\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\": \"sint\"\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\": \"con\"\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\": \"qui minim\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "433cf8a8-dd5b-4656-a006-c516d65792d1", + "id": "150a5915-aaa9-466c-b07f-32483fd7f8c4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -4839,7 +4839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1fc12e8-ff33-48fb-ac7b-a90052b8d9e5", + "id": "3a68baaf-9ad4-4733-a08b-5e7e8a0cef08", "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": "c8d04c08-1dee-4fb2-a22a-91ea05110036", + "id": "83f70685-29c9-4528-868f-3747ca79eada", "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": "e679bdd5-fa23-4f26-80c9-24ad8a853e59", + "id": "9bf4a711-24d0-424d-bf37-7e051f0aed60", "name": "Too Many Requests - Returned in response to too many requests in 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": "3d6e287e-e681-4102-952c-1e3a0a9999b3", + "id": "2e27b11e-2537-4377-92db-3b31b9e634b5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5241,7 +5241,7 @@ } }, { - "id": "fa649f34-554d-411c-97fb-8da0718639f7", + "id": "880980d4-645d-42ef-a75e-bb7622c86010", "name": "Approves an access request approval.", "request": { "name": "Approves an access request approval.", @@ -5296,7 +5296,7 @@ }, "response": [ { - "id": "ecc147ad-2a73-4816-9759-cfc9d56d2dd7", + "id": "75d04e90-526e-4df6-b059-ace55f5a7350", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -5354,7 +5354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10732093-44b7-4ae0-b1e1-51d8a0514d8a", + "id": "f91312a3-68d2-4330-afd9-86d12d46fdf2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5412,7 +5412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0daac97-4668-4f32-8a58-8f19f5813a54", + "id": "22f5fb05-ca06-431c-81d3-2b98dc49e870", "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": "a5435954-d080-43a4-bc2a-dc20991139ec", + "id": "5b3dfd82-b430-46bd-bb7e-172d5b8d8227", "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": "adb1e99e-1c30-4401-801a-0113fe95cc96", + "id": "2bd86ed4-e608-4d2e-adf9-d1d2f0f156c3", "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": "b59f060a-acd3-4da3-8cf9-b5b7b186bf38", + "id": "6cfbe9bf-f0f4-488e-8d8d-73d6a47bac47", "name": "Too Many Requests - Returned in response to too many requests in 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": "f63c891a-a0ff-4ad2-a2df-a217815f1839", + "id": "c82668ef-10b2-4dc8-b004-5cea764a9763", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5708,7 +5708,7 @@ } }, { - "id": "8f729e93-440b-4a25-8db1-c964a56cab4a", + "id": "bf6d3d61-0aca-4a5e-ba12-4beac22a5d38", "name": "Rejects an access request approval.", "request": { "name": "Rejects an access request approval.", @@ -5763,7 +5763,7 @@ }, "response": [ { - "id": "976122d2-911a-4d6a-9ca5-761e87cabfe5", + "id": "eba58c7f-9c75-4aa5-8b6f-8795ff46a13e", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -5821,7 +5821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ec1b7b3-996f-49f4-9e75-4d737671658d", + "id": "9aa41b50-8166-4ce3-96eb-626a823f14f6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5879,7 +5879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe170e8a-7a24-42c5-a9ba-67155b7bd725", + "id": "14f16de4-bab3-46b2-b1d2-16b31b28d99c", "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": "3b52e912-7c22-4759-9ded-dddfc2c0e832", + "id": "864fa08b-2a61-47bc-bec8-6e4b9ce8c494", "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": "90bbc2a0-5e69-427b-9f2e-6593474ecb52", + "id": "9ca47988-fd76-4bd6-b14d-349483071306", "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": "b5388be0-dfbf-4e0a-b381-d1d5aec22ba5", + "id": "96181dbb-97f1-49a3-8a17-6661f1f71783", "name": "Too Many Requests - Returned in response to too many requests in 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": "4252d10a-69b9-4015-b9a4-1a77b8998606", + "id": "3c955b00-1302-488b-93cb-59f2bea6c911", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6175,7 +6175,7 @@ } }, { - "id": "8512157f-2ad1-4b67-b566-0138dcece3c6", + "id": "6c070a8d-3e27-4030-9b5f-798bc391e882", "name": "Forwards an access request approval.", "request": { "name": "Forwards an access request approval.", @@ -6230,7 +6230,7 @@ }, "response": [ { - "id": "0e5d0cfb-9ce2-431e-b9f1-961440f0fafd", + "id": "0078b631-e82d-41f1-a743-d2642fb98f98", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -6288,7 +6288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6ed3609-598c-4208-a9de-2c81e74c5b9c", + "id": "b8a052dc-bbf8-4ba5-8eb6-9523ecfd3233", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -6346,7 +6346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8291be10-c985-4ff5-889d-95e1fb8c5bb5", + "id": "c87b3675-3e07-4dc2-955b-eeefcd37afd8", "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": "5cd762dc-7ac3-4369-99e7-48ca42efdc73", + "id": "b8fdc3d2-f4be-4638-a251-900e7217cc55", "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": "91e3a4a3-bb4a-495c-ad6a-6a599de18070", + "id": "0e67a31b-9d8a-4fa9-8d6a-e33eb3de714e", "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": "96b13341-908a-4608-a381-b5f17757d7cc", + "id": "ecc158ce-15b8-4fd4-9828-39a59cd9d5cb", "name": "Too Many Requests - Returned in response to too many requests in 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": "4702a441-539b-4b68-a937-e0264b5d37ea", + "id": "14015391-72e2-4ce0-9575-b624fd029616", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6642,7 +6642,7 @@ } }, { - "id": "f61cbbab-53d4-4678-aec1-6b4a132e4348", + "id": "b549a53c-2b34-44c5-b54f-83af1dce2567", "name": "Get the number of access-requests-approvals", "request": { "name": "Get the number of access-requests-approvals", @@ -6691,7 +6691,7 @@ }, "response": [ { - "id": "863d9ebe-aae3-4c0b-b0d3-5aaee519462e", + "id": "c5b4304f-22d3-43b9-8508-3f023deaff1b", "name": "Number of pending, approved, rejected access request approvals.", "originalRequest": { "url": { @@ -6754,7 +6754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4c985a1-1a5c-46e0-bfdc-11fcd66ca288", + "id": "67a59c35-aa5e-414b-892c-8e894c2b0bcc", "name": "Client Error - Returned if the query parameter is invalid.", "originalRequest": { "url": { @@ -6817,7 +6817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77d4d421-31b4-4f70-83cc-9bd655759993", + "id": "9f594e70-b5c2-45f0-bd29-b79f729a079a", "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": "7924dc08-ed52-4598-a8d0-caa60e505e0f", + "id": "f8e369b3-010b-4a52-8952-d9906e40a076", "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": "07769b5c-eb70-4817-8c80-c32d2463beb6", + "id": "5514add7-4cd3-4663-a1cd-71b07b57a89b", "name": "Too Many Requests - Returned in response to too many requests in 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": "10a87054-3c5e-4ab2-8ac9-c3d433f85d3a", + "id": "2be61e83-39d4-4d9f-b389-5d070dbc0641", "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": "7d452cc8-e631-4328-aead-8c878e20d0a2", + "id": "2d124127-b8cd-4180-8839-93debb809f38", "name": "Submit an Access Request", "request": { "name": "Submit an Access Request", @@ -7123,7 +7123,7 @@ }, "response": [ { - "id": "bfe37463-ed2d-4c28-9649-ed7fe4933980", + "id": "4c73b4a6-8390-42b6-88bd-02289164ec56", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7179,7 +7179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "302a74bd-b2d8-4146-bd74-10faa63a22ff", + "id": "58f006b6-18ec-4e2b-84f1-db280f9df49d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7235,7 +7235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "946c004c-b7f1-40e6-84ba-12def3ebc318", + "id": "6523cdf4-5ef6-4a12-9657-1e1d7cece717", "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": "28d665a8-4950-4c45-8728-982bddc5914c", + "id": "aa02ac58-d310-4c7e-8934-308bf3c6214e", "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": "9a8bebeb-bd99-4d96-a093-c15fea3994fb", + "id": "f8c3a5b3-0d65-4338-95ea-30139e698194", "name": "Too Many Requests - Returned in response to too many requests in 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": "ce41d23f-266e-4d6b-b1b3-d4a10964189f", + "id": "05e07eee-b794-4af0-ad72-df146f362471", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7465,7 +7465,7 @@ } }, { - "id": "41a834ff-4b4f-4d89-8bac-7a5c938bb89b", + "id": "5df2ff9d-dd63-4307-bbb3-ec71eb81b051", "name": "Cancel Access Request", "request": { "name": "Cancel Access Request", @@ -7508,7 +7508,7 @@ }, "response": [ { - "id": "99e58b44-20b3-4105-8da8-4159c3b8cea9", + "id": "b1ed9027-b23d-4fb4-b613-834d1be7a4d7", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7565,7 +7565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f58300aa-497d-441f-aba6-e8872e6c9b28", + "id": "9c42abc7-fc4c-4068-a26a-dc0431b05337", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7622,7 +7622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "639f1871-6c87-4685-8fff-d16702d548d0", + "id": "c9fd935a-9c2c-4396-ba26-20ef1e558633", "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": "66e5cc2e-ba5a-4e4c-b7c6-83d464d2f6fa", + "id": "5ff58cb3-c98a-4798-bc20-4cee4f3d2f79", "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": "b227ccfc-3c22-4b20-a149-89ff8cc34cce", + "id": "c1d0f737-d40d-4c1a-b0a1-6adc8942f2a2", "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": "797b1ce2-eef6-49df-a393-4d16277e6861", + "id": "53e6e0f7-e132-47c9-af16-5772fab74f1a", "name": "Too Many Requests - Returned in response to too many requests in 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": "bdd80b3a-1924-4e11-9a16-248e98d7c793", + "id": "48f0b985-3a91-485a-87d9-c5df9bc23187", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7913,7 +7913,7 @@ } }, { - "id": "f11ca3a7-d235-4ebc-ae8f-816b47078d4b", + "id": "05ae68cb-47a5-4544-8dbf-12c33e9f11d2", "name": "Get Access Request Configuration", "request": { "name": "Get Access Request Configuration", @@ -7942,7 +7942,7 @@ }, "response": [ { - "id": "9c87936b-9ca2-4442-b99b-c32d0c2726ac", + "id": "06eb4d23-0dc1-4450-bd39-618004494d16", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -7985,7 +7985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9793ef68-c566-410a-b685-e82830920bd3", + "id": "fe00b5f8-6691-44e6-9dc8-32d27cd738c0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8028,7 +8028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b63a4f31-61fe-4177-bf76-d0f5a3455fa4", + "id": "6fd31aba-c513-42d0-a054-ecad7570b690", "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": "ffcb7993-a52a-4afc-95a9-59ba38766fba", + "id": "00ed01c0-0dcf-4c4f-b630-abc7ea33655a", "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": "4356f3f8-5f9f-4d8a-9e89-bd6f3a3d53bc", + "id": "b391c58e-d115-4a61-83cd-655c9dd4509d", "name": "Too Many Requests - Returned in response to too many requests in 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": "cb47e574-e924-4874-9115-adea03bfa6a6", + "id": "cc85f364-0518-4a05-a782-0063f779ef33", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8206,7 +8206,7 @@ } }, { - "id": "fc5d9b7a-078f-4f01-831f-5d35d6b1a0f2", + "id": "ee0aa9b2-194e-400a-b6e6-58edddb3c442", "name": "Update Access Request Configuration", "request": { "name": "Update Access Request Configuration", @@ -8248,7 +8248,7 @@ }, "response": [ { - "id": "1a51982b-0176-4942-8644-295dc11b2001", + "id": "213e7693-def8-4bd6-a5cf-459311e7cc76", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -8304,7 +8304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18f91477-b130-4316-9296-a6ccd5023c19", + "id": "15beb426-4012-4adc-a8c5-693d4af0390a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8360,7 +8360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4b46481-4b01-431d-99b6-aae34e772eb4", + "id": "5a9c407a-cd5c-4e4c-90dc-0a7aefbc5344", "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": "1a01e790-f25a-4af7-924f-a6596e1ec769", + "id": "99d641d2-f282-4905-9864-692933ce9697", "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": "5012f4e7-99bd-4b01-8840-afb448286941", + "id": "72dc1ea1-f5a3-48fe-8be3-9c2ec5bff617", "name": "Too Many Requests - Returned in response to too many requests in 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": "a18dbd99-cde5-468c-937b-c7836f379b9a", + "id": "74903f06-7445-455c-a4eb-ca61fd51d12d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8590,7 +8590,7 @@ } }, { - "id": "7d4ec377-59a8-454f-ad4e-c4dbe91f7716", + "id": "f2a18cf7-354b-4988-aa0f-a8b551be324a", "name": "Access Request Status", "request": { "name": "Access Request Status", @@ -8701,7 +8701,7 @@ }, "response": [ { - "id": "a2a0395b-8b5d-4aaf-92ac-fdca174a472d", + "id": "44ce0ad0-11ec-47bf-b10a-5974507a999b", "name": "List of requested item status.", "originalRequest": { "url": { @@ -8826,7 +8826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbeda055-b91e-4070-a494-8f4c5a923be4", + "id": "c7832485-cd95-4a01-bca0-2ddc40e8f601", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8951,7 +8951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfeb1e94-62a8-476f-bd02-847570c41862", + "id": "8c4a3c1c-18ec-428f-877e-4086a40f8209", "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": "e2446fd9-5610-4e12-9817-da55712f813f", + "id": "f275b4ce-dd3b-4b6f-bd20-1368b1ea5be3", "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": "d109efbe-7722-4a33-bce1-9326aa4cb29b", + "id": "c4a5e57c-1455-4f1e-96a1-a3fc3b1a29c1", "name": "Too Many Requests - Returned in response to too many requests in 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": "27b654bb-e00e-4e61-84c6-2a1fd33c038b", + "id": "b02a3085-19ae-4064-946a-f07c89bebdc1", "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": "bcde4dd7-7dfc-49a3-8513-d9cd0d5f4e4a", + "id": "e6ced818-21c9-4c86-b82d-b05f22ca212d", "name": "Returns account usage insights", "request": { "name": "Returns account usage insights", @@ -9542,7 +9542,7 @@ }, "response": [ { - "id": "40d7b40f-1fd4-4fee-8fbc-a55c4e216f0c", + "id": "1cf35a88-b9aa-41b7-9b00-a2bdddd79949", "name": "Summary of account usage insights for past 12 months.", "originalRequest": { "url": { @@ -9624,7 +9624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d735541-efa1-485f-8539-a3a1da877baa", + "id": "76bd2be7-b297-4b43-aac6-06d80962e480", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9706,7 +9706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06d74b3e-4556-454f-85ed-f496545c3617", + "id": "ee712943-0ccf-4864-b3aa-49035a444fe1", "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": "d453d27e-8a8a-4a4e-bbbd-c82533e0a998", + "id": "3c398bbe-aaa9-4fc8-9c2a-eee2afba67dc", "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": "a1c4d498-4466-481a-b0a5-312c49f17e87", + "id": "f510af29-e0ae-4fc3-b994-2e431b915959", "name": "Too Many Requests - Returned in response to too many requests in 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": "813f7973-54a8-496c-85ac-8c4353840e27", + "id": "b6ff4184-0c70-4550-b2d3-4ce59f25b61a", "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": "d6595b96-0647-48a7-83b2-735792b21676", + "id": "d72d95e5-e74c-4bbc-a3dd-5d613e7cd7c6", "name": "Accounts List", "request": { "name": "Accounts List", @@ -10121,7 +10121,7 @@ }, "response": [ { - "id": "2cb68eab-91bd-427d-956b-96de6393a317", + "id": "7c901851-eb04-44e9-83a2-52b784b26755", "name": "List of account objects", "originalRequest": { "url": { @@ -10210,7 +10210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f919feb7-40fe-4936-9cc3-25d3dda745bd", + "id": "462fc0d9-0d1a-4abb-a077-b305a940e941", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10299,7 +10299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6345907-254a-47e1-b8e2-8af17d00ac9c", + "id": "437d35e8-21f7-4b39-a6be-ef95e1d1a454", "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": "1e3b6acd-2067-476d-af2d-bfdb405e4fda", + "id": "09a0e9ae-c7b9-4aba-a5cd-57ed06bb86e7", "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": "387b5977-9e1b-4cbf-ab1d-92a5cec1b89a", + "id": "44378ba7-5f99-40bb-bec5-03e934afacb4", "name": "Too Many Requests - Returned in response to too many requests in 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": "21f04be7-5f5e-476f-8c0a-7b3123240654", + "id": "4902c87c-0197-4214-842c-30796bd66693", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10661,7 +10661,7 @@ } }, { - "id": "b3b2bf81-0caf-4f58-a9e1-4e9e92ee3c16", + "id": "2ef7ca49-baf5-487f-99e2-8008ef9b2319", "name": "Create Account", "request": { "name": "Create Account", @@ -10703,7 +10703,7 @@ }, "response": [ { - "id": "9dee5291-f612-477a-a374-90a153786f4b", + "id": "da2a5b9f-6d96-4df7-996b-02dc53e13117", "name": "Async task details", "originalRequest": { "url": { @@ -10759,7 +10759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f0a7506-af18-4755-a814-37a356634033", + "id": "299430f6-03f6-4106-ac99-2da787ddce67", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10815,7 +10815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93752cb5-bf66-4a96-bf98-fc93b3b96ac4", + "id": "71636749-aa45-46c5-861c-a04df496d049", "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": "c9a9f953-02bb-4866-951c-eec3d2357a85", + "id": "ee63d640-e88d-4164-bbe2-143d169bd550", "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": "619dc7e1-6801-4284-a38c-ee870878b3ba", + "id": "5ed54a67-3871-409f-a8db-19654548a70b", "name": "Too Many Requests - Returned in response to too many requests in 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": "d82f8e73-92a6-4ee8-9d8b-1bef484f0fa4", + "id": "e4cf3590-3cd4-4cef-a225-3df162131e43", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11045,7 +11045,7 @@ } }, { - "id": "c9f455c5-9b5a-4b19-9889-03fc3634a734", + "id": "1978d9d1-eac2-4534-934c-6a233684c65f", "name": "Account Details", "request": { "name": "Account Details", @@ -11086,7 +11086,7 @@ }, "response": [ { - "id": "52652577-08e5-4248-8ef2-1424f2a2bde4", + "id": "3540f5b2-8f6c-4e68-b4d4-c5e00841228a", "name": "Account object.", "originalRequest": { "url": { @@ -11130,7 +11130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb1af4ec-2500-4098-bd20-f2534e92f72c", + "id": "a6742653-6dd2-481a-86ee-f885f3b8c2c2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11174,7 +11174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d040ef88-db1e-4879-8ae4-114376da3190", + "id": "00297687-e7af-4781-80b8-d0839558a581", "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": "53fcc06b-c490-4a7b-9a4c-c3c5064412eb", + "id": "2b435a1e-e8a1-4c2a-802f-0178ab2ff127", "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": "4bf0d5ba-6c98-4082-9d1b-1e38affc9447", + "id": "8356531e-6b92-422d-aa44-be55a0ffda97", "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": "bdc6b8cc-0936-4298-8c5e-40088182d7ad", + "id": "03967ffb-d6d0-4c2b-b00e-5788973f5c7d", "name": "Too Many Requests - Returned in response to too many requests in 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": "5d458dde-0b92-454f-8148-e0b1e916f197", + "id": "7928c0d1-3428-4620-a284-1be060e90079", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11400,7 +11400,7 @@ } }, { - "id": "8925c434-aab9-4dc7-92dd-4df2836e05ad", + "id": "7bd40c18-d708-4a1d-bd45-09d70fea9814", "name": "Update Account", "request": { "name": "Update Account", @@ -11454,7 +11454,7 @@ }, "response": [ { - "id": "a6024d16-d243-4ea8-b474-48dd324fc13e", + "id": "ba269394-4070-4686-8d6b-727f8ce9d70b", "name": "Accepted. Update request accepted and is in progress.", "originalRequest": { "url": { @@ -11511,7 +11511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba765caf-e7fa-497b-8c1a-811e6de9d717", + "id": "ef7c7212-e44d-4fc4-aeff-11e53dfad767", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11568,7 +11568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8c8b052-efb8-42fb-930e-6979d62669d9", + "id": "10c9c407-f2bb-471d-b2dd-1e2a616e3750", "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": "d5d5954b-d3a0-4afc-8f4e-026435494fbe", + "id": "e77ee459-130d-4e0e-97ac-c044137e1ad8", "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": "fc892e28-7c13-4dc7-a305-fb2eac36e363", + "id": "767a9f13-6a55-4319-9d20-e7aeb8cf15f2", "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": "ab4ae435-31e5-44e2-856e-72b9430845b2", + "id": "4715a059-4a62-4e12-b0af-af4024d6fe7b", "name": "Too Many Requests - Returned in response to too many requests in 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": "7c09bf85-f384-4be1-84af-5679599ae14a", + "id": "b70a20d1-3fb0-46a3-8f8c-730bee825d24", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11859,7 +11859,7 @@ } }, { - "id": "6435a5fd-a3c2-4c2e-b939-82fcb4391f69", + "id": "7bf3228a-c6ca-475e-9f1e-ab165ce952b3", "name": "Update Account", "request": { "name": "Update Account", @@ -11913,7 +11913,7 @@ }, "response": [ { - "id": "be14c335-085f-45b4-81d9-0bd2c2d1238c", + "id": "cd06e4b7-6aa6-489c-b089-7a7c333ed336", "name": "Async task details.", "originalRequest": { "url": { @@ -11970,7 +11970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50521d64-ccf0-404f-b27f-062fdfb730f0", + "id": "289d87be-2427-4d6a-a6e4-08ffd43a7abb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12027,7 +12027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5ef954f-8d5e-478b-b102-2b7bb886e8f3", + "id": "f47641ac-82ca-445f-b21b-82beb69aea06", "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": "a08cfe73-0640-4a9f-b7b4-bc45feca5ec9", + "id": "64f55578-5313-4352-a864-97407e83afa2", "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": "92380935-79b5-42a1-8e4f-13c99db19a2d", + "id": "b2dc5e65-c811-4a0f-b39e-604971cdb055", "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": "0c525d65-6c38-419a-a685-844aebaa6ca3", + "id": "aa6f35a5-8448-47bc-aa29-35208eb14115", "name": "Too Many Requests - Returned in response to too many requests in 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": "5f400fe9-ed17-4129-aa97-7c81fdbdf485", + "id": "1237cb3b-105d-42dc-b075-abb5fe4a90cc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12318,7 +12318,7 @@ } }, { - "id": "31c7cb45-30e9-4495-b1c6-afef12b849ea", + "id": "70d02945-d221-4c0e-92cb-5e027e4460b6", "name": "Delete Account", "request": { "name": "Delete Account", @@ -12359,7 +12359,7 @@ }, "response": [ { - "id": "b8161417-a41e-48ad-8a2f-7cd4ca4cfbaf", + "id": "60669a72-2c2e-4a52-b22d-23cf35f20f80", "name": "Async task details.", "originalRequest": { "url": { @@ -12403,7 +12403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4798d2e4-1ac3-4474-9577-81a7462f0b6c", + "id": "2286b126-c3b0-40f6-ae4a-56eec6b08185", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12447,7 +12447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12e9eb5d-7ccc-4104-9367-e700d6ccf86c", + "id": "af7f00b1-0336-4d10-a792-e4c1d55d242e", "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": "fcc68425-0eaf-4d9b-8e3d-c3a3b3641185", + "id": "14c44d6f-2fc6-4384-9b34-79436126fa2b", "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": "391f2191-d2ec-4e9d-a578-deef3c7547c6", + "id": "ced45a06-df21-42c5-96a7-e8148a7b58b0", "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": "a7c47fb4-84cf-4119-83e6-437588dadfcd", + "id": "57fe9f7b-c3e9-426b-b65e-96e93d2401fc", "name": "Too Many Requests - Returned in response to too many requests in 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": "c468bb15-6c73-484e-8234-f603bfb7e611", + "id": "7b1c477d-df29-4d75-9e60-c6a699ccd859", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12673,7 +12673,7 @@ } }, { - "id": "9230c282-457a-4549-819c-08eb6fa56477", + "id": "0b5f56fa-447c-4762-984e-6a0d4edfe496", "name": "Account Entitlements", "request": { "name": "Account Entitlements", @@ -12743,7 +12743,7 @@ }, "response": [ { - "id": "1821a66b-5cb4-428b-abfe-85fe502f766c", + "id": "14b25a45-e590-4339-9836-e8210649db6f", "name": "An array of account entitlements", "originalRequest": { "url": { @@ -12816,7 +12816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edfb9acf-a5c0-47e5-9854-55c101ca9054", + "id": "a2c4cf4f-705a-465b-9d6a-85e927eac489", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12889,7 +12889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcee0546-1221-4af5-873b-c59b30438081", + "id": "1be3d8ea-0a35-48fc-96a6-2d71845dbbfb", "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": "eac4d488-3826-41f5-84b6-3012e6567c5f", + "id": "803609cc-baab-4495-bb1e-59e2ea283493", "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": "c6b0f0b2-6e2a-40b5-85ed-4ac4cdf6e333", + "id": "c55cdc5f-7b5f-4443-959d-cca2d2e85a3e", "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": "9c2bbbeb-25b4-498b-94d6-30a2d9f31959", + "id": "bec6bf96-2399-4498-a7b4-44d60f4024e8", "name": "Too Many Requests - Returned in response to too many requests in 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": "532a07d5-3626-4ba5-9daa-24db8549ddc3", + "id": "7397fefc-5133-4184-a2bd-82d95d662c23", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13260,7 +13260,7 @@ } }, { - "id": "05a870cb-10b9-442e-b2a0-4f80aa338dfd", + "id": "d642af58-3829-491a-8c3a-d37ace0dc604", "name": "Reload Account", "request": { "name": "Reload Account", @@ -13302,7 +13302,7 @@ }, "response": [ { - "id": "64faa4ca-e4ec-4aed-af9a-8eab9c01252e", + "id": "0ff39584-ae3d-409c-bdcf-a9b42e4df573", "name": "Async task details", "originalRequest": { "url": { @@ -13347,7 +13347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "722172ab-40b8-466d-8fc9-d7bc8d2a5d4c", + "id": "b4bebc6e-484b-433c-b987-7b4a2c858977", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13392,7 +13392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01b77615-6f87-4f3a-bf67-e99939bd88bf", + "id": "4d99e380-af0a-48af-a85c-94c4f52ad05d", "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": "aaad51dc-c30b-4553-85a8-952d96ea2d7a", + "id": "0c2f2a83-9d29-4f42-9d40-0565ab5969f9", "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": "a0cdf516-8499-4deb-b185-bf237bf2852d", + "id": "b193af81-bff2-4ec2-8dbb-a3400a74e35d", "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": "7b7c2d55-5dab-419e-847d-73479e5f04f0", + "id": "41dfdc17-a6b5-4a3f-b5a2-8d9a073cbd2d", "name": "Too Many Requests - Returned in response to too many requests in 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": "2be3b84d-6b98-4a70-9e27-c385234efa23", + "id": "54f9ff9e-2ce5-4ef7-bc54-c969c6607a58", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13623,7 +13623,7 @@ } }, { - "id": "f5c7b2dd-6847-421e-951a-f069425c3f5b", + "id": "173664f4-eed7-4c3a-84c3-c7bc75004a36", "name": "Enable Account", "request": { "name": "Enable Account", @@ -13678,7 +13678,7 @@ }, "response": [ { - "id": "33995143-781d-4ef8-afb6-32f2e6411742", + "id": "03d61c1b-dec1-4cdc-a1c8-96765a9f6932", "name": "Async task details", "originalRequest": { "url": { @@ -13736,7 +13736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f66b6663-2ef0-4557-a45c-5d18373796e7", + "id": "8b01957c-40b4-4002-9ff4-d1b466284ace", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13794,7 +13794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "519e21ff-45b2-4574-af1f-d261146333cb", + "id": "2f1da17d-1fd0-4fd1-879c-7c1411edc12f", "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": "5caab0df-95e9-45f7-93c8-80831a01addc", + "id": "42787d56-c988-48f9-bb19-2cb356d705e4", "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": "c2f71fa2-7dd1-4eab-863f-c084a59e1744", + "id": "385bc436-0a30-4b3b-a09b-f98c0b60f499", "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": "68e334de-f913-438b-acf8-f19b7a4fab7f", + "id": "30320b3e-ff10-44fe-b0fe-569d4ef8811a", "name": "Too Many Requests - Returned in response to too many requests in 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": "325fe370-d1dd-44ab-8581-6e72f4bddd6e", + "id": "27ea05b3-6eb2-46ca-a554-0531c558e1ae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14090,7 +14090,7 @@ } }, { - "id": "29867f61-bcd6-4add-88b0-9cc1b66f7898", + "id": "147ffbae-b13f-4418-885e-2b9f705553f8", "name": "Disable Account", "request": { "name": "Disable Account", @@ -14145,7 +14145,7 @@ }, "response": [ { - "id": "e6fefa75-4fbe-47cd-acf8-bb2082d13817", + "id": "da53be13-4e8f-4ed6-992a-313eb74b1940", "name": "Async task details", "originalRequest": { "url": { @@ -14203,7 +14203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5925ffce-c05d-4fa4-99fc-a76c793e7916", + "id": "2d9c82bf-be7e-402c-b038-1d8200ced358", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14261,7 +14261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebd93c0f-4269-49b9-9c25-a434e7ed1279", + "id": "8073f218-c888-4458-9d13-36484aeca308", "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": "0ee152c7-cfe1-47f6-8db9-691ec685ad45", + "id": "bb008c8b-37af-469e-935f-5b600e9ade80", "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": "c004ba7a-08e6-4ef7-9bc0-ff6db9603d84", + "id": "7561e190-9908-4e7e-8655-601f07df4a1a", "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": "0b38e303-9052-47c8-b3b5-d514d70e32c9", + "id": "2cc83fe6-650f-466c-a275-560791a58920", "name": "Too Many Requests - Returned in response to too many requests in 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": "609d48f1-77e6-43c2-a192-60ccbc2f1fbd", + "id": "814ee02e-e226-4730-b019-b909fedac083", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14557,7 +14557,7 @@ } }, { - "id": "9eb78cb5-3888-4a3b-8ffa-d7972c73e1ff", + "id": "ae944e79-9634-4715-90a6-c3469a5e429d", "name": "Unlock Account", "request": { "name": "Unlock Account", @@ -14612,7 +14612,7 @@ }, "response": [ { - "id": "ed41859a-ce9f-47bb-a243-cc28ebf072dc", + "id": "18a68393-f780-4f71-9831-4d4bf1cdbc69", "name": "Async task details", "originalRequest": { "url": { @@ -14670,7 +14670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34c2157b-2907-4520-bb02-16ee6e46d6be", + "id": "f0503b90-3f98-468e-94f4-8b05cb3a0abc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14728,7 +14728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bdc75b4-013e-49ef-857e-4511747ccfab", + "id": "54c41518-5df5-4229-84c6-5a232a54db77", "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": "9c71a5f0-4ade-4538-955c-f736217d98bf", + "id": "47e0dd23-dde9-4534-9a4a-fa04efb878fc", "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": "de3185b0-b464-41aa-a7c2-201c8e5daf31", + "id": "284cb104-462e-4f19-b72c-b0ef0dc25108", "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": "28a87ddc-8f53-4f79-8954-b67dc850be6d", + "id": "d9a1e755-2146-48b6-b093-3bb488117937", "name": "Too Many Requests - Returned in response to too many requests in 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": "a66fffb3-2a5a-409f-bb1c-44e577acef0f", + "id": "a41ecf83-cdc7-4239-9e0a-936070552d4f", "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": "a9237f5f-8367-4221-aff0-bc41e0f8e404", + "id": "6c75dd1f-90ed-4479-b614-491847303f7d", "name": "List Account Activities", "request": { "name": "List Account Activities", @@ -15132,7 +15132,7 @@ }, "response": [ { - "id": "886d2795-b741-4d75-a912-f0d188e1acf5", + "id": "7f7e950a-7b68-4d6c-a34b-8bbd0609b613", "name": "List of account activities", "originalRequest": { "url": { @@ -15248,7 +15248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "392cccde-f942-47e5-8686-bdb14a1a50d6", + "id": "3262bccd-be4b-403c-9ff0-6a49331b9f86", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15364,7 +15364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abe34f61-a774-4c25-98ca-9611d8c08507", + "id": "d5ce869e-61a6-49ee-a38b-1c74d232ff42", "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": "53f09dd6-fcc8-4b3d-b59b-6a03c5f6dca3", + "id": "fdf34b9b-f72d-4d05-8084-9f3fc33db4f0", "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": "f9837379-e89f-42e8-a6e5-9d109038a1be", + "id": "1b8c366f-9bc9-430d-8996-e7cf5457402d", "name": "Too Many Requests - Returned in response to too many requests in 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": "999e1e49-cf24-431c-a006-5a89402dabc5", + "id": "68860a8e-48ee-4f94-becb-a8159d1670d7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15834,7 +15834,7 @@ } }, { - "id": "4f3c3202-d937-46f7-acf2-f84a91493dde", + "id": "b65e589a-1ce0-4901-b016-63a38362c33a", "name": "Get an Account Activity", "request": { "name": "Get an Account Activity", @@ -15875,7 +15875,7 @@ }, "response": [ { - "id": "9f0268b9-c93c-4aa3-8fe7-114613892b65", + "id": "5d62098c-07c1-4747-9fc7-fc6e89ddaf3b", "name": "An account activity object", "originalRequest": { "url": { @@ -15919,7 +15919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7e02da0-d9be-4767-a46a-55b7b2b4c10c", + "id": "1a264c7e-34ec-4ddf-8cda-ae50f054b0ad", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15963,7 +15963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b5ef92f-b2db-437b-928f-444f1b84c803", + "id": "68abf967-e666-4050-92ec-98c1b04116b8", "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": "cc0c01e5-ada3-4c8c-a192-da0d37e51b14", + "id": "e21b8871-57ea-4dad-9ed8-ea1895eaef42", "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": "355ffd98-e37f-432b-ae77-ef6d71c75d27", + "id": "6cd337a3-56ef-4b3c-8bfd-bf4fd4aad3fa", "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": "c406fd2c-0758-4d09-86b9-d3449c0e08f9", + "id": "a4de04e4-6250-4195-8c23-4942cf2818ce", "name": "Too Many Requests - Returned in response to too many requests in 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": "e198be95-88f9-49e5-ac78-c4be7c4af276", + "id": "6de676e4-e616-43a9-980d-45865e1ba207", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16195,7 +16195,7 @@ "description": "Authentication service user retrieval and user capabilities update", "item": [ { - "id": "e3d8bf38-4367-45a0-8fd9-fd48410efb99", + "id": "c7b589a8-63a4-4310-8785-b11b5d176cc3", "name": "Auth User Details", "request": { "name": "Auth User Details", @@ -16236,7 +16236,7 @@ }, "response": [ { - "id": "1bee8b16-c6d8-49c2-a176-c157c4bc5024", + "id": "50418afb-6510-4494-950b-acc22bdb4b44", "name": "The specified user's authentication system details.", "originalRequest": { "url": { @@ -16280,7 +16280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb2489e6-7fd8-438d-a8ef-24a52dd93148", + "id": "0792b1b4-6f3d-4225-b65c-a020f1d519b6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16324,7 +16324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb364798-1474-4781-8b90-28ace8142cb1", + "id": "429575a2-60fe-4616-ac51-0c49a564cf01", "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": "e0e168c2-720a-4496-9e26-7541f203c53f", + "id": "12bab2e6-8b2e-4609-ba18-942b33534093", "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": "472b3cf8-37f5-496d-9440-402236d6fbf9", + "id": "815205a1-dcca-4981-a873-768620493c91", "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": "a1f9f080-bd6f-4fbb-8f93-fbe8e63c759b", + "id": "cb0fe004-bd07-4c79-9096-7f8fc8714981", "name": "Too Many Requests - Returned in response to too many requests in 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": "4d4c8815-5f3e-446d-a446-a51e78c15a96", + "id": "2770c0a0-72ff-47ea-8a03-67d1a9a52b72", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16550,7 +16550,7 @@ } }, { - "id": "199a6923-9076-4425-9454-770b780138dc", + "id": "7268c496-4815-46a6-8c0b-65c19a461f52", "name": "Auth User Update", "request": { "name": "Auth User Update", @@ -16604,7 +16604,7 @@ }, "response": [ { - "id": "f902d048-5b69-410e-85ef-60da9afa2b0c", + "id": "d0e69013-be29-4a45-a757-d7bc2b2f15a6", "name": "Auth user updated.", "originalRequest": { "url": { @@ -16661,7 +16661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09e55737-671b-4062-a36b-61540f4e153b", + "id": "9342bd54-6840-4b8a-a6a1-8396198935c8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16718,7 +16718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d89981e-4b8c-4e56-8b44-8ec0a5700e61", + "id": "b510e741-65f8-44c5-8625-b01369427612", "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": "30d07a51-2e77-426d-bb50-f7d16b922a97", + "id": "a57ae3d1-5f44-4f20-8915-95bc7b54679d", "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": "3c33aa02-60a7-44b1-8379-6e00bb1f6503", + "id": "f7e83ca8-4f5b-4d10-b4f0-d903b4115fdd", "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": "9c786874-c867-49e9-ab04-b4078b68b35a", + "id": "6d7dadd2-cfbb-4e40-94ac-408ee800700c", "name": "Too Many Requests - Returned in response to too many requests in 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": "0dcfe51f-3ad4-48ef-881f-8ef8fa98790d", + "id": "e216ae95-05f5-4d80-a90e-1b243fe5e9c1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17015,7 +17015,7 @@ "description": "Use this API to implement and customize branding functionality. \nWith this functionality in place, administrators can get list of existing branding items, create new branding and configure them for use throughout IdentityNow. \nIt allows to customise color of navigation bar, action buttons, logo and emailFromAddress.\n", "item": [ { - "id": "50af7320-6d90-49fa-8efc-2eef30b4f381", + "id": "d5e233c1-994c-4fa7-98a1-8017d92765ff", "name": "List of branding items", "request": { "name": "List of branding items", @@ -17044,7 +17044,7 @@ }, "response": [ { - "id": "186b367c-d65c-4e52-8da5-767ea177be6d", + "id": "cc9dee08-2cc5-4212-ab8b-3d845bd41920", "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\": \"consequat velit\",\n \"navigationColor\": \"quis dolore\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n },\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"reprehenderit qui occaecat\",\n \"navigationColor\": \"in nulla\",\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\": \"occaecat adipisicing commodo sunt esse\",\n \"navigationColor\": \"anim fugiat ullamco mollit\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n },\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"consequat nostrud ea aliqua in\",\n \"navigationColor\": \"labo\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "87a379ce-8e30-4813-b9ce-bf6a5c3948aa", + "id": "7b2dab2b-99df-486f-b4f2-142369cd7c75", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17130,7 +17130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a4c4380-c6e1-4581-b4d0-60708848b916", + "id": "d0ecc0f5-d973-46ba-b788-ae6eb5081c5b", "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": "5e37002a-6169-4860-bbf8-31605825223c", + "id": "c58f8ae3-2c2a-46c5-86b4-91719d66cbbf", "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": "3fa238c6-affc-4b98-8b5d-97398d639c71", + "id": "1a97e4fe-5636-4638-99d4-319c2782c86a", "name": "Too Many Requests - Returned in response to too many requests in 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": "3b6c2d40-252e-4b23-a98c-b2b05ddf1e66", + "id": "d677898c-b79c-4600-9864-38796b5b6e9f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17308,7 +17308,7 @@ } }, { - "id": "495c6e73-194c-41a7-88ce-69674e0525f8", + "id": "60c120ba-6f65-448f-b43e-73dabf0da739", "name": "Create a branding item", "request": { "name": "Create a branding item", @@ -17373,7 +17373,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "ut irure", + "value": "mollit deserunt ut exercitation aliquip", "type": "text" }, { @@ -17382,7 +17382,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "reprehen", + "value": "nisi esse officia", "type": "text" }, { @@ -17417,7 +17417,7 @@ }, "response": [ { - "id": "bb4afe38-10f5-47c4-9c61-2c65069052e8", + "id": "b61dcb88-c5bf-42c0-834e-c34c36205cf6", "name": "Branding item created", "originalRequest": { "url": { @@ -17485,7 +17485,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "ut irure", + "value": "mollit deserunt ut exercitation aliquip", "type": "text" }, { @@ -17494,7 +17494,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "reprehen", + "value": "nisi esse officia", "type": "text" }, { @@ -17535,12 +17535,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"ad ex\",\n \"navigationColor\": \"quis i\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", + "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"tempor veniam qui dolor\",\n \"navigationColor\": \"officia sed\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cfbf74e5-3d5d-4d2d-9ee4-d4e8b308a693", + "id": "9a2cf6cd-1ec8-4c94-9d39-b321696ac389", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17608,7 +17608,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "ut irure", + "value": "mollit deserunt ut exercitation aliquip", "type": "text" }, { @@ -17617,7 +17617,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "reprehen", + "value": "nisi esse officia", "type": "text" }, { @@ -17663,7 +17663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11a3aaa5-4d1b-4b78-97bf-915b4add698c", + "id": "a5733e07-c990-4d85-ab8f-63b5c95e8b90", "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": "ut irure", + "value": "mollit deserunt ut exercitation aliquip", "type": "text" }, { @@ -17740,7 +17740,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "reprehen", + "value": "nisi esse officia", "type": "text" }, { @@ -17786,7 +17786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2655ff44-9f31-439a-a48a-a8403a977aa9", + "id": "da3347a2-2f13-4029-9c11-4df0eb66c9cb", "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": "ut irure", + "value": "mollit deserunt ut exercitation aliquip", "type": "text" }, { @@ -17863,7 +17863,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "reprehen", + "value": "nisi esse officia", "type": "text" }, { @@ -17909,7 +17909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94cbce72-5ba7-4d04-b7b3-716c406623c7", + "id": "45ac79b8-bb52-4996-a718-70038a6bf638", "name": "Too Many Requests - Returned in response to too many requests in 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": "ut irure", + "value": "mollit deserunt ut exercitation aliquip", "type": "text" }, { @@ -17986,7 +17986,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "reprehen", + "value": "nisi esse officia", "type": "text" }, { @@ -18032,7 +18032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fba0319a-685b-495f-851e-47620681b4e4", + "id": "4073bcc5-2c43-4870-b66b-a571d904509a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18100,7 +18100,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "ut irure", + "value": "mollit deserunt ut exercitation aliquip", "type": "text" }, { @@ -18109,7 +18109,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "reprehen", + "value": "nisi esse officia", "type": "text" }, { @@ -18161,7 +18161,7 @@ } }, { - "id": "240f1134-0a7f-4481-bd22-fd943927ca77", + "id": "1e9d8e0d-7b4c-4b89-af3a-8902ff0c9f1e", "name": "Get a branding item", "request": { "name": "Get a branding item", @@ -18202,7 +18202,7 @@ }, "response": [ { - "id": "65571a4e-8728-4e35-bcc8-f82fc6e7b6f9", + "id": "44520e29-c6be-4de6-9327-09297c940219", "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\": \"ad ex\",\n \"navigationColor\": \"quis i\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", + "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"tempor veniam qui dolor\",\n \"navigationColor\": \"officia sed\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "74991995-80b1-472e-b3b7-015a9ef039c4", + "id": "fe60a8c4-729e-4cb7-a972-f170b56a6d4a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18290,7 +18290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fe78130-8666-47ec-bcaa-93669e635af2", + "id": "18174183-81aa-423c-a5b3-212aaeb9b539", "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": "f8da9229-608e-478b-a682-00b502ef6728", + "id": "d738c9c1-ec86-41cd-b6bf-1c2d92868e65", "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": "f4173f53-a146-4f07-8a32-886580ae1992", + "id": "e44b6101-2347-4a29-ad82-057adcc2bb97", "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": "ba553003-6847-4576-8818-e9541d744020", + "id": "05c0d92c-ac98-4ff3-8de6-d2ecdcc33adb", "name": "Too Many Requests - Returned in response to too many requests in 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": "6d0ccf26-936e-4afb-beaf-28de8271222a", + "id": "5ea0ed34-65e2-435b-9cf6-0806add34872", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18516,7 +18516,7 @@ } }, { - "id": "cf71dfef-76c6-4619-8e53-12d206a9743e", + "id": "e28e689a-41a7-462e-a2cf-6205a9abfb8f", "name": "Update a branding item", "request": { "name": "Update a branding item", @@ -18593,7 +18593,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "ut irure", + "value": "mollit deserunt ut exercitation aliquip", "type": "text" }, { @@ -18602,7 +18602,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "reprehen", + "value": "nisi esse officia", "type": "text" }, { @@ -18637,7 +18637,7 @@ }, "response": [ { - "id": "236faec5-5dd7-41be-8f92-4d989c9f3cc6", + "id": "df779f96-3cca-4723-9246-74bc7a7e8e0b", "name": "Branding item updated", "originalRequest": { "url": { @@ -18706,7 +18706,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "ut irure", + "value": "mollit deserunt ut exercitation aliquip", "type": "text" }, { @@ -18715,7 +18715,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "reprehen", + "value": "nisi esse officia", "type": "text" }, { @@ -18756,12 +18756,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"ad ex\",\n \"navigationColor\": \"quis i\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", + "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"tempor veniam qui dolor\",\n \"navigationColor\": \"officia sed\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f3e8ef29-840b-40df-9767-d411be6d867d", + "id": "b890b446-0dd8-443e-a3be-3b15b79bf49c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18830,7 +18830,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "ut irure", + "value": "mollit deserunt ut exercitation aliquip", "type": "text" }, { @@ -18839,7 +18839,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "reprehen", + "value": "nisi esse officia", "type": "text" }, { @@ -18885,7 +18885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e673b1f-f18a-4e6c-b0a7-2dc48cc7091a", + "id": "ce54355a-760a-487a-931a-dbb129fc8435", "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": "ut irure", + "value": "mollit deserunt ut exercitation aliquip", "type": "text" }, { @@ -18963,7 +18963,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "reprehen", + "value": "nisi esse officia", "type": "text" }, { @@ -19009,7 +19009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c10a547-5aa2-47a3-a3f2-9135b1a1fea0", + "id": "c5b4fd1b-a414-4aa3-a08a-33e92d8f1c92", "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": "ut irure", + "value": "mollit deserunt ut exercitation aliquip", "type": "text" }, { @@ -19087,7 +19087,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "reprehen", + "value": "nisi esse officia", "type": "text" }, { @@ -19133,7 +19133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab0402f0-8840-4ee9-9486-ca0a2d429ce2", + "id": "29936dde-577e-46d2-ac3b-e759001c48d5", "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": "ut irure", + "value": "mollit deserunt ut exercitation aliquip", "type": "text" }, { @@ -19211,7 +19211,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "reprehen", + "value": "nisi esse officia", "type": "text" }, { @@ -19257,7 +19257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "208f6721-f315-480b-9a67-9a40d1c06ee0", + "id": "026af1a4-5fec-4bcc-a223-400dcecd8d98", "name": "Too Many Requests - Returned in response to too many requests in 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": "ut irure", + "value": "mollit deserunt ut exercitation aliquip", "type": "text" }, { @@ -19335,7 +19335,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "reprehen", + "value": "nisi esse officia", "type": "text" }, { @@ -19381,7 +19381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "217d303b-a468-45a7-abbf-c88dc144e1e0", + "id": "028484c1-cc1a-40f5-a17d-37bda3d35522", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19450,7 +19450,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "ut irure", + "value": "mollit deserunt ut exercitation aliquip", "type": "text" }, { @@ -19459,7 +19459,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "reprehen", + "value": "nisi esse officia", "type": "text" }, { @@ -19511,7 +19511,7 @@ } }, { - "id": "3eb90a29-58f4-404a-9afe-9bc68ded4e5c", + "id": "5ae88cd3-110b-40ce-a118-6c6b59ff07fe", "name": "Delete a branding item", "request": { "name": "Delete a branding item", @@ -19552,7 +19552,7 @@ }, "response": [ { - "id": "0458c8d4-d267-441f-8a64-f75d22335692", + "id": "4ade57ab-e1e7-4f76-9def-1c81c5086ced", "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": "53132a47-aa98-4cbc-b088-dd616996c5f8", + "id": "a8e5abee-f60c-451f-b3f9-af6711eb89fa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19630,7 +19630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80247431-0868-4895-baa3-f4357703c90d", + "id": "a04d29ff-6980-4268-8399-3a9c72ab23a8", "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": "7f1a1e3a-4f41-409b-872e-aa74f6d1b365", + "id": "ad88186d-1b73-4ef5-86ff-516942b423a3", "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": "686b2b9d-9934-42d7-8d28-dd955b023333", + "id": "0644df09-b1f4-43c9-954e-adde519500a5", "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": "d16ed0f6-6bcd-47b9-a438-a821f822155a", + "id": "94f99aba-f7a7-4f98-b828-92900cb34049", "name": "Too Many Requests - Returned in response to too many requests in 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": "48d6fc71-d5be-4780-90b7-0b96cfe79945", + "id": "946a60e9-c1a0-4509-afb3-9697f00cdfb2", "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": "525de552-1c2e-4888-be73-8183c0f379e1", + "id": "1bfffc1a-8cfa-47df-9413-619b758314bc", "name": "List Campaigns", "request": { "name": "List Campaigns", @@ -19946,7 +19946,7 @@ }, "response": [ { - "id": "1bebecce-3166-461d-a266-28e9f1626fc2", + "id": "24a809dd-caff-49c1-96e5-947c8ba85cbb", "name": "Slim Campaign", "originalRequest": { "url": { @@ -20044,7 +20044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19e9dd40-b268-436d-9008-e07555fc078c", + "id": "a127d7af-8f3e-493e-a44b-134f60f0a56f", "name": "Full Campaign", "originalRequest": { "url": { @@ -20142,7 +20142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcc256a7-d310-4757-a738-f164bbb49d3d", + "id": "622af60d-bc20-4145-b2cd-d351479f41bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20240,7 +20240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38a01429-7c9d-4511-8611-89fa12fbe2a2", + "id": "918711f7-3f7e-4902-92d1-7a3d1d3d2f0c", "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": "05680a9f-a7e8-47c6-a4cb-d8fba3883272", + "id": "bc3f9d60-3f57-4375-a160-5bad46c7192b", "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": "968f131c-49fb-4702-9728-266f12bba797", + "id": "e52a36fd-4e4e-4278-aaf8-d65e78ca59fa", "name": "Too Many Requests - Returned in response to too many requests in 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": "91770152-8749-413e-a900-5a37d733ef71", + "id": "d64ca8ce-4285-44b8-af88-2d94da42eda6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20638,7 +20638,7 @@ } }, { - "id": "54071a0c-dd8d-4222-99d2-c3ffa166078d", + "id": "25751a13-3fd0-4d53-b079-b6b39cd9c135", "name": "Create a campaign", "request": { "name": "Create a campaign", @@ -20680,7 +20680,7 @@ }, "response": [ { - "id": "a21fd3c2-68f4-469a-aab1-67d06c71c31a", + "id": "112290b0-1b63-4825-a700-2dbd9781deb6", "name": "Manager", "originalRequest": { "url": { @@ -20736,7 +20736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b34b6cb-edef-4b18-93da-5ba981aad5fe", + "id": "bb7c811c-4782-468f-8351-657024b63253", "name": "Search", "originalRequest": { "url": { @@ -20792,7 +20792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99aa31bf-ecd0-45ad-af67-50f9571fa631", + "id": "13c08b68-c541-49a9-9ec2-f99632e91117", "name": "Source Owner", "originalRequest": { "url": { @@ -20848,7 +20848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aabdde47-a941-4b14-a920-84ac6b944fa7", + "id": "87ac99d7-0388-4fc7-b98c-022fb3d2db52", "name": "Role Composition", "originalRequest": { "url": { @@ -20904,7 +20904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0455d95-aa5f-4ce4-9ef9-839e76a18d58", + "id": "3dd0205d-cb81-4e28-a7f8-8923484467e8", "name": "Manager", "originalRequest": { "url": { @@ -20960,7 +20960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "656deb8b-eb42-4dcc-a5d0-a02710aa53e7", + "id": "23ae4450-5c13-498f-9cba-41e5c1e3b8bf", "name": "Manager", "originalRequest": { "url": { @@ -21016,7 +21016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a3148c7-5d24-4367-915f-5c7b52aa4f67", + "id": "89c017d8-1a84-4502-905a-8122d790a705", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -21072,7 +21072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26131806-265c-4e1e-9fce-109fcb88dde4", + "id": "9c416814-2977-4087-8fa0-61aa653b5c39", "name": "Manager", "originalRequest": { "url": { @@ -21128,7 +21128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5120ebd-463f-4acd-a81d-b99391fad99e", + "id": "bd16193f-8e4a-4a3f-8d66-da69c307ce26", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -21190,7 +21190,7 @@ } }, { - "id": "f009d505-49b0-4e1c-a6eb-355a84e18983", + "id": "064fee7a-1acc-449d-bad2-a17f22606879", "name": "Get a campaign", "request": { "name": "Get a campaign", @@ -21231,7 +21231,7 @@ }, "response": [ { - "id": "1374440f-b962-462b-bd31-8024764561a7", + "id": "2fd7e941-01ce-4619-974c-4bbad696c35f", "name": "Manager", "originalRequest": { "url": { @@ -21275,7 +21275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e26e2b7-7c94-4a14-b9b7-946d92c12e84", + "id": "86bca9e4-d582-48c5-9f5b-52e5426773a9", "name": "Search", "originalRequest": { "url": { @@ -21319,7 +21319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37c74e5b-a753-4be4-8504-dfde77a8685b", + "id": "c68a0197-f644-46a2-a196-8cc618013600", "name": "Source Owner", "originalRequest": { "url": { @@ -21363,7 +21363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c65a08b-ed17-4245-8235-30c478ca3273", + "id": "2510e9c6-b494-463c-bb2d-e0a1f4e4867c", "name": "RoleComposition", "originalRequest": { "url": { @@ -21407,7 +21407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7deccd34-39ad-4e49-81e2-fd2e6cc38b28", + "id": "a4d730f4-4644-41bc-8a7b-e9cf89dd5ba9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21451,7 +21451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab3c5c86-d697-443f-bf9f-ca231aa251e6", + "id": "3f7a3858-6b3b-4f05-8f12-9b34f43eaa46", "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": "041f269b-5177-42ac-86e7-996d35d4fc6a", + "id": "604731ba-8e04-4984-950c-21be9cca14d8", "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": "d67f1891-b3d0-4c83-b0a1-b368a3f22b5f", + "id": "284c3b83-442a-4847-90e9-be971d149151", "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": "59ac3de6-6a0d-4663-a4a2-0f0689b99c6f", + "id": "2fb4278e-24d2-419c-9c37-87741e05a19c", "name": "Too Many Requests - Returned in response to too many requests in 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": "e8864d46-a902-46ac-a5ba-e25028d4f091", + "id": "fcd42cd3-e1a0-4ed7-a40d-46386c527572", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21677,7 +21677,7 @@ } }, { - "id": "9fea69bb-0dfb-46c5-9598-040b8db1fc13", + "id": "4bd9ef7b-f22b-4763-9b35-c5ade1781d1b", "name": "Update a Campaign", "request": { "name": "Update a Campaign", @@ -21731,7 +21731,7 @@ }, "response": [ { - "id": "975fa95f-8318-48c1-a092-0f550ba901c3", + "id": "8734b4e9-ed17-490c-ae7f-e6cd51f48f48", "name": "Manager", "originalRequest": { "url": { @@ -21788,7 +21788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1de5401-66f5-4ea3-b469-3111224499f3", + "id": "2963a52d-b3da-4ffa-9122-999a10c87221", "name": "Search", "originalRequest": { "url": { @@ -21845,7 +21845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b74018df-60b9-43d6-8264-656c324c0acd", + "id": "96600de5-9014-47dd-8b86-cdc9fd308f15", "name": "Source Owner", "originalRequest": { "url": { @@ -21902,7 +21902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5c95099-39ce-4df8-8478-0c65aa3616c8", + "id": "cad8a433-9009-4287-896b-954bc62b32d5", "name": "RoleComposition", "originalRequest": { "url": { @@ -21959,7 +21959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "384bc050-3593-4987-a48d-c29ab1c81edd", + "id": "ee2e06ff-42b7-4333-8de2-da94c7ea361a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22016,7 +22016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "028dfd07-78a0-4922-8c5d-134fe99dc2a6", + "id": "2a315ecb-ec8a-4bd0-861f-9347c11b2bea", "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": "609d0e8f-6ea9-4db4-a260-638be3d614be", + "id": "84c38ce3-f8fd-43ce-98ee-da07e6df39fd", "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": "ebaa27dd-0b99-4d1f-82e9-f23a3ecb6892", + "id": "c6c9080c-6b91-4c95-973f-255b51a99300", "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": "93d8d06a-5505-4fe0-a903-f3306c379483", + "id": "cb68c51d-905d-4fe4-959b-aa31931e7b43", "name": "Too Many Requests - Returned in response to too many requests in 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": "0a37e219-ceba-47a1-be30-7e5b7a31a55d", + "id": "0a66d74b-5c95-4f2d-84eb-519b786bec9d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22307,7 +22307,7 @@ } }, { - "id": "23440a2a-534e-429e-aa6f-e05660157ea5", + "id": "a525fdcc-697c-46ce-b32f-a14ed4bac29b", "name": "Reassign Certifications", "request": { "name": "Reassign Certifications", @@ -22362,7 +22362,7 @@ }, "response": [ { - "id": "032c9212-ef4d-4e06-93fc-6bea2f64e639", + "id": "7a55bfe6-b4ef-49ab-8e8d-73029402549e", "name": "The reassign task that has been submitted.", "originalRequest": { "url": { @@ -22420,7 +22420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e17c86b-f169-4bac-9a77-d64b494d15d3", + "id": "8023f681-ea53-4d70-9bc3-1847cb78fe32", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22478,7 +22478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "846268fd-c50e-4a86-a637-ee94b1d38d13", + "id": "921f5169-0b29-4e66-aed0-d993c0266fd6", "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": "052ba8c3-435c-46bb-94ff-0a96148cc30a", + "id": "4cf41a2f-56e9-4480-a749-c4bd35788f8e", "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": "a91bdc1c-df7d-4338-9de0-12252cfc6e0f", + "id": "906649a4-4a69-46d1-b1b5-20cca644c5aa", "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": "9e3a2afe-5951-46d9-bbef-f1867d3ee993", + "id": "0cf350a2-ff20-4b6b-88e9-037e97468fdd", "name": "Too Many Requests - Returned in response to too many requests in 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": "4d0f5c1d-7f5f-4ccd-bd31-de01167cbfb1", + "id": "910727f0-9fcb-4d4e-8048-0799d2e9ba9c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22774,7 +22774,7 @@ } }, { - "id": "f6c8f5e0-c004-4b6f-a712-69f918463df8", + "id": "565f179f-1cc5-4b9b-8938-3b404815ee33", "name": "Activate a Campaign", "request": { "name": "Activate a Campaign", @@ -22829,7 +22829,7 @@ }, "response": [ { - "id": "9efeeb70-b373-4011-aa60-0d75a0fe0eef", + "id": "ee093a1b-f693-4061-bfb0-07f0df21a45e", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -22887,7 +22887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06a2ba79-6dc0-4ad5-bb7f-464285215df8", + "id": "77891d25-a06c-4c19-9600-a09a69275c5e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22945,7 +22945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ba98205-2532-4ac9-af93-5ddb39c1476f", + "id": "737ac8ee-c5c4-42c7-b1a2-ebeecbe77481", "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": "ef315af5-f92e-48f4-ab2e-364f2d5dd7f4", + "id": "1fa14e09-2498-4515-8549-e94632962e86", "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": "a5bd2ad2-441e-4897-b707-230681e05c20", + "id": "2269364f-477d-4a54-aff9-a041bf07feb8", "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": "dbf61fcd-592d-48f8-99ee-1e3055addd67", + "id": "8cc2ddff-c15c-433b-bff4-3010e9bb60f4", "name": "Too Many Requests - Returned in response to too many requests in 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": "fc6f50f4-bdb6-4af2-baf3-5924533568f4", + "id": "cefb377e-fe9b-485f-802a-3dd18b350544", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23241,7 +23241,7 @@ } }, { - "id": "32e6cb2a-b3e8-4ddd-896f-ecb3348fb7ff", + "id": "eccb9081-0137-4d26-a5ea-85a9a95e934b", "name": "Complete a Campaign", "request": { "name": "Complete a Campaign", @@ -23296,7 +23296,7 @@ }, "response": [ { - "id": "19b37f03-d74f-4fd5-8d93-2ded6e3010a7", + "id": "a9f6a1ca-ef3e-4ec1-8c0f-f1f359bae1b1", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -23354,7 +23354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a869058e-dc37-4245-857d-bb37489bf70f", + "id": "a62ff7f5-1f73-4ae9-825d-76b2a13be064", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23412,7 +23412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89bc798f-0b5e-4f20-86ba-4091b0949757", + "id": "942f499f-5fb4-48a4-b61d-b83288aee82e", "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": "b00bfa60-d1c2-4278-8ee4-1eb2746edc1d", + "id": "f1d0750c-b3aa-40da-9c24-d4a189ff3c60", "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": "91240114-ddc6-4d2d-8adb-d2f0f9371b82", + "id": "3dd4fdbc-8082-4cf8-b1ae-52474f889b4a", "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": "94896a33-e59d-4169-bb78-0536b5df8433", + "id": "8bef743e-25a2-493e-b1bc-a43501862134", "name": "Too Many Requests - Returned in response to too many requests in 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": "d4050aa5-e8d3-4f57-af59-f4ec5ffeba04", + "id": "bd71142e-c6d1-4af0-bacc-c573b74555d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23708,7 +23708,7 @@ } }, { - "id": "f4387e60-2f9a-42b9-a42d-8f813390776c", + "id": "dfef79ea-39f8-461a-83b0-7636df2c9237", "name": "Deletes Campaigns", "request": { "name": "Deletes Campaigns", @@ -23751,7 +23751,7 @@ }, "response": [ { - "id": "502eea12-b609-4c40-840f-d001a6cd257a", + "id": "99b8dae2-7bb3-4a6d-be61-b331c2dc6753", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -23808,7 +23808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04bc0bba-de79-4d25-8cc6-8b8f00d073f7", + "id": "44e7d810-fc8a-41b1-8748-85a80b15b6dd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23865,7 +23865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71385315-ecf2-4f69-afd2-53878568f53b", + "id": "5804d49b-2a45-4b5c-8eeb-bce6d942b267", "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": "b9dd901d-7dc8-45ac-95f7-e404ae40f7dc", + "id": "59cc95c2-c72c-4f9b-885c-d3d66fd8066d", "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": "bdc2dc9f-22b5-426e-86b6-63c578a97082", + "id": "a3cd7b54-427c-424f-b4a1-c512fb938b52", "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": "c660d705-a5ed-479b-80d3-4dc5c7529011", + "id": "c8948850-37ac-429e-9e67-05d343b488d5", "name": "Too Many Requests - Returned in response to too many requests in 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": "9b98643e-616b-40a3-8498-a8b9fae7b0ad", + "id": "7b905134-f3a5-4f80-9ea5-b0e675d4e00f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24156,7 +24156,7 @@ } }, { - "id": "f5efe8d3-dda3-4da1-8dc7-d2b8c41399f3", + "id": "32080adb-ea00-453e-9dba-2aea450e7c20", "name": "Run Campaign Remediation Scan", "request": { "name": "Run Campaign Remediation Scan", @@ -24198,7 +24198,7 @@ }, "response": [ { - "id": "7be6ea56-f00f-4771-8e5d-219d1cb24499", + "id": "136f810b-cb0a-47a7-869f-7cfa52ebb696", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -24243,7 +24243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "397b6bb6-25c8-4ebb-9c2b-09297b3da911", + "id": "4ffa73f3-b8b5-4548-87e5-dce7e81daf51", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24288,7 +24288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be147b54-f308-449b-93d4-2771bd45fcf9", + "id": "b349dc96-2a30-40a1-99e8-2608c67466e4", "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": "f5020cdb-c6d7-4966-ba2a-ff566f0134f2", + "id": "2d6cef66-1eb1-4b34-b8a1-5df2c9b46359", "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": "64cc65e9-4c6a-4675-a913-5fca9eccf64e", + "id": "17cef95d-0bd1-4e50-a1f2-683e9d876b42", "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": "65b91bdf-55eb-4db9-b477-cf6314c13a21", + "id": "8e647bba-1780-4b1f-8301-68c76b2bf7ef", "name": "Too Many Requests - Returned in response to too many requests in 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": "568b2e9d-cea8-4a29-8e7a-a8516f6d9c78", + "id": "692957b6-2720-4502-9266-911f7cf6903c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24519,7 +24519,7 @@ } }, { - "id": "98a68ce9-4241-4a1f-9edb-616cd06040bf", + "id": "1de2a87d-de13-4cc4-9e0d-9f55acc9b02a", "name": "Get Campaign Reports", "request": { "name": "Get Campaign Reports", @@ -24561,7 +24561,7 @@ }, "response": [ { - "id": "59e17744-35e6-40a0-b6a0-0aed4fe992f9", + "id": "96d66ef9-0c62-4c39-84ab-9badcffa1649", "name": "Array of campaign report objects.", "originalRequest": { "url": { @@ -24606,7 +24606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00293df5-5bba-45d0-9b07-ebbe007302af", + "id": "80d244f4-0a70-47b2-b1fb-67fd8feb74c0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24651,7 +24651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5335de03-8860-41e7-b8ea-4a19c60a06ae", + "id": "c6f52713-8c8a-4a63-ba51-6af498723b6b", "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": "bc5834a2-d529-4daa-b360-b277fc4c2421", + "id": "db1fad75-9aa9-4d10-94d7-b00521e82cef", "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": "cd21ddd7-37bc-48f4-b83e-e1d6c4250008", + "id": "4e3706c3-6be7-4e48-96f0-a721c212aab7", "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": "eb305272-2b5e-4b5f-b93b-766508519e5f", + "id": "31ccad0d-f686-44c8-b08d-c4ec66145c79", "name": "Too Many Requests - Returned in response to too many requests in 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": "d690081b-3853-41d3-8128-bb862a622a4a", + "id": "4c3f0f21-e46d-4f4c-b100-a07bb64e7d26", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24882,7 +24882,7 @@ } }, { - "id": "6ead9292-de74-43e8-b23a-b62a8cdfcfa6", + "id": "eaa79a48-5110-4050-a2ca-d5b396bc9d3e", "name": "Run Campaign Report", "request": { "name": "Run Campaign Report", @@ -24935,7 +24935,7 @@ }, "response": [ { - "id": "ae10aa9c-e849-442d-b278-744400c4f804", + "id": "25c83ad7-709f-4d60-a1e4-5e63fc770b43", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -24981,7 +24981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90898da8-2a77-40e8-b9ff-5fb6f9646c23", + "id": "b8181ef4-6bcc-4f00-852f-6ef0d9cf7a61", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25027,7 +25027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f24f1fb4-167d-4a52-9f9d-145c99cc549f", + "id": "61cdc97e-0846-40fb-96d0-8efb3d74c3ec", "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": "7b7ad4d0-c6e9-4e09-b2ca-2892aa515aa4", + "id": "c96cddce-98cd-4e50-964c-fea61046a239", "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": "2fbbc3bf-3215-4dff-ae39-dd439c463a19", + "id": "23f02ed4-330c-4e13-83a1-2be9ca7b61ae", "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": "dc7078c9-e1f0-463a-8112-fc31f082ddb0", + "id": "83cb4467-5939-4dac-b70e-f2c743ff004d", "name": "Too Many Requests - Returned in response to too many requests in 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": "fc61ad93-aa1c-462c-b0c8-3f90478bb6b4", + "id": "5662b67f-3115-40a1-a5f8-cf6cb8805c30", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25263,7 +25263,7 @@ } }, { - "id": "6451a478-ada5-4911-a039-a0b4e8f69a69", + "id": "f0f5eba4-793c-4b59-8e98-4d74955df4c7", "name": "Get Campaign Reports Configuration", "request": { "name": "Get Campaign Reports Configuration", @@ -25293,7 +25293,7 @@ }, "response": [ { - "id": "e54d0237-899f-4efb-ab4e-c76e46d2557c", + "id": "7ce925d8-04f4-4a84-9b3e-87b8c21e43da", "name": "Campaign Report Configuration", "originalRequest": { "url": { @@ -25337,7 +25337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33f93dd1-0168-4f45-87bc-80d4e227ca3e", + "id": "536c5e34-9053-4bb7-8d6b-a0434df23ed5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25381,7 +25381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90865b8d-87e6-446c-a82f-ffcfaf4e5a03", + "id": "d510cd3e-637a-404d-9e61-825b843038b8", "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": "de3e490d-a403-4d6c-a860-92e2d9f92801", + "id": "905d58a9-f265-4737-819a-a0866820bd34", "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": "b1455799-26b6-4078-9814-da67433dd912", + "id": "d385a49c-bc54-4763-9caf-a487d68c54da", "name": "Too Many Requests - Returned in response to too many requests in 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": "5494f1e5-601d-4464-ba1c-ba92647c3c88", + "id": "9f486a08-b13a-4dc9-8e04-b85e8516c40e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25563,7 +25563,7 @@ } }, { - "id": "a9e7c028-e212-4304-aa39-6fefa62d2722", + "id": "b923dc0e-50aa-4ac7-aeea-0ee74950406a", "name": "Set Campaign Reports Configuration", "request": { "name": "Set Campaign Reports Configuration", @@ -25606,7 +25606,7 @@ }, "response": [ { - "id": "4be979a6-472a-418c-bda2-1a7f57a6b087", + "id": "3043c887-7d78-4cb8-988b-91b74dfb2df5", "name": "The persisted Campaign Report Configuration", "originalRequest": { "url": { @@ -25663,7 +25663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "444b0843-1237-4cde-b602-ec61022d98cb", + "id": "e6958268-91f3-4de0-89eb-5c083d5f60a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25720,7 +25720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7096e50-13af-44bf-b013-a1556ec1ca54", + "id": "d2eb0faf-1ef3-47bf-9f61-1a611c720e6f", "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": "e93260ff-14c0-48ae-a03c-e81db4f101a9", + "id": "47890d24-c1ea-43e3-b84d-fd15d57cde0c", "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": "22e73e31-f367-4c5b-8700-75b04b60537a", + "id": "0013c471-4dbd-4c08-be2b-288e3936f0e0", "name": "Too Many Requests - Returned in response to too many requests in 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": "ee21006a-efc7-489c-84f6-fb84f37c2a2d", + "id": "ad869a0b-34a5-44be-8d7d-8a54e4d2cc36", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25954,7 +25954,7 @@ } }, { - "id": "673ede37-c7a7-482e-b956-52de7c8470df", + "id": "5f72f84e-a575-4f08-8edf-177843202056", "name": "Create a Campaign Template", "request": { "name": "Create a Campaign Template", @@ -25996,7 +25996,7 @@ }, "response": [ { - "id": "35b8f266-a55e-4b52-bb88-6c609139a8f8", + "id": "cccad4a7-5810-4e4e-b10a-e3f4950fd8f7", "name": "Manager", "originalRequest": { "url": { @@ -26052,7 +26052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a8eb5dd-1f3f-4631-8c91-54034ff73bc1", + "id": "d9e5c1f5-2aed-49db-b9a8-c83573fa63e4", "name": "Search", "originalRequest": { "url": { @@ -26108,7 +26108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66b46c72-7d89-4e22-a3a3-f0b878b21ba1", + "id": "a6843ab6-dd9b-4ba9-8dec-420c3b2aebd8", "name": "Source Owner", "originalRequest": { "url": { @@ -26164,7 +26164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "686bc2f0-8690-4c5b-9ece-a5b457f109ca", + "id": "1c3ac1c2-4e2b-4030-b7c2-f69deb5ab94b", "name": "RoleComposition", "originalRequest": { "url": { @@ -26220,7 +26220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bbd6ffb-e7a9-4028-ad0a-ec61b48e3ac2", + "id": "c6f0f407-0f2b-4327-9b2f-36e089eace95", "name": "Manager", "originalRequest": { "url": { @@ -26276,7 +26276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27fb8866-39a6-4614-8244-9cb4c0fbd753", + "id": "31045b97-47fe-4266-aef3-95c0e1bbe073", "name": "Manager", "originalRequest": { "url": { @@ -26332,7 +26332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34935008-012e-4349-ad20-2ca06343010c", + "id": "77f69500-c646-4617-a24f-c3b518de47fd", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -26388,7 +26388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9f56c0d-89b2-4dee-be74-67d7f54cc1fd", + "id": "b41bcc17-629b-45d2-a8e6-0a5376603bad", "name": "Manager", "originalRequest": { "url": { @@ -26444,7 +26444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e139f9bc-2159-4190-9ac0-8d5cff587523", + "id": "52b31e9d-0594-4670-b96d-15d2c2f20703", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -26506,7 +26506,7 @@ } }, { - "id": "7aebef52-c04f-4164-8213-5ddd3ad3c758", + "id": "590edd8b-3e03-4655-8638-da908e18b1c9", "name": "List Campaign Templates", "request": { "name": "List Campaign Templates", @@ -26581,7 +26581,7 @@ }, "response": [ { - "id": "95af200c-9f88-4dee-b882-6bc975207ffe", + "id": "b954851f-e1c8-456d-b2d6-b4a0a5858d4a", "name": "List of campaign template objects", "originalRequest": { "url": { @@ -26670,7 +26670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b3f235d-0a15-43ed-9a9d-54ce04d18ec2", + "id": "d43dcf40-c734-4da4-bf32-059fa91e965e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26759,7 +26759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3426f21-aa5a-436d-8b1f-3ba58bc11af8", + "id": "112aeab9-618e-4076-b1ae-9fa8b137ea93", "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": "609d476a-75ac-4130-b742-d95bb8d818b6", + "id": "d73accbc-a87d-4115-b346-32427ec4d7bd", "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": "5e74b616-fb45-4a44-95fc-3bb52b67a809", + "id": "e2573dc5-7762-4259-92b0-b04dea32168e", "name": "Too Many Requests - Returned in response to too many requests in 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": "b8d1f9b6-0a0c-4ac2-b39c-c0e7dd705563", + "id": "07ab9a56-d58a-4b40-aeef-3886d3f05857", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27121,7 +27121,7 @@ } }, { - "id": "6308f330-7032-4a1a-a19d-72ef9b8d859a", + "id": "c991dfa4-fd1c-4254-9073-1cac1bd5fb88", "name": "Update a Campaign Template", "request": { "name": "Update a Campaign Template", @@ -27175,7 +27175,7 @@ }, "response": [ { - "id": "01277495-c591-47ae-a53a-4e1156495503", + "id": "783abe7f-669b-41a5-ac61-5bd682370cee", "name": "Manager", "originalRequest": { "url": { @@ -27232,7 +27232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9910742-423f-4311-a30d-bb4530e8923a", + "id": "a2b0cf0b-94e3-4c09-b7af-f080410d0a1b", "name": "Search", "originalRequest": { "url": { @@ -27289,7 +27289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29622d6e-726c-46c4-a757-4e050efde3d4", + "id": "dc0da1d7-8461-4d31-b686-d787052f1a2c", "name": "Source Owner", "originalRequest": { "url": { @@ -27346,7 +27346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1717f379-5d31-4f87-9b47-3cf4bcddaf57", + "id": "bb51c6bf-e884-47f4-9942-10b895102561", "name": "RoleComposition", "originalRequest": { "url": { @@ -27403,7 +27403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "699ade2c-9acc-40c3-a0fe-fef084400fcf", + "id": "2fb755bf-8ad8-4ad9-b1e9-f409417e8b00", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27460,7 +27460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95de04e3-c295-4a9f-8bcf-49c486645711", + "id": "8304513d-3b44-4a8e-b334-7e0d70bd71c1", "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": "fe3d3302-d934-47e0-b0d4-29cac2f2160e", + "id": "0f8f9ace-c332-40b5-ad9e-71a304c1577c", "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": "935793b5-54ba-407f-ae2c-14b405d9b12f", + "id": "67c7cf35-98c3-46f9-8acd-078abb7d141a", "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": "6bb6a0af-6b62-4c25-967f-b1e61167025d", + "id": "c2865f04-10e9-4d3c-b6f0-9367d2a75972", "name": "Too Many Requests - Returned in response to too many requests in 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": "8edc8611-de40-4765-9c8c-96bc60a7ef84", + "id": "01cd14d0-cf1e-4663-9286-797cf9b23fa7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27751,7 +27751,7 @@ } }, { - "id": "021fea8a-bb8b-4b5a-85ca-b8292ea71db2", + "id": "4441fc79-eafa-4860-9c98-5ed0eea46af5", "name": "Get a Campaign Template", "request": { "name": "Get a Campaign Template", @@ -27792,7 +27792,7 @@ }, "response": [ { - "id": "2b422a30-97bc-4f4c-a47f-45659a0b626c", + "id": "1b97c38b-0f90-4ccd-a598-68d205bb6379", "name": "Manager", "originalRequest": { "url": { @@ -27836,7 +27836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de4feb81-646d-496d-9d7b-0c8280d9dcb3", + "id": "8d6fb8e5-bd66-4644-9965-b8050404ae27", "name": "Search", "originalRequest": { "url": { @@ -27880,7 +27880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c53d7d08-e87f-4b65-bd16-b40ddfdb247d", + "id": "4bb61cb5-e1b4-4fc9-ba57-73820e1ae37e", "name": "Source Owner", "originalRequest": { "url": { @@ -27924,7 +27924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "432552f7-3d8a-4536-9f41-f141f7f01a16", + "id": "cba4f6d4-307c-49de-b80f-2b36e43acc7c", "name": "RoleComposition", "originalRequest": { "url": { @@ -27968,7 +27968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c6a5f81-ce0b-4351-902c-431cdd727840", + "id": "c1ca07e3-7119-4315-b400-3870ee18f3b6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28012,7 +28012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5c28540-7c92-4cf7-a6e5-701fd463ff68", + "id": "714bd8a7-3a16-4eac-84de-2a4c035d793d", "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": "dea91e57-fdf1-4e10-a556-471f2e700bd8", + "id": "52e65464-783c-4dab-a955-b738e5d75dec", "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": "c9eda53a-0069-42e8-b8e9-f6d93fc3bae0", + "id": "8bc9a450-a213-4496-ae7a-381a5cd4c772", "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": "735a3148-639d-4c88-b2a7-7d7b25a862b6", + "id": "199591ff-48e3-44d1-b536-3761f60b0baf", "name": "Too Many Requests - Returned in response to too many requests in 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": "4b8c1bbe-aef6-4744-adea-a9400fc38dc0", + "id": "c6a7ce92-6032-45e3-8d23-d2fcc189a84b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28238,7 +28238,7 @@ } }, { - "id": "f2f084f1-fd50-428b-afe6-7e53c3baee41", + "id": "8c1c2953-0e35-4db3-aace-133e88622961", "name": "Delete a Campaign Template", "request": { "name": "Delete a Campaign Template", @@ -28279,7 +28279,7 @@ }, "response": [ { - "id": "69dae987-d2f6-43f6-bf35-76ccf227fbe0", + "id": "83157735-5e55-46e5-bcc2-b7f4591d6c81", "name": "The campaign template was successfully deleted.", "originalRequest": { "url": { @@ -28313,7 +28313,7 @@ "_postman_previewlanguage": "text" }, { - "id": "aecb0e2d-5778-482e-97fe-1944a5d35656", + "id": "bd917f78-d57b-4ffe-8a09-079a8c40f388", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28357,7 +28357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f4d5b0e-9835-42d8-8a64-5d8bf4898a08", + "id": "68e0a909-4ccd-4a51-bd20-530a0ef7f9c2", "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": "81fda2c0-7b91-41d7-a7fc-5d121d0d93fe", + "id": "831af195-f222-4f07-b456-212d155cea13", "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": "192e7e96-8d83-4a70-956b-bb3852ca7c13", + "id": "2a18c204-c8c3-430e-b2f0-1b670ff35a38", "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": "9f16942d-e0dd-47f0-b621-bc80c27a5cc1", + "id": "ebcc1b7b-05cf-4ad1-8034-6ca2794d51e4", "name": "Too Many Requests - Returned in response to too many requests in 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": "cc03364e-a7a9-4d08-b95f-de9cb1836f1a", + "id": "11b3d391-7775-406b-8cf1-94e79944f188", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28583,7 +28583,7 @@ } }, { - "id": "218f18b4-9043-4a9a-8def-0edefe322881", + "id": "f4b952e1-c378-4142-bec4-ea1a6613136d", "name": "Gets a Campaign Template's Schedule", "request": { "name": "Gets a Campaign Template's Schedule", @@ -28625,7 +28625,7 @@ }, "response": [ { - "id": "955ee204-2938-45a2-914c-c7f4464398ea", + "id": "70b98560-f9fe-4eed-b52b-bbbbc0952fad", "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": "d1a71880-1b45-4e2f-b28d-0b29cfd0724f", + "id": "45675601-5871-44b6-a89d-670eec2f209b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28715,7 +28715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08e8387c-e0ad-4e1f-8c8b-0a110735f8fc", + "id": "d340afb2-a1d6-4583-be1d-6991c78e41de", "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": "173b7e76-3f1c-4b20-beeb-e550b9aeecd8", + "id": "4ada1038-2c84-4154-a493-757c0c952fea", "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": "79892e58-dfc0-4f55-9dda-bd7b06e18c6b", + "id": "e5149e9c-94e5-4028-8f8a-523468fe7d1f", "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": "ff3ea567-3664-4324-8d93-be1a9d1ad520", + "id": "b6be04c7-6b75-461e-86b0-e11a527b9f2d", "name": "Too Many Requests - Returned in response to too many requests in 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": "afee8ff0-6c6f-47f6-bc44-b6b460ef3975", + "id": "b8c19dff-3aee-4740-8f42-9b107a81afdf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28946,7 +28946,7 @@ } }, { - "id": "70da0529-3a92-447f-8e0e-a582c3682c2e", + "id": "c1b83579-fee0-4cea-80c4-4cf00d5f0502", "name": "Sets a Campaign Template's Schedule", "request": { "name": "Sets a Campaign Template's Schedule", @@ -29001,7 +29001,7 @@ }, "response": [ { - "id": "7c7d94b8-abaf-42b7-b379-3ca7bd0866e0", + "id": "d37f57ff-3f2d-4b3a-ac4f-5280fe76a7c7", "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": "1d29ee6c-1e91-48a6-bcef-6f9a5b7561cd", + "id": "bfa984ff-08ab-4cb3-97a7-1024f4eb3ed0", "name": "Monthly", "originalRequest": { "url": { @@ -29107,7 +29107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94506e88-e8e0-47b0-b7d4-da0da8f1c3e9", + "id": "8ef5d773-6467-49dc-921f-09d31a69e96c", "name": "Once a year", "originalRequest": { "url": { @@ -29165,7 +29165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f28aa4b2-c1cf-48b2-aefa-165b4717385f", + "id": "7a6af133-517f-4f6d-8ae5-0645faaea126", "name": "Quarterly", "originalRequest": { "url": { @@ -29223,7 +29223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b5475a2-54c6-426e-bb11-d949843091ac", + "id": "3ceb0dc5-3860-4034-ab53-ec27d321a93b", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -29281,7 +29281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dfc5343-c191-4e79-a2b4-3c60788d5a3e", + "id": "2fb1265e-459a-4652-b138-01891d7f906e", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29339,7 +29339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f21fdf6-eedb-4694-a16c-8aed95a1c8bb", + "id": "d1bd74b8-b4d4-48ec-be8a-2eb8a96986f0", "name": "Once a year", "originalRequest": { "url": { @@ -29397,7 +29397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c996fb7-3f13-41c2-9b5a-2bc9a3105270", + "id": "2093fcbd-6fe7-4faa-ad63-a51bfa023353", "name": "Quarterly", "originalRequest": { "url": { @@ -29455,7 +29455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d0edab4-4ded-4b8b-97bb-c03dcfc81b0c", + "id": "197723b0-87ee-4bf7-ae4c-8f1fdb3612e8", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -29513,7 +29513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9f29bbe-d021-4345-9bc1-323b9bbcb0f0", + "id": "efd18840-20c3-4f00-9512-098c21e9f5a9", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29571,7 +29571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5a01103-1086-4493-84e9-e912c4c21658", + "id": "ac9ad04a-f41e-4d76-9b28-85e30030814e", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -29629,7 +29629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45bba555-c600-4f37-8595-2a91864efcf8", + "id": "41962541-bea6-45c5-9803-d7ff129776ed", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -29687,7 +29687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac336053-a44c-4b2e-8418-b93ee230deec", + "id": "c575e6ca-f189-49b3-b1e4-bfdea3921dc1", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29745,7 +29745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2216e350-3650-450a-aa54-b53a0e42524f", + "id": "98601cd5-9ec0-4cc9-802c-1ad3820bfa96", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -29803,7 +29803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64b1c6b0-a98b-44d2-8b64-45fcbd33067b", + "id": "8380d279-861b-4615-b5a9-9854e7959d3d", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29861,7 +29861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50d3c25d-3447-49b9-aa01-f61faa061899", + "id": "2b7fa91c-08c2-41f4-84d5-c331cd8a3e95", "name": "On a Specific Date", "originalRequest": { "url": { @@ -29919,7 +29919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ca53ddf-26b4-4fb0-886e-16f4f9e39ded", + "id": "b6218e89-6b3a-47c8-bd1f-a2ad1efa7a3b", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -29983,7 +29983,7 @@ } }, { - "id": "56aaff5c-5ecd-4fbd-98e6-2d7ce47c0fd8", + "id": "c072de38-f44f-47f9-a7df-1ade945935e2", "name": "Deletes a Campaign Template's Schedule", "request": { "name": "Deletes a Campaign Template's Schedule", @@ -30025,7 +30025,7 @@ }, "response": [ { - "id": "1f35d096-2ed8-467b-b937-e1d6d30098fb", + "id": "2c0cec66-b09c-4214-ad59-cf72fbb71830", "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": "f30c20cb-cc86-4ec3-bcb6-fe15052a6b14", + "id": "ca5b136e-5d66-4023-a2e7-595505543cf5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30105,7 +30105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b733a2f-b3b5-4ed2-9ffe-4714dfed5a3a", + "id": "d3cc00ae-8604-40ea-b9d7-8e2f2ecbcd51", "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": "15edc86f-cb6c-4627-aa62-fd196cede6a1", + "id": "0eca7446-627e-442a-b13f-495c43475174", "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": "437d5f88-49d6-4e47-bc60-d05f3a1e82f6", + "id": "449465ba-dcd8-49a0-a652-4946f99d937a", "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": "65051f10-ab45-45be-9662-bd53f7f4e2cb", + "id": "d27a4e22-5cd1-4175-ac70-0efd9b81162d", "name": "Too Many Requests - Returned in response to too many requests in 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": "f09ee88e-5a49-42d2-b484-3fe153a73807", + "id": "a4b52125-9ebc-44ff-84ee-4dde145ef9ba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30336,7 +30336,7 @@ } }, { - "id": "31751d46-6ec4-4158-81bf-48c499f33d69", + "id": "2a5c915f-2812-4a7a-8dd8-d8bf94d3d4c7", "name": "Generate a Campaign from Template", "request": { "name": "Generate a Campaign from Template", @@ -30378,7 +30378,7 @@ }, "response": [ { - "id": "822edd3e-e29c-4bc5-b44e-04b4cbf49c33", + "id": "8aa67574-9eac-4ec2-9339-85f6a010c6f8", "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": "a070b19e-9922-4424-b145-cee55ebeae6e", + "id": "9232d492-99b0-4acf-a51b-94b32b20d780", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30468,7 +30468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41c71de2-ad43-4d1a-9292-8f4cd739358a", + "id": "eca8f831-06e0-4662-a7fd-654f8f319214", "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": "9f9862d7-e141-4b92-98cb-a22b1925e454", + "id": "92359a04-5dbb-46be-9a6a-b5392763331e", "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": "f5759e95-ec3d-4f77-8c49-11b652c8fe38", + "id": "3983407d-ca7e-4a84-aef3-ca08e3867b93", "name": "Too Many Requests - Returned in response to too many requests in 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": "fe48c6a5-6ec7-45e0-9061-cd0f5b097396", + "id": "7056470f-5436-4f0b-9b8c-0e5125c10c82", "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": "b5f68b86-0804-458f-83e1-963f081a7086", + "id": "f51f03c4-6786-4805-acce-c025722eda29", "name": "Identity Campaign Certifications by IDs", "request": { "name": "Identity Campaign Certifications by IDs", @@ -30744,7 +30744,7 @@ }, "response": [ { - "id": "9acc2d10-08be-4681-b31e-a43518a939d0", + "id": "a43d9f1f-9782-41b3-936a-7123455a0821", "name": "List of identity campaign certifications", "originalRequest": { "url": { @@ -30842,7 +30842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b59113b4-3849-48c3-a3d1-02c51215f425", + "id": "4074819d-d15e-40b7-842f-36b7d4ee017f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30940,7 +30940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8afb6d96-c6a1-4f06-9da6-adfb38ed2be0", + "id": "dade4cb7-a320-42d9-8036-b7eb74b780e8", "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": "e3826821-b679-4e3f-bd7f-6f13dcaf41ec", + "id": "7f947a75-51ca-46fa-a888-bfeaa22b2bef", "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": "f9aa3df0-7564-4bfe-8a7f-8f3e549d3e19", + "id": "de3f522d-8709-41f5-91e2-c32c12069bcb", "name": "Too Many Requests - Returned in response to too many requests in 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": "03a974b9-49eb-4f74-982a-3460736398e0", + "id": "710b0368-0ed7-4bc0-a522-1c22381fd563", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31338,7 +31338,7 @@ } }, { - "id": "e84a005c-bda2-4f72-89fe-b14755f23e60", + "id": "c3ddf63f-9b1e-473c-92f8-3a7d2b993f9e", "name": "Identity Certification by ID", "request": { "name": "Identity Certification by ID", @@ -31379,7 +31379,7 @@ }, "response": [ { - "id": "331d85f5-a01c-4761-8c5c-3f5ad1cb468f", + "id": "6c6786cd-9519-460b-84da-0f978069c3be", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -31423,7 +31423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ebec9f1-7a5e-43cc-98a3-66953b11c69e", + "id": "f7739296-7233-4e69-87ed-ae92e9e61a96", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31467,7 +31467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32eb7ad2-c3ff-40da-902a-bfdff090a3d2", + "id": "18708d0b-7a98-4dba-a6d1-152b81336d45", "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": "daab85fe-ece3-4fa3-8622-22d253d303d7", + "id": "070a2279-bcd6-4bc3-b27c-15e15996ae5c", "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": "39ddf566-4954-4a3d-9bef-973aa49c1621", + "id": "7359477c-0e73-42cd-b557-77246c164df9", "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": "ab9d251e-5982-4b8c-b634-a81546f384d0", + "id": "e023860a-e6f2-4a6b-9cfa-c34e490ca318", "name": "Too Many Requests - Returned in response to too many requests in 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": "716cd8e9-877f-4fb7-a35e-31d27a20bd93", + "id": "4365524b-f505-4ded-9f19-919f94761da3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31693,7 +31693,7 @@ } }, { - "id": "82d0a857-5ea9-49d6-a4ff-768746402884", + "id": "a5644f13-2d06-413f-bc9c-9b60c2ddb98c", "name": "List of Access Review Items", "request": { "name": "List of Access Review Items", @@ -31808,7 +31808,7 @@ }, "response": [ { - "id": "cccb80c0-5ade-4469-a764-16e49f161350", + "id": "dc656ebb-865b-4245-9fa6-bc867020f609", "name": "A list of access review items", "originalRequest": { "url": { @@ -31926,7 +31926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65a6f803-ae6f-4099-ab20-727a5600477a", + "id": "20386d55-01e1-4957-bd91-40b5404d2cc0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32044,7 +32044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab421720-fb97-42a9-9723-d2137e888070", + "id": "14c923bf-abc4-4a24-9294-0476fd317a86", "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": "62e747e3-c961-4ff5-aff1-3474659b7f98", + "id": "8714bc64-6af8-44b0-82ec-0ce4052baf51", "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": "ecfd2d5c-ce4e-4f8f-9977-78336270c4c3", + "id": "206cc50e-0b02-406f-919d-8b11f7e89254", "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": "9c791625-252a-47fb-8e16-287d6c6c5ffa", + "id": "f02dcb0b-84d0-47b8-99f8-52bdc175d7e6", "name": "Too Many Requests - Returned in response to too many requests in 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": "b23441a2-fd14-48bf-82de-4aca5a9cb52b", + "id": "599802bf-a5b4-47c1-adc6-407c77b8a2d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32640,7 +32640,7 @@ } }, { - "id": "c2f02ce1-97dc-407c-923d-20fe09f13f5b", + "id": "b9e3cdf3-39b4-4817-bdb1-62f81618aa42", "name": "Decide on a Certification Item", "request": { "name": "Decide on a Certification Item", @@ -32695,7 +32695,7 @@ }, "response": [ { - "id": "817b3ddc-906c-4b28-8073-aa076f98aa15", + "id": "70495073-2092-494d-9946-dca27b8a66ab", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -32753,7 +32753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3239f519-6b96-4ce2-8f08-9638ee9ffc41", + "id": "adfb2077-d362-4629-afbc-82799843ca31", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32811,7 +32811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bdad791-31ec-418a-ad82-80bd44e2749e", + "id": "7f897b17-6bff-43e6-b357-c412ed3c76a9", "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": "3a97b836-1f68-407d-9a23-025b4ff4445a", + "id": "dd9118ad-6b4e-4f95-9566-ce421c667e42", "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": "af62d364-9f58-43c5-b857-0e7a77bcacd3", + "id": "c4453053-93de-47f5-9631-295b9655df5e", "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": "802603b0-a97d-4ee9-b6ab-06e4e77576df", + "id": "af97140a-a7da-408a-a4f7-52229b6a5336", "name": "Too Many Requests - Returned in response to too many requests in 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": "1e20b383-8428-442b-beca-28287eadd312", + "id": "88160a7c-6746-4587-886c-5673f0d09cd3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33107,7 +33107,7 @@ } }, { - "id": "b85a9b3c-f25a-4769-ac33-4096f950ba07", + "id": "ae44a9cf-5823-445a-8f58-fbdc2c6549e3", "name": "Reassign Identities or Items", "request": { "name": "Reassign Identities or Items", @@ -33162,7 +33162,7 @@ }, "response": [ { - "id": "e71716e2-b86a-4f2b-bf16-31b5cdbd3d56", + "id": "c97e1aed-1e1c-4eba-98f2-cb7497cf0146", "name": "An identity campaign certification details after completing the reassignment.", "originalRequest": { "url": { @@ -33220,7 +33220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7298478b-fdb7-4b5c-96ce-1d7aacc56252", + "id": "a1f4c75d-0579-44e1-94cb-1d05afb311bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -33278,7 +33278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f66d01e9-b4ae-4293-9269-85b5c90759d2", + "id": "da842c7d-3969-408b-9a0b-ddb61c12bd79", "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": "f4f75c4b-6247-47cc-b73e-c7c1c8ddfe65", + "id": "9c5f84b2-30cf-4a1b-a5f0-d120361df4cd", "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": "2c541ff3-cd8c-4014-9893-2ccebfefd060", + "id": "85cf307f-ea92-4e8a-afb3-dc257ddb138a", "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": "d6481f64-8e71-4954-a10d-a31e5e79888d", + "id": "6589095f-cb4f-440d-af8a-3ce2c82373f6", "name": "Too Many Requests - Returned in response to too many requests in 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": "88263c78-360a-442e-bf9f-219839a061d4", + "id": "02741ec0-6606-4f7b-bf10-d06cbfdb1885", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33574,7 +33574,7 @@ } }, { - "id": "65855be3-1285-4b70-90a7-f1a813296ab2", + "id": "336a8771-7e4d-49e4-a177-66d5b263a486", "name": "Finalize Identity Certification Decisions", "request": { "name": "Finalize Identity Certification Decisions", @@ -33616,7 +33616,7 @@ }, "response": [ { - "id": "9de18ef6-26a4-4687-b149-3ce254fa36e6", + "id": "e052f542-ff94-4a38-b7ab-12e9f8b30634", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -33661,7 +33661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc241292-d7f8-4100-bb39-359bcf5ff54b", + "id": "a47be71d-af9a-4d4a-9b15-abaa0e8349a2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -33706,7 +33706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b53c667-2b6e-434e-a17d-3e8db4e4c4b8", + "id": "0d06f374-29fc-4bc5-ac90-7d858cadf969", "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": "60de2188-5e79-4c66-8e5d-5ec6c28bb478", + "id": "10db1a42-ae8b-4905-8610-f624ebae3c28", "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": "68b312af-3310-4d5e-bdba-36cb1ab3a94f", + "id": "52464046-8eb5-47a8-b194-9d650a3811c6", "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": "968e6aa9-5efb-4a3b-b266-119510ebe253", + "id": "0ab1b96e-dfa3-40ba-bc4f-01f371d6fe5d", "name": "Too Many Requests - Returned in response to too many requests in 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": "1bb4374c-0db3-4d00-9e35-0ba92c9b7bdf", + "id": "c7da460a-3735-4ddb-b6be-5581fbef3ea9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33937,7 +33937,7 @@ } }, { - "id": "d51d1a64-b46c-4ec0-aed8-b32f1009e29b", + "id": "9d1f7dd7-a9c4-4924-8324-049027371715", "name": "Permissions for Entitlement Certification Item", "request": { "name": "Permissions for Entitlement Certification Item", @@ -34028,7 +34028,7 @@ }, "response": [ { - "id": "8f2534ff-173f-4c96-981b-26b7ffde4e21", + "id": "5eb8455a-ec9b-4e5c-9ec2-6aeb62fc0c65", "name": "A list of permissions associated with the given itemId", "originalRequest": { "url": { @@ -34112,7 +34112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "408e6bb3-14e8-46ce-846c-aff6e67019df", + "id": "7854818b-a5a6-41c8-8122-0bc5c926c402", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34196,7 +34196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79ed7a79-d7ef-4f48-9029-06a444e8ec49", + "id": "acc7f940-3c95-40ba-931d-7ebe1691aa34", "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": "d89823df-539c-429f-8fdc-84bf35f4e750", + "id": "d7e5130f-abb9-464a-ad2f-bbec4ea5cbb0", "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": "d1442af9-63ef-4c75-a10c-ce612168e50b", + "id": "4c9c848b-69f9-48fa-b033-cb6fcae70fa0", "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": "feaaa9d5-4c0e-4eee-b198-cccbfee0a965", + "id": "34c3317a-2e27-4e68-aba5-6fa242811d32", "name": "Too Many Requests - Returned in response to too many requests in 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": "b8ce3bfc-6cca-475a-8450-a48c24451bbd", + "id": "5947e1af-2cf1-413d-857e-4a461f5ea85e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34622,7 +34622,7 @@ } }, { - "id": "22dea021-8812-4e3b-b3fc-a0e51765acea", + "id": "b466a6c7-55de-4df6-b1fb-3f00a44e41dc", "name": "List of Reviewers for certification", "request": { "name": "List of Reviewers for certification", @@ -34710,7 +34710,7 @@ }, "response": [ { - "id": "0f37f0ec-52a0-46c1-8c0e-c476d084a0eb", + "id": "2470fafc-658e-4609-a924-ebedf539157c", "name": "A list of reviewers", "originalRequest": { "url": { @@ -34801,7 +34801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe264df7-95ae-4764-9854-4183e591d2da", + "id": "b231d61a-3cd0-4a56-9d25-90d55e77950b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34892,7 +34892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fccfdba-224d-4b6f-9a9a-d33ba464f445", + "id": "3f8f39d9-319f-430b-a973-d112c9ab1dc1", "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": "0ab8970f-ff3b-4980-ab03-a5bfcc3f2bf4", + "id": "b21fa2d5-dd49-4b79-9bef-c3dd698e51aa", "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": "f1ea1be4-7af3-4026-bc4f-6b96dd8fe688", + "id": "405c46b4-7219-44bd-a2a4-0bf25b551f07", "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": "b9b3024f-4c45-4d2f-8d6a-b15fff63ffea", + "id": "11d5308c-f4cb-4d64-937d-f16e203c553c", "name": "Too Many Requests - Returned in response to too many requests in 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": "fe163d5f-fcec-4590-96e7-5d6454b40534", + "id": "937d8fc2-d8e5-47c1-9b1e-3a8a5ef05137", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35353,7 +35353,7 @@ } }, { - "id": "23496fcc-24b1-4368-8d12-a82a50eef3d3", + "id": "b4864f4e-b35b-481a-9139-b99eb1b343fe", "name": "Reassign Certifications Asynchronously", "request": { "name": "Reassign Certifications Asynchronously", @@ -35408,7 +35408,7 @@ }, "response": [ { - "id": "a23addae-5d3d-4434-bea3-d1402a01dc9d", + "id": "34dd4513-59e6-4c2e-9c37-3ee0431dddad", "name": "A certification task object for the reassignment which can be queried for status.", "originalRequest": { "url": { @@ -35466,7 +35466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea20df7b-4d0b-4a7a-8520-cd70847c6071", + "id": "fcf55211-6ff9-4fa9-b6b1-d8fc61e03877", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -35524,7 +35524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "111303d7-e3db-4395-8649-1c03158452b5", + "id": "212f484e-4cc2-477d-aa54-a8196d2e1b49", "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": "2978b78a-add2-4017-a736-e62e0a1a03e6", + "id": "52df747d-e469-4b86-99cf-55892fcb1d34", "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": "407e6552-1758-4eaa-8b16-61461268d6b6", + "id": "214f7739-8230-4912-a291-5f44b5ef428b", "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": "233a1278-79d8-4505-bcc9-b77086073e35", + "id": "7041d850-2290-4f16-8016-51d5e4e5c736", "name": "Too Many Requests - Returned in response to too many requests in 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": "01d7ccea-bb0f-41c4-af5c-40c5b62ef9c7", + "id": "e77561e3-bd89-46d0-9a25-6a8a7c581ee0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35820,7 +35820,7 @@ } }, { - "id": "ff48a96d-c3de-43e0-b884-901469150f77", + "id": "a1fee4fa-d274-4db1-808d-99e47ace955d", "name": "Certification Task by ID", "request": { "name": "Certification Task by ID", @@ -35861,7 +35861,7 @@ }, "response": [ { - "id": "5e237555-18ea-4d07-bc62-87e773457124", + "id": "4360fcfd-d1bf-41c1-9981-7f87edb52b9a", "name": "A certification task", "originalRequest": { "url": { @@ -35905,7 +35905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35e817e2-160c-43f1-8efd-95f063bf951b", + "id": "a618522a-2424-45bc-a522-acadd672af04", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -35949,7 +35949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0199e6b-c571-45e5-a780-c92a9bf527b5", + "id": "96527b70-650d-4164-b3e2-9ac6bff583b1", "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": "34c0eeb7-2568-42cf-9d94-a7ab6296edbf", + "id": "d5ea8576-7c57-4bbe-b681-7a9b6ae98fbc", "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": "72e7bb52-e994-4204-8e3c-a376ae209800", + "id": "9bbc9ae6-de56-41f8-9221-2331b0bcafb3", "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": "36903a72-1347-4951-876b-6eb7626753b1", + "id": "0bd5726c-fecf-4789-9618-ae022933fa44", "name": "Too Many Requests - Returned in response to too many requests in 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": "29fab6b1-4785-4b5f-8c0d-81715168b81c", + "id": "903d8dca-1137-4430-8f59-7e2063d3f61f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -36175,7 +36175,7 @@ } }, { - "id": "78819823-4f04-4f9a-80ca-2bb26c540dd9", + "id": "f27b64cb-3be7-4e17-a85b-b060f242ddb5", "name": "List of Pending Certification Tasks", "request": { "name": "List of Pending Certification Tasks", @@ -36250,7 +36250,7 @@ }, "response": [ { - "id": "c4f308c1-c132-4846-8184-538deb5e5ea0", + "id": "2ae74e8a-8169-4364-93b8-cb3b17b36328", "name": "A list of pending certification tasks", "originalRequest": { "url": { @@ -36339,7 +36339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9963a19-b134-4205-8d8b-a5587f49af06", + "id": "9408a406-7aaf-4e56-ace7-f1e7b4d87f75", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -36428,7 +36428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aeac1789-4fd3-406c-a06b-9b43dd913908", + "id": "61d09830-d8d3-4d09-b4e0-794e9bf342b2", "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": "e7f470e5-7ea1-4674-a7ad-c8e147f09175", + "id": "de31e18c-58e1-47e8-846c-2064a1263d14", "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": "d731b35c-66bb-456f-aadc-630f9f50b4fc", + "id": "5e44d40e-290b-4ceb-8672-323f9c883f85", "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": "686b7c9d-c2f8-4fee-9602-c4cd82fc2434", + "id": "eaa824c9-fbe4-4e2c-bd0d-4a8f94b23a21", "name": "Too Many Requests - Returned in response to too many requests in 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": "bbd8d05d-a4f3-463f-a977-244306048c40", + "id": "65e64b26-6fe3-49e5-ac68-d981199d3c1c", "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": "011a8bdd-b69d-401f-9e6c-f1c638f5b384", + "id": "472e8b9c-7e3f-417e-a519-e412c4ab90a1", "name": "Summary of Certification Decisions", "request": { "name": "Summary of Certification Decisions", @@ -36937,7 +36937,7 @@ }, "response": [ { - "id": "ce14cdd3-307a-4e5b-9e17-4a438b7fe8a7", + "id": "9a6bc706-8c97-4700-9be3-8cb5ad3b07c1", "name": "Summary of the decisions made", "originalRequest": { "url": { @@ -36992,7 +36992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a8b8911-5b9a-4fea-9b18-b9760150acf6", + "id": "e450d3f3-69e1-4089-88fd-e8bd96699cdc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -37047,7 +37047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cc3c60b-4bd8-478e-85d2-46572448cb34", + "id": "8a308ab8-9a68-42fd-b81d-135b8723d0b6", "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": "23f1ddb9-7ad9-4585-8f5d-1a7abd1eb2c6", + "id": "8d107599-9278-430d-b039-69272f81e616", "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": "7796e5c7-0c62-419a-8dfb-bdb54cbe3b3e", + "id": "e95459c0-f454-4747-8262-c44bdbe6d4f6", "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": "59e0f07c-741e-4439-a6de-b6aeb508a05a", + "id": "e51c7949-d44f-409d-a1ee-4e8a99f066a3", "name": "Too Many Requests - Returned in response to too many requests in 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": "ebc8b8c8-a2fc-48f2-9853-cb2bc8d5eb8a", + "id": "9ecbe068-f1a2-41af-9e70-9823df2f5fac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -37328,7 +37328,7 @@ } }, { - "id": "63e010ec-28d3-4f30-b79a-1e3c66b74b66", + "id": "699c9407-a5f1-4475-8d89-04f8238e5d08", "name": "Identity Summaries for Campaign Certification", "request": { "name": "Identity Summaries for Campaign Certification", @@ -37416,7 +37416,7 @@ }, "response": [ { - "id": "1b184992-1800-4c59-ad8d-d6d16e45c63c", + "id": "e5a87e3d-bc33-4504-ab7b-f938b5ce57e7", "name": "List of identity summaries", "originalRequest": { "url": { @@ -37507,7 +37507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17ac8b9d-56cc-489c-9230-490c01e267ab", + "id": "2183e55f-917a-4a18-8c83-46ee0833a2fc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -37598,7 +37598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "668ba13f-b4fb-4c78-906a-7b194e423d77", + "id": "6b4f561e-5197-4280-a2a2-c9bdf9b0b7b7", "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": "82191722-b7ff-46a1-a7c0-c6401eee5971", + "id": "dca16225-3329-48e7-a1c4-3fff0a416636", "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": "36cbd3b3-cae9-45c2-a499-4b294f799468", + "id": "d7e303cb-9079-45ec-a7cd-85ebaa7e00d8", "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": "882fe25c-5ecc-4598-8b09-09dda791113b", + "id": "1bd65cfe-79d4-433e-8641-201f87d565e5", "name": "Too Many Requests - Returned in response to too many requests in 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": "df8410c2-79f1-4f24-b6be-d4e13e425011", + "id": "c43b281c-730a-43e9-a208-92ce603c6796", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -38059,7 +38059,7 @@ } }, { - "id": "3a130103-0198-4f18-b4bb-c9ae848a0d93", + "id": "0232e4f2-3c95-4ac3-a0c8-2684d8913599", "name": "Access Summaries", "request": { "name": "Access Summaries", @@ -38158,7 +38158,7 @@ }, "response": [ { - "id": "ea9f3a73-224d-4e92-b1fc-e06e24ccb13d", + "id": "02649910-e80d-4cee-9487-cd33a44a5e4d", "name": "List of access summaries", "originalRequest": { "url": { @@ -38250,7 +38250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65006ca8-e1e1-4e90-a597-861b5e2687bc", + "id": "1fa5f6b3-bf80-4e2c-875e-9cd02c9a5cd9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38342,7 +38342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2d05c1e-2efe-4f65-a771-31d659990dad", + "id": "2526c1e9-b55d-482e-826f-0ab2cc601692", "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": "1bc49739-ce04-4f0e-a339-827a90b91b9b", + "id": "055b9d23-b79e-4fef-af24-5f889b6bc53f", "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": "9a0836f0-07bb-46bb-b830-1a2ecb143739", + "id": "8294da43-3b1c-4c2d-8e1f-c7ae91f62494", "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": "480ef933-69be-42a9-b994-584a47fe7ae4", + "id": "1449ce39-85e6-4f51-913f-9337b0085d74", "name": "Too Many Requests - Returned in response to too many requests in 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": "6f47208b-629a-4c57-b996-fedf961af3be", + "id": "a36c25e5-c74e-4a14-a0bb-9b68dfcd6b11", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -38808,7 +38808,7 @@ } }, { - "id": "f77caf25-862c-44d8-81a2-417e38ef094a", + "id": "9416504f-f04c-4034-8b1e-00188ec8e225", "name": "Summary for Identity", "request": { "name": "Summary for Identity", @@ -38861,7 +38861,7 @@ }, "response": [ { - "id": "5031cd00-7bac-49c9-b1e6-17c9e8952822", + "id": "b3ce4b22-ab68-4d4a-a760-0f654a5286b3", "name": "An identity summary", "originalRequest": { "url": { @@ -38907,7 +38907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96ea4533-5a6a-4d0d-9a57-2b3213555393", + "id": "9b9b510d-efee-4208-8f53-1c5cafa8998d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38953,7 +38953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf19aaf4-bd0c-4ec2-8d8a-2a416fc97b35", + "id": "238ce902-a24c-4939-8b7d-6701f94b812b", "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": "54dc8619-c5d9-40ea-8999-9c8d33fd84cc", + "id": "a5869527-b41b-4a90-a892-aa7601680a20", "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": "37c4edda-aa23-4cbf-9fcc-942bc5d193a6", + "id": "a78d5370-6945-4b8f-902f-bc1e6f37b4d7", "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": "617635d2-569e-4c0a-ae42-10e3c085391f", + "id": "daeed6f5-7f9a-4e6f-bbbe-a4fcfa6bf601", "name": "Too Many Requests - Returned in response to too many requests in 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": "6a081c2a-5122-4fee-b298-7fef6a5ee7bb", + "id": "3cc45f40-5dd4-4743-b0bd-98337d110e5a", "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": "0753e1e4-b829-4d49-b3f6-c4eab16f98d3", + "id": "78302cdf-c08d-4c72-a489-807de0dacb3a", "name": "Create a Campaign Filter", "request": { "name": "Create a Campaign Filter", @@ -39237,7 +39237,7 @@ }, "response": [ { - "id": "52759f39-44f0-4ad0-9d2b-26689a6bead7", + "id": "bb198d7a-af73-436d-8ac5-f266a1745e36", "name": "Created successfully.", "originalRequest": { "url": { @@ -39293,7 +39293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a345eea4-f0f0-4729-b636-c4a9e516a69a", + "id": "2103780b-363d-4c1f-9415-58b292509048", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39349,7 +39349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be431822-af56-4d99-bc29-0a8920170beb", + "id": "7f69a4bd-5125-4fa5-aad8-8f469e016356", "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": "0e15e350-d207-4a25-8108-d94cd8c6ede4", + "id": "fb7085f6-12f4-409f-98bd-bea3e3d1f464", "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": "fba07184-3c5a-4108-9f9c-9fc48623fbea", + "id": "14202c69-b2f9-4106-a41a-6021cc396c4d", "name": "Too Many Requests - Returned in response to too many requests in 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": "f376a137-71a3-425c-b7dd-68ec6a5bdd8d", + "id": "f6c3e5e2-bba6-42fd-94f0-e59abedf7cfc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39579,7 +39579,7 @@ } }, { - "id": "ea3a1c40-ee09-411b-bee7-5831272540ab", + "id": "1b2b0285-3ba4-4a74-a1aa-268f9f5320da", "name": "List Campaign Filters", "request": { "name": "List Campaign Filters", @@ -39636,7 +39636,7 @@ }, "response": [ { - "id": "eb86ebb9-816d-475d-be81-99ac0159d63d", + "id": "170ba977-c700-4064-9661-08f41a3c922c", "name": "List of campaign filter objects", "originalRequest": { "url": { @@ -39707,7 +39707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "960971a3-a1e4-4897-87af-b27d83ef1292", + "id": "479c7ac7-9392-41f0-9bdb-95096bda2545", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39778,7 +39778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9d8f866-3c7f-4e1b-bd2f-b909d9a8f1bf", + "id": "4bb3e9e2-0fe6-4697-8904-843363c78617", "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": "120ce1c7-3ffc-4c45-8796-7e07182c0f00", + "id": "f9d6ac0f-bfb2-4c32-a5af-100db587564c", "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": "f596dea4-cf21-4d99-85f7-d2844477ee69", + "id": "da12823f-e2e2-471e-b8b8-66033650a9a1", "name": "Too Many Requests - Returned in response to too many requests in 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": "ca03e834-6cb7-46e5-b3a5-dcaaab69ad32", + "id": "52c7172d-786e-4a5a-81f4-c2bc38c6daeb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40068,7 +40068,7 @@ } }, { - "id": "116d0bf5-b1dd-4575-8471-0b263814644b", + "id": "3172a6c5-b112-4cf7-bbd2-9e986aacd617", "name": "Get Campaign Filter by ID", "request": { "name": "Get Campaign Filter by ID", @@ -40113,7 +40113,7 @@ }, "response": [ { - "id": "15ad59db-c78b-46b4-bf78-7b2570ceaaef", + "id": "94c06b22-e07b-4f28-bdf8-8343c263348c", "name": "A campaign filter object.", "originalRequest": { "url": { @@ -40157,7 +40157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00e4eada-6ddd-4f13-a193-050da6c10654", + "id": "36c35953-ad4a-4737-881a-23d2aac01179", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40201,7 +40201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83818bfe-4265-40f1-9e25-ca3f97be2ad0", + "id": "9e47dc2f-3c3b-4380-b46d-217b3f278d16", "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": "fff5c2e2-0f6e-4571-9c41-dcab0f609507", + "id": "8fbf1651-f578-4218-8573-94b55203329e", "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": "9ed3fd68-e268-42d1-9733-1abed84c2bce", + "id": "e909796d-a689-49d6-a4b2-20bbe41625ad", "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": "b25cb5af-47c2-4986-9002-6db19a940205", + "id": "44e3c14f-f2ba-4291-a236-34c05a0621a9", "name": "Too Many Requests - Returned in response to too many requests in 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": "94fed569-875b-48b0-bb2d-b58829219698", + "id": "e3a94ea0-b000-47fd-8b61-89b153933e11", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40427,7 +40427,7 @@ } }, { - "id": "710d0571-476e-4ecb-9bcd-4076e0b476d1", + "id": "12b83f5f-c345-417d-a5a6-5faf7c6c21d0", "name": "Updates a Campaign Filter", "request": { "name": "Updates a Campaign Filter", @@ -40485,7 +40485,7 @@ }, "response": [ { - "id": "28355b38-987a-46fb-87c7-136c78881643", + "id": "c7a35330-4651-4713-a63f-1450561882be", "name": "Created successfully.", "originalRequest": { "url": { @@ -40542,7 +40542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe11b8da-4f62-46df-a95e-99de708a66af", + "id": "7cb83447-0817-4d91-a7fe-2d5a0da99074", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40599,7 +40599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52f04123-94d9-4856-92ae-a8b7d5d41b54", + "id": "91406695-72cb-4813-ad7d-3ec3f1ad1d59", "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": "ac3df8a4-e1f0-499f-bda3-caacdcad8696", + "id": "58453994-a7a8-4523-873e-a84cf1118df3", "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": "44b1fa3f-3173-418a-9ddd-95b416eb630a", + "id": "56f3cca9-1709-49a0-8dc4-c45d34d9b0db", "name": "Too Many Requests - Returned in response to too many requests in 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": "11524c44-1968-48c0-a82c-e6ffe1d69502", + "id": "7bf3f55f-8bbe-430c-bd6a-10ca9e7efcb8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40833,7 +40833,7 @@ } }, { - "id": "707e276b-6580-4ff1-ad64-ad9fb9ee5e91", + "id": "4edf1f4f-6395-4cab-bfdf-750900fa8c0c", "name": "Deletes Campaign Filters", "request": { "name": "Deletes Campaign Filters", @@ -40876,7 +40876,7 @@ }, "response": [ { - "id": "6995e8ca-0153-4cde-9474-ab62a93993fa", + "id": "519fa4ca-d56a-4cc6-877d-6136d6557eea", "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": "4a530e21-af29-4a10-9bb0-467773bbe751", + "id": "14606b2b-631e-48b0-9d8f-2eab3ae55964", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40980,7 +40980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43dd0952-3aa9-4cf3-8def-88e21b650de3", + "id": "87332edf-adc1-404d-a81d-428f9d310c13", "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": "6ec1a0d9-3964-402d-bdde-f2208a9cc63a", + "id": "ba9a2de4-516f-40f8-88f7-43205b484777", "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": "2bcad717-6757-4cd0-85d8-bec0d75dc3c5", + "id": "f5283646-c94c-4920-b4e8-0367e9dc928a", "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": "eafb5be1-a5a4-43e9-97a2-160959fa1b01", + "id": "ca1b41e0-3690-4da7-8b46-a5dfd29adf27", "name": "Too Many Requests - Returned in response to too many requests in 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": "7d2151da-201c-45b5-94bf-719f73a4fe53", + "id": "a3af02ac-8794-48da-b55a-bfa24d5330a2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41277,447 +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": "38c9030a-2d5e-470c-af6e-df0170c077a8", - "name": "Create custom connector", - "request": { - "name": "Create custom connector", - "description": { - "content": "Create custom connector.\nA token with ORG_ADMIN authority is required to call this API.", - "type": "text/plain" - }, - "url": { - "path": [ - "connectors" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "Accept", - "value": "application/json" - } - ], - "method": "POST", - "body": { - "mode": "raw", - "raw": "{\n \"name\": \"custom connector\",\n \"className\": \"sailpoint.connector.OpenConnectorAdapter\",\n \"type\": \"custom connector type\",\n \"directConnect\": true,\n \"status\": \"RELEASED\"\n}", - "options": { - "raw": { - "headerFamily": "json", - "language": "json" - } - } - } - }, - "response": [ - { - "id": "c1dda75f-3775-49c8-bd34-ef223f034c29", - "name": "A Connector Dto object", - "originalRequest": { - "url": { - "path": [ - "connectors" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "POST", - "body": { - "mode": "raw", - "raw": "{\n \"name\": \"custom connector\",\n \"className\": \"sailpoint.connector.OpenConnectorAdapter\",\n \"type\": \"custom connector type\",\n \"directConnect\": true,\n \"status\": \"RELEASED\"\n}", - "options": { - "raw": { - "headerFamily": "json", - "language": "json" - } - } - } - }, - "status": "OK", - "code": 200, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - } - ], - "body": "{\n \"name\": \"name\",\n \"type\": \"ServiceNow\",\n \"scriptName\": \"servicenow\",\n \"className\": \"sailpoint.connector.OpenConnectorAdapter\",\n \"features\": [\n \"PROVISIONING\",\n \"SYNC_PROVISIONING\",\n \"SEARCH\",\n \"UNSTRUCTURED_TARGETS\"\n ],\n \"directConnect\": true,\n \"connectorMetadata\": {\n \"supportedUI\": \"ANGULAR\",\n \"platform\": \"ccg\",\n \"shortDesc\": \"connector description\"\n },\n \"status\": \"RELEASED\"\n}", - "cookie": [], - "_postman_previewlanguage": "json" - }, - { - "id": "864efc90-e59d-4b15-b673-d4c4384f50cb", - "name": "Client Error - Returned if the request body is invalid.", - "originalRequest": { - "url": { - "path": [ - "connectors" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "POST", - "body": { - "mode": "raw", - "raw": "{\n \"name\": \"custom connector\",\n \"className\": \"sailpoint.connector.OpenConnectorAdapter\",\n \"type\": \"custom connector type\",\n \"directConnect\": true,\n \"status\": \"RELEASED\"\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": "2ce5bcc8-3991-4b3f-9e74-19c18ec76b66", - "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", - "originalRequest": { - "url": { - "path": [ - "connectors" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "POST", - "body": { - "mode": "raw", - "raw": "{\n \"name\": \"custom connector\",\n \"className\": \"sailpoint.connector.OpenConnectorAdapter\",\n \"type\": \"custom connector type\",\n \"directConnect\": true,\n \"status\": \"RELEASED\"\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": "05857b76-dcfa-4869-9115-7fea5f479b36", - "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", - "originalRequest": { - "url": { - "path": [ - "connectors" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "POST", - "body": { - "mode": "raw", - "raw": "{\n \"name\": \"custom connector\",\n \"className\": \"sailpoint.connector.OpenConnectorAdapter\",\n \"type\": \"custom connector type\",\n \"directConnect\": true,\n \"status\": \"RELEASED\"\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": "f738c2fe-87e5-4383-934e-0e4e9842e21d", - "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", - "originalRequest": { - "url": { - "path": [ - "connectors" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "POST", - "body": { - "mode": "raw", - "raw": "{\n \"name\": \"custom connector\",\n \"className\": \"sailpoint.connector.OpenConnectorAdapter\",\n \"type\": \"custom connector type\",\n \"directConnect\": true,\n \"status\": \"RELEASED\"\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": "7e690393-0b74-4e19-9444-ec1f0358f631", - "name": "Too Many Requests - Returned in response to too many requests in 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": [ - "connectors" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "POST", - "body": { - "mode": "raw", - "raw": "{\n \"name\": \"custom connector\",\n \"className\": \"sailpoint.connector.OpenConnectorAdapter\",\n \"type\": \"custom connector type\",\n \"directConnect\": true,\n \"status\": \"RELEASED\"\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": "a4d6c87a-4f63-410d-9b0c-7e7465ffae88", - "name": "Internal Server Error - Returned if there is an unexpected error.", - "originalRequest": { - "url": { - "path": [ - "connectors" - ], - "host": [ - "{{baseUrl}}" - ], - "query": [], - "variable": [] - }, - "header": [ - { - "key": "Content-Type", - "value": "application/json" - }, - { - "key": "Accept", - "value": "application/json" - }, - { - "description": { - "content": "Added as a part of security scheme: oauth2", - "type": "text/plain" - }, - "key": "Authorization", - "value": "" - } - ], - "method": "POST", - "body": { - "mode": "raw", - "raw": "{\n \"name\": \"custom connector\",\n \"className\": \"sailpoint.connector.OpenConnectorAdapter\",\n \"type\": \"custom connector type\",\n \"directConnect\": true,\n \"status\": \"RELEASED\"\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": "2ac6a6d5-1132-478e-9c26-6082b8022a7f", + "id": "415a37b9-ee58-4dd7-a21a-5d12658f0473", "name": "get Connector", "request": { "name": "get Connector", @@ -41768,7 +41328,7 @@ }, "response": [ { - "id": "2ae1ed48-9714-4ed6-babf-8f38a277ecca", + "id": "8fe87cf6-5102-4890-bb7a-d81034f7e36a", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -41822,7 +41382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "701d2b11-d810-43ad-8dec-7d24147f133c", + "id": "71fba7c6-29b1-488a-8e49-18c882b0e4b0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41876,7 +41436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71adf872-1343-4b53-a1ac-768bfbbe50b6", + "id": "a54d5a10-71a4-4235-9b1a-db49a3ea59fe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41930,7 +41490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dc22cb2-ada5-426d-a618-d0a9e03f7a99", + "id": "d3f00cdc-ebc4-4278-a093-0fe55476d6a0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41984,7 +41544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54f8c47a-c527-431b-a1b7-a9db87733115", + "id": "6500da1c-8ce2-4763-a0a9-2988dfa80abc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -42038,7 +41598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc394608-86f9-4581-b048-16191f7178d5", + "id": "42f6b53f-5f4d-4129-b457-ae0ee8b15794", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42092,7 +41652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61b1689c-6519-4583-86f3-bbff0895d4b4", + "id": "54467cdd-3884-4f02-9a22-4d92d11a1126", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42152,7 +41712,7 @@ } }, { - "id": "d3da3d95-4115-47e9-b423-1ce5338eaf23", + "id": "6ef765f3-db55-4bc8-a024-2a10179b93b7", "name": "delete Custom Connector", "request": { "name": "delete Custom Connector", @@ -42193,7 +41753,7 @@ }, "response": [ { - "id": "15d08c46-9016-4c16-8ab1-133dc3736985", + "id": "17b7a68a-f7ab-4a72-9f2a-cf0dad8f4b70", "name": "The custom connector was successfully deleted.", "originalRequest": { "url": { @@ -42227,7 +41787,7 @@ "_postman_previewlanguage": "text" }, { - "id": "cffafb4b-5139-4431-8852-9045c645f409", + "id": "545084fd-ec82-4e7c-99f1-9fc6d8b3927c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42271,7 +41831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "913b9e7d-3080-488c-b150-b3e0ffb91ba3", + "id": "793658f8-ab6a-4e03-a067-159fbea61fb2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42315,7 +41875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95bfcbf1-433c-4dcb-be62-cb23b1e15d1a", + "id": "c878a1c1-b738-439a-8d35-ac99d653abed", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42359,7 +41919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42ffbe14-ba39-4e66-a4d1-e24fc2f1acdb", + "id": "a5a59eb0-e725-4945-a096-a8245aeb0d31", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -42403,7 +41963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abe2eabc-efd8-41eb-90a8-3c7d97be2f9d", + "id": "8f4690e3-714b-48f1-940c-9c4578b02ae6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42447,7 +42007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26ac5baa-cabc-4ded-93d9-2f822460d68f", + "id": "cd75895e-64d4-4bdd-b26a-cd3e5c9202e0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42497,7 +42057,7 @@ } }, { - "id": "a9ff3156-e8e9-46bc-82e5-79e20778d96a", + "id": "e8d8571e-1a7b-413a-98cb-7ee8481530ee", "name": "update Connector", "request": { "name": "update Connector", @@ -42551,7 +42111,7 @@ }, "response": [ { - "id": "0ff486aa-275e-4850-a83a-812f706bee8a", + "id": "52468e1a-0c00-4d7b-b1ff-bf7f2f62d94e", "name": "A updated Connector Dto object", "originalRequest": { "url": { @@ -42608,7 +42168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df54ac97-d54a-46f7-ac60-4f8247063325", + "id": "483c4fba-1d5a-4d01-9221-8e9538541534", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42665,7 +42225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef652b46-2ab9-4b8a-a8fc-b5ec8a3cd823", + "id": "6ca51329-0e8b-41c0-87fc-be178814a6ef", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42722,7 +42282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49d1c65e-0391-4121-938b-b8af503b0d5e", + "id": "16403394-3d4e-4314-b8d6-c522af6a381b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42779,7 +42339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a065362d-b737-4111-890e-0db6e490e070", + "id": "21b36a4a-dbd1-4065-be02-e478bfa0ba3c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -42836,7 +42396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17278274-1072-45ba-91ea-056bd103cf89", + "id": "b926c630-e1e8-42f4-94ca-82500c2d95f3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42893,7 +42453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5d74dc7-0006-4138-88a6-07b00a1e9526", + "id": "7a60b979-1270-463d-af7f-5ea9b8e0c642", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42956,7 +42516,7 @@ } }, { - "id": "4f19a868-9cdf-43b6-8735-e71b991785d7", + "id": "f7aeed10-a158-412d-9de1-41e13d47b621", "name": "get Connector Source Config", "request": { "name": "get Connector Source Config", @@ -42998,7 +42558,7 @@ }, "response": [ { - "id": "1cbaabdc-b89f-4df0-aac1-491886e260f2", + "id": "a381cafc-286f-4dcb-8280-025ed3e528b4", "name": "The connector's source template", "originalRequest": { "url": { @@ -43043,7 +42603,7 @@ "_postman_previewlanguage": "xml" }, { - "id": "ad3bf987-d7ea-4e79-b1b5-8fc71ef7f3bb", + "id": "512bcfa3-31c3-4424-a67f-de38e7361bca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43088,7 +42648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7eb3d09-da54-4fa1-b0dc-37db177ed8cb", + "id": "ba6cc757-34d6-4e13-8920-eb54f825a4a4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43133,7 +42693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dfbfb36-6475-4bd3-a243-e8c61b96df5f", + "id": "926e0ae9-a7d9-48ed-b465-4ee71df5085c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43178,7 +42738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "396a0e5a-1117-4ea8-b934-b43d273f8936", + "id": "98a584c3-83bf-4091-be7f-e5ce6731a91e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -43223,7 +42783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "532a8f86-61bc-4529-a93d-d2b915ddc24b", + "id": "f4946c2e-6841-41bb-8787-55f7309460df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -43268,7 +42828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d674eebf-0792-4f01-9512-429a7e317920", + "id": "9a4c94dc-98af-4307-a0e7-a74eddb4d703", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43319,7 +42879,7 @@ } }, { - "id": "d82ecb01-39f2-4426-9823-17290ba7859e", + "id": "e22c7825-a7e2-4fd6-9646-9f6b5de22d8c", "name": "put Source Config", "request": { "name": "put Source Config", @@ -43370,7 +42930,7 @@ "type": "text/plain" }, "key": "file", - "value": "enim veniam labore", + "value": "Lorem proident", "type": "text" } ] @@ -43378,7 +42938,7 @@ }, "response": [ { - "id": "6af197e1-e354-4841-8c3f-ad6c0f324f21", + "id": "53326caa-ce33-4069-893e-2f9a7b0530c1", "name": "The connector's update detail", "originalRequest": { "url": { @@ -43421,7 +42981,7 @@ "type": "text/plain" }, "key": "file", - "value": "enim veniam labore", + "value": "Lorem proident", "type": "text" } ] @@ -43440,7 +43000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f60e301f-62e3-4204-8f96-b8fe9a6ffaa7", + "id": "e6cfaf06-89c7-45de-a6d1-29af4311b50d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43483,7 +43043,7 @@ "type": "text/plain" }, "key": "file", - "value": "enim veniam labore", + "value": "Lorem proident", "type": "text" } ] @@ -43502,7 +43062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec0d0163-6122-405d-be4b-e56c56c09706", + "id": "23b6ff1d-b21d-4e33-a345-f2d5a05fee49", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43545,7 +43105,7 @@ "type": "text/plain" }, "key": "file", - "value": "enim veniam labore", + "value": "Lorem proident", "type": "text" } ] @@ -43564,7 +43124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64805ed9-cee0-4cae-82cb-4dc31eac0801", + "id": "5b91579e-75db-4e90-a0e3-c77f5cae5132", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43607,7 +43167,7 @@ "type": "text/plain" }, "key": "file", - "value": "enim veniam labore", + "value": "Lorem proident", "type": "text" } ] @@ -43626,7 +43186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e239a669-20ca-4e5a-878d-60ef851b0661", + "id": "6136fadb-9eaa-49d2-8d1d-e0d1118de9e2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -43669,7 +43229,7 @@ "type": "text/plain" }, "key": "file", - "value": "enim veniam labore", + "value": "Lorem proident", "type": "text" } ] @@ -43688,7 +43248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e424d1e-1982-4467-b428-b3f7c099fcd5", + "id": "3b6cd853-acaa-4f51-a907-7da00cdab881", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -43731,7 +43291,7 @@ "type": "text/plain" }, "key": "file", - "value": "enim veniam labore", + "value": "Lorem proident", "type": "text" } ] @@ -43750,7 +43310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fc8b5b4-d3ca-4f99-b198-16cb9aeaf130", + "id": "14117507-f9b8-4bfd-be56-132abc3a9d95", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43793,7 +43353,7 @@ "type": "text/plain" }, "key": "file", - "value": "enim veniam labore", + "value": "Lorem proident", "type": "text" } ] @@ -43818,7 +43378,7 @@ } }, { - "id": "87ef8cd1-d011-40c9-917c-27e677b51107", + "id": "d3ce5411-f4a8-4680-ba7b-ca5e34ed936c", "name": "get Connector Translations", "request": { "name": "get Connector Translations", @@ -43871,7 +43431,7 @@ }, "response": [ { - "id": "6241fa7f-c37b-4845-bec9-0dad5fe2e9ff", + "id": "c2302e0d-c7cb-43dd-951e-2be4c72fbc8d", "name": "The connector's translations", "originalRequest": { "url": { @@ -43912,12 +43472,12 @@ "value": "text/plain" } ], - "body": "mollit incididunt nostrud", + "body": "irure est", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "a79b8203-2e2d-4321-b07d-86d3367ec53c", + "id": "5bcd2540-2f73-4101-84a8-9d08cf2c0157", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43963,7 +43523,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e078532-e5e9-4420-8f2e-3e656b89187e", + "id": "c84fdf43-91de-4bb2-85ac-b2ac2802ab36", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44009,7 +43569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c290ed2-1a22-4dab-99d5-59cec0ed07a4", + "id": "456e3d3f-f0dc-4703-a0bd-76e1ddbfca73", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44055,7 +43615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0eadc47b-3396-40a1-a669-af3c3088010f", + "id": "948bb1aa-03fc-4fae-84f4-4389ebbde333", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44101,7 +43661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "289fd666-bf4f-438f-9cc3-b9b83ce72099", + "id": "6da1822e-d203-49bd-9ba2-228ef241b9d2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44147,7 +43707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93a9f271-e8c2-4e64-8753-76e9b11df861", + "id": "3ac52465-9cb9-43e1-8082-ff22147cee1d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44199,7 +43759,7 @@ } }, { - "id": "5e7d6b9c-333b-432f-b9c4-fdeef6109e88", + "id": "26e8bf09-027b-454e-bbb3-94161a4a6e13", "name": "put Translations", "request": { "name": "put Translations", @@ -44259,7 +43819,7 @@ }, "response": [ { - "id": "a90154bb-4065-4ead-90c1-a881fcc81093", + "id": "674bb38d-38ad-4d0a-ba84-72092c9a2620", "name": "The connector's update detail", "originalRequest": { "url": { @@ -44312,7 +43872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc6eeddb-a96b-4a3e-99ea-53631d9d0cef", + "id": "12a9df93-3272-47c1-8bcb-e39e3cdc3630", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44365,7 +43925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cc965eb-5ddd-4c33-b10f-b232bc23ef0f", + "id": "d72e3759-4879-4d1a-90f2-121cfed8b397", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44418,7 +43978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e6cdeb4-ce48-4e84-b147-88739597577b", + "id": "1d93721e-8f54-4c90-bb81-e1331c774dab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44471,7 +44031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bd13de7-8fae-4340-bdf2-c51c9f36fddb", + "id": "2ced4eba-e94a-4057-a288-dbfc50a28573", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44524,7 +44084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73376936-7e0c-42ce-bfd9-00e901fb505e", + "id": "1a0c7f53-a44a-458e-88e6-b1160bfe93a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44577,7 +44137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a4feb83-7ffb-4ab4-a41e-129ef637d9d2", + "id": "30f658ea-742d-48c7-9eeb-77dd432ae473", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44636,7 +44196,7 @@ } }, { - "id": "f0d2a4ed-7e70-47fe-9ecd-49990d6c7529", + "id": "e584445c-1e1d-433a-ba12-1e91dfafab2f", "name": "get Connector Source Template", "request": { "name": "get Connector Source Template", @@ -44678,7 +44238,7 @@ }, "response": [ { - "id": "f982b448-a338-4646-831c-f58a3185cb4e", + "id": "75080381-549d-4f53-97ed-ecc44ab585dd", "name": "The connector's source template", "originalRequest": { "url": { @@ -44723,7 +44283,7 @@ "_postman_previewlanguage": "xml" }, { - "id": "4a312279-e60a-4964-9ac5-2fb583d8c97a", + "id": "c062e407-aec7-430b-849a-0ed90f23566f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44768,7 +44328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5249ee68-d8ba-4486-8726-2a90f710309a", + "id": "200000a6-1417-46d0-a957-fd400cede7de", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44813,7 +44373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc3f8afc-5340-4cf5-b1c6-50ce484c0b6b", + "id": "95d8881c-8db6-4d7d-8122-d219c684425d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44858,7 +44418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99a2ebb7-5c95-4e72-a4b7-9129ea208f07", + "id": "9941fbe6-1039-4ea5-9c1e-e60d5409a8dc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44903,7 +44463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eca90f03-769f-411e-b773-fe2fdb691a8e", + "id": "21cea38d-574d-48e5-9113-5bd9a7187a2d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44948,7 +44508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "064fdc1e-6a20-41d9-81c1-68f6a5404fec", + "id": "aa3c5af6-85d1-48e4-a8e0-2734e748e879", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44999,7 +44559,7 @@ } }, { - "id": "93ae5487-0808-44b3-88d8-4793066b1491", + "id": "543a914b-ad28-4e9a-93e4-efc1a1305c26", "name": "put Source Template", "request": { "name": "put Source Template", @@ -45050,7 +44610,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolore consequat", + "value": "commodo amet sit Duis", "type": "text" } ] @@ -45058,7 +44618,7 @@ }, "response": [ { - "id": "2b64c537-c445-4ece-8319-f83c3b54552c", + "id": "50772247-37af-44a0-a158-acf619bab67d", "name": "The connector's update detail", "originalRequest": { "url": { @@ -45101,7 +44661,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolore consequat", + "value": "commodo amet sit Duis", "type": "text" } ] @@ -45120,7 +44680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "210b749a-86f7-4a12-b3ec-ff4748e80838", + "id": "ff309fe8-e0db-456b-b6e6-56cd8e6e7d6a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45163,7 +44723,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolore consequat", + "value": "commodo amet sit Duis", "type": "text" } ] @@ -45182,7 +44742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53851acd-91e3-4373-a872-c3ba1cad7eff", + "id": "be028fc4-4792-4d61-8767-617b8cf7d9da", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45225,7 +44785,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolore consequat", + "value": "commodo amet sit Duis", "type": "text" } ] @@ -45244,7 +44804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68ef1bea-1da3-42cd-b970-b4f9ae32c8e3", + "id": "279dff6c-4b25-4913-9bac-a452838f5bd3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45287,7 +44847,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolore consequat", + "value": "commodo amet sit Duis", "type": "text" } ] @@ -45306,7 +44866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6bfaffb-ccc0-4a3c-b523-52771399c9aa", + "id": "fff7c1ef-4ba2-4a96-beb5-e3c978ff0d3c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -45349,7 +44909,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolore consequat", + "value": "commodo amet sit Duis", "type": "text" } ] @@ -45368,7 +44928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97f2eddd-8bc4-4a1c-b296-7333d5aca2d6", + "id": "21ff033c-54a2-40cc-8feb-8cb0de7789a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45411,7 +44971,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolore consequat", + "value": "commodo amet sit Duis", "type": "text" } ] @@ -45430,7 +44990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fd09f21-574f-4037-a50e-65a62aed064a", + "id": "4e65d944-eb8a-4a5c-9e95-284dc8880679", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45473,7 +45033,7 @@ "type": "text/plain" }, "key": "file", - "value": "dolore consequat", + "value": "commodo amet sit Duis", "type": "text" } ] @@ -45498,7 +45058,7 @@ } }, { - "id": "5ec91532-126f-40a1-9868-56f2857fd541", + "id": "94ca1477-7a36-4a5d-86f7-206394e86b04", "name": "get Connector Correlation Config", "request": { "name": "get Connector Correlation Config", @@ -45540,7 +45100,7 @@ }, "response": [ { - "id": "f8f0a2be-76a1-4dbc-9b7c-fdbb505a0392", + "id": "ff111b45-b223-4905-9966-a23a4bcff275", "name": "The connector's correlation config", "originalRequest": { "url": { @@ -45585,7 +45145,7 @@ "_postman_previewlanguage": "xml" }, { - "id": "1d512ab2-eca7-4fd9-aaee-e53dfc8145fb", + "id": "7c320755-a8b5-42d0-9a21-73dbc30770c0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45630,7 +45190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8ab56cb-d15f-4f06-aa3a-4039089f0ca5", + "id": "a0045386-8ca3-468e-9c70-cb28f58c7d4d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45675,7 +45235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b8cb1f9-90c2-497a-8cec-a7722a825b73", + "id": "55cc95a7-80f1-446d-a2d6-386fb225720b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45720,7 +45280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2999bda-002e-44be-aada-c9d189577bb6", + "id": "dd7c2c99-a8d1-465b-94c9-4c665ba59aaf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -45765,7 +45325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9205116f-509e-4885-924c-190fa17d3bf3", + "id": "be4199cd-be78-4146-8ee6-e4d9e423555a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45810,7 +45370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9aedc7f4-acfc-4ca3-91e6-45458196235e", + "id": "fed94267-77d0-4969-b6f5-6a442d291047", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45861,7 +45421,7 @@ } }, { - "id": "47ce231b-ab03-4d29-82a1-1d2ee0e4952f", + "id": "af271de1-cc95-429c-869e-7ef2268dbb63", "name": "put Correlation Config", "request": { "name": "put Correlation Config", @@ -45912,7 +45472,7 @@ "type": "text/plain" }, "key": "file", - "value": "qui et", + "value": "et do laboris quis", "type": "text" } ] @@ -45920,7 +45480,7 @@ }, "response": [ { - "id": "8a0c9df7-959b-4606-85aa-ec46b0040de4", + "id": "6aa66ba1-d448-4b63-8340-47b18300bceb", "name": "The connector's update detail", "originalRequest": { "url": { @@ -45963,7 +45523,7 @@ "type": "text/plain" }, "key": "file", - "value": "qui et", + "value": "et do laboris quis", "type": "text" } ] @@ -45982,7 +45542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cb21616-8097-4f99-9090-0af071334d24", + "id": "6d1d0fcc-dab4-49e9-892e-e306a4d9b59a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46025,7 +45585,7 @@ "type": "text/plain" }, "key": "file", - "value": "qui et", + "value": "et do laboris quis", "type": "text" } ] @@ -46044,7 +45604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adf45f06-8be8-44dc-a37b-8b76e4641a19", + "id": "0ca2acaa-d7a7-4666-8669-a04271103671", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46087,7 +45647,7 @@ "type": "text/plain" }, "key": "file", - "value": "qui et", + "value": "et do laboris quis", "type": "text" } ] @@ -46106,7 +45666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c735db5-b62d-4f72-82dc-e262199692b1", + "id": "fbe51887-c947-4169-ad61-70185450035b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46149,7 +45709,7 @@ "type": "text/plain" }, "key": "file", - "value": "qui et", + "value": "et do laboris quis", "type": "text" } ] @@ -46168,7 +45728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c33300af-0189-433a-8c18-42238430a680", + "id": "0d5cd9b4-87e8-47f6-adbf-cd440ec404c3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -46211,7 +45771,7 @@ "type": "text/plain" }, "key": "file", - "value": "qui et", + "value": "et do laboris quis", "type": "text" } ] @@ -46230,7 +45790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "790f38bc-9398-4d39-ae25-c3748fabfb81", + "id": "08976526-e874-4797-bb69-3711e1c5e78f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46273,7 +45833,7 @@ "type": "text/plain" }, "key": "file", - "value": "qui et", + "value": "et do laboris quis", "type": "text" } ] @@ -46292,7 +45852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62272e86-97f5-48e3-897d-f85f0f1b0bcf", + "id": "54fabdf7-0429-483a-b147-bba4fa855dcf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46335,7 +45895,7 @@ "type": "text/plain" }, "key": "file", - "value": "qui et", + "value": "et do laboris quis", "type": "text" } ] @@ -46358,6 +45918,446 @@ "protocolProfileBehavior": { "disableBodyPruning": true } + }, + { + "id": "d111a0e7-07a0-48a7-af5d-7d41fbb3da84", + "name": "Create custom connector", + "request": { + "name": "Create custom connector", + "description": { + "content": "Create custom connector.\nA token with ORG_ADMIN authority is required to call this API.", + "type": "text/plain" + }, + "url": { + "path": [ + "connectors" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"custom connector\",\n \"className\": \"sailpoint.connector.OpenConnectorAdapter\",\n \"type\": \"custom connector type\",\n \"directConnect\": true,\n \"status\": \"RELEASED\"\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "response": [ + { + "id": "3ff5e398-6f31-47c6-86c1-0180cab5c752", + "name": "A Connector Dto object", + "originalRequest": { + "url": { + "path": [ + "connectors" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"custom connector\",\n \"className\": \"sailpoint.connector.OpenConnectorAdapter\",\n \"type\": \"custom connector type\",\n \"directConnect\": true,\n \"status\": \"RELEASED\"\n}", + "options": { + "raw": { + "headerFamily": "json", + "language": "json" + } + } + } + }, + "status": "OK", + "code": 200, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": "{\n \"name\": \"name\",\n \"type\": \"ServiceNow\",\n \"scriptName\": \"servicenow\",\n \"className\": \"sailpoint.connector.OpenConnectorAdapter\",\n \"features\": [\n \"PROVISIONING\",\n \"SYNC_PROVISIONING\",\n \"SEARCH\",\n \"UNSTRUCTURED_TARGETS\"\n ],\n \"directConnect\": true,\n \"connectorMetadata\": {\n \"supportedUI\": \"ANGULAR\",\n \"platform\": \"ccg\",\n \"shortDesc\": \"connector description\"\n },\n \"status\": \"RELEASED\"\n}", + "cookie": [], + "_postman_previewlanguage": "json" + }, + { + "id": "4e176ee2-c44e-470b-bb79-3dceaf9cbf8e", + "name": "Client Error - Returned if the request body is invalid.", + "originalRequest": { + "url": { + "path": [ + "connectors" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"custom connector\",\n \"className\": \"sailpoint.connector.OpenConnectorAdapter\",\n \"type\": \"custom connector type\",\n \"directConnect\": true,\n \"status\": \"RELEASED\"\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": "5f650ee9-3073-4341-af74-95d28354faa8", + "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", + "originalRequest": { + "url": { + "path": [ + "connectors" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"custom connector\",\n \"className\": \"sailpoint.connector.OpenConnectorAdapter\",\n \"type\": \"custom connector type\",\n \"directConnect\": true,\n \"status\": \"RELEASED\"\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": "202ea250-a463-4bc3-89e5-a4e48a8d9e93", + "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", + "originalRequest": { + "url": { + "path": [ + "connectors" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"custom connector\",\n \"className\": \"sailpoint.connector.OpenConnectorAdapter\",\n \"type\": \"custom connector type\",\n \"directConnect\": true,\n \"status\": \"RELEASED\"\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": "b4682e21-67eb-498e-acdd-87aef7092bfa", + "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", + "originalRequest": { + "url": { + "path": [ + "connectors" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"custom connector\",\n \"className\": \"sailpoint.connector.OpenConnectorAdapter\",\n \"type\": \"custom connector type\",\n \"directConnect\": true,\n \"status\": \"RELEASED\"\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": "335d574b-2ef6-4148-9941-652b643ae1fc", + "name": "Too Many Requests - Returned in response to too many requests in 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": [ + "connectors" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"custom connector\",\n \"className\": \"sailpoint.connector.OpenConnectorAdapter\",\n \"type\": \"custom connector type\",\n \"directConnect\": true,\n \"status\": \"RELEASED\"\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": "04893f26-98de-4ba6-ab55-50b69c5d293b", + "name": "Internal Server Error - Returned if there is an unexpected error.", + "originalRequest": { + "url": { + "path": [ + "connectors" + ], + "host": [ + "{{baseUrl}}" + ], + "query": [], + "variable": [] + }, + "header": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": { + "content": "Added as a part of security scheme: oauth2", + "type": "text/plain" + }, + "key": "Authorization", + "value": "" + } + ], + "method": "POST", + "body": { + "mode": "raw", + "raw": "{\n \"name\": \"custom connector\",\n \"className\": \"sailpoint.connector.OpenConnectorAdapter\",\n \"type\": \"custom connector type\",\n \"directConnect\": true,\n \"status\": \"RELEASED\"\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 + } } ] }, @@ -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": "9e860630-1337-491e-877d-b5608e2ce9a9", + "id": "e990b56a-bcba-4293-bb3f-9638aff21e50", "name": "Get security network configuration.", "request": { "name": "Get security network configuration.", @@ -46396,7 +46396,7 @@ }, "response": [ { - "id": "d5be695d-82c8-4d04-a47f-d885b3fa5f39", + "id": "2d36cfc1-bbbf-44c6-acf6-5796c21ffe75", "name": "Network configuration for the tenant's auth org.", "originalRequest": { "url": { @@ -46440,7 +46440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13b3aa90-9287-462b-b951-97d68a7123b7", + "id": "b7e11432-be49-4614-bdf0-460a3a92333d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46484,7 +46484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8a53d50-8b44-444b-9537-efea2825029a", + "id": "69d2b234-0eb2-4e4d-b9c5-ace25146a03a", "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": "b8ebda02-c013-4540-b38c-5ad41ec4ed2c", + "id": "f21fc9a5-b807-49b0-a1ca-06271023549c", "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": "d3a22453-4f6a-4f8d-8ee0-2c4f1682e803", + "id": "5b5e576d-d8f7-4750-a2a1-5e7c77ecada9", "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": "1741ef20-0c93-4f25-ad02-b8116d73a391", + "id": "83fb247a-b058-453c-ae14-6755bd05e383", "name": "Too Many Requests - Returned in response to too many requests in 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": "5f9b7398-9816-436c-8281-3b503edb2c6a", + "id": "8b44ad4c-8751-44a7-bf1f-5c8137ffe7e0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46710,7 +46710,7 @@ } }, { - "id": "4e725ccb-5165-4a5d-8a04-16fe6f085da6", + "id": "ddac356b-e094-4fc0-aa63-445602e05ba9", "name": "Create security network configuration.", "request": { "name": "Create security network configuration.", @@ -46753,7 +46753,7 @@ }, "response": [ { - "id": "1233ddf7-5c47-4cc7-afcf-aa3676add7cb", + "id": "0adbff9d-398d-43b7-bcc8-bdd21f6915de", "name": "Network configuration for the tenant.", "originalRequest": { "url": { @@ -46810,7 +46810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59166c8d-c94a-4a94-a248-485fc4d8b4de", + "id": "a31c93d2-ece7-45fe-be2c-33babf5dea5f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46867,7 +46867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5531b8f-3062-4480-a5e3-c16c0e3ccaa0", + "id": "6ff6bc0a-1230-4a7e-8cf9-0795ab710e4e", "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": "7a40a085-0cbf-49e4-8f41-fa5c6434d8d0", + "id": "804782be-7142-4c16-82c5-e5159c22cd9f", "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": "c345fe1b-fa5d-403c-afd1-d0c903138058", + "id": "af7e0650-6950-4d28-846c-b861de133b4f", "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": "a420c764-1608-4758-9036-38cbdb617ded", + "id": "658be14d-815b-4086-b5be-04f01231df20", "name": "Too Many Requests - Returned in response to too many requests in 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": "9ffd3101-d1c5-43be-959f-96411406c89b", + "id": "57be9aa4-b811-44ad-b00b-1185d617aa10", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47158,7 +47158,7 @@ } }, { - "id": "e3cf9700-749d-4b48-af84-c30cf6217c0e", + "id": "09e92644-265a-44e4-9ef6-12d882c79057", "name": "Update security network configuration.", "request": { "name": "Update security network configuration.", @@ -47201,7 +47201,7 @@ }, "response": [ { - "id": "478ea1a3-c9d2-4f8e-a100-d73910c612cd", + "id": "ff245039-f5fe-4f7e-8862-1ec2ed221b40", "name": "Updated Auth Org network configuration.", "originalRequest": { "url": { @@ -47258,7 +47258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27b0b46a-13be-436f-9912-eca50c839291", + "id": "ef4bcb1a-0556-4c72-a616-a4fd3cf6d18b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47315,7 +47315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed20304f-ba50-4723-ae95-7aa1fce94306", + "id": "7eecf1a6-c23c-45cf-a80c-88c9248c268f", "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": "170f7542-c8ce-4c3b-a3b4-c23cf193691b", + "id": "28a74752-0420-4d04-ac9d-7927cdd98e08", "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": "24916fa6-f5fc-4b8b-8dec-b9ae86791bc6", + "id": "c3ebedb5-3e89-4cfb-aaaf-6eab42cf734c", "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": "d265c150-dcb6-431d-bcad-7959f16c0e87", + "id": "b7a04e44-4b87-4e2a-b2e8-354b050c09e9", "name": "Too Many Requests - Returned in response to too many requests in 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": "5c2e304b-6eb6-4683-8f49-4de4c8bcf3c5", + "id": "43789457-3604-4b48-923f-ecb1924c0a5b", "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": "76af44a1-8284-496b-94cf-f98705cd6f07", + "id": "e34af690-806e-4997-8b60-fcfeefcec063", "name": "Set Lifecycle State", "request": { "name": "Set Lifecycle State", @@ -47667,7 +47667,7 @@ }, "response": [ { - "id": "49e2b894-f59c-4d58-acd4-3b0ba5d24780", + "id": "ce82cdf8-24e2-4edd-b30c-1202b1eeb900", "name": "The request was successfully accepted into the system.", "originalRequest": { "url": { @@ -47725,7 +47725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bdd65ca-8df7-42f3-8332-e8c91eb11e51", + "id": "4c49e396-82ee-4706-b50a-47d6da097235", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47783,7 +47783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b87cc227-1945-4470-a34f-14e7f39d6200", + "id": "d1316718-bc9e-4228-9f0c-e89d96499ee4", "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": "f341cd3c-b4c0-4427-bba9-07520eaab30c", + "id": "c881b534-fedc-4e6c-ac07-6c5d76258a3a", "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": "59cf4a50-d4d5-4d31-b806-0902a0dfaf60", + "id": "d6871ac0-be01-4759-aa64-c97f4b8c6da7", "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": "05bf0e49-7e8d-4e7d-b84f-8b1e58702218", + "id": "b96d3443-6f08-425a-a7b1-3c75e814fa19", "name": "Too Many Requests - Returned in response to too many requests in 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": "e3b35bad-0d30-4dcf-9519-09cdc417dace", + "id": "f32062c4-1199-41b4-9ca5-a96c6d9e438e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48079,7 +48079,7 @@ } }, { - "id": "a393f772-bed3-4ffd-8392-fa427c564f5c", + "id": "59f0be3c-bb63-4f05-ad98-fe632f018d05", "name": "Lists LifecycleStates", "request": { "name": "Lists LifecycleStates", @@ -48158,7 +48158,7 @@ }, "response": [ { - "id": "eb7428e1-4db3-4567-9303-80ed3d1c1590", + "id": "a4cbe3db-5728-44db-9f8c-c51dd2b1f28d", "name": "List of LifecycleState objects", "originalRequest": { "url": { @@ -48240,7 +48240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ab28fc7-d811-4150-988e-3699aa84a712", + "id": "804c1764-e0d7-4967-80ca-296f2e159360", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48322,7 +48322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c78d7b5-4a81-407f-a3ed-dc666c9ef824", + "id": "6484c47a-7005-4612-b21e-71202dd7ec83", "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": "3f111581-8393-4370-a4d5-15372cdc98b5", + "id": "9f172ab6-88be-4d88-929e-8ca5d6d092a2", "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": "224f8ae4-a759-4b6f-b872-1c50c00ce03b", + "id": "e8a4be98-1c18-4fac-bcd9-67cfd8ae3178", "name": "Too Many Requests - Returned in response to too many requests in 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": "d4f9194a-fd33-4457-a223-916b8bea121f", + "id": "6c1d4cce-5ddb-4920-a685-9369f8ebbee6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48656,7 +48656,7 @@ } }, { - "id": "653121d0-70bb-4550-b427-a90921db95c9", + "id": "ad8310f0-52b8-4ad3-b518-4d0f923120b8", "name": "Create Lifecycle State", "request": { "name": "Create Lifecycle State", @@ -48711,7 +48711,7 @@ }, "response": [ { - "id": "3f18ef1d-4bc5-4c2d-ad63-624a07769993", + "id": "fdfca6fe-a8a7-4a5d-b3b8-8bd16023937d", "name": "Created LifecycleState object.", "originalRequest": { "url": { @@ -48769,7 +48769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66838940-1bc5-48be-b3da-d3696afdc258", + "id": "1a9506fa-1143-4d77-ac7d-12ca487fcd36", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48827,7 +48827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47f2f645-4993-46f8-9311-08cff0847f52", + "id": "62be279e-35e9-4a14-be21-f0e804221bfa", "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": "5281fb92-6302-49ef-9023-31aec7973734", + "id": "2edc5fd8-e338-49a5-b6a1-6016c1350578", "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": "a03ad52b-c72e-4c25-ae1b-8bff5ba32aae", + "id": "033b50e1-475d-4e05-8b55-90a77c720f36", "name": "Too Many Requests - Returned in response to too many requests in 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": "7323cde7-599a-4ab7-9a65-c32775c16fd6", + "id": "b1969c09-1ef1-4aec-b4aa-ce6f59655298", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49065,7 +49065,7 @@ } }, { - "id": "ac3b1149-e99b-4f0c-bc4a-98d7708121f6", + "id": "4e5d84d3-acbb-4e6f-a4bf-4ba47df3dcf1", "name": "Retrieves Lifecycle State", "request": { "name": "Retrieves Lifecycle State", @@ -49118,7 +49118,7 @@ }, "response": [ { - "id": "451cc9cd-49ab-4824-ad25-481a3ba1834f", + "id": "3781d220-ce5c-4e16-95ab-ce628dbf9681", "name": "The requested LifecycleState was successfully retrieved.", "originalRequest": { "url": { @@ -49164,7 +49164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba51c534-6410-4b50-ae27-32890c13f7c0", + "id": "9baf9cec-18d3-468c-bc77-667df0753a73", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49210,7 +49210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5cb01eb-305b-4432-8b04-72c44d3570cb", + "id": "c132fcb0-d1ad-49ae-80f1-ae500a0cd967", "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": "1b3bc0b3-52eb-4672-bdc2-0ac3053dcff6", + "id": "685438f4-d713-43d6-bb82-5e91bc09145c", "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": "49765a81-ae1c-4b47-9170-01b601a7efad", + "id": "c2140dcd-075e-4d6b-9529-ede2b19e0d36", "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": "01d73b95-8200-44d0-946c-77318c4da00e", + "id": "af154cce-cad2-4597-be54-e40860ffdd78", "name": "Too Many Requests - Returned in response to too many requests in 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": "2935d23a-1f2e-4b61-8525-6aaf83c88de2", + "id": "c3772dd0-0f27-4f95-b472-4ba706d95d76", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49446,7 +49446,7 @@ } }, { - "id": "c6083854-376b-4545-ba67-45f78aa5706c", + "id": "1f4eac51-6cb8-4724-bf31-240edfd4bcb4", "name": "Update Lifecycle State", "request": { "name": "Update Lifecycle State", @@ -49512,7 +49512,7 @@ }, "response": [ { - "id": "ba0d554e-40ca-4c36-9422-cac8acb2c455", + "id": "220e03e3-4982-49ff-8b83-9278fd333c16", "name": "The LifecycleState was successfully updated.", "originalRequest": { "url": { @@ -49571,7 +49571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f261964-6204-48bd-9590-fdfcacb9f019", + "id": "5d43a235-daac-476e-be7d-55c17390209d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49630,7 +49630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6611bfee-0065-4a1f-8fa1-d728a9b599dc", + "id": "e46165bf-699a-4120-b7b4-a3f2c6817b2b", "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": "fc83d75a-f3bf-4d02-a91e-c24fe1edd3c0", + "id": "297550c3-45a5-46d2-a53a-d699e2568a78", "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": "ce7bfbe8-8c78-474b-814d-a4e9317a8573", + "id": "cf5e7d4f-7342-409d-8b0c-f7d2b0afd0fe", "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": "e8d9e6e5-7477-493d-8d62-5db94cd61034", + "id": "e57391bb-4fcd-4483-bce7-84c093a273dc", "name": "Too Many Requests - Returned in response to too many requests in 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": "68f3a26a-377f-4e7e-9b92-551fa67d9961", + "id": "20f2dbe8-7399-4522-ace5-e23ec04b6d72", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49931,7 +49931,7 @@ } }, { - "id": "33a22c42-2145-4883-8bee-362a1a400289", + "id": "2d7daaec-964f-4049-86f7-fa52874a4e2b", "name": "Delete Lifecycle State by ID", "request": { "name": "Delete Lifecycle State by ID", @@ -49984,7 +49984,7 @@ }, "response": [ { - "id": "8a546502-f993-4e31-ab16-a2816f5ec326", + "id": "5f9f4aab-c964-4bdc-b90e-6b3511704c07", "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\": \"Lorem nulla id cupidatat in\",\n \"name\": \"Contractor Lifecycle\"\n}", + "body": "{\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"occaecat est sed\",\n \"name\": \"Contractor Lifecycle\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9ce78c38-2517-4deb-a501-2f371d5908a8", + "id": "d2a96a2d-3c14-4d4e-a0b9-3ab917d81bdb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50076,7 +50076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9b03f53-28b3-46dd-800b-1917bc28ffa4", + "id": "5b92f3f3-8be7-4ee7-a0dd-4006fb863708", "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": "7e290436-d996-420c-896f-3223a09240eb", + "id": "26f9d305-05b2-4a7b-a667-e72297061a06", "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": "a9fb15a9-f034-4e6f-9db7-4354137acf01", + "id": "20ffeb32-2e70-46b6-86a3-169895ba3b3a", "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": "11f9d64c-092c-48a3-ae0e-4f1c4a86aadc", + "id": "f2a28d60-1c7a-407b-bc20-3dea45ebdf4a", "name": "Too Many Requests - Returned in response to too many requests in 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": "6b9e226d-c83c-45a3-9e9f-c618c88620e5", + "id": "df612c02-9731-45ed-b41c-2098afb519a5", "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": "e4145170-1053-498d-b9f8-274d573fddf5", + "id": "65505bfd-456d-4f0d-821d-d0017f4e340f", "name": "Identity Profiles List", "request": { "name": "Identity Profiles List", @@ -50393,7 +50393,7 @@ }, "response": [ { - "id": "89893efd-e7bb-49a6-b414-af096c4dbfc7", + "id": "769c5376-1f5b-4f2a-8880-0a96c3885b2f", "name": "List of identityProfiles.", "originalRequest": { "url": { @@ -50482,7 +50482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99b94870-6c91-4475-8e05-2c5b3f07992b", + "id": "605db1aa-63b7-41b2-8972-b61744e67453", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50571,7 +50571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e4852d6-3e48-48ab-9c04-ae5ecd83b7a9", + "id": "22ae7981-9797-45f9-b9ba-556a436f1798", "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": "02e7050f-0b18-4709-8444-efe7ed37eb01", + "id": "e86820f9-be5c-4be4-8804-f9154a3170b3", "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": "2630427e-6d63-4799-afec-a97e1f05460e", + "id": "a35caef8-4a6c-496f-b018-9edd29a0bceb", "name": "Too Many Requests - Returned in response to too many requests in 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": "76814fd0-87e1-42ff-93e2-309bce52a70a", + "id": "2330db91-34f3-422a-a54c-00235d2d037e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50933,7 +50933,7 @@ } }, { - "id": "e993ac8e-d55f-452e-98a4-c1beec8a4efb", + "id": "93b03ff1-f74e-49ba-a95f-0b9d5816f97d", "name": "Delete Identity Profiles", "request": { "name": "Delete Identity Profiles", @@ -50976,7 +50976,7 @@ }, "response": [ { - "id": "90289f68-4052-4169-840e-b942fa6ce1a6", + "id": "ffc8c452-d066-4ae4-b70c-7fc951d204fc", "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\": \"1955-01-24T12:22:17.041Z\",\n \"launched\": \"2012-01-27T03:43:18.965Z\",\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\": \"2002-03-28T02:32:05.254Z\",\n \"launched\": \"2003-04-20T23:47:52.916Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5b92d087-031a-4d16-ad9d-28ae00810ad5", + "id": "71c97b08-ff0d-4b20-a36e-cf816ef64be3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51090,7 +51090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b8fdec9-1c06-447d-a012-4217ff1e4d47", + "id": "687c6b71-7f1a-4dfa-9a57-08aa375887a8", "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": "9ac3fd22-4a30-4b33-ac5f-4083816c3091", + "id": "a975fac6-3859-4348-a808-2e668365b4cb", "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": "36e168cc-ecbc-4baa-9089-8f49ee91770b", + "id": "e6331036-2b6c-439c-bb40-0f4be51be27b", "name": "Too Many Requests - Returned in response to too many requests in 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": "93035875-bb7c-44c1-bca4-96da6ac81f4e", + "id": "81b7e8bf-b815-4d4e-91e4-d28fcfe65918", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51324,7 +51324,7 @@ } }, { - "id": "f363d31d-832b-421a-8c2c-bf8b911f4394", + "id": "ee81a19d-7944-449f-90ca-00b19d78986e", "name": "Export Identity Profiles", "request": { "name": "Export Identity Profiles", @@ -51400,7 +51400,7 @@ }, "response": [ { - "id": "e33d1077-de9e-4390-9c90-11f6fd593797", + "id": "6ff98dad-1fa0-441c-a5dc-d5722bf9bb1c", "name": "List of export objects with identity profiles.", "originalRequest": { "url": { @@ -51490,7 +51490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94dd69b3-5db5-4da2-ae07-548fc174088c", + "id": "70d5945c-722a-48a3-b0ea-9b06a94cafd0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51580,7 +51580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59e3a3cb-769f-4645-b72a-e591e5914024", + "id": "20813c65-1118-44a5-8e72-88d0756b20d4", "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": "9bd5305d-6a59-44e8-9cbf-972d50d6f53c", + "id": "a7e65222-4b7d-44da-8642-b727b3cd1bcd", "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": "467917c3-dd31-48e4-8aae-77726514360d", + "id": "f82cafe3-12f5-4bf8-8229-35ae737bbe1a", "name": "Too Many Requests - Returned in response to too many requests in 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": "2682f7d3-00b4-4949-8641-e9d00d1a517e", + "id": "21b648d5-e51b-488f-ad73-5a82a578948d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51946,7 +51946,7 @@ } }, { - "id": "e606fd49-d75e-4045-9736-455f583b989b", + "id": "5a269ee0-1502-4dc4-82a6-94233969d498", "name": "Import Identity Profiles", "request": { "name": "Import Identity Profiles", @@ -51989,7 +51989,7 @@ }, "response": [ { - "id": "dc7b6a6e-ec49-4a28-9e8a-20a3b603199f", + "id": "936c45db-bc63-497d-be42-9de5981af468", "name": "The result of importing Identity Profiles.", "originalRequest": { "url": { @@ -52046,7 +52046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3bf9b40-b130-4dd2-9b56-609515ba2a23", + "id": "0657ad48-a75f-4196-953b-2abd8486c3ab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52103,7 +52103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67374ed6-1578-4cb7-bd66-61cb7c7d1d18", + "id": "4dcd21e5-fc9d-42c2-807c-979d8620b704", "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": "00069eaa-7d19-4e83-96bc-f07cff219445", + "id": "587ca3e3-1e5d-4878-b92b-f118e99045b4", "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": "ced75c73-3561-4e84-896b-236db98e1338", + "id": "f3cc9411-7e0b-4e07-ad4d-df797da272cf", "name": "Too Many Requests - Returned in response to too many requests in 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": "6c50144b-cc54-4dc7-a93b-6d5950196f3c", + "id": "587b15d3-24a7-4c88-95d6-a1995381360c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52337,7 +52337,7 @@ } }, { - "id": "99ebff2c-324b-49d5-9126-c1bf73fe86b9", + "id": "f63df8ce-b655-4220-98c5-f2c6905b5dc2", "name": "Get single Identity Profile", "request": { "name": "Get single Identity Profile", @@ -52378,7 +52378,7 @@ }, "response": [ { - "id": "1faee187-309a-4462-acd5-414832da8e7a", + "id": "994f6721-37c3-4cd1-acc2-4c596837fd36", "name": "An Identity Profile object.", "originalRequest": { "url": { @@ -52422,7 +52422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e521c678-738c-4bc5-864b-f239c5cacd66", + "id": "6488b012-d1ac-4bdf-80bc-979a4587dee0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52466,7 +52466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92d6f667-510b-4cd0-8673-caf2b862d121", + "id": "b967a88a-c927-48d1-a497-86335ba9fa05", "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": "9be6a94b-9f95-4d21-aee6-dbaf805a7732", + "id": "9ba364ab-8988-454c-9eca-d48328f51960", "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": "3b15d91f-d7c8-42ee-8846-bf21ef912b50", + "id": "792fc043-e6a1-4b46-978f-7ead27a39a2f", "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": "b3702ea3-697f-40c9-af72-9924ba951590", + "id": "190a380c-e66f-4a8c-a665-a8887c4e20ca", "name": "Too Many Requests - Returned in response to too many requests in 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": "17815697-2f55-448b-ae5b-7405a17c04a7", + "id": "cfa9c64a-8158-4529-a320-d9b3be0d252e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52692,7 +52692,7 @@ } }, { - "id": "19e5718e-70f5-4da2-bdf8-2871aaf8ca60", + "id": "4c45e3ad-23f7-4845-a0d2-0067aafcaeb1", "name": "Delete an Identity Profile", "request": { "name": "Delete an Identity Profile", @@ -52733,7 +52733,7 @@ }, "response": [ { - "id": "6cd4b379-9246-4258-b37e-5d03e95791c8", + "id": "66b005c4-d429-4b07-9d30-cf785a845b60", "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\": \"1997-06-27T23:54:17.404Z\",\n \"launched\": \"1973-06-06T15:26:53.559Z\",\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\": \"1986-09-08T15:19:42.473Z\",\n \"launched\": \"2003-07-05T15:14:03.841Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b0133c72-7b6f-4480-8316-7d51f5f432fc", + "id": "b7c58dcb-d2eb-4a53-ae8c-d74bfdfaec00", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52821,7 +52821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7926ff8c-7f0e-4d2b-b9e1-9d6b225b395b", + "id": "8aa4ace4-4b53-4bb4-b716-5b15bec8a998", "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": "de30eaeb-e270-4719-9ca2-f54bdb170967", + "id": "f80df5d9-7675-4058-8052-478915657c11", "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": "da5d9cf6-fad8-46ae-bc49-9cdbec7e8e32", + "id": "faa76f1f-cb9d-4e89-bc7c-8fd207a0b9c6", "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": "9e464dc2-f438-4450-9690-6f9b90d7733a", + "id": "c2e2b22a-429e-41df-b8d6-fca1f4ae9207", "name": "Too Many Requests - Returned in response to too many requests in 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": "f1349854-9332-4ac3-a60f-d373d599c06e", + "id": "695c68d9-4eb6-4be6-a436-a3bf5827f336", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53047,7 +53047,7 @@ } }, { - "id": "f20bfb13-5201-44a8-93d7-2029702a4df3", + "id": "f7b1ada9-88f6-4ea6-808e-fd6c6315bb8f", "name": "Get default Identity Attribute Config", "request": { "name": "Get default Identity Attribute Config", @@ -53089,7 +53089,7 @@ }, "response": [ { - "id": "326636a1-23fb-4baa-9435-d7246e7d6daa", + "id": "9973bb19-abe7-442e-8c92-58d0d69fdccc", "name": "An Identity Attribute Config object.", "originalRequest": { "url": { @@ -53134,7 +53134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "374978e0-6bda-43b8-a540-23e35b3d5a98", + "id": "60af1283-5fa5-4e07-b0be-42c4b7427ccc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53179,7 +53179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2696ae0-a368-4fe5-a0bc-22a8e784b099", + "id": "8a1089b7-80da-4358-b7c8-442b6960212e", "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": "8e2045d3-f518-4be9-945b-80d95c49d45a", + "id": "489d09dc-ed85-4283-95e2-ea9448009cb0", "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": "2f73beac-0614-4efe-bad0-8f34f4359adb", + "id": "48f4287a-506d-4f4f-8834-f5c377497393", "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": "9e3d58bd-55f4-4278-88ca-a5afa918fd58", + "id": "0bc9d6f5-7ba5-43ba-87f7-c4e0d29d91ec", "name": "Too Many Requests - Returned in response to too many requests in 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": "0a17e9e4-3f0b-4356-adb3-02917701c09f", + "id": "17c59b19-8dc6-48f9-817b-4f6956c47e1a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53410,7 +53410,7 @@ } }, { - "id": "29b21db2-7983-497f-919b-f8cd0e2240d4", + "id": "b0e5f23e-3d0e-46c8-a9a3-47ba61c6d9b0", "name": "Process identities under profile", "request": { "name": "Process identities under profile", @@ -53452,7 +53452,7 @@ }, "response": [ { - "id": "8fb6270f-1419-4dc3-9f19-cc8626507875", + "id": "2fc86bb9-2746-4614-9db5-09cb888f9332", "name": "Accepted status after refresh has launched", "originalRequest": { "url": { @@ -53497,7 +53497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bf54658-6130-4694-83a5-3dce6227f02a", + "id": "efc2e26b-fa96-4ed7-8313-9e6e3076e292", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53542,7 +53542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9011517-85e4-4684-812c-77d2a6435b95", + "id": "1922c571-7aca-45f0-96f2-e80b52929d9e", "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": "b5404a80-9b12-47f6-a086-599f0a5e1494", + "id": "ddb08305-cbd0-4574-be21-62ac1b04b69d", "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": "264f6d5f-55f5-4730-a4f3-f71e19558862", + "id": "bcf86ac2-6e9f-435f-9461-01699223f237", "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": "a5c0cddc-9b5b-4c8c-a4ef-9cd85bf706ca", + "id": "d83c08ee-9411-4a72-9b6c-cc87845e9967", "name": "Too Many Requests - Returned in response to too many requests in 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": "abcc116b-8125-4d0b-b01d-834bfcda45b4", + "id": "46ba11be-e684-4edc-8eae-b163f4064c4a", "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": "18eaaf12-ae71-4d18-86c4-036a9ca8a715", + "id": "522a4b83-2683-4657-8cc2-859225836e24", "name": "Create Non-Employee Record", "request": { "name": "Create Non-Employee Record", @@ -53821,7 +53821,7 @@ }, "response": [ { - "id": "1e6aa660-71d0-4f54-a22d-a1b535d7e046", + "id": "7d6d07fc-80d3-46aa-9c32-b98df495483c", "name": "Created non-employee record.", "originalRequest": { "url": { @@ -53877,7 +53877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6620eac6-aa41-4105-8896-401e1fdbe05f", + "id": "65b246c5-3776-4608-b10e-852ffbaab76f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53933,7 +53933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c6428b3-c636-48c0-ae90-d7625f2e25f1", + "id": "a0737a4a-684c-47ae-b5c8-d5d6d78e1306", "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": "07407dcf-805c-40db-96f9-b707067ae6cb", + "id": "de6bc9b8-1690-4bfd-abec-4de17b554d08", "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": "bd3ad254-13bf-417f-9a21-aa5bd9bdea04", + "id": "8a9146e6-64bb-40ca-a6e8-5f2ef4b35db4", "name": "Too Many Requests - Returned in response to too many requests in 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": "b2a1d67e-3c3a-4124-8b32-5797cbcd75e1", + "id": "172bce2c-9d5c-4a6c-9b44-8dd658558eea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54163,7 +54163,7 @@ } }, { - "id": "628f7f23-bd68-454a-8341-46ffa82ff8cc", + "id": "cd0bfc75-c087-4139-a02c-1fc29ee49c23", "name": "List Non-Employee Records", "request": { "name": "List Non-Employee Records", @@ -54238,7 +54238,7 @@ }, "response": [ { - "id": "3a86ab9a-0b2a-4272-a195-992ab28a5cc1", + "id": "a5fa1fe6-839f-4000-808f-2a4924018f37", "name": "Non-Employee record objects", "originalRequest": { "url": { @@ -54327,7 +54327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b82a8b18-38b4-4862-888b-e8ae36b4e77c", + "id": "0ac935f5-2dd9-40f3-9995-700f57ed052e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54416,7 +54416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94b89671-4370-460e-8b8e-c4bc4da8284d", + "id": "5353d9c8-3bb4-408e-8bfe-67dc93f2d708", "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": "e54b8feb-e5d1-4c0a-b4e3-4e78bc3c17d8", + "id": "f58ede4f-e93b-42cb-bbfa-0c14fb51e88c", "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": "af585d21-1469-46ca-8539-fb440c8814e0", + "id": "2256cc06-b3d5-432d-a124-89dcf1b21340", "name": "Too Many Requests - Returned in response to too many requests in 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": "9bd05481-f0fd-4699-ac17-65d507786469", + "id": "d4555fb7-48ed-487f-8ee7-dba54b0dc462", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54778,7 +54778,7 @@ } }, { - "id": "f959bbcd-35de-4305-a478-21bcac26390c", + "id": "3a56f8a5-64fc-4423-833e-860ef1c9324c", "name": "Get a Non-Employee Record", "request": { "name": "Get a Non-Employee Record", @@ -54819,7 +54819,7 @@ }, "response": [ { - "id": "2c85af83-cd6e-4a8e-b43c-7dae6c011299", + "id": "e6776999-9470-4906-915c-771a610dc29a", "name": "Non-Employee record object", "originalRequest": { "url": { @@ -54863,7 +54863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78c3498c-4415-47bb-938d-f47a4e43bd91", + "id": "b674ebb7-43e6-4ff5-b33d-c3235a8db76d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54907,7 +54907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e56e913c-2517-49ae-aae7-e5b2bc456ebf", + "id": "08781f4c-d2f2-4bab-97ea-3e721bf9d116", "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": "e3f88773-b937-45c2-99e5-e6f19923a7fc", + "id": "80794cb0-6997-4374-99e2-fb15b46cf6e3", "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": "fd492f38-cdcc-4c6e-b3a3-06c6c28e3453", + "id": "13d7608c-c549-4bcd-8eb0-ebb05786a68b", "name": "Too Many Requests - Returned in response to too many requests in 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": "0e3a9935-6b29-4b63-816f-fba46b73abd4", + "id": "a9ad3dd8-9935-46ae-880c-6c8c243aab09", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55089,7 +55089,7 @@ } }, { - "id": "4635c4a2-1fbf-409f-b940-9c685f8d4dff", + "id": "fd039867-b2cd-4b1f-88c1-dc7735b163dc", "name": "Update Non-Employee Record", "request": { "name": "Update Non-Employee Record", @@ -55143,7 +55143,7 @@ }, "response": [ { - "id": "3f5fb4d0-360a-4aef-a6a1-524de28a5f40", + "id": "af9f8d50-9be7-468f-96b6-91b719bd333b", "name": "An updated non-employee record.", "originalRequest": { "url": { @@ -55200,7 +55200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22e89a5d-a8de-4f57-88de-70d63a311c6a", + "id": "c5757e80-14cc-4fa3-837a-f81eab53c6cf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55257,7 +55257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f060bc8-5c9d-422f-9775-32d905c469ab", + "id": "5a73a500-a842-4f18-8fd5-1f77f5912733", "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": "7d2576db-684b-4fe6-84bb-2ca5741238f0", + "id": "6f4a137f-24ec-4ac9-86df-ed7e27df903c", "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": "ba0fee26-322c-468d-b83f-dd0e4485d66d", + "id": "dfc71d0a-6367-41ca-8f12-414d458b785f", "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": "88b2e5f7-fef4-4948-a8fd-6fe8a136e0c4", + "id": "3c4f9c4d-ee42-4b0a-a8ad-6495e446f866", "name": "Too Many Requests - Returned in response to too many requests in 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": "6fb0023d-a337-4799-bb8c-1ce12400285e", + "id": "2aac465e-c8af-4574-ad7b-ffe440fc27f5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55548,7 +55548,7 @@ } }, { - "id": "16c56b51-7c47-43fb-88e2-3645aa91144c", + "id": "87823bfb-31f3-4061-8064-ea69158e74f9", "name": "Patch Non-Employee Record", "request": { "name": "Patch Non-Employee Record", @@ -55602,7 +55602,7 @@ }, "response": [ { - "id": "9a523c23-14b8-4361-a333-2a93c2cf9c2d", + "id": "25824da0-3e1a-4991-a546-ddd59df0a9ab", "name": "A patched non-employee record.", "originalRequest": { "url": { @@ -55659,7 +55659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d15f586-9340-4fef-81b1-a9c413c42e56", + "id": "1b7257ed-027e-43c8-be0c-fb7f9a26ae5d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55716,7 +55716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b3ade95-ecf5-4535-83f6-d2633d83e3c1", + "id": "546bf256-1f53-487f-b853-33deb9434215", "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": "dd99e97b-0269-41a4-861f-8c50b1afa9c5", + "id": "448874ce-689f-4dd2-a53c-cd22ab9ef2a5", "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": "e41cffa9-b856-492f-9b03-b4baed34ac45", + "id": "85548b86-79ba-4930-88c2-214a441ccb50", "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": "64de36a4-15b5-4754-9a48-e31518962e42", + "id": "9414c022-0bf9-4bf0-8834-27e7ca8464b3", "name": "Too Many Requests - Returned in response to too many requests in 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": "a4edf8f2-bd69-48ae-894d-652475670925", + "id": "5286a6e2-6e1e-452d-8a91-f87bc0dc4fe7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56007,7 +56007,7 @@ } }, { - "id": "aacba142-6d44-443e-a782-7903e5290ef6", + "id": "b519490b-b7a7-4ce4-8223-8cd1fea8647e", "name": "Delete Non-Employee Record", "request": { "name": "Delete Non-Employee Record", @@ -56048,7 +56048,7 @@ }, "response": [ { - "id": "1b99a32a-6473-4481-9442-70b8562cdf51", + "id": "17b25f39-df35-4e97-893b-ddec983d22c0", "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": "852a6eda-862c-4d3f-909f-5ccb69188678", + "id": "172c8067-913b-4ef0-8e5e-b8ea5c6ead3c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56126,7 +56126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0aadbef5-f891-49ff-a78e-504203dc2d20", + "id": "182a4279-6c26-46e2-be2d-305e48e0f30e", "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": "de365d15-0146-43c6-8d0f-93a45a944b44", + "id": "4663dd60-448a-46b0-b5c2-4ef7aef740fb", "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": "723b3d19-0710-4ab6-8733-9791434c9d91", + "id": "8e742cfd-acf2-4222-9a99-c848b506cdf3", "name": "Too Many Requests - Returned in response to too many requests in 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": "10638bda-6cee-4f7b-b6d4-0838bdd29da9", + "id": "cf63981c-3219-4728-903d-b86c7c40fa09", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56308,7 +56308,7 @@ } }, { - "id": "bc04fdee-44ab-47f6-bd87-477614d38d7a", + "id": "47e87611-35b7-43e3-8696-3624e34d8fbe", "name": "Delete Multiple Non-Employee Records", "request": { "name": "Delete Multiple Non-Employee Records", @@ -56351,7 +56351,7 @@ }, "response": [ { - "id": "585491f9-2b0e-4aec-981e-78d6592045cc", + "id": "a5a77c00-c607-45ef-a65f-860656e6741a", "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": "4039cf8c-9614-4ba4-9189-f3694821c4a0", + "id": "2d96fd0f-3495-4dd0-a146-7c6d817a52a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56455,7 +56455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86c6efc7-711f-4cd4-b516-64115a65f828", + "id": "6cb4fbfd-a961-4482-a8b1-82e63d0f1db9", "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": "fc302607-1b0f-47bf-acbe-3d503c60e49f", + "id": "fa51b69d-8274-4422-bc4c-b1668563dbc9", "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": "bc12a09e-f6f0-4242-8b03-2b26ef97f9cf", + "id": "8bbe78af-da6a-4658-9992-2493363dc83d", "name": "Too Many Requests - Returned in response to too many requests in 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": "768ff35d-6226-47e7-962d-64411fe3fd1a", + "id": "2ddbf5f7-136b-407b-8331-af5182d2b7eb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56689,7 +56689,7 @@ } }, { - "id": "08844c45-ebcf-42a9-9afc-e78a98b0474b", + "id": "f68fcf27-379d-4cba-a41e-202c8287d12b", "name": "Create Non-Employee Request", "request": { "name": "Create Non-Employee Request", @@ -56731,7 +56731,7 @@ }, "response": [ { - "id": "4076c5ca-9eb4-4e1a-96a0-bf322b237140", + "id": "e46412ec-3db2-48a8-9d10-d0cd36383a2d", "name": "Non-Employee request creation object", "originalRequest": { "url": { @@ -56787,7 +56787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b48c857b-2474-4550-9907-238078a1175c", + "id": "58fb82b4-64c1-42b6-838c-1d30f0a7dc7d", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -56843,7 +56843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "030dd95f-ddb6-4e13-8e00-0b395dc8f10e", + "id": "dcce689d-838a-4f59-bc1d-9e90f09da3dc", "name": "400.1.409 Reference conflict", "originalRequest": { "url": { @@ -56899,7 +56899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af9f4cfa-99ab-4c9f-94f3-46a9d35582a6", + "id": "8ac5fdd3-352d-4e97-9b7d-04067822eac9", "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": "1fe8c3e4-8ed8-4781-9ace-a2a7fd6dddad", + "id": "209ba8f8-335f-4cbd-b187-72d40a832982", "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": "ce482f98-13c3-49ee-a6a7-9ae278b9febb", + "id": "c25e645c-f61e-44b7-8a14-fb91c73474a5", "name": "Too Many Requests - Returned in response to too many requests in 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": "36428349-fc35-4367-b13e-e0adb608d360", + "id": "b02bccf1-60af-4f22-8563-19f6b75dbe55", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57129,7 +57129,7 @@ } }, { - "id": "2c8b21b0-ad2a-4f31-ba34-6e246d1144fa", + "id": "dd8d5e3f-35c4-42f3-81b6-c834f24ca98c", "name": "List Non-Employee Requests", "request": { "name": "List Non-Employee Requests", @@ -57213,7 +57213,7 @@ }, "response": [ { - "id": "477ca712-0826-431e-8d9c-18c29db0a255", + "id": "7d5dced0-0270-4ead-a052-192cca9b946f", "name": "List of non-employee request objects.", "originalRequest": { "url": { @@ -57311,7 +57311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b1f319d-3207-45c7-bc33-1e530dc4e3e0", + "id": "333ba4de-dacb-4279-a5dc-307f690551d6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57409,7 +57409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a08bb3b0-d453-4c99-8e7f-b62abb449e34", + "id": "fab4fb4e-2b27-4ace-8f64-73f323d15350", "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": "f008aab1-1ac0-4f13-bf73-94c251ba4c32", + "id": "7a370204-04d5-4ae2-a9e3-6f95736c076d", "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": "fcdd047c-ca46-4357-b634-5ca5044ff7af", + "id": "29901e5e-a642-479b-aa2f-2125064ec51e", "name": "Too Many Requests - Returned in response to too many requests in 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": "af8f2a08-0000-4322-b80b-10af0ff43881", + "id": "b3504a3c-f347-4ed9-956e-e7fa13e385ab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57807,7 +57807,7 @@ } }, { - "id": "2702260f-292e-497a-910e-a83b13cb3354", + "id": "2c7131d2-1189-46e1-aca8-32c55ab459bd", "name": "Get a Non-Employee Request", "request": { "name": "Get a Non-Employee Request", @@ -57848,7 +57848,7 @@ }, "response": [ { - "id": "db296101-b5fd-4938-9629-522e04d7fdc4", + "id": "ede5e29b-82f7-440b-b6a4-e75716b14505", "name": "Non-Employee request object.", "originalRequest": { "url": { @@ -57892,7 +57892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7152ae9e-867f-4be4-8e3c-abc546af884a", + "id": "0dca213c-aa3c-43c1-9393-dc5f23e5b3d7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57936,7 +57936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4526c7b4-1b09-4a91-811e-5b1f4fac9c56", + "id": "f30dd804-72b6-4e89-8052-b411477876e3", "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": "5a733216-498d-4dca-9b46-2ab67f277942", + "id": "a136f097-54a6-48d8-9ff5-b6958798c227", "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": "56f4edf6-19be-4510-a7c7-223824c8a56f", + "id": "93171a04-add4-4cc8-936e-f05264b3577d", "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": "8b5f495c-06ca-48fb-97c7-addc56497b0f", + "id": "22e9714c-8fcb-4d0e-b84a-b6a44c3c4241", "name": "Too Many Requests - Returned in response to too many requests in 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": "e50d2d2e-9363-4b2d-8436-676531ce9494", + "id": "e83775ae-5a82-4173-b359-5edb0c632a9b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58162,7 +58162,7 @@ } }, { - "id": "f901a691-df22-4d8e-aab3-ccc292766e8c", + "id": "ecd17544-39d5-4636-9891-064c087827fb", "name": "Delete Non-Employee Request", "request": { "name": "Delete Non-Employee Request", @@ -58203,7 +58203,7 @@ }, "response": [ { - "id": "0d357baf-9026-40d4-90d9-07b7487c8f7f", + "id": "dbe647f9-8354-4529-a169-82c2720ad316", "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": "35128dea-457e-4f00-a768-4764ae6836de", + "id": "3e624594-05db-4432-8389-29b64f42212e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58281,7 +58281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11e7b6ef-6dac-4c88-9840-2fb35a1165ae", + "id": "3136bf48-cedc-421f-a9f7-c87dc923f267", "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": "cb54aff8-d439-483e-919b-e0e1de7512e8", + "id": "7eed0c96-677f-4213-8a34-1a9a43976018", "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": "4d075652-125b-4011-988b-a2b30495bd24", + "id": "1cf5eebc-11d9-432e-ac34-4fb6d16d739d", "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": "679a732e-d643-4f86-b682-3eaf7bef4141", + "id": "7ce7fb6f-15ab-4b01-972a-fe5267c86fdf", "name": "Too Many Requests - Returned in response to too many requests in 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": "22397434-9230-420c-833f-a6be1b066251", + "id": "a88fe16d-18f9-41ad-b8ce-3110d33b3eba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58507,7 +58507,7 @@ } }, { - "id": "a35ad252-251a-495b-b26c-4e1259976aae", + "id": "146134f0-c898-4657-86c8-a6adaf2ab062", "name": "Get Summary of Non-Employee Requests", "request": { "name": "Get Summary of Non-Employee Requests", @@ -58549,7 +58549,7 @@ }, "response": [ { - "id": "36eb6f95-ee3c-4e7f-9c4b-8670f0e2ac6e", + "id": "051e2baa-5604-4bf6-8b8f-86156bceaa06", "name": "Non-Employee request summary object.", "originalRequest": { "url": { @@ -58594,7 +58594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f61bca9-4391-40d4-8927-ca3ffa3f57a3", + "id": "2650c625-f3c9-4b10-b43f-5029083377f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58639,7 +58639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccc557d0-8666-4a5e-a6b9-be9bab4ff620", + "id": "7778a1f6-56de-466d-b6c7-c978c0c3cebf", "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": "91c2699e-3b04-49a1-be43-88371eb16aec", + "id": "cd698cc0-17ac-468e-9fb9-ee4ca1b05203", "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": "1ee8d875-4590-4569-bbb2-f3d4d35751f4", + "id": "1f4e10d9-9666-40b7-88b4-1a89571824f1", "name": "Too Many Requests - Returned in response to too many requests in 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": "d20c2afd-eed3-49e1-9852-70565c45185f", + "id": "914edb40-a279-4aa6-9954-00fdaaed2ae6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58825,7 +58825,7 @@ } }, { - "id": "04ab9d93-883e-4c2d-b2e9-d430d6a086d4", + "id": "d2ae8779-48e7-437a-8963-a244a7555f60", "name": "Create Non-Employee Source", "request": { "name": "Create Non-Employee Source", @@ -58867,7 +58867,7 @@ }, "response": [ { - "id": "5fb0aa01-a4b8-4941-8c9b-74b48302cd0c", + "id": "5848192a-49f6-4d6c-b86e-7e7d30f4ad67", "name": "Created non-employee source.", "originalRequest": { "url": { @@ -58923,7 +58923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bb1de5c-2070-4cf3-9ce8-a26c1e973b63", + "id": "ed1ede4d-2ce0-4eb4-bb33-573174a26ff9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58979,7 +58979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7891f130-f147-4d92-b0da-041b64a59bad", + "id": "39b3143a-a666-40f9-be4d-22d48de50421", "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": "6cf312d2-a238-4389-ac4d-9f70ff74fa87", + "id": "b44e9e03-85e4-4be5-acc3-ed05835354bb", "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": "39e5731d-b0ad-4baa-92b8-1870a94d9923", + "id": "709d2888-51da-4e85-bad5-d94cd30dd6c9", "name": "Too Many Requests - Returned in response to too many requests in 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": "d3565636-ff94-4644-82bc-8f8e99ee3ca6", + "id": "b8675fc4-e11c-4eae-b25b-fd1b1bc0d844", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59209,7 +59209,7 @@ } }, { - "id": "6ff9ec0f-b9d2-49c3-a270-b2cda5452e93", + "id": "e1549b9c-1606-4953-908f-f243e702a18a", "name": "List Non-Employee Sources", "request": { "name": "List Non-Employee Sources", @@ -59293,7 +59293,7 @@ }, "response": [ { - "id": "146aa2d3-c5cf-44ad-90c2-e7470a1f4fcd", + "id": "70bc38e7-fa25-48dd-96ae-8b763ff327cf", "name": "List of non-employee sources objects.", "originalRequest": { "url": { @@ -59391,7 +59391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8dd7b80-db4f-429b-a73c-1c02f66ee395", + "id": "1765ead4-ff45-4cc9-ab49-feb43e54ba6c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59489,7 +59489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f899598-525a-43fc-b2c4-a02080ea9268", + "id": "4e5415a5-5fe3-47c0-9229-594bc31c5c8b", "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": "7f2555a6-b00d-4d4a-b25a-c9a45222edc7", + "id": "687a2bab-3b92-4458-a0dc-3263d023cd56", "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": "6c903b61-8ea6-46b4-8683-9618988bb7d8", + "id": "f0179a7e-683b-4a97-9005-c4777f306317", "name": "Too Many Requests - Returned in response to too many requests in 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": "4d472120-14b5-41b5-84eb-536ce442f055", + "id": "b4ff4371-8c74-4f38-adfb-3d01243a4b85", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59887,7 +59887,7 @@ } }, { - "id": "a78c996d-51b2-4cc3-9248-af1be484cbbd", + "id": "db9a82ec-5373-403f-a323-bcc41b7d8a32", "name": "Get a Non-Employee Source", "request": { "name": "Get a Non-Employee Source", @@ -59928,7 +59928,7 @@ }, "response": [ { - "id": "7970b779-9d74-48b8-8cf0-d566df291af5", + "id": "8b1f6564-5dd2-4f0a-b276-f68f783df8f7", "name": "Non-Employee source object.", "originalRequest": { "url": { @@ -59972,7 +59972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9695a280-36b2-44ec-845a-66e3276e151e", + "id": "1510cc00-7cf7-4073-a6c4-56db28ac8017", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60016,7 +60016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e8dfdae-e04c-4ad9-9869-6fac3c7e9a97", + "id": "b8c1cab7-a7ef-4535-a175-6e84ab1ff968", "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": "cbec1b7f-cb5c-4c39-8386-3597c8ed1efa", + "id": "49cd12b9-e62f-4467-886f-511da3b82379", "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": "c686a5da-e013-44ef-a231-ffe372c4883c", + "id": "01832c85-cc90-4a12-854c-aec129059972", "name": "Too Many Requests - Returned in response to too many requests in 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": "94545cfe-33c4-4e51-b08b-7abebe1b75cc", + "id": "2679fe8b-fae7-4861-8a50-cd1e20f7bf2c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60198,7 +60198,7 @@ } }, { - "id": "82c7cb17-7032-46f1-a13d-397b02eb7a30", + "id": "1f21cb78-efb8-42d9-9acc-3dc822a5cdca", "name": "Patch a Non-Employee Source", "request": { "name": "Patch a Non-Employee Source", @@ -60252,7 +60252,7 @@ }, "response": [ { - "id": "c1a26926-ea02-4199-a287-bf0acd310600", + "id": "e08f6fd7-9846-4fad-bf26-d219ca5cb44f", "name": "A patched non-employee source object.", "originalRequest": { "url": { @@ -60309,7 +60309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "781011d4-f466-4515-824d-cf1c9faee9ac", + "id": "b60830b4-93c3-41c7-8990-056611ea2fb7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60366,7 +60366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea204c9a-002d-4981-8c4b-e6f77d664512", + "id": "8d6c7856-e5e9-4f49-9943-3a778e4b58f4", "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": "ae2924a3-e3e1-4955-a0ce-0e2c103e8655", + "id": "2df879db-727d-45e7-a2c9-40c95f43cb4e", "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": "e9d269dd-d48d-4584-9c4c-9d8dabb950cd", + "id": "99ca8fbd-58d5-4b39-a7a9-4ed59dbf76a8", "name": "Too Many Requests - Returned in response to too many requests in 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": "9819a039-dc66-4fd2-8cc4-c50271740782", + "id": "1f88b2a7-c659-42af-b3d4-3bf0e7039a65", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60600,7 +60600,7 @@ } }, { - "id": "bf1b9d6b-e2e6-4d7f-bc92-73f5db4c1090", + "id": "889ceb71-bfa3-467b-ae58-689c3d172ced", "name": "Delete Non-Employee Source", "request": { "name": "Delete Non-Employee Source", @@ -60641,7 +60641,7 @@ }, "response": [ { - "id": "e19c2390-a0d7-436a-973e-6e0843bde463", + "id": "a044945c-08fb-4e44-9fe8-3f188ecaaa90", "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": "4be66fee-f383-4340-83cb-55d8254633c3", + "id": "30524f5c-0a37-46e3-b27c-87011e76b09b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60719,7 +60719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "938268bb-06ca-4154-9755-caaeb908cdc1", + "id": "df9dfc87-9e0c-4d6c-bf17-320c851b323d", "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": "400ca3c3-70a8-45bc-86a0-8737763a6877", + "id": "c69bdb01-f418-4e3b-baf0-ab218beb60c7", "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": "c509eabf-9494-4b78-98cf-cea84be9ad9b", + "id": "f00f6afa-5857-47f1-8791-b9ed2f47e697", "name": "Too Many Requests - Returned in response to too many requests in 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": "8a5b5b7d-9083-41d8-bcd5-9d04ee4d18aa", + "id": "436bb272-1489-41d7-aa61-4275a6c8c376", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60901,7 +60901,7 @@ } }, { - "id": "9a9ddefc-a4fa-49ba-91a4-9431b6901a3d", + "id": "59454546-8ffd-47da-ba1b-9d34507909f2", "name": "Exports Non-Employee Records to CSV", "request": { "name": "Exports Non-Employee Records to CSV", @@ -60944,7 +60944,7 @@ }, "response": [ { - "id": "1b675869-5d18-4827-974f-27fa9491f715", + "id": "08b0bb03-ab0b-411b-8985-5f93a23ffaad", "name": "Exported CSV", "originalRequest": { "url": { @@ -60990,7 +60990,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3842226f-6e87-41b7-ba4f-fedbd94e46c3", + "id": "3d77a9c9-a63a-4b48-bb8d-57eb10b42c1e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61036,7 +61036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8321baa-3293-4012-917f-236794c7b252", + "id": "0b0fd40f-63ea-450f-bcad-3bef7b3e3682", "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": "b4f0707f-54b4-4a04-96c5-6c8449c1bf9e", + "id": "abc65641-f472-4767-a9ea-6abe84e42dea", "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": "81df372c-78ea-48d0-980c-9871fe9e56c3", + "id": "ed0b2cc9-0e7d-4ead-9ea8-d793ab45e892", "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": "a0643259-d47e-4c60-836d-2113d2e638a3", + "id": "0897e415-420d-497b-944d-86b112ce7b65", "name": "Too Many Requests - Returned in response to too many requests in 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": "32e6ee0b-eb40-4e5f-9349-dd3956550bfd", + "id": "199d95a8-904f-45f7-bd72-be6a06b680bc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61272,7 +61272,7 @@ } }, { - "id": "4cfe1e72-b8d8-4d37-b360-40c1c0fd665f", + "id": "a26987ce-5470-4818-9260-ec58c9a693b2", "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": "exercitation laboris proident dolore", + "value": "quis aliqua proident", "type": "text" } ] @@ -61331,7 +61331,7 @@ }, "response": [ { - "id": "0c5312b4-5bdb-46f6-8204-b79bdcce0120", + "id": "fe13ce3d-0dec-40d9-9ad2-b0a58da3d3ea", "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": "exercitation laboris proident dolore", + "value": "quis aliqua proident", "type": "text" } ] @@ -61393,7 +61393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "faac77f4-e898-463c-bd1c-37dbb283a1b5", + "id": "15e535b7-d6f7-46a9-b026-65c77f340ba6", "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": "exercitation laboris proident dolore", + "value": "quis aliqua proident", "type": "text" } ] @@ -61455,7 +61455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8480044f-b4fe-4eb5-8978-06bb560f6145", + "id": "a9b264ac-3a03-417c-b8ed-ce0954011328", "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": "exercitation laboris proident dolore", + "value": "quis aliqua proident", "type": "text" } ] @@ -61517,7 +61517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8da146ef-7b41-4491-aa2c-bc243759e744", + "id": "d8774372-bb34-4f91-8499-d385a24d5cb3", "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": "exercitation laboris proident dolore", + "value": "quis aliqua proident", "type": "text" } ] @@ -61579,7 +61579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5242a6f-519b-464b-91d4-59236112d2bd", + "id": "ca5206b1-3090-4563-8efa-f8627d7c8a48", "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": "exercitation laboris proident dolore", + "value": "quis aliqua proident", "type": "text" } ] @@ -61641,7 +61641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a17f8838-e934-4dbd-8b71-21c5581f6323", + "id": "1c14c94f-2cc7-4655-9631-1de8bada3803", "name": "Too Many Requests - Returned in response to too many requests in 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": "exercitation laboris proident dolore", + "value": "quis aliqua proident", "type": "text" } ] @@ -61703,7 +61703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba6de429-a760-4118-83ed-b0b338077487", + "id": "bac00c8a-4a0d-4180-918d-e0daea4508d9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61746,7 +61746,7 @@ "type": "text/plain" }, "key": "data", - "value": "exercitation laboris proident dolore", + "value": "quis aliqua proident", "type": "text" } ] @@ -61771,7 +61771,7 @@ } }, { - "id": "4a936760-e136-403e-825d-c50cee4f81a7", + "id": "fb396e29-db60-48c2-961f-1b010a869be0", "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": "183229ac-7464-435e-ac7a-353fcb0fe5d2", + "id": "7a2fcd53-4937-42a2-89c7-1e1e668c9120", "name": "Status of the newest bulk-upload job, if any.", "originalRequest": { "url": { @@ -61860,7 +61860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d00d81d6-85de-45f9-868b-f3e8d3d366e3", + "id": "0ad72497-5091-464b-9c46-67222416ef45", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61906,7 +61906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11341d2b-7d52-4a23-a1c2-2019934142bb", + "id": "2a9aef5d-b03c-4c13-8f74-57bf78582adb", "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": "c2f78d53-1307-45e4-84a8-44139ecfb258", + "id": "122e2468-e79a-425d-b7d6-4ddae7777a2d", "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": "828c063f-d7bb-47f6-b066-ce126b049ba7", + "id": "ff4b5130-9124-4718-9dc4-7e5de04b2940", "name": "Too Many Requests - Returned in response to too many requests in 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": "9d3580eb-4465-48e4-9f92-735b8acae8bb", + "id": "6bd2ae64-7bad-4b0a-b633-59be86b365e5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62096,7 +62096,7 @@ } }, { - "id": "7b3955f3-2174-465a-85c7-4674d44e8c94", + "id": "13231587-02c9-4b89-9942-529f3b50b34e", "name": "Exports Source Schema Template", "request": { "name": "Exports Source Schema Template", @@ -62139,7 +62139,7 @@ }, "response": [ { - "id": "98aad92f-8228-4269-bcfc-65e05fae5d9e", + "id": "d593dee8-2dde-4ccb-a9b7-a5ab8cadaf4f", "name": "Exported Source Schema Template", "originalRequest": { "url": { @@ -62185,7 +62185,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9919c2ab-3ef0-4986-8f72-22b773ff7496", + "id": "e1533814-566c-4a15-8f2e-e28b1276eb40", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62231,7 +62231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3a8382f-2e64-46dc-9d71-aa2faa421095", + "id": "7eea5da3-a927-43cc-a66f-973de6f3fc36", "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": "e6b706e7-5d40-453b-9cf6-cb51cdf99a22", + "id": "60cc1e5a-a941-4118-923b-f6e7f2ee1134", "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": "5ed3cc9a-4ad4-48c5-928e-ef5fc1e9b700", + "id": "206ac632-9ede-466d-af73-dd44e95fe97e", "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": "ee20d00b-a60e-4823-a32d-55eece69073d", + "id": "75d954e5-2682-4565-8296-ab9e363b5897", "name": "Too Many Requests - Returned in response to too many requests in 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": "1aa27a59-5abd-459f-834b-bd1aefb10752", + "id": "263b6610-4f63-478e-9981-13ef5d911ee7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62467,7 +62467,7 @@ } }, { - "id": "ab618da1-1119-4ae3-9f4f-5a4857205b13", + "id": "2e3a946e-ba99-4db1-881b-06b3ef2c2b4a", "name": "Get List of Non-Employee Approval Requests", "request": { "name": "Get List of Non-Employee Approval Requests", @@ -62551,7 +62551,7 @@ }, "response": [ { - "id": "474ec6d4-6061-4dd2-9f14-50dd55ce3c66", + "id": "84f073bb-d10e-4d01-9927-5546ec197dd7", "name": "List of approval items.", "originalRequest": { "url": { @@ -62649,7 +62649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12134ae4-a8bc-4537-ae91-d87a214f48b0", + "id": "84c86be5-8837-4f4d-9b34-2f8ffd119c74", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62747,7 +62747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e31b990-ff8e-4cd6-b820-d8a6650f8337", + "id": "d58d72b1-ae8e-4618-937b-33ee2653ceb9", "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": "973bc966-631d-433b-86ce-707acaeb4a74", + "id": "2a620180-f335-431c-9f6a-2095a63970f6", "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": "9bf8c750-02f3-44f0-9db4-3495b9296644", + "id": "58910cf1-f271-40aa-93cd-074868f4c441", "name": "Too Many Requests - Returned in response to too many requests in 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": "cbb6455a-0c65-453e-999f-a4e448b4c659", + "id": "bc5fd154-cfc0-424a-9ff5-0439b14c50a5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63145,7 +63145,7 @@ } }, { - "id": "3d75e7b6-7772-475a-83d8-5852c64205d9", + "id": "801dd67a-d520-4a40-b68d-290d6e872d96", "name": "Get a non-employee approval item detail", "request": { "name": "Get a non-employee approval item detail", @@ -63196,7 +63196,7 @@ }, "response": [ { - "id": "417a95eb-5f82-4ffc-a831-e76abaeed044", + "id": "885322b2-4952-434a-aea9-8276273499bb", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -63250,7 +63250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55a732dc-d341-482e-972b-f81652326d62", + "id": "be27b968-1189-4556-99c5-f43803a72361", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63304,7 +63304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ccf11d2-8dbd-4087-b22a-4fc9dc9c1df4", + "id": "d892b13a-d812-4e4c-97b0-fa626bf10e3a", "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": "09054a80-2b67-4f1b-ba79-c57c43703be7", + "id": "cc382989-cd7f-4303-8fe8-efb84e354d85", "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": "ac27ba32-1e86-4391-b873-2fe9e99151cc", + "id": "f968c849-f9c9-4b23-9b37-f0fc1a0db1ff", "name": "Too Many Requests - Returned in response to too many requests in 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": "3155089f-bf23-4392-836e-de9f43db6c32", + "id": "6d1e2f93-cd2d-457c-b92e-9210330e4fa8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63526,7 +63526,7 @@ } }, { - "id": "a6dd0d21-48bd-4fc6-8d85-bf1991242d25", + "id": "638f7f94-7dcf-4501-984b-cfac11f53f01", "name": "Approve a Non-Employee Request", "request": { "name": "Approve a Non-Employee Request", @@ -63581,7 +63581,7 @@ }, "response": [ { - "id": "d4c57015-b188-430b-acc3-78c988140932", + "id": "534923e1-e4b6-46c9-a4dd-f5a7bba7cdfa", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -63639,7 +63639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "681dc8ec-c133-44be-9f27-9ab197a7099f", + "id": "b7ea31fa-0e48-4b76-be78-5510d7b3ce56", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63697,7 +63697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "294e4e0e-c85a-44e5-b8a9-28732781567c", + "id": "5fec4bd0-6f8b-4ce0-affc-7cf9d21691d1", "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": "2976b04f-c5f7-4248-a45a-7fde538c1f18", + "id": "9a36a510-a5b5-4cc9-a1cb-fd94fefe4ec1", "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": "c1440256-cd4f-4417-9fbf-3437b52795e0", + "id": "80356a12-a1dd-48a3-9db3-4f672922acde", "name": "Too Many Requests - Returned in response to too many requests in 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": "b3a8feff-b01b-4d4b-87c9-ed5effc204b7", + "id": "7a068fa8-9fed-4d0f-8a24-2a2927969ac3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63935,7 +63935,7 @@ } }, { - "id": "c6fe75e4-9bff-4b81-9cf0-8b6a1f8b573f", + "id": "009ed5e7-1c6b-4686-b5c1-c252a09c4e1f", "name": "Reject a Non-Employee Request", "request": { "name": "Reject a Non-Employee Request", @@ -63990,7 +63990,7 @@ }, "response": [ { - "id": "54040290-087e-4048-86dc-8203ef4799a4", + "id": "1ed2ad55-2b3c-41dd-9771-b910440d5e19", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -64048,7 +64048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58bdb108-e0a5-4d5e-a548-8042072b327d", + "id": "3def29a4-968f-4fc0-acae-b683c56c33f7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64106,7 +64106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffdafd57-2ea0-4dd5-ae8f-602e081a62df", + "id": "0961a26a-1c3f-48a3-822d-8e388cc4e55d", "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": "c0f074e3-8ca2-4da8-86a2-d4ae56837955", + "id": "46fbd4c8-7e41-41d5-aaa6-d6f83735f0d8", "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": "b80d43f3-f1e4-4cda-ba44-652fc46b96ab", + "id": "7cdfcf6c-5426-4968-a6ac-43b7f2c0b03e", "name": "Too Many Requests - Returned in response to too many requests in 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": "9cdb1588-119f-497d-ab16-9f754a771a2d", + "id": "d5f3d782-89c6-44a1-be21-852a9a17d806", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64344,7 +64344,7 @@ } }, { - "id": "67b57b89-b9a9-4360-8f9d-39643459ea3d", + "id": "e23b4658-66b5-4d1b-8b85-52857b488405", "name": "Get Summary of Non-Employee Approval Requests", "request": { "name": "Get Summary of Non-Employee Approval Requests", @@ -64386,7 +64386,7 @@ }, "response": [ { - "id": "6400b1a9-dfab-4952-9f30-9c4cb82ae206", + "id": "8cc29931-3768-4e28-9ad4-e9ec8baba3e2", "name": "summary of non-employee approval requests", "originalRequest": { "url": { @@ -64431,7 +64431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d8cdf23-a3fd-4e53-80b8-728f1b4cd175", + "id": "89f3e307-89fc-4305-80d2-3f62d23d101c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64476,7 +64476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa31e385-0952-4f55-9b69-2073ff93814c", + "id": "78eb8cf8-8d03-4786-b696-2a911156c9c6", "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": "cfc7bebe-bfe6-4de6-be90-416b5c5fd747", + "id": "758a032c-a1d4-48e4-85d1-13b4ecd17a33", "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": "375ab695-459e-414d-b34e-dcbea5e302c5", + "id": "2a0e60b4-690b-47a0-af75-bc460511f51c", "name": "Too Many Requests - Returned in response to too many requests in 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": "3fd76571-ceb7-4698-a2c0-8dab971f357c", + "id": "1628b9f5-bf31-4346-931f-741311a77b0f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64662,7 +64662,7 @@ } }, { - "id": "2399c04c-1438-4aeb-8381-892d273f9b03", + "id": "490eab8e-feeb-4635-ae50-94e190ac5498", "name": "List Schema Attributes Non-Employee Source", "request": { "name": "List Schema Attributes Non-Employee Source", @@ -64704,7 +64704,7 @@ }, "response": [ { - "id": "b2c3e301-9425-440e-8e6f-1db487d926f2", + "id": "7a5ab5a9-5976-499e-9786-830b31edf2b3", "name": "A list of Schema Attributes", "originalRequest": { "url": { @@ -64749,7 +64749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77533476-3dc0-4c3d-8a33-68fc3da80834", + "id": "a912d202-0919-4483-838d-e3f2f6a7d8fb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64794,7 +64794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b9d243a-017a-44a7-8b85-3c3f994b2b61", + "id": "1abd7a57-b4c9-4414-9c8c-7cc70ad60dd9", "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": "6811ea0a-175e-4aa9-a0c7-b7a8982de556", + "id": "8480c820-88de-4332-8dd6-71663eb43fbb", "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": "256374a5-0789-4eb8-a2d1-dd008b8b3417", + "id": "40597f0e-bbaa-4247-8799-f7b77ae2fe19", "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": "69a74121-b5e4-466e-807d-a2a4240a16a2", + "id": "aa4b0102-d532-4542-8c12-96641e4fc9a6", "name": "Too Many Requests - Returned in response to too many requests in 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": "cc3b42a6-1c7e-4ad2-ba99-71d1a6076f22", + "id": "66908890-5bac-4335-865d-4c8fd1ba840e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65025,7 +65025,7 @@ } }, { - "id": "c6dfb197-13e2-4bcb-8af7-3400c8837fca", + "id": "40478fd9-3239-4266-bd3d-64baf83ece8c", "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": "1cc22682-c1b8-479c-9b27-526258be72b8", + "id": "925eacfd-7e08-424f-8831-28df292181cb", "name": "Schema Attribute created.", "originalRequest": { "url": { @@ -65138,7 +65138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c61c0872-dd89-4752-92cd-6b39c6239533", + "id": "55fc5c06-a18e-45fa-b0e2-fd6b44a0b6d6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65196,7 +65196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3030b62-bf78-43d9-a496-18a4a42285ac", + "id": "6974c843-e0d2-4eb3-a224-08feaa54db65", "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": "2520fe0a-f10c-4dc6-a519-5d0e0e823280", + "id": "f4e23eea-cfb0-44e2-a239-94173d3c366b", "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": "1e2019cb-e5bb-4c39-aac6-34fe083bab8f", + "id": "cb8664ec-92a5-4e15-bd79-d20633f6862d", "name": "Too Many Requests - Returned in response to too many requests in 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": "e7f147f8-d038-4b82-872b-e8615d524ec7", + "id": "9833701c-ab3a-4508-b3d6-3efbce4d4062", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65434,7 +65434,7 @@ } }, { - "id": "758eca5a-11cc-4bdf-8ee6-bc6589bab83d", + "id": "51327f26-d51f-4527-9bcf-61e5487888aa", "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": "40fe3e8b-e9ee-49f2-8cc0-0a0125f4e501", + "id": "08535ae6-40dc-42c2-993e-4edb10647039", "name": "All custon Schema Attributes were successfully deleted.", "originalRequest": { "url": { @@ -65511,7 +65511,7 @@ "_postman_previewlanguage": "text" }, { - "id": "31b0d3b2-a2cb-43d4-bdfa-72b6918988aa", + "id": "b1839d56-4182-45d9-8f82-0772c2c7c8f8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65556,7 +65556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c326faa8-e8eb-4413-abbf-3f8eb7dc5bfa", + "id": "d19c366b-588c-4fc8-abfc-5a4cc55306d9", "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": "76d95510-792e-4cc3-971b-3353aef8199a", + "id": "714cb612-170c-412d-ae88-9574ce6fcb41", "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": "a779aba9-db9b-4664-9c79-bcee34957bb7", + "id": "77e3740f-0c04-4ce1-a507-53490982c060", "name": "Too Many Requests - Returned in response to too many requests in 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": "6255b5a4-fd17-439c-8a2f-56dcb805b7c2", + "id": "9b8ca0d6-51e8-434d-b852-4f640b86ffbf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65742,7 +65742,7 @@ } }, { - "id": "7221ec3f-b5c1-4b3d-b8d3-6d9ee3bb17ef", + "id": "9894cf39-8277-4d11-acfa-630d0cab4c2e", "name": "Get Schema Attribute Non-Employee Source", "request": { "name": "Get Schema Attribute Non-Employee Source", @@ -65795,7 +65795,7 @@ }, "response": [ { - "id": "68ae2775-09e6-455e-b2c5-3ccef543bd6e", + "id": "7cab5e27-7763-4e28-a015-858c93c0a2df", "name": "The Schema Attribute", "originalRequest": { "url": { @@ -65841,7 +65841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e741951d-1d1c-49cf-a002-9121ffa22f6c", + "id": "6d4f5c8a-3fa8-463f-8013-03981ef986c0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65887,7 +65887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "125595d3-2304-44c3-9ccd-66b6982b46bb", + "id": "6af4bb62-e590-4b30-b067-0e9fa34dc152", "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": "c17f7c3d-4f99-4d3b-9823-176aca9c2544", + "id": "248075f7-3c25-4ece-99bf-d3f50a0ab035", "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": "1e892407-a52b-45df-a566-bddb3297a76a", + "id": "e70541bd-a5b8-42fa-8b3b-8993573bcae9", "name": "Too Many Requests - Returned in response to too many requests in 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": "26f6351e-0e6c-4ae3-bc9c-bf590ea7aa22", + "id": "27d4fc33-afab-4dec-85ae-23680ff5105d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66077,7 +66077,7 @@ } }, { - "id": "e155d4d1-df09-48d6-896c-298907e535d9", + "id": "99cb304f-1242-4e7b-b3a2-81053b511df6", "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": "e1687a62-fa7f-49f3-9c4b-4d38356f51bb", + "id": "e9e97644-292e-4034-9627-e8d17518d252", "name": "The Schema Attribute was successfully patched.", "originalRequest": { "url": { @@ -66202,7 +66202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59665e6a-049e-4c57-9d98-5c2c3e770ab6", + "id": "1217939d-6e53-4cde-b98d-1b084b4f2d8e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66261,7 +66261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "941859ff-c96d-4ae4-a691-febaeeb2fd99", + "id": "ded34f58-146b-42ec-9f53-196efbf61ca6", "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": "dd9b290f-5839-441b-9231-cc5c60a32213", + "id": "3417950c-6c79-4301-9673-786699ec6a5e", "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": "a85f2546-7c02-4fb1-bff7-fec2d628c24b", + "id": "84712820-a2f4-4a5a-b0f8-5ba671164423", "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": "a0936951-72f9-4058-b9eb-78736f85e8bd", + "id": "1aab98b8-ab95-4af5-8671-eb2339748a4e", "name": "Too Many Requests - Returned in response to too many requests in 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": "3b268de2-b39a-49cb-af08-b9b73a8786f2", + "id": "ae13e56a-898b-401b-9d32-167f296988ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66562,7 +66562,7 @@ } }, { - "id": "a871173e-93d5-4d8f-bbf4-dbd715cd6402", + "id": "f0ef2b7b-81b5-46a6-ad21-2ce85dfe8835", "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": "da211caf-417c-4616-ab6a-73cb4df28002", + "id": "74862353-4c4a-43ce-bfee-9bbc98c1a3ba", "name": "The Schema Attribute was successfully deleted.", "originalRequest": { "url": { @@ -66651,7 +66651,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e04217b1-be23-4b2a-83bb-591d9e73e1d8", + "id": "b73ff240-9a45-4b63-9151-0c753d02495e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66697,7 +66697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ed9f7b4-dce5-4f2c-841f-060e42faef46", + "id": "bf7a2c8f-de5c-43a4-9585-e31fdd780c7a", "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": "52280e1b-6303-4913-b46c-c8f5e36c90dd", + "id": "45348858-d09c-4a65-abe3-7b03ca3a88a9", "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": "be59c74a-93e9-4ebb-a48f-8c83a448acaf", + "id": "7b175b11-a0da-4de1-82e8-e0645a566c30", "name": "Too Many Requests - Returned in response to too many requests in 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": "622afd82-cd57-457a-82b3-68c5dc06ddd1", + "id": "3c1081f6-5836-4d07-b9ee-d39e2d16c9d0", "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": "380e83fb-1c44-4346-9953-fe7e261b4076", + "id": "8c082ace-578c-4edf-8778-773231d13b4d", "name": "List OAuth Clients", "request": { "name": "List OAuth Clients", @@ -66932,7 +66932,7 @@ }, "response": [ { - "id": "78475ca1-1d16-40e4-84fc-16b20ac2675c", + "id": "d31fb15b-70a4-4287-8152-e94bfce242be", "name": "List of OAuth clients.", "originalRequest": { "url": { @@ -66985,7 +66985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4596c189-6b63-48e2-abe8-3a82200cc1de", + "id": "278e5bda-4009-435d-8768-c3afb1bcc512", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67038,7 +67038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "137a4c5a-a846-4f51-9ad0-523f37eba3bf", + "id": "2990e0b0-2e69-4b6d-9c1f-4aa421047390", "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": "9b49b2dd-f975-4841-9ede-e73456c7637d", + "id": "b2cd60d4-bf2b-441d-ab45-1da2510d91ac", "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": "abf4aaf2-cacb-4ce2-a17d-6a988ec05c72", + "id": "8c503c09-43e6-4f82-9354-0c1da08872d1", "name": "Too Many Requests - Returned in response to too many requests in 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": "336a7958-daa9-4127-9747-d4baf81e8cb4", + "id": "6d7144c5-6203-44e6-b1e4-4b7736cf0292", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67256,7 +67256,7 @@ } }, { - "id": "5d9c0219-1a0c-4097-97e6-9cac2f4d2c16", + "id": "4d7c2f4a-70c4-4a27-8364-2029dc2706b1", "name": "Create OAuth Client", "request": { "name": "Create OAuth Client", @@ -67298,7 +67298,7 @@ }, "response": [ { - "id": "cb1560ca-02cc-4504-8641-f33cbdb1d1a8", + "id": "b996b493-bafb-4c06-b328-1e19414b62fc", "name": "Request succeeded.", "originalRequest": { "url": { @@ -67354,7 +67354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ad18d45-8652-4b1f-b1f0-9780e0fedc57", + "id": "fff67697-9592-4b21-8dfe-1e88158d9d2e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67410,7 +67410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b78c59a1-6dd0-41b7-807d-844330f07094", + "id": "91830fdf-c4e5-47e4-975c-4936732fec6b", "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": "119d354d-c8d5-4bd2-8928-b00c7a58d264", + "id": "7402e151-bf09-43b1-9c68-2ce1be962118", "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": "ca5d7130-7fbe-4862-8b65-e33da909d768", + "id": "9283fd9b-6855-4e85-9db3-84a0030bf324", "name": "Too Many Requests - Returned in response to too many requests in 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": "d616bbec-0fcf-49b7-a912-9103073362c6", + "id": "f7d324f6-7a8e-46eb-8b81-19615d54684a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67640,7 +67640,7 @@ } }, { - "id": "92b92039-719a-43a9-8022-04c4d02148d0", + "id": "5a339b49-093b-43d3-b20d-36c15fa6ab14", "name": "Get OAuth Client", "request": { "name": "Get OAuth Client", @@ -67681,7 +67681,7 @@ }, "response": [ { - "id": "63ed918b-7ab6-4b86-b54a-ea20084ef002", + "id": "d3d86cdf-7ff1-4e3b-8137-112fbf41a3de", "name": "Request succeeded.", "originalRequest": { "url": { @@ -67725,7 +67725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77173eae-f3ea-4f6e-8b8e-92a282c5b5ac", + "id": "3e93335b-74d9-43b1-82e8-d665a39fd587", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67769,7 +67769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c849f27e-004c-457e-9041-0314bdabf7b0", + "id": "0616cd67-93d3-4c9f-ac6d-c385be97990e", "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": "cfcb2ab5-7428-4f88-806d-3bbdeb11e25b", + "id": "bd510904-4431-40d4-b9cd-dc56ccb2bdd5", "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": "8f28d8dc-4df3-4d4f-8fda-5e11f3e6233e", + "id": "f53ac066-048b-408b-b5ef-979d82c236fc", "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": "23c50a14-7e88-404d-9de6-556a75b4cc3b", + "id": "c70ef5bb-5dec-4901-8615-af77edd094ff", "name": "Too Many Requests - Returned in response to too many requests in 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": "338ec584-4d53-4521-b653-9f9984a9a6c2", + "id": "3125eebf-35f0-471a-bb82-657be3c960ab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67995,7 +67995,7 @@ } }, { - "id": "094d43d7-a626-4c65-9934-6df7a9c77012", + "id": "c5b94110-976f-411f-a0dc-3d890670a2d1", "name": "Delete OAuth Client", "request": { "name": "Delete OAuth Client", @@ -68036,7 +68036,7 @@ }, "response": [ { - "id": "630f07a2-5f0e-4f49-92d9-683335e1e522", + "id": "8dea6a43-fbf5-4210-ac73-c6d17e0119ab", "name": "No content.", "originalRequest": { "url": { @@ -68070,7 +68070,7 @@ "_postman_previewlanguage": "text" }, { - "id": "641ab7fd-54ab-43e2-ba98-d1a96f329fcf", + "id": "ee2d0427-ed3b-4ad9-8a47-f1224d4a17ec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68114,7 +68114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d8a1351-f3af-4ee7-afc6-a882ded80411", + "id": "b311c3f7-856d-48e1-9540-9187a5cb1741", "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": "8d77009e-bbf9-4c5c-813a-0931727cc79f", + "id": "14c55d2b-ebdd-4f96-b55e-b0c594a3d2f6", "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": "3cda7db2-c24d-4507-8eaf-66847c668925", + "id": "9f306a08-49cb-4beb-ae34-d24d32ae0453", "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": "e380548d-54eb-4d47-be37-f4a22d89e8bb", + "id": "01d28093-5db5-4800-a45b-9b82465dc605", "name": "Too Many Requests - Returned in response to too many requests in 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": "cb9fe5ca-deb6-4305-952e-55a41e2b60a8", + "id": "e9ff1063-8199-4211-b2be-d098b70f5c0e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68340,7 +68340,7 @@ } }, { - "id": "ceac9288-c1ae-48fd-b95d-8b8aa32ab0a5", + "id": "9f7b49cd-83e5-4363-9848-e91b5f4693bc", "name": "Patch OAuth Client", "request": { "name": "Patch OAuth Client", @@ -68394,7 +68394,7 @@ }, "response": [ { - "id": "f195da98-b000-469b-a9e9-5460ef15f671", + "id": "ef3e6da4-7ab9-45a5-ac8b-4434a03cc238", "name": "Indicates the PATCH operation succeeded, and returns the OAuth client's new representation.", "originalRequest": { "url": { @@ -68451,7 +68451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36fd5de8-25a8-479a-bcb5-cdc5875324e3", + "id": "711075b1-ed00-4aa8-9f37-3a7fb3a0d6a4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68508,7 +68508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69eebcac-4211-4711-ab45-fbe3f8807358", + "id": "9154f6bd-1c27-4767-ba58-cda598c334cc", "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": "50e54f07-f487-47e0-b72d-593433a3203a", + "id": "5cf395f7-4933-4c9b-b4f8-eb388db8c377", "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": "f19283e2-85ad-46c5-986f-c766c2dd5d16", + "id": "e3357975-01eb-4c50-be89-6b2d24dea32a", "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": "ea5931fa-1a33-47f0-8c28-bb4869fc7461", + "id": "2324a261-493e-4614-8b17-5974f0a732f3", "name": "Too Many Requests - Returned in response to too many requests in 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": "b9668ab6-2246-4c0e-ae93-8354919bbbdc", + "id": "7770c879-6f9b-4a80-95f5-f03e43e1cf6c", "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": "be59f739-dc7c-47b5-ab3c-a93108608195", + "id": "b45d0d7e-2eb8-4913-850a-e52f21f07a46", "name": "Get Password Org Config", "request": { "name": "Get Password Org Config", @@ -68834,7 +68834,7 @@ }, "response": [ { - "id": "307bc870-e30d-48dc-b2e4-49d6bff7f700", + "id": "265a60bb-ece1-4f88-8174-bde7d6cd8554", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -68877,7 +68877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdae2171-7582-4a9e-81e0-1baefcf147c2", + "id": "edc13e81-6081-47a7-a5c3-385ad03584a1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68920,7 +68920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95c776df-3a58-48ad-a90d-08b7f5ddbd9b", + "id": "c05e84e2-d5d6-4184-9f99-fb40e281193b", "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": "8ef05c04-6d0e-4718-b69f-69f4b6f61aa7", + "id": "0e22f9fc-2fd5-45de-a088-1f6ce35f7112", "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": "ca15342b-47da-4a44-9557-539ad35a5d8e", + "id": "051d1f25-4c8e-41fc-b7c4-a0e307b81d2b", "name": "Too Many Requests - Returned in response to too many requests in 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": "234535c3-992d-4a12-b70b-aeda1701787d", + "id": "15e361c2-8ffc-4f6b-9e8f-b9561cea58f3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69098,7 +69098,7 @@ } }, { - "id": "85e74f0b-09d3-470a-9f1f-ef37917a407d", + "id": "9f9689a7-e7e0-418c-8fb4-ed24d5641c90", "name": "Update Password Org Config", "request": { "name": "Update Password Org Config", @@ -69140,7 +69140,7 @@ }, "response": [ { - "id": "931b80c5-9bca-4f21-af92-50a08de234a1", + "id": "180b2e21-1a76-4d91-9a93-38eabb81b464", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -69196,7 +69196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3024eb03-668c-41e8-8ae7-d52b098b7c02", + "id": "9c39f84e-0be9-45c0-ba16-9167096ebcaf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69252,7 +69252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7139b2e2-7e19-43ec-8149-b3c5f22ce97a", + "id": "280110cc-a195-43c8-a884-9fc29a0fc114", "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": "56a1c5c5-fe2d-4dee-9d5d-7d3e8e00e7c9", + "id": "88690ce8-2aa3-46e0-a403-df051a1ea202", "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": "b20ae1ef-8f39-4848-8b88-df2a621db4d6", + "id": "5a9f20d0-837e-4b38-83d4-b892ca7d7570", "name": "Too Many Requests - Returned in response to too many requests in 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": "55091fb3-efcf-47cc-9243-34d0abb039b9", + "id": "cdaef081-c4a6-461a-8444-b464d07917ea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69482,7 +69482,7 @@ } }, { - "id": "04bdb550-66a2-42ed-8916-221501bf2789", + "id": "661525d6-b26b-41ea-8af5-a0fbaeb8216d", "name": "Create Password Org Config", "request": { "name": "Create Password Org Config", @@ -69524,7 +69524,7 @@ }, "response": [ { - "id": "6f2745ee-e96c-4bf4-bdbc-4009460848ae", + "id": "bd08f171-36d4-4092-aaed-49c5fce0030f", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -69580,7 +69580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbe6c02b-cbbd-4f98-b22a-735e0ef4774d", + "id": "f7aa063c-b352-4432-8251-561cd4514d6b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69636,7 +69636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a68df698-61dd-42e8-99cf-a69c67ef2214", + "id": "dcf27902-5728-4ec4-a4bb-bb0a335bce55", "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": "797fa1f7-212d-4ba4-870a-1f4a5fc85515", + "id": "b7a99be9-e15b-42b9-b073-31f83879e7d3", "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": "38a049f9-b995-4e5a-bd9b-d41ed49ed86c", + "id": "a334e4aa-a38f-4e1c-8037-56e216e5c8a1", "name": "Too Many Requests - Returned in response to too many requests in 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": "4ce9c260-c4ff-4301-be2e-0f8d19f83928", + "id": "847215c4-ed1c-4771-b33e-eab2cdff54da", "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": "68f7c494-7723-4be0-ae2a-6e776ddd688d", + "id": "4270b742-8e61-4c1f-bedf-7cd28bc48052", "name": "Query Password Info", "request": { "name": "Query Password Info", @@ -69914,7 +69914,7 @@ }, "response": [ { - "id": "43f59a53-1cc7-430a-83ed-ae3d5fef73d1", + "id": "f35a9925-326d-4d3f-8957-814738ce31a3", "name": "Reference to the password info.", "originalRequest": { "url": { @@ -69970,7 +69970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "433dd75b-c781-443d-835f-6d7f37d703f4", + "id": "fccbfcda-fed0-43fa-900f-42cdd5403505", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70026,7 +70026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be1b4206-3e8e-4bb6-88b5-3d008786db1c", + "id": "6a5f06d3-f934-4299-ba99-535c10d1ca5e", "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": "7b072307-1240-430b-bf3e-e4967637c3d0", + "id": "b3c779cd-ee33-41e7-b200-65d015d7e166", "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": "9800e3d4-ef47-4b40-b9c6-0fe2553cae44", + "id": "b7959d44-1502-4a32-af0f-1ed8d361073c", "name": "Too Many Requests - Returned in response to too many requests in 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": "cb956adb-f72b-4984-a4c7-9193ae27dafc", + "id": "0fb07427-4a16-46d8-a471-2f90d16261f3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70256,7 +70256,7 @@ } }, { - "id": "17fc94b5-82e6-486d-8eb2-08f1eaf439c8", + "id": "210bdbe3-cebb-45bb-bf3e-48170bc83d29", "name": "Set Identity's Password", "request": { "name": "Set Identity's Password", @@ -70298,7 +70298,7 @@ }, "response": [ { - "id": "e5e10e48-39cb-4efc-a13f-b5f6572784c2", + "id": "54672476-9b3e-48db-9137-02463428fd10", "name": "Reference to the password change.", "originalRequest": { "url": { @@ -70354,7 +70354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "305b2b7a-0ca4-48a7-8373-912a8ed9cb71", + "id": "d8a54236-78c6-4f9f-97af-462f10c99fe2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70410,7 +70410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc29ccd8-2a72-42e7-9ab0-e2ff011d0684", + "id": "6f6e7909-50e1-4e7a-85a2-a1a6585ba559", "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": "ef0e6173-d303-40ea-8f7d-f2a16a8e51c0", + "id": "58a294e7-f314-418d-bae0-6d4dda171fd4", "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": "4303be97-80bb-46c7-84cf-ab7cd75735ee", + "id": "303ef533-c64c-4d4e-8863-d50b64b7d66f", "name": "Too Many Requests - Returned in response to too many requests in 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": "1fbff975-0d4a-413e-ae6b-c1b883dd660e", + "id": "4aa4b569-0ffb-4c85-a29a-7cd560a88a8f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70640,7 +70640,7 @@ } }, { - "id": "1c9cec75-8886-4d21-a1e4-c85cfc29e410", + "id": "a2eab9e5-ad97-4bdb-8795-1c8cfb3aae0a", "name": "Get Password Change Request Status", "request": { "name": "Get Password Change Request Status", @@ -70681,7 +70681,7 @@ }, "response": [ { - "id": "8e8e0adc-b5e8-4a08-bc9c-f5edfdd48e21", + "id": "66b24f5e-fd15-466a-97f2-6a7596c73f30", "name": "Status of the password change request", "originalRequest": { "url": { @@ -70725,7 +70725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a26cb124-58ec-426f-a6b7-d90969cbcd7c", + "id": "11be3e4d-b1c6-47c6-992d-4f9db839a999", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70769,7 +70769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "446e47c3-cb78-4200-afd6-4e456d3156aa", + "id": "2296c537-22e5-44f0-b9c1-cd9b738e8e5d", "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": "45aef854-3e7b-47aa-90d0-294645cfd053", + "id": "7fb58df0-5aae-4611-a032-f7c21cf1cfdd", "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": "aea56ac2-8dff-4dba-9d91-c88a5875d22a", + "id": "c043bd4c-6018-4c23-844a-2b021e3051b1", "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": "ac4e8683-caee-45d9-91f9-2ed3cf55c861", + "id": "02c32609-c87f-4f05-849b-df646932688f", "name": "Too Many Requests - Returned in response to too many requests in 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": "067be077-3d08-4f46-8db5-0123c97d108d", + "id": "d75de9e9-aad9-439f-b574-d120662c0fc4", "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": "40705ae1-3ef4-4dee-9101-6b1c96771d74", + "id": "e72822a3-1696-4bd4-97e3-23c1cf0c9b60", "name": "Get Password Dictionary", "request": { "name": "Get Password Dictionary", @@ -71030,7 +71030,7 @@ }, "response": [ { - "id": "0bb5dc99-7954-4f9d-87ba-83fa200678f7", + "id": "775ab8e2-f6f5-42db-8246-68400c88dbe8", "name": "A password dictionary response", "originalRequest": { "url": { @@ -71068,12 +71068,12 @@ "value": "text/plain" } ], - "body": "mollit incididunt nostrud", + "body": "irure est", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "c841b53a-4b45-446f-aeb9-381d5011a533", + "id": "54daa614-c2bc-47ba-bc51-1bccdc164201", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71116,7 +71116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9100b43-92bb-4e5e-8c07-5bd208c03e8c", + "id": "7d8fcc90-25bd-4a5c-b298-c9fc7f4dd66d", "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": "8eed8bfa-59fa-4e2d-8ffc-fc24e05e293b", + "id": "c6b2d8c2-b9bb-4a47-a16c-bc67b5add601", "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": "86c2f8b4-c445-4602-9426-f6f9f154622a", + "id": "a94fb898-6acb-415f-8d29-243660902a1c", "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": "627cf179-dd5d-4509-a312-70031f953f67", + "id": "b0a7f19c-54ab-4020-a02a-829a918028c8", "name": "Too Many Requests - Returned in response to too many requests in 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": "684e5a80-c86c-4cd4-bdc7-a404461a047d", + "id": "61e923f2-04d4-4ab8-a57a-3452f7e801e5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71337,7 +71337,7 @@ } }, { - "id": "9383f8a8-7bc0-4654-aed7-2458dffe04f7", + "id": "1b9ad07a-398a-40bc-9e94-18c346d01e00", "name": "Update Password Dictionary", "request": { "name": "Update Password Dictionary", @@ -71375,7 +71375,7 @@ "type": "text/plain" }, "key": "file", - "value": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -71383,7 +71383,7 @@ }, "response": [ { - "id": "5cc60d12-1eed-4785-bf68-3e2fd45fb6e6", + "id": "710af831-74b8-4f14-99eb-f519ef596d41", "name": "Successfully updated.", "originalRequest": { "url": { @@ -71420,7 +71420,7 @@ "type": "text/plain" }, "key": "file", - "value": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -71433,7 +71433,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1db13b05-3954-4f8b-9e19-33bbf50a3ff9", + "id": "13b79a04-a46d-41c4-8b78-3aab5c9261b0", "name": "Created.", "originalRequest": { "url": { @@ -71470,7 +71470,7 @@ "type": "text/plain" }, "key": "file", - "value": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -71483,7 +71483,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e27723bd-543d-40f7-9ab3-828515a863b0", + "id": "fbc30f56-ad13-4327-b021-def8a2ab4788", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71524,7 +71524,7 @@ "type": "text/plain" }, "key": "file", - "value": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -71543,7 +71543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c80d4492-d5e4-4180-a2a6-9e15aa6307e8", + "id": "33cf0377-5719-4f21-944d-596e3e386663", "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": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -71603,7 +71603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9fa82f4-8579-4c73-9c80-c4ace71b1853", + "id": "4c6664ae-7aa5-4229-8d34-0b4330bd5394", "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": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -71663,7 +71663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39add825-dc25-44e7-ab7c-e608bd3dbf98", + "id": "4ac95b13-dfbd-414f-9e77-f1c9090fea51", "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": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -71723,7 +71723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1d40650-d1d3-4191-bdc1-f4cb0c4c5e28", + "id": "f7045a65-66d0-47e4-90a6-84b590056a5b", "name": "Too Many Requests - Returned in response to too many requests in 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": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -71783,7 +71783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "751afe47-9417-4d50-b183-90c59f97477a", + "id": "c026ad34-9c59-4185-a8dd-8316a0cc3251", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71824,7 +71824,7 @@ "type": "text/plain" }, "key": "file", - "value": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "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": "8f0b709e-608e-4c67-a685-41076693d6d7", + "id": "6a42d1b6-0e3e-4d00-92aa-5bbfe7616c3b", "name": "Get Password Sync Group List", "request": { "name": "Get Password Sync Group List", @@ -71912,7 +71912,7 @@ }, "response": [ { - "id": "3f06ee3e-1a28-449e-a830-140606730704", + "id": "9e5b1735-4d10-484b-b0b5-6a86c0aa101f", "name": "A list of password sync groups.", "originalRequest": { "url": { @@ -71983,7 +71983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7eaff4c5-e2c0-48e7-ae51-b34b660ee8d5", + "id": "6a1da280-94e9-4938-baef-5b2f716a1ce1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72054,7 +72054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7feb3d1c-93ac-4774-9d73-efbfc42e48bc", + "id": "d7774746-5550-4b04-b5ed-6131a18c08ca", "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": "68064e38-00e0-4758-b0d8-6d2e121da921", + "id": "1da8467d-a342-44de-9e20-cc60ebb9416b", "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": "31191b5f-b153-4eb7-a32d-13eef4ef7dab", + "id": "9c6658f1-72a0-4250-9e5b-42ecdda3d26a", "name": "Too Many Requests - Returned in response to too many requests in 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": "53b9ac07-2bab-4f3c-8a1a-e6410ce207ff", + "id": "d01d4a89-646c-468a-a9cb-63da9f4ef061", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72344,7 +72344,7 @@ } }, { - "id": "1d709ca1-deba-4ff1-9b67-dcfa7af27bfe", + "id": "61f2dd55-c257-4875-8985-a98060a1edac", "name": "Create Password Sync Group", "request": { "name": "Create Password Sync Group", @@ -72386,7 +72386,7 @@ }, "response": [ { - "id": "b144844e-c3f6-4f90-8759-18e72fcc16fe", + "id": "c32c84dc-f9a4-4329-bfec-2f0b333e3f6b", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -72442,7 +72442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40bd73f1-2f22-4548-a556-da15057f2e86", + "id": "2fbb99df-1857-4a32-941f-4c02d00fb68d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72498,7 +72498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a27ac6ef-0d7c-451f-8081-317c6b10ed74", + "id": "d78220cd-22dd-4154-ad97-fb9aa48dbcca", "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": "31aef529-4c24-4df0-8e27-1e1b77504216", + "id": "ca76a3f9-18b1-4c27-8226-06ba6c4432a1", "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": "d8f48620-5f7d-400b-b850-d12680f8d20b", + "id": "76322e8a-3822-4991-bb41-efbe6697814a", "name": "Too Many Requests - Returned in response to too many requests in 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": "d5c78798-91ac-4aee-a309-b34a52c82a98", + "id": "e97f12dd-9c9f-471b-8098-0a2d85ad3deb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72728,7 +72728,7 @@ } }, { - "id": "f113dc2c-2b27-4b8e-aad5-011db2bfea63", + "id": "b738666a-dbc4-4ff9-8ddc-23931217a299", "name": "Get Password Sync Group by ID", "request": { "name": "Get Password Sync Group by ID", @@ -72769,7 +72769,7 @@ }, "response": [ { - "id": "2b315c9d-659a-48d0-85f5-7dc05b89bf11", + "id": "93c0b82a-0a11-41d7-8028-9e376b2127e0", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -72813,7 +72813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c28f925-bd6d-4f3a-b839-9afbbb56ca7a", + "id": "a039dda0-aadf-4d61-99c3-99e031c63daa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72857,7 +72857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76f9b1e7-6a77-4c34-9dcf-ebe6fbcd48b6", + "id": "5c0011a8-702f-4b5d-b4dd-e3d0381c7f04", "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": "b1c90656-ed71-4fbc-a3ed-0aa62fe69b75", + "id": "cb167f43-f4c2-4a9a-8033-d3daa7fbdfeb", "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": "9b934b3e-3a6f-49f7-ba6e-9b2a6a26f591", + "id": "11930b01-d672-4d27-8d63-b2558a43f22e", "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": "7a420be9-63cd-47ff-ac5f-a9f44105f7c4", + "id": "37c39142-6660-4fbc-8ad1-22850d9ebefd", "name": "Too Many Requests - Returned in response to too many requests in 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": "bf583fd1-0089-41cc-9255-18e3e7f17e79", + "id": "71329a2b-ae35-4435-ba50-188b8b053fca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73083,7 +73083,7 @@ } }, { - "id": "a3b900fa-8fd3-4fac-9317-741d31a7da4e", + "id": "37d2670f-824e-4b6b-8371-dfd7108897bc", "name": "Update Password Sync Group by ID", "request": { "name": "Update Password Sync Group by ID", @@ -73137,7 +73137,7 @@ }, "response": [ { - "id": "89fb6d55-8b33-43c7-b5ab-0d1908087b0e", + "id": "5761947d-b58c-4443-a610-2311fdfe7e97", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -73194,7 +73194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63889d2a-5f83-44ae-870f-859932d7914d", + "id": "c13cd758-043c-44e9-a878-718ddfa9a9b3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73251,7 +73251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30cef7b9-03e7-4cb0-b1d5-fd9fdc39e101", + "id": "488445e9-eabf-43f7-80d7-852aaea38d90", "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": "b541d373-6674-4572-bf3b-6d66c034743c", + "id": "56e5b726-729a-4193-96a1-58caa7a69d34", "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": "91d650dd-a28e-4eee-9bd3-318fa91c99ce", + "id": "bf68ac2b-1ca9-4f34-9afe-117b6de02fd2", "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": "1d127229-cf02-4db9-9f34-b558ad435d4a", + "id": "e938bd35-beb9-490c-8310-81cc2e96a40e", "name": "Too Many Requests - Returned in response to too many requests in 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": "68594378-1f95-4860-b0c5-061e828c60c1", + "id": "b7aea1e6-1aa1-44cd-a2a7-fe3db7ff455b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73542,7 +73542,7 @@ } }, { - "id": "0888a9fa-410d-47ef-a9cb-43124d673847", + "id": "0580d6bb-2f16-4be3-9b06-80a5decc94e9", "name": "Delete Password Sync Group by ID", "request": { "name": "Delete Password Sync Group by ID", @@ -73583,7 +73583,7 @@ }, "response": [ { - "id": "affe1e97-d87c-4d51-b50f-60d6fe610fe5", + "id": "054e4bb5-e95b-4a81-afe3-1bebf61745ac", "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": "17ea1c74-b09e-40db-b42c-7a44e7e02345", + "id": "c36df0b8-2f4f-4869-8249-3b2e1316fb6f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73661,7 +73661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dccf5cb5-2196-4b2b-bf8e-afece809db5b", + "id": "93c36f86-f5c2-4c82-bad7-aace9db61f7c", "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": "330739bb-348d-40d0-a57d-a804e21dba33", + "id": "26ddafa7-aa57-4e93-8d7e-3405d99e4e34", "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": "0333b147-d8c9-4a5f-b136-df9f8107c409", + "id": "06ae8606-7144-4daf-99bf-c004cd5c9282", "name": "Too Many Requests - Returned in response to too many requests in 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": "f32c687c-cd05-4867-85b8-e32561f74f5a", + "id": "23782412-3c00-45e4-aa3f-80d797479964", "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": "0ea148df-d1ea-4e9c-9321-4ee0a26444f8", + "id": "d28ff21f-cf1e-4ab6-a754-b3196921de19", "name": "List Personal Access Tokens", "request": { "name": "List Personal Access Tokens", @@ -73897,7 +73897,7 @@ }, "response": [ { - "id": "830e9bf7-7c6b-4138-bfe6-4f33173f6b73", + "id": "2854f171-6424-445c-b68b-af5f65da2ce7", "name": "List of personal access tokens.", "originalRequest": { "url": { @@ -73959,7 +73959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1a5d5d4-12a1-4262-849b-21fc25acf1a9", + "id": "a4d81b57-bf6f-42af-b56c-453c76efa984", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74021,7 +74021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00207f00-ba7b-4bd8-9d0d-7bc7bbb53c92", + "id": "d02f433b-7e6d-4272-9927-1ec0727aaaff", "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": "5e1ee2c0-bdaa-46fc-bd2b-3f7101065e80", + "id": "303f9862-5bec-43c8-aca5-2de94f14ff85", "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": "8feeb53d-f699-4695-98f5-ef2c86ac7b66", + "id": "e296f99b-6ace-46b0-afb8-f144e0b22da7", "name": "Too Many Requests - Returned in response to too many requests in 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": "88420c69-1e9a-4b19-a121-a830e9630e56", + "id": "e4ae670f-286e-4d28-9b86-2972a0697ecd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74275,7 +74275,7 @@ } }, { - "id": "39c3a8dc-6247-4b70-8565-d7f6aeb62655", + "id": "900ae5c3-b05b-47a1-9add-fc7b837f41fb", "name": "Create Personal Access Token", "request": { "name": "Create Personal Access Token", @@ -74317,7 +74317,7 @@ }, "response": [ { - "id": "1b66048b-babe-4599-979c-678f9ee426c6", + "id": "4f535a31-9402-4dbc-84dd-d9b2ad6f62ea", "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": "35fd814f-4c30-4bfa-9ad4-b496f3955603", + "id": "721cf08f-c0c1-4701-91fb-564a2d86e989", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74429,7 +74429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6419f8f9-ce8a-4dce-bb0f-9bf64b6c7da6", + "id": "8ceafe3e-dd9f-4319-b410-b48fe50945a0", "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": "4cd264db-b5c5-41a6-93b9-1de1f3fe075f", + "id": "a88dae36-c5e5-4899-b15c-427ba4d8368a", "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": "279daacf-2aab-4419-8a87-ca7472349945", + "id": "f9229d21-1349-4793-acea-3164a89f37f4", "name": "Too Many Requests - Returned in response to too many requests in 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": "ec0d3df1-9990-48f8-b7b7-939d445c141d", + "id": "5244231f-b495-47b4-ad8c-bdb41a05b0ec", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74659,7 +74659,7 @@ } }, { - "id": "3cadabcc-cc96-40a2-a44d-b50124cd0c45", + "id": "3f9caa6d-2fbe-4634-8e15-e1dead74715d", "name": "Patch Personal Access Token", "request": { "name": "Patch Personal Access Token", @@ -74713,7 +74713,7 @@ }, "response": [ { - "id": "42754283-9e3f-4851-87cb-dbc6d693ab21", + "id": "937a5d32-f47b-405f-81a0-22f9e3828b01", "name": "Indicates the PATCH operation succeeded, and returns the PAT's new representation.", "originalRequest": { "url": { @@ -74770,7 +74770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed2bad12-dcba-45c5-8c29-4bd5bf2458f2", + "id": "4baf8973-782d-4311-be4e-923dcbe6a616", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74827,7 +74827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba51786b-9824-4d8e-8094-6a6550c0a027", + "id": "cbc9ceee-47b8-4d71-b756-e1732a4f5327", "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": "22fb2fc6-0d53-4b92-aeaf-24f7033b4e41", + "id": "eb070d35-dbd1-40d8-a0ac-a70d769d05de", "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": "2ac05ec5-a9c0-4508-abff-bb65028ad53c", + "id": "466b83ce-fbad-4e03-a1ba-2dbce145d7f5", "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": "31703096-95f9-48b0-ae58-6815ff2ca172", + "id": "b0c354aa-61ba-497d-9dd7-2671b7681915", "name": "Too Many Requests - Returned in response to too many requests in 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": "b23d38fb-789c-453c-b89a-10e04fc69eeb", + "id": "583e27fc-a33b-484b-ab61-d7ec13fd1384", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75118,7 +75118,7 @@ } }, { - "id": "500dba9b-86a8-4575-bfb2-0ee0b8bcdb11", + "id": "a9039c09-28ca-481d-860d-6a10d98310ea", "name": "Delete Personal Access Token", "request": { "name": "Delete Personal Access Token", @@ -75159,7 +75159,7 @@ }, "response": [ { - "id": "47ea1959-7b2d-441b-8b1c-004fcd4a3799", + "id": "526bdaf9-4f53-424d-9e45-26913772e851", "name": "No content.", "originalRequest": { "url": { @@ -75193,7 +75193,7 @@ "_postman_previewlanguage": "text" }, { - "id": "236f7032-a1ed-45a2-834b-e9971d3bcf98", + "id": "fecde506-d9be-4624-822a-e29632b55b61", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75237,7 +75237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99ab9b67-b858-4704-9216-773f74c6b280", + "id": "fdd65a45-282a-4d2d-b491-fd002e98b0fe", "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": "47a4970d-36ec-4f6e-9309-6fcb697c1b94", + "id": "a8581f92-211e-4bc4-941e-6336025e7115", "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": "1319b796-e82d-46d2-bce4-6ce799a1f185", + "id": "664e25e1-9fb8-4653-a4ad-72b3a3aae103", "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": "1c2b118b-4b32-45dd-8b87-943a34017368", + "id": "c86edb20-44a0-4885-be53-963225719c1c", "name": "Too Many Requests - Returned in response to too many requests in 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": "57a9a59e-f28d-48af-b9e6-feae9a6573be", + "id": "34fb9b31-ac23-4dd3-945b-2f255e004fa5", "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": "32f37458-88f0-41a3-86b7-30b663ecbad6", + "id": "fb40f687-a665-450f-abc6-d083a495cce6", "name": "Get a list of public identities", "request": { "name": "Get a list of public identities", @@ -75550,7 +75550,7 @@ }, "response": [ { - "id": "43f2a568-0e63-48b3-894c-337703ee3b83", + "id": "48da3f87-991d-484f-afb2-77925e245821", "name": "A list of public identity objects.", "originalRequest": { "url": { @@ -75648,7 +75648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "037646ad-f5e8-499a-aec4-7400d1bcb972", + "id": "d2dc4929-acb4-40ba-9c91-33e53ea53501", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75746,7 +75746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b14dc0e1-2898-4a1a-a693-ee0fe845491d", + "id": "58c863a3-402c-44c7-ac37-c77c8bf852f8", "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": "ac18f2a2-8131-465f-a04a-716aa09850e9", + "id": "e1a7004f-12a7-4aa2-9c62-9c88cadb6321", "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": "59549d24-e880-4c55-8151-483840c80f93", + "id": "a2378cb0-ca11-436b-89a1-b5ed9741d16f", "name": "Too Many Requests - Returned in response to too many requests in 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": "8dfb67f3-d93e-4610-b265-a5e57280efb2", + "id": "1f620eb7-5386-478f-9681-0587e0098c4e", "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": "ae5bdef9-7c79-406b-b875-115167c7fc64", + "id": "8d4fa0e9-c904-4b9e-9bc4-259835a6cb03", "name": "Get the Public Identities Configuration", "request": { "name": "Get the Public Identities Configuration", @@ -76179,7 +76179,7 @@ }, "response": [ { - "id": "4eac2aae-6689-443a-94a4-6be1ced48fdc", + "id": "242b2220-7f60-4d6c-a629-fade3bec1ac4", "name": "Request succeeded.", "originalRequest": { "url": { @@ -76222,7 +76222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ffb4110-fa5e-4e27-b9b0-662337812388", + "id": "24414f5e-7bd5-4016-99f0-9e52f16ee365", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76265,7 +76265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2389c34b-5347-4647-905a-6001c58e426f", + "id": "0dcf960e-76b9-4350-b40b-9a508ce490d5", "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": "7168d95b-3b74-4964-a31a-f1edf7037405", + "id": "572d89ff-ae5c-47a4-931a-386b2a6fefa3", "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": "f855ca27-c80c-4b54-a24b-acf38d1f1183", + "id": "71139a75-570b-468d-8151-bcf9494820fa", "name": "Too Many Requests - Returned in response to too many requests in 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": "44cbd81e-fe3d-42a1-97f0-808b4529d8d2", + "id": "c885be06-3a90-4491-bcbb-d63111888108", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76443,7 +76443,7 @@ } }, { - "id": "afcef43f-61ae-4118-b0a4-ed6d21a0a86a", + "id": "c958da36-1aeb-44b0-a3d8-e53f6d62ef80", "name": "Update the Public Identities Configuration", "request": { "name": "Update the Public Identities Configuration", @@ -76485,7 +76485,7 @@ }, "response": [ { - "id": "79af44cb-fdc9-48d6-b9e8-f86bd2314449", + "id": "8aa200b5-cb29-4239-aa07-154b0b3f4cab", "name": "Request succeeded.", "originalRequest": { "url": { @@ -76541,7 +76541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb6e5a8d-bb68-4ac7-927d-a1ad0b27652e", + "id": "45d61cab-b402-4ce3-a3fa-f307027b8cbd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76597,7 +76597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "449dedab-bbf2-4354-865c-82e7e2bdbc7c", + "id": "b0b47e64-6619-4a37-8136-a570930de2c4", "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": "e8e3e6a3-c191-4109-8133-ee61243d7ef1", + "id": "094a4796-c5a2-47b0-80c2-65d6db4ac49d", "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": "efed83a2-fd3f-4c31-902b-663c1d26579b", + "id": "340d8587-a85c-4cd0-a491-b9f26d9e913c", "name": "Too Many Requests - Returned in response to too many requests in 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": "13dea75c-d417-40d1-91b9-191f33d945bd", + "id": "6d4cc4c0-a328-4ea6-8be6-9323bd990ef3", "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": "b71a52c0-0938-44e9-925f-4cf22bd606eb", + "id": "ab4f2cb4-a790-4dbc-8c97-4d89646df998", "name": "Get Report Result", "request": { "name": "Get Report Result", @@ -76885,7 +76885,7 @@ }, "response": [ { - "id": "b30892f2-d62c-45d1-8593-b88f53b5d1a4", + "id": "fbcedbec-e07b-4671-a404-64abc732ee7d", "name": "Details about report that was run or is running.", "originalRequest": { "url": { @@ -76940,7 +76940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2cfdc12-1f2b-467f-bb6e-fee71f7cb83c", + "id": "86c81b9b-79e9-4934-9731-e0c8b39e8f78", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76995,7 +76995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f075eb07-f614-471c-961e-59259b552fbd", + "id": "66f4c2a8-77b3-44f7-9245-5eda0a22efa3", "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": "cada2f89-077e-4b3d-b1d0-7353e7af2153", + "id": "988a45b4-4281-4616-924c-84c001bc52ed", "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": "5c5e4e5c-55df-4b57-a9c5-e06e89bf0c12", + "id": "29cd69f5-b5cf-41c7-9a64-40fa9dca8eb4", "name": "Too Many Requests - Returned in response to too many requests in 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": "cee396cf-589a-46ac-8241-d9bbd41caeb4", + "id": "bb12685c-3fde-4821-badf-014be91c4a81", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77221,7 +77221,7 @@ } }, { - "id": "358bb4e2-9666-4f1c-819c-999e43b068fa", + "id": "32f3eb9a-7220-4950-992d-58c621c4e4ea", "name": "Run Report", "request": { "name": "Run Report", @@ -77264,7 +77264,7 @@ }, "response": [ { - "id": "0a0756e2-a23e-49fe-9e54-2dcc8d1027cd", + "id": "70c60be2-27bd-43bf-b7ce-6ac439b36e3a", "name": "Identities Details Report task result.", "originalRequest": { "url": { @@ -77321,7 +77321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9629c987-e0f4-48c4-92c5-941c1a9659c7", + "id": "97304e8f-77df-4c6b-8cf6-c110996be933", "name": "Identities Details Report task result.", "originalRequest": { "url": { @@ -77378,7 +77378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0600189b-6984-4631-a3ac-346696cb9e19", + "id": "e837deee-8137-4991-b9b6-c6956cf7e12a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77435,7 +77435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5849f735-0fdb-4eef-9b44-1bc85d19c75d", + "id": "bac5d8b5-7f6c-48ab-b88e-7e289b08e315", "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": "cba72597-232d-46ce-addd-8cbd03d8570a", + "id": "ec875ac2-eca2-40f0-abb2-5004cbe7a10d", "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": "adbb0c5b-9e03-4a38-b878-be9640115446", + "id": "d3d41dea-07a5-44f9-b053-40ca52d5bebc", "name": "Too Many Requests - Returned in response to too many requests in 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": "7dbf214d-20f4-4922-bda4-8e38582b9dc9", + "id": "08eebaa4-3a77-4151-a5d4-a345504e84a6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77669,7 +77669,7 @@ } }, { - "id": "df5672a8-f093-46d4-93f2-28fd3c3d660e", + "id": "ef7306dd-243f-4256-bf28-cd0fd0f124e7", "name": "Cancel Report", "request": { "name": "Cancel Report", @@ -77711,7 +77711,7 @@ }, "response": [ { - "id": "0d39bd4c-e81c-4cc8-a046-e91e8f56ad20", + "id": "7d975203-1118-4b42-9a83-c0a2184526f7", "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": "945c2a85-b516-4b41-8b5e-7d41fc7bf553", + "id": "50037909-d4a9-4be9-8f9f-1edf2ef7443e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77791,7 +77791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "607405ee-6bf5-4b64-aa15-c947a8e7bf80", + "id": "d18b7e72-0311-44ee-89f5-2c79fc4f2b6d", "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": "ffb77f21-d447-46b1-8c1b-d3ced7512071", + "id": "08018f11-6163-481d-986e-477bd7f5df6a", "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": "7d9a2e72-897d-4f1d-bd8d-7ed4c96e3564", + "id": "d25d2e77-f0c0-4282-899f-e9a1bc3238c6", "name": "Too Many Requests - Returned in response to too many requests in 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": "4cb9a0ca-76fb-4777-9b81-4acc21c11ebb", + "id": "980247a8-e9a4-42aa-935a-a1da63ef548d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77977,7 +77977,7 @@ } }, { - "id": "bd59c889-6adb-4848-b708-3c308f1d109c", + "id": "49078ee4-2693-4219-adcb-b1a9d0517ba5", "name": "Get Report File", "request": { "name": "Get Report File", @@ -78046,7 +78046,7 @@ }, "response": [ { - "id": "c50f0160-3d81-49a0-b738-feaf86d96755", + "id": "01ef7025-8b6a-4c55-a699-0e9109381a00", "name": "Report file in selected format. CSV by default.", "originalRequest": { "url": { @@ -78122,12 +78122,12 @@ "value": "attachment;filename=\\\"fileName\"" } ], - "body": "mollit incididunt nostrud", + "body": "irure est", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "a180ecf3-b0f1-4024-a7e8-e7b27972e0be", + "id": "b0ed1517-48fd-4b1a-a9a9-55d5ba101e26", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78199,7 +78199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab01b539-3540-4523-a7ab-2dc4041510f9", + "id": "4760de28-2e6b-4174-931b-d669a3dbf3fd", "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": "f845eabc-d67d-47f0-8e92-bda8ef48b185", + "id": "59ed9b0c-01ba-431a-a8a7-317d46b4bacd", "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": "cefb5c87-7560-48ab-80ca-7675aff0504f", + "id": "c41b2483-2e69-453a-aa28-4f7c229c4991", "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": "52ab4d8e-c4da-4d28-b45d-c9c527f92eb1", + "id": "aca20c08-402d-44e2-8d0c-007da93d1d98", "name": "Too Many Requests - Returned in response to too many requests in 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": "adc1db48-c882-45e4-b658-a3847d12680c", + "id": "b6b95ca8-3ddd-48cb-8a37-6e89b8deb42e", "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": "4feb25b0-c69b-40b8-9a84-c7edc78c7ee8", + "id": "70b41ecf-8a88-4f35-b63c-1fe7acb986f1", "name": "Requestable Objects List", "request": { "name": "Requestable Objects List", @@ -78682,7 +78682,7 @@ }, "response": [ { - "id": "20b6a06f-48c0-4d58-9fda-fcd1f1c0f4d3", + "id": "1c609549-0b63-4154-a63f-8ca3a47d7b3d", "name": "List of requestable objects", "originalRequest": { "url": { @@ -78807,7 +78807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bee2a1c-53fc-4451-a2b7-97c4e3d2e79d", + "id": "98ebea59-c3b8-47ba-b35c-84b261e0fc91", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78932,7 +78932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94faae99-e501-400f-bb8f-8af03512109d", + "id": "b05c74d5-0e16-4187-9612-debc99916465", "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": "d40e5cac-21ab-47ed-b0ad-daae3e62a4b6", + "id": "296f5787-289c-440e-8b29-3a6eab882003", "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": "ddcac5c1-d59f-4790-ba88-a7f8c11c52ad", + "id": "9559a6cf-6094-4400-9ece-176530301428", "name": "Too Many Requests - Returned in response to too many requests in 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": "7755b44c-ce60-43ac-8a4c-e5be6e2a01eb", + "id": "27c6d160-231d-4403-8430-4dd98e5b904a", "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": "ecf85f3f-e32e-42cf-ae7f-e5a2b566e6c7", + "id": "d187bd41-97cf-4280-8c54-fbfbfa81b28b", "name": "List Roles", "request": { "name": "List Roles", @@ -79546,7 +79546,7 @@ }, "response": [ { - "id": "1d33963b-6c87-422d-a090-bd8320133032", + "id": "e10e1d04-176b-4b77-8fad-793c5f298b0a", "name": "List of Roles", "originalRequest": { "url": { @@ -79662,7 +79662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e0e7974-b4fb-45cf-8339-1b16f03cee31", + "id": "bce5ecda-37ee-49d1-8680-6c1cf8873ad6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79778,7 +79778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b3910b7-8891-48e1-afd4-51d5309d67c2", + "id": "191d4343-7cad-4859-8933-793947ab04b3", "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": "33d25786-b042-4186-976e-6c474bcf3395", + "id": "5d079634-2903-42ca-bc55-da38af520470", "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": "dd7718ac-e448-401c-98c2-9c6c12648d5d", + "id": "829e96f7-09bf-4938-bf3d-9aea58c885fe", "name": "Too Many Requests - Returned in response to too many requests in 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": "c42d24ea-f9f7-4048-9ba2-267a3c3efcec", + "id": "137e2ae0-ad0f-481f-8e23-dccb0540e00c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80248,7 +80248,7 @@ } }, { - "id": "498c2028-fe03-4b9d-a408-27cc4fcbe008", + "id": "3e9b9bda-ae28-4580-a918-166c429ad408", "name": "Create a Role", "request": { "name": "Create a Role", @@ -80290,7 +80290,7 @@ }, "response": [ { - "id": "8cb07c51-0f23-469c-92ba-dfb676e47158", + "id": "ec249650-97b4-4308-8627-ea265e7e5517", "name": "Role created", "originalRequest": { "url": { @@ -80346,7 +80346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6de9d1c1-823a-452a-9977-a53d6598402b", + "id": "61e7c715-3f0d-48c8-bfdd-34c0eaa1cfb0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80402,7 +80402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d25448c4-fb54-4346-91c6-266ea1d66732", + "id": "d5c30649-2677-4606-a675-b5b79c36ffcc", "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": "42a67eac-afaa-4ef8-afb4-e87c72855556", + "id": "9099f8da-a62b-4851-8c76-54ab0456150f", "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": "b37bb0bd-024d-46b0-87ae-8ce24d6b1be6", + "id": "bf777c18-42e4-4e1f-9df1-b88f4ee10ecf", "name": "Too Many Requests - Returned in response to too many requests in 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": "0df5858c-8c67-473d-9f99-28185d117131", + "id": "f6d34dca-2b6b-404f-baf7-e33b29bbf95b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80632,7 +80632,7 @@ } }, { - "id": "ffd55212-b7e9-459f-8466-bb3a310a206a", + "id": "7a220b42-3d5d-4a98-b434-63093b73db09", "name": "Get a Role", "request": { "name": "Get a Role", @@ -80673,7 +80673,7 @@ }, "response": [ { - "id": "64f6a0d1-4bc7-4cfc-a833-0d8dd96680bc", + "id": "09b789fd-dc64-4d28-afbe-3f1a891877ca", "name": "List of all Roles", "originalRequest": { "url": { @@ -80717,7 +80717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dafba2db-f3df-44af-8151-7a1a86ebfddc", + "id": "418fd034-20cc-486a-9adc-4e778c1ea8e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80761,7 +80761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6ac73f4-f2ea-40a8-9836-3dc59b949e81", + "id": "f402842e-092b-4f54-99e4-2a2b51a25d5c", "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": "1fe8bb45-77e3-4639-a50f-e3a5f69cfca8", + "id": "1f063d07-6f5c-4acc-87a6-b1849b308c78", "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": "651a5e73-93af-492e-b9da-f4ec5cea1b5e", + "id": "f48e07ed-5cc6-4f58-bd6c-3c7c91f3fbb9", "name": "Too Many Requests - Returned in response to too many requests in 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": "79415323-172d-44e2-8c03-2906709311c0", + "id": "9574b96a-6930-4cd5-b17a-d456f683dbd5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80943,7 +80943,7 @@ } }, { - "id": "2f62078d-a020-4039-b6ab-864a58ff3095", + "id": "e5085b70-5778-415e-bdb8-398e4910c195", "name": "Patch a specified Role", "request": { "name": "Patch a specified Role", @@ -80997,7 +80997,7 @@ }, "response": [ { - "id": "d5c30a58-5bb0-4469-9609-74bf6fd00751", + "id": "2a11a364-52fa-4b50-9313-50a122fd6cdf", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -81054,7 +81054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cadaa3eb-49f2-462c-8e97-420dff6f99ac", + "id": "96267e03-d9ee-4c4b-83ed-90b3b6b542d0", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -81111,7 +81111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d46fe355-29f3-4be6-acc2-68c04a81c23f", + "id": "51bbe657-f393-4919-b329-0312be4be649", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -81168,7 +81168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e281daa-09a0-4682-99e9-ff3665a6eb46", + "id": "2b2c2256-13f9-45c9-86c7-b73693e0d65e", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -81225,7 +81225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9860532f-1ebe-402c-9425-fd68f0654608", + "id": "da5116a1-654e-4d4f-a188-8aeeef349edc", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -81282,7 +81282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "163056b0-4d68-4ae7-82e4-b635f03fb757", + "id": "a61ccb7f-5a23-49ac-952c-ff7081e01a75", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -81339,7 +81339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bafe2102-e6d5-4222-98e9-752302c06d64", + "id": "78271987-b581-46ba-b581-7c9b615dca73", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -81396,7 +81396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7f1b40d-0da7-4114-bee2-ae122a151522", + "id": "f358fc81-5c9a-4218-b378-854e47257a5a", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -81453,7 +81453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f154deaf-35a8-4b3d-b052-f386716311c4", + "id": "985d9601-2d78-4192-b2f4-d82ef2e2cf87", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -81510,7 +81510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae38423c-55a7-47e3-a57b-ece2bfebb6ff", + "id": "d81afd7f-851b-4e7f-8ea1-182a99132de2", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -81567,7 +81567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f732b58-3c95-4d37-b507-df5103c02914", + "id": "c6c478dc-7684-4f36-8d05-b5844bedb31b", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -81624,7 +81624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bf01185-c86f-45ef-b3ed-731af34c92ed", + "id": "28e4a76c-4145-41cf-86e6-757df265d2be", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -81681,7 +81681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65fa3ee2-ecfb-4b7d-bfb8-fbf924733eb0", + "id": "b0bafc89-1c6f-4d0b-87fa-366d81cbbb25", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -81738,7 +81738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fc49506-1f58-49ae-bb5d-61291cb548b6", + "id": "b393028a-47e6-49d0-ae7d-a6afc11606d1", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -81795,7 +81795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "779e5b00-55f2-45f4-a3cb-35ed112a6b72", + "id": "37a945b0-58a3-4524-8580-7e624e2c703a", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -81852,7 +81852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7edf4556-4daf-4efc-9229-0ce920dec512", + "id": "7ca41a77-030e-42a6-b0f7-29f27798267f", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -81915,7 +81915,7 @@ } }, { - "id": "973e12bd-856d-4bbb-bf8f-5b690f65d585", + "id": "fb01d052-2acc-43f2-84df-8a560f5f2556", "name": "Delete a Role", "request": { "name": "Delete a Role", @@ -81956,7 +81956,7 @@ }, "response": [ { - "id": "e9b46d2d-0e4f-4159-a803-c6cc62f187fd", + "id": "c488229a-4a5d-4d10-99d8-175936610717", "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": "61dbbf29-fdde-4a9f-8bb8-cab8e85a676d", + "id": "c5ab45f3-343d-4e16-8fa4-4fefed4f20f2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82034,7 +82034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f5255da-1904-4ef3-8cd0-570f66767751", + "id": "f3c30bf3-76f3-4f87-9d23-770ecfc1cf70", "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": "c777df73-831f-4118-923f-73b06f6d9996", + "id": "0eafc7a3-8783-40db-9474-f85b1431e364", "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": "91698708-7a00-4b55-8f25-d57080460a3a", + "id": "c73138a8-e5cd-4f0a-b6a9-b3ee4e2ae1e4", "name": "Too Many Requests - Returned in response to too many requests in 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": "778c5d1a-c34f-4466-9c04-e3c166ea2138", + "id": "11bdc84b-51bf-4629-8156-e60921aba480", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82216,7 +82216,7 @@ } }, { - "id": "1036d6f0-8d6e-4e94-a1b9-5093d0753649", + "id": "1ba0bd46-1c6a-4734-8fa2-35b3d7a95616", "name": "Delete Role(s)", "request": { "name": "Delete Role(s)", @@ -82259,7 +82259,7 @@ }, "response": [ { - "id": "e59e3be0-98d3-4191-badc-032c1809028b", + "id": "5a44df75-c443-463d-b828-34d6c792e815", "name": "Returns an object with the id of the task performing the delete operation.", "originalRequest": { "url": { @@ -82316,7 +82316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b429d6e0-9af7-4c4c-98fb-e4fab4324a29", + "id": "4eb89da1-3454-42de-9916-32be0a61993c", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -82373,7 +82373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3aa9e43-f2c3-4b75-8354-0c449824b6d0", + "id": "a11a5559-e2c7-4693-b98b-dd772bcc8ffa", "name": "400.1 Role ids limit violation", "originalRequest": { "url": { @@ -82430,7 +82430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4918213-cffb-498d-80e3-cf8ef0f61cbc", + "id": "fa6f0d86-c0ec-41ba-a131-a63a428a6ad8", "name": "400.1.404 Referenced object not found", "originalRequest": { "url": { @@ -82487,7 +82487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e616d3c-0af3-46ff-bcda-7c0a5f962caf", + "id": "da227338-ea67-481f-bb87-4c4f9fc0add3", "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": "2f988faf-9041-4a2e-b4d3-5589598ed9c0", + "id": "25180387-3744-4856-9455-1a40741ce06c", "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": "e64b0052-f3c1-429f-84e2-7ecdbe018cd2", + "id": "9ed10b61-e384-4cb0-bcf5-7c7abaae2b92", "name": "Too Many Requests - Returned in response to too many requests in 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": "d80f0c43-1ba4-418f-b8a0-c2915793e57c", + "id": "a50890b6-3836-4d6a-8ecb-14ac595c321e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82721,7 +82721,7 @@ } }, { - "id": "e438172b-9ee3-43e7-989e-7edea8e8001c", + "id": "43316172-fcd5-4ca1-b5da-2f9922feda7c", "name": "List Identities assigned a Role", "request": { "name": "List Identities assigned a Role", @@ -82806,7 +82806,7 @@ }, "response": [ { - "id": "e08e0685-8001-4b0b-8d98-660f56187291", + "id": "bd33a004-d79f-4fb7-b4e6-26ecff012ac5", "name": "List of Identities assigned the Role", "originalRequest": { "url": { @@ -82897,7 +82897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "303374ab-910c-4f53-bd62-5b94e1f35e7b", + "id": "28daad34-0bbc-4a99-9111-779d048649e3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82988,7 +82988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ded7e65a-0346-4454-aebb-c34ce75988af", + "id": "5967881b-6478-4626-bdc1-4cbaf1ecec3f", "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": "e6a7b90b-d071-4d94-a06c-95a29a8eb1b7", + "id": "bd25eb88-a6f2-45af-8405-7304ea13000b", "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": "02c2e8af-f4d6-474e-a563-31f46bbd6df7", + "id": "f18e3848-754e-4814-9469-af9040f502c8", "name": "Too Many Requests - Returned in response to too many requests in 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": "d353b6ac-bc4b-4a8a-a9e0-d696c0cfa8fb", + "id": "702f58d3-de17-4511-aa7c-41c9699314ae", "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": "36051e42-cb45-4f77-ac64-246b158cdff3", + "id": "66e1d501-5fd6-45aa-816d-639cb1f51070", "name": "Create a saved search", "request": { "name": "Create a saved search", @@ -83406,7 +83406,7 @@ }, "response": [ { - "id": "9daf2e53-4de6-42b4-ad9f-684db719b818", + "id": "8ccf4f72-635b-4e53-b50b-ef0bb7849e1a", "name": "The persisted saved search.", "originalRequest": { "url": { @@ -83462,7 +83462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c83c9d4e-a37a-44e0-b9b4-a4d42c887e8e", + "id": "fdf38dbe-761c-4e61-a48e-08a2645774c3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83518,7 +83518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab049184-495f-4908-847a-2c922e5194c9", + "id": "d0f81a9a-8eaa-4b76-9d30-72a696646be5", "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": "b51aed7b-77e3-4744-a233-3adbc316df47", + "id": "8c9f27c0-571e-4943-bcfe-15103f7f5882", "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": "c0819059-2532-4246-ba88-f9750fdc4e10", + "id": "957090fb-ea1b-4255-8443-3aee8738cb36", "name": "Too Many Requests - Returned in response to too many requests in 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": "a4987f2d-6f02-4e76-b6ee-fc24784d663b", + "id": "5927596b-a496-43c8-940c-087e89a6a472", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83748,7 +83748,7 @@ } }, { - "id": "1c3a94e5-4904-4b41-90ff-1184e0ece90c", + "id": "305943e5-e030-40f8-99a0-0440cbce1ddd", "name": "A list of Saved Searches", "request": { "name": "A list of Saved Searches", @@ -83814,7 +83814,7 @@ }, "response": [ { - "id": "0a950469-e666-4051-9a6f-3d61f9575d11", + "id": "6a6a15d6-cae1-4340-a8f0-38a526f2bc6d", "name": "The list of requested saved searches.", "originalRequest": { "url": { @@ -83903,7 +83903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3714437b-991a-4b43-af19-5e6588c83098", + "id": "c8ab9928-c64b-47d2-a945-d683f87b3a1f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83983,7 +83983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19e2bc48-e577-43e5-8aa9-34dc4dc0f927", + "id": "91627304-5709-4edc-aabb-998de11d49bd", "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": "576bed46-1780-41a2-a8f1-377f85d776a6", + "id": "efb5c0a0-0ef8-4f1d-a167-902f64c117b6", "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": "87679780-8ae0-4b82-bf6c-c058dc8bcb21", + "id": "707845be-22a6-47de-85ea-984806fb350f", "name": "Too Many Requests - Returned in response to too many requests in 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": "cc8a1af2-3305-46a7-971e-c5e17484049c", + "id": "84b7dcac-9bc1-426f-a4ce-8aee92a79200", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84309,7 +84309,7 @@ } }, { - "id": "cc23b0b2-3b0b-4b8d-8a52-353e54564ce2", + "id": "85ef7c89-e5c0-4d99-a74f-8a12d77262d7", "name": "Updates an existing saved search\n", "request": { "name": "Updates an existing saved search\n", @@ -84363,7 +84363,7 @@ }, "response": [ { - "id": "4403119f-61a7-43ae-a1f7-b6789fd79fc4", + "id": "4c9d738a-6c80-4e11-abd6-93083d361217", "name": "The persisted saved search.", "originalRequest": { "url": { @@ -84420,7 +84420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51f3ec4e-9864-43ee-8c87-f0ddc2412a5c", + "id": "b055c974-eee1-46d6-9b84-24eac6ae3d86", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84477,7 +84477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36ca0066-67ea-47cf-9001-ee0c64053870", + "id": "c4895ff9-f9cc-4e38-86c5-be83c8f1d7f1", "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": "2dfbb8bc-2427-45fd-81cd-46255e4c13e9", + "id": "e6c72571-9b7c-4550-9193-c3ae6bce94b5", "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": "afc95caf-25dd-45af-9098-6517734380d3", + "id": "d36c91d4-7041-4c3a-a25f-caabf478d20c", "name": "Too Many Requests - Returned in response to too many requests in 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": "cafc05d8-82cc-4197-8890-e53a6a2e832d", + "id": "2aeae8e7-6b55-4da2-8862-b9f8c6f34f27", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84711,7 +84711,7 @@ } }, { - "id": "a25362e9-de9d-40c7-9a87-87ec8bae872e", + "id": "73286bea-392f-475c-b63a-131e2262599d", "name": "Return saved search by ID", "request": { "name": "Return saved search by ID", @@ -84752,7 +84752,7 @@ }, "response": [ { - "id": "874bc8a0-0bd0-42e3-a8be-3da6c6d4bccb", + "id": "2b31ae1a-940f-440e-9ad1-ad158dab10f6", "name": "The requested saved search.", "originalRequest": { "url": { @@ -84796,7 +84796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19443f06-4321-47e0-aa30-78289e0f17f4", + "id": "d5cfd369-f306-464b-adb4-4316e91ff0c6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84840,7 +84840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fbe1cdd-36f0-4a4b-a257-acac997b0e05", + "id": "4187c4bb-3c55-4d37-b314-870f689ecc2b", "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": "3f85b771-00da-48d0-b675-dc33902f64f1", + "id": "c8d8f175-bbf4-417c-88b2-39028f99a0ba", "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": "ebcba162-e348-4359-85ba-c7b72b225576", + "id": "1f073931-6ac5-420a-9f43-de7c07027df0", "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": "f75495de-d6c9-4acc-8f94-54d88beb83ee", + "id": "750b4818-8f72-42b4-ab28-11cf93dad31e", "name": "Too Many Requests - Returned in response to too many requests in 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": "27a4de23-9c56-4d71-9000-12d91260d4a6", + "id": "e4c84410-e8bf-4da0-ad81-d3ba35589670", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85066,7 +85066,7 @@ } }, { - "id": "907135d1-c179-41ea-b0b1-271e2020820e", + "id": "858a00fa-be3e-4aff-8bc2-6d5e24cd7cc7", "name": "Delete document by ID", "request": { "name": "Delete document by ID", @@ -85107,7 +85107,7 @@ }, "response": [ { - "id": "5a664ab4-eb1b-48e6-ab4a-bc0173520c87", + "id": "731ba5ad-a9d6-4ab0-87b9-76441d19e1a9", "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": "d0fa1e8b-f55f-49e6-a385-e85cf7efc1ad", + "id": "6598ddba-c758-49d2-bec0-e7e09f93d897", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85185,7 +85185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70735cc6-e6c9-4247-8aa8-c17d8d4b1c0a", + "id": "0b2114e1-808b-425e-914d-ba6a0f337ca1", "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": "e3d6da2e-4fac-4e45-9e3d-02a31ff06e99", + "id": "87d33ca8-d955-4a2c-bd34-9cb86c08a952", "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": "612ccb2a-925f-4cbe-9485-3cb67e8ab030", + "id": "23db5832-893e-4319-a5ff-17e3b7b6fde8", "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": "856c7c64-dee7-4716-a83a-dab9a15dcfda", + "id": "dc545ca1-a48b-4e70-a57b-66cfab84016c", "name": "Too Many Requests - Returned in response to too many requests in 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": "375af325-b2ca-43cd-9b81-f09992a027b3", + "id": "345b06f5-9962-4451-a450-80b961a97548", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85411,7 +85411,7 @@ } }, { - "id": "f2846fbe-6823-4ccd-b702-46db415d9277", + "id": "ba7b36be-4662-4c63-b000-50eea4f1b98a", "name": "Execute a saved search by ID", "request": { "name": "Execute a saved search by ID", @@ -85466,7 +85466,7 @@ }, "response": [ { - "id": "b72bcc88-fe1a-4dee-bedc-a3f11b55014a", + "id": "efa63777-5b3b-48af-9df5-e37cf426c9b4", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -85514,7 +85514,7 @@ "_postman_previewlanguage": "text" }, { - "id": "17f6666e-ff5f-4dbe-bfae-ec7538200a91", + "id": "3a499fd0-1a4c-4872-a16a-da6db4d348e6", "name": "Triggered by Scheduled Search", "originalRequest": { "url": { @@ -85572,7 +85572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77eac3a7-919f-45ca-9526-4f92c8790f38", + "id": "2c0c22bd-c576-4647-b0cb-ffed31933385", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -85630,7 +85630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "633a70b8-5cd6-4005-a9ba-f78f1831b947", + "id": "1aba3808-7a47-43ba-ba7f-8d10e4cfd56c", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -85688,7 +85688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31da2444-4c05-4407-9e7e-bbef0f6a35da", + "id": "42a1878c-6ae4-469a-b62b-551f87d64fae", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -85746,7 +85746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ba1c252-6893-46ad-b556-7dc45e1aa591", + "id": "fc262401-7a14-4217-8b19-1af4bb55b321", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -85804,7 +85804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc05a5e9-9192-4c15-851a-982b574fa1ca", + "id": "6ad76026-22b9-4deb-8c4b-8689a2e099a0", "name": "Triggered by Scheduled Search", "originalRequest": { "url": { @@ -85862,7 +85862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8bb468e-1d84-4132-b1d4-fb781f03a0a3", + "id": "2a46d854-8b1e-445f-92f6-b83fad615dd6", "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": "08b8300b-ade1-4f7d-8de4-c4c16bad612a", + "id": "f5a8e686-8d53-4089-9dd7-0c430774876a", "name": "Create a new scheduled search", "request": { "name": "Create a new scheduled search", @@ -85974,7 +85974,7 @@ }, "response": [ { - "id": "fb3fc2a9-ec87-42d1-8ee7-503e9e69eeee", + "id": "90819f0a-ab43-4e74-978e-62456040354a", "name": "Daily Search", "originalRequest": { "url": { @@ -86030,7 +86030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "870f13b8-9fdd-46fb-8b54-e256a3ea72e2", + "id": "40bca291-5e72-4dec-8b7c-fbbf77e8a6ab", "name": "Weekly Search", "originalRequest": { "url": { @@ -86086,7 +86086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c65b167-d110-4eab-839f-0d7d00061078", + "id": "3d4612da-5007-44cb-a491-bb0041e6d9be", "name": "Monthly Search", "originalRequest": { "url": { @@ -86142,7 +86142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baffae7f-bf2e-480b-9dd9-6c8487da76b5", + "id": "99368373-901b-4dd7-b59b-1ec0d1d93af9", "name": "Annual Search", "originalRequest": { "url": { @@ -86198,7 +86198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01e02eed-e209-4b0e-ba38-2bcbb0cb064b", + "id": "f4cf7e5b-c0ec-433b-8730-815ad7cf43c6", "name": "Calendar Search", "originalRequest": { "url": { @@ -86254,7 +86254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccd50996-0d51-4271-a083-3aa26927f7f9", + "id": "14a5fb10-7630-4283-a350-570ec0f16ea8", "name": "Weekly Search", "originalRequest": { "url": { @@ -86310,7 +86310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b0896b4-29b1-4b67-b764-b857b20386f6", + "id": "55ee63e4-26f9-4bbe-b041-b1f8c6eca30e", "name": "Monthly Search", "originalRequest": { "url": { @@ -86366,7 +86366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68703dac-1df7-405e-bd07-e8d88fd76345", + "id": "36508288-7e17-4d64-8070-1b75b183c6fb", "name": "Annual Search", "originalRequest": { "url": { @@ -86422,7 +86422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "498ccec6-cad8-4e38-bb60-4c7dc68e514b", + "id": "42152365-0ad1-452d-977b-13c3927155f4", "name": "Calendar Search", "originalRequest": { "url": { @@ -86478,7 +86478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d5e554d-bb1b-40de-87c3-be7daaf45ef8", + "id": "d0b98266-cd4b-4005-ae0b-e6bb503c5d01", "name": "Monthly Search", "originalRequest": { "url": { @@ -86534,7 +86534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "597f838c-895f-46ac-a2b4-68edc97a8dd4", + "id": "e57336e8-feae-4ac9-92d9-12fc9e411e67", "name": "Annual Search", "originalRequest": { "url": { @@ -86590,7 +86590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad2961cd-65b5-43b9-ae5a-57a9deda42ce", + "id": "60e808be-84b9-43ce-be79-b820629cded3", "name": "Calendar Search", "originalRequest": { "url": { @@ -86646,7 +86646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abcd8ca7-c780-4738-8cc7-32a596e84fc8", + "id": "299d9e08-ed8f-4015-8c5e-662a9c87ffcf", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -86702,7 +86702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35f9fb93-1211-4e6c-b0ca-0543aabf13ed", + "id": "ba7beed3-9445-4c54-8711-178500ec7ed4", "name": "Calendar Search", "originalRequest": { "url": { @@ -86758,7 +86758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "841db8e6-b19c-4f1a-bed6-0e2313db52c0", + "id": "8afee38f-1e3a-4c59-a85f-41f74d9fdde1", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -86814,7 +86814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18c8de62-4edc-4dd0-b9be-f02d652a3ea8", + "id": "9b128881-c9b1-40d4-8e61-056bd2483284", "name": "Daily Search", "originalRequest": { "url": { @@ -86870,7 +86870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c213b87-0ea3-4e98-a11e-18c8a01666fd", + "id": "5a797bf1-098a-4b58-afa0-526d9f6e7476", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -86932,7 +86932,7 @@ } }, { - "id": "417e979d-4ccd-45c3-96a7-5966be4db149", + "id": "c728e880-294e-4fbf-97d8-d1aceb2df6af", "name": "List scheduled searches", "request": { "name": "List scheduled searches", @@ -86998,7 +86998,7 @@ }, "response": [ { - "id": "3d5eb4dc-04e8-4c1f-88ba-7c5149fa6ed8", + "id": "21af5e59-1895-4e89-a061-557191260f12", "name": "The list of requested scheduled searches.", "originalRequest": { "url": { @@ -87087,7 +87087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9784f6b-0048-4579-9e05-e4754b0ab9ed", + "id": "aa98624c-372c-4c50-9c9f-2cbd4abe80db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87167,7 +87167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "101d461d-0465-4a95-9dcf-3ef465fcb159", + "id": "10e8eef4-67bb-42c1-9529-e136a8dec36b", "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": "b6f86d54-9b88-4c15-8710-643ffa52d44d", + "id": "cc87fc9b-9ba4-4a29-8c71-52a602b14fa1", "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": "e17ded42-0250-445a-8ebe-92c5916e5278", + "id": "93dcad21-7f25-4a3f-adf4-18cf3b9a77e7", "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": "a3631b81-db00-4cc7-9137-fbeab33664ce", + "id": "d489b84c-b4ec-4954-8f59-100d907d0aef", "name": "Too Many Requests - Returned in response to too many requests in 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": "6897563c-4c37-46ac-8a5e-88bb1319ee78", + "id": "63a48f67-5f91-48c3-9527-82f16a3ff7d3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87573,7 +87573,7 @@ } }, { - "id": "48a15693-6d57-441e-bf51-5819fd1063e1", + "id": "5d5abc50-1d37-4686-b62a-b512ee6f825c", "name": "Update an existing Scheduled Search", "request": { "name": "Update an existing Scheduled Search", @@ -87627,7 +87627,7 @@ }, "response": [ { - "id": "5040b396-b46e-477d-baf3-83c36c9eaca8", + "id": "24897945-b072-485e-bc35-5f67dda4efa4", "name": "The persisted scheduled search.", "originalRequest": { "url": { @@ -87684,7 +87684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e70ad72-4ce1-4e49-91dd-b0bb2e4e9381", + "id": "cf988425-debe-499b-8a30-6a835c031c81", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87741,7 +87741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6220ffa8-6f31-42c6-b47d-f3e801b1aea7", + "id": "9a1b06f4-b361-4dc5-9215-e054b3ebf957", "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": "80d4346d-5e69-43b7-b16e-e42c939ab127", + "id": "536db67f-4779-45ef-a2fe-1f07b27454f7", "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": "cd5322db-6df1-4499-a038-9bdb263996d5", + "id": "6eadff37-d630-4ead-b3a0-e1e01acf0aaf", "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": "04279a2a-59ad-4abb-bd4b-d0e08967c1d5", + "id": "cdfb2a3d-4ff6-4a85-9d7f-7e6d42348352", "name": "Too Many Requests - Returned in response to too many requests in 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": "b562cc5d-e44c-4390-90d9-564a88578b25", + "id": "687221b3-e33a-4540-ad12-64d171ba2afb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88032,7 +88032,7 @@ } }, { - "id": "09484ab2-3149-4fb7-b60b-310f5f623359", + "id": "73c99376-d7e4-46d8-8243-cc972d4ba3a4", "name": "Get a Scheduled Search", "request": { "name": "Get a Scheduled Search", @@ -88073,7 +88073,7 @@ }, "response": [ { - "id": "f34ff26d-bf01-4b08-9ca2-da88a13deafe", + "id": "9f54079d-13e1-4dbc-85c3-52588035f153", "name": "The requested scheduled search.", "originalRequest": { "url": { @@ -88117,7 +88117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a69ef07-6ed1-4f84-a35c-9f311fd99e79", + "id": "d730edfc-3e2e-4dd8-b63b-7318489a05d1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88161,7 +88161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa1cec4d-ddd4-4114-b523-830cc2bbc9be", + "id": "58e80659-047c-445e-ac2f-5343479a7bdd", "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": "5c37924e-e196-4ecc-81cc-faf3bde89d5c", + "id": "a25bdc00-dd7e-484f-b191-7574fdbbce3b", "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": "aa4da290-35b3-4b72-88ab-ce53e74f539b", + "id": "2b12d0b3-1582-4e31-9c17-282ab7ae1148", "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": "390e042d-f911-4dde-9ab1-13e08312f65f", + "id": "28e1205b-f6e1-4dbf-9a70-7bc8e754938b", "name": "Too Many Requests - Returned in response to too many requests in 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": "61a3778a-3b88-4a4e-b359-ee7553312bec", + "id": "3ac8626c-e87a-4a18-9945-e2bae12e4869", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88387,7 +88387,7 @@ } }, { - "id": "e1d6bf11-f766-45f8-a0a2-f723964a0846", + "id": "4152b707-cc81-4e95-b448-db6f94a148ea", "name": "Delete a Scheduled Search", "request": { "name": "Delete a Scheduled Search", @@ -88428,7 +88428,7 @@ }, "response": [ { - "id": "b3481efc-2749-43cc-9d52-c444b8322178", + "id": "0ccec6fe-3072-4bce-8960-e65ba149615c", "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": "861ab1ac-5d06-4dd6-b08f-db1219547f6e", + "id": "f5e3cd99-4764-452b-bd7a-64285b4cd458", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88506,7 +88506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9df72694-c39b-4bb3-b7d0-c323fbe9bfe5", + "id": "ef1e0e75-50c3-4277-bb2d-429c3dcb2903", "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": "0f6f0ba3-c9d8-4aaf-aabf-ce8fa1e49e78", + "id": "39065eaf-e5ec-451f-8f8c-b16d5fe95d3d", "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": "01908e61-fdfa-493c-8d70-8b6c5f9dba2a", + "id": "c424d29b-235b-4539-8df8-6aa09f7baf83", "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": "99215035-aacb-4551-bb5c-fa83a53f60ab", + "id": "59267dd1-9a1f-4c9b-b016-99b455bdb465", "name": "Too Many Requests - Returned in response to too many requests in 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": "3d798042-d1b0-4095-aa9c-b0065d06c25d", + "id": "add91aff-ec1e-4992-956a-0f9ff50e34ca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88732,7 +88732,7 @@ } }, { - "id": "8cac57e9-3ff4-4461-9770-5a9803476207", + "id": "797702b7-92d5-4368-90e6-81f6fb91cc5d", "name": "Unsubscribe a recipient from Scheduled Search", "request": { "name": "Unsubscribe a recipient from Scheduled Search", @@ -88787,7 +88787,7 @@ }, "response": [ { - "id": "bc5f5e38-dd3a-489d-9f42-86942af02f9e", + "id": "83a3d73a-ac07-4015-a965-21cf68be5bc3", "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": "43c39a05-633b-41b4-9804-6dbd6a12fbec", + "id": "691f8e8f-62c4-4f9d-a36a-9eefe5c083cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88893,7 +88893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec07bbc5-b895-4e7c-859f-6b8aeecb60be", + "id": "038f298c-476e-4954-a039-22f59f2ec4f1", "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": "1b3c2b22-3596-4307-a552-0f4eb2f0317c", + "id": "c44af164-252c-41c9-a36c-d0a1e2feb31c", "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": "be71b005-3c0c-47fd-a780-dd395cc8652c", + "id": "97ab53f9-cd75-4d6c-9d48-7f6497203b1b", "name": "Perform Search", "request": { "name": "Perform Search", @@ -89091,7 +89091,7 @@ }, "response": [ { - "id": "0d1f5c0b-97a6-430a-bfdd-3473aca70ab8", + "id": "35aafb3e-fb3e-464a-9ed5-6190361859ce", "name": "A collection of AccessProfiles", "originalRequest": { "url": { @@ -89184,7 +89184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3d7dd19-1338-4539-8839-0d3531a2b019", + "id": "b9b847db-0a65-40e3-a3a2-ed24687fa42e", "name": "A collection of Entitlements", "originalRequest": { "url": { @@ -89277,7 +89277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12fe7a53-683a-4b5e-a6e4-22fca6a24a0e", + "id": "cd4041b5-2b06-458a-b32c-6fd3cb99c6f2", "name": "A collection of Events", "originalRequest": { "url": { @@ -89370,7 +89370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "205e3ef4-225d-453c-b66c-4d8327d835a8", + "id": "550187a2-0e06-4824-b17f-c9294ff4a975", "name": "A collection of Identities", "originalRequest": { "url": { @@ -89463,7 +89463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "222651cd-5cfc-4410-9832-43f4e2be79f8", + "id": "a2bea0d3-e87b-49f5-9eba-09449e7027a8", "name": "A collection of Roles", "originalRequest": { "url": { @@ -89556,7 +89556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ffdd47d-eef3-4052-aecf-34866a371827", + "id": "401fb2b2-82cf-4c1a-9c00-3b4f3857f953", "name": "Filter with Exists", "originalRequest": { "url": { @@ -89649,7 +89649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d70664d4-c4cc-471b-bcee-6a79407b4b28", + "id": "972528e2-43cf-4c43-bc8e-dbbfe0536cd9", "name": "Filter with Range", "originalRequest": { "url": { @@ -89742,7 +89742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dad1917b-25b8-4db8-a9ff-f4e8dd9c48c7", + "id": "089a3621-a382-4574-b9df-e3fb6635f96d", "name": "Filter with Terms", "originalRequest": { "url": { @@ -89835,7 +89835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a242d1e0-e274-4278-b0ed-a52ad6436f4b", + "id": "aa0e3a8a-8ff3-459b-a882-62d91762400b", "name": "Filter with Exists", "originalRequest": { "url": { @@ -89919,7 +89919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "677f9c13-1d8c-404e-a369-26a351af8829", + "id": "0ddf5c50-4332-428f-b123-7a93a57f783f", "name": "Filter with Range", "originalRequest": { "url": { @@ -90003,7 +90003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b79f628-e276-400a-8e09-34410a76e048", + "id": "8ee8bbc4-c4ae-4dd5-8763-e152894a1b85", "name": "Filter with Terms", "originalRequest": { "url": { @@ -90087,7 +90087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8bfd498-26ed-4734-b408-16c64b2fa1de", + "id": "f54ed3e4-0ccc-4d83-8e20-a61f3c2c47cb", "name": "Filter with Range", "originalRequest": { "url": { @@ -90171,7 +90171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13646654-74ac-4266-b1b8-30d9bd60c454", + "id": "c9bed2a3-25e3-4c5d-ae89-762b5b84a300", "name": "Filter with Terms", "originalRequest": { "url": { @@ -90255,7 +90255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edf1a38d-f874-465c-916a-d061a556cd96", + "id": "0676f9d4-77fb-433f-a9d3-0d9de333963d", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -90339,7 +90339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60e249df-6114-4746-a920-db3be6bbd715", + "id": "9981f32c-b98d-4a4a-8254-fb9dd803f54c", "name": "Query with Fields", "originalRequest": { "url": { @@ -90423,7 +90423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec9df36f-021e-478e-bdbd-f94407da6d56", + "id": "1818eda3-12d1-4c62-bb8f-c312058b1127", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -90513,7 +90513,7 @@ } }, { - "id": "c31386cc-7a63-43a6-a335-e70627c83d90", + "id": "15639668-de23-40ce-9413-fdfa2f08bdfc", "name": "Count Documents Satisfying a Query", "request": { "name": "Count Documents Satisfying a Query", @@ -90556,7 +90556,7 @@ }, "response": [ { - "id": "06985846-026e-4fa4-b945-47ff72a28c7b", + "id": "07bc39f2-a606-455a-85fc-08c7a7a09c15", "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": "ac2f7d71-b985-4d62-8382-9026cfa1f5e7", + "id": "e45bb0f9-5418-4218-a6f8-88c0809d0e91", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90670,7 +90670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "055ac8c1-3232-4100-93b5-9e663716e5a8", + "id": "eb67faea-c888-48c9-af58-82b90deeaa62", "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": "f0036a91-b104-48b2-977e-c6c759519e3f", + "id": "dd25c844-6a41-4add-b695-fb13b69a8f86", "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": "1b0c2202-ccf4-406c-bcfa-05f1e83f4d68", + "id": "8e7e7acf-e8c4-4ac6-a120-11f243bff7e6", "name": "Too Many Requests - Returned in response to too many requests in 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": "fba154c2-c2b9-42e6-a7c9-faa185447383", + "id": "b933b917-4388-433b-997a-76a5619b8feb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90904,7 +90904,7 @@ } }, { - "id": "9150ccd6-7f03-4f82-bf71-4f5f12a32ab6", + "id": "4222d521-9870-4fb5-972a-871565288d72", "name": "Perform a Search Query Aggregation", "request": { "name": "Perform a Search Query Aggregation", @@ -90975,7 +90975,7 @@ }, "response": [ { - "id": "05b8406f-18a2-4d1f-96dc-229265abc409", + "id": "afc1e7e5-04a9-40e1-b422-f26bbf9e5617", "name": "MetricAggregation", "originalRequest": { "url": { @@ -91069,7 +91069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90d284ab-1f43-4a64-aebe-c71e2fa7dc48", + "id": "c806d573-b275-477a-be6c-e1cc830b7392", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -91163,7 +91163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08edcd1d-12cb-4b54-a910-3d1d3bcef8ea", + "id": "12f5f707-b008-472f-a625-5deea324a41e", "name": "BucketAggregation", "originalRequest": { "url": { @@ -91257,7 +91257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88126c8b-d607-4922-bdf1-90cf73464438", + "id": "293d87a0-f412-428f-9346-ae31d00d4882", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -91351,7 +91351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c967a4c-35d9-40da-aef6-22b210e4180a", + "id": "b6fdbfba-4f48-41af-90a5-f375ce05f9a2", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -91445,7 +91445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db844155-8187-45ba-8268-0a3883d154e6", + "id": "2d3c5b90-0d17-40eb-812b-febd3755c199", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -91539,7 +91539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e3c0617-dc0a-4357-b234-70b48cc354ae", + "id": "f2d08ca6-9821-429a-add5-ee631abde920", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -91633,7 +91633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d4c3f56-db16-4672-a4e7-fb92aaa7a564", + "id": "e8c22dd2-4a8c-4fb4-b16e-97ed4f158fc3", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -91727,7 +91727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed601845-d387-4fd1-b694-5c25824c7047", + "id": "2344fc95-9a61-4ee6-adf2-f484eea17d69", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -91821,7 +91821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61563dc2-2ea9-4b55-92bc-bb5420a64f27", + "id": "939835d9-ee78-4315-8654-8faca266eb56", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -91915,7 +91915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6405e02d-b53d-4fcc-b48e-1eb54c8132df", + "id": "72a0d822-8712-42e7-b75e-59c6d1791e0b", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -92000,7 +92000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b65e3066-3876-4352-84a6-4d14a36bfaf5", + "id": "2ff94e3c-6a57-4ae5-b494-3aeeac353182", "name": "BucketAggregation", "originalRequest": { "url": { @@ -92085,7 +92085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc7e3377-aa8d-435f-a0e3-7383f01c2ffb", + "id": "70341a9b-a65e-4624-a577-6cf868e3c152", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -92170,7 +92170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "717b6a3b-d772-4952-bc9f-ae0d900e307b", + "id": "bace4435-a974-427b-92ca-e3889aea2377", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -92255,7 +92255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97b659c8-b016-44c4-8c7e-0d27039555b7", + "id": "0086f83e-525b-4554-9e88-14378ea88e30", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -92340,7 +92340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab35c8a6-1acb-4b9d-93ad-e39ac80a9d38", + "id": "a9f9634a-0604-4f79-931d-304120e36480", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -92425,7 +92425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4027166f-2825-4adf-a76b-22a9576096e4", + "id": "c8875633-b5bd-4368-a8dd-3c0db06ccbd4", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -92510,7 +92510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97f1dc6a-c87c-4f80-9d47-7c2089f4a962", + "id": "ad148576-5ac8-444f-a814-6310daae7c74", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -92595,7 +92595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a2abc41-0ead-43f6-99d6-67d825c6e804", + "id": "9a0ba163-d4bd-4efa-90de-49b186df9ca6", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -92680,7 +92680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c784b58-5bf5-416c-8fa5-0218bfd8fcbc", + "id": "d40a71c5-ef96-476e-a14d-a914067389ce", "name": "BucketAggregation", "originalRequest": { "url": { @@ -92765,7 +92765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9105aef5-1805-459c-ae14-dcd4a269d584", + "id": "43562ac7-fd15-44b6-af29-08e7446646bf", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -92850,7 +92850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83d85069-cc31-450c-bd6a-1fb8e0a5e850", + "id": "5900604b-d093-4efa-9125-40786b47c65d", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -92935,7 +92935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c805d17-bdb4-44bf-8b2f-60003fd3450d", + "id": "4715825e-2da7-4cbd-a81c-1b73162d6878", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -93020,7 +93020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c12f109-0d0b-4e33-8ef4-918d92a10f2c", + "id": "5f077482-211c-4c46-bbdf-6ed7e0ea2085", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -93105,7 +93105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "452d861f-477b-411a-a028-5082fb5a59f2", + "id": "7a46bcdc-a7e2-43ee-9582-b09fb024672f", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -93190,7 +93190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "335a7e4f-5637-4321-a64a-93ed3ccb2c76", + "id": "303917e7-f4c2-4ed0-8ae7-89cf78fa2702", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -93275,7 +93275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "776d544b-0dfd-41d8-ade7-50af75828d02", + "id": "36922908-9709-4e80-b3ec-adb637131cd9", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -93360,7 +93360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8c88bca-8cc8-4889-965e-490eba30d780", + "id": "b1912dd7-38f3-4741-9c4a-7ac07852a7c3", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -93445,7 +93445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a4cfc39-2772-4ea6-b36f-9ed1ba907e32", + "id": "e4f9ff4b-ea2b-407e-8d87-862757a0bba2", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -93530,7 +93530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8339b194-8f80-4564-bcbf-9862e532ecad", + "id": "2d3ccf6b-dbbc-4f47-b8f9-6083b00e3097", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -93615,7 +93615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1ca19e2-c763-47e4-bf74-ed8f6dd60ecd", + "id": "c2324d27-6a72-49f3-9f73-b99f9f6c28d9", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -93700,7 +93700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dd74bc5-3c52-47d1-94f5-5f6fc226f17c", + "id": "98ea585e-ccaf-4e45-adbd-9e1562280519", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -93785,7 +93785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90b8f1b0-af8e-4763-b3c1-b4ff881269c0", + "id": "b4e8dd44-714d-4bbb-908a-4ec08509c511", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -93870,7 +93870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a233108-c0ba-4e73-bb3e-c11825bd53e4", + "id": "42778c75-cc55-4ab6-85c8-dad84a5ed99b", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -93955,7 +93955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2987c72-71c2-4767-917c-67ec5f479051", + "id": "3649b9c1-5937-4bbb-b637-f73fe3285cd5", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -94040,7 +94040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52ec68d1-01ab-46b4-b0ae-938607325ac5", + "id": "4dfbdb33-ac1b-4677-9cdc-b48da31d3ebf", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -94125,7 +94125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e29ee992-2244-4e69-9640-f959167370bd", + "id": "0ec7fc15-ba5a-43cc-8904-22dcbd05ffbf", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -94210,7 +94210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0b68475-80aa-4f5f-b39b-3ee278b93ea1", + "id": "b84e646b-9625-4fbf-889b-71ed07d56bb4", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -94295,7 +94295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b68390aa-b9df-4fe3-8c58-f062fb1348cf", + "id": "3fcac21f-c15d-4349-a858-4b593be66bdf", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -94380,7 +94380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8ce295b-55fc-4961-9e5d-4c21bbe8e8e2", + "id": "4265f109-a66b-4fac-a859-1f3106097e7e", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -94465,7 +94465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0e34419-7edd-4199-ac47-bda0fad1546d", + "id": "88ef8443-50f9-4620-af44-98e9f12672e0", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -94550,7 +94550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d62715a-e523-47b1-ba46-0b0287c6b916", + "id": "14b72adf-2c7c-4edb-80e4-b13eba5c45c7", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -94635,7 +94635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed199c9e-c227-4a79-9327-eebbf0456694", + "id": "4a91f0a1-46cf-43bd-828a-9f97414eb0ea", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -94720,7 +94720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1f91379-d07a-416c-a524-8396e972cd5d", + "id": "39d234d9-2bb8-419a-894d-328a7785b659", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -94805,7 +94805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e666f54c-683b-4d1d-a2ef-f858b920fb5b", + "id": "11781f09-2c1d-4c1f-bcf9-a61178ea6f9a", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -94896,7 +94896,7 @@ } }, { - "id": "1838793c-8ff6-4937-8cfe-72e3a5ab9a51", + "id": "09513053-ef52-4c10-8e13-60b386e7e15b", "name": "Get a Document by ID", "request": { "name": "Get a Document by ID", @@ -94948,7 +94948,7 @@ }, "response": [ { - "id": "c5bea93d-0334-4e41-87f0-402eb4285588", + "id": "dbb70c01-8860-47b8-a3f2-2e07860a3923", "name": "AccessProfile", "originalRequest": { "url": { @@ -94993,7 +94993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d01ea310-63df-4563-88f5-ead142b23adf", + "id": "e02807d1-e5ad-4f19-b4f3-e217d42d94e3", "name": "Entitlement", "originalRequest": { "url": { @@ -95038,7 +95038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4518eaa5-6d8d-488e-9c7e-2fe4c275e9a9", + "id": "992bb887-d8df-4cfa-83a6-d725bec54ac0", "name": "Event", "originalRequest": { "url": { @@ -95083,7 +95083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cd925a5-0e06-48fa-9ae3-04736c33d139", + "id": "d620a863-a8e4-4d28-8524-342317262537", "name": "Identity", "originalRequest": { "url": { @@ -95128,7 +95128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c68bf54d-d047-4683-84bc-e0fa37028fd9", + "id": "cb0bf4a4-2c6b-496f-8762-0dad94412b40", "name": "Role", "originalRequest": { "url": { @@ -95173,7 +95173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed3d161b-65dc-4f5e-a40e-ea9ead935647", + "id": "5fb08386-40d5-4c63-a5ba-97e38d00a290", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95218,7 +95218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9fe5773-3454-4588-ac2d-1f09e27d208c", + "id": "41440b9e-f35d-42a5-99e4-080e41d76578", "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": "7108dccf-81e7-4b7c-8502-5cd5ef8b95be", + "id": "79852255-e1dd-47b5-b39f-7ac44d20fa11", "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": "bbbd2fd5-cfcb-46e3-be17-364e5032c6c1", + "id": "256a9549-a1cb-4668-972b-e08c722bfd50", "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": "b7ce1baa-82aa-469c-af9f-ce38ff4e1972", + "id": "818ee918-618f-483a-9ede-85be1ad40d08", "name": "Too Many Requests - Returned in response to too many requests in 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": "a79d7691-124f-442a-951c-b1fa78c71246", + "id": "e618a732-50d4-489a-8266-0d446d0d2e5d", "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": "f85d2a01-fe57-40a2-a2b7-e1666181c400", + "id": "b0170515-10bf-4494-871c-9b1afc5bcdb9", "name": "Create Segment", "request": { "name": "Create Segment", @@ -95497,7 +95497,7 @@ }, "response": [ { - "id": "31ea2efd-6cec-4825-a81f-e525d59980e2", + "id": "e17b7389-8a61-4fea-8476-7a79ec939059", "name": "Segment created", "originalRequest": { "url": { @@ -95553,7 +95553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6aff11c-e844-42f3-be06-ddb90090ecd8", + "id": "8d1a3e29-86a8-443c-954a-4e9d952c0f69", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95609,7 +95609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d04ce984-8856-485d-b89a-4b44f02b08ff", + "id": "d77b7345-e6d4-4bb9-a821-908b6c639002", "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": "5063ebd4-13c6-4b67-9e19-650cd596f2a1", + "id": "07d634a3-f333-4e9c-9c59-1aeae6ba5034", "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": "767170a3-d258-47de-81c5-4564a80f256f", + "id": "de2f846b-77a5-4b7f-bef1-31eac709202a", "name": "Too Many Requests - Returned in response to too many requests in 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": "3e2df1df-39a0-4a5c-8c9c-1b0114ff61bc", + "id": "0728c417-3827-4b3e-a7dc-d9c86232d764", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95839,7 +95839,7 @@ } }, { - "id": "2831ee80-76c0-4cfe-9646-d9196bd02423", + "id": "0931ee1f-e992-48dc-ba8c-ac05192e3db0", "name": "List Segments", "request": { "name": "List Segments", @@ -95896,7 +95896,7 @@ }, "response": [ { - "id": "dfff5b2c-b310-4fd1-9c67-e691e4c0fdf0", + "id": "97856448-9a7f-4889-98ca-c4a290e107ac", "name": "List of all segments", "originalRequest": { "url": { @@ -95967,7 +95967,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f73c5012-e54b-45ae-8ad7-6a1270016d89", + "id": "6263ce1d-6724-47fd-8c42-d26de1c065c2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96038,7 +96038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dbb85aa-b8a5-49cc-9fbe-cc7913a0c557", + "id": "c45ce26d-6419-4b5f-8c6b-9da97df04b1a", "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": "e23b902e-8c6e-4b69-881d-3696886b0870", + "id": "db9a36bd-9467-4896-80cd-46a025b4022b", "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": "e2165574-8604-47d3-8a54-9a2aecc56165", + "id": "f5343ccd-9483-4c0e-8141-1bb82349f374", "name": "Too Many Requests - Returned in response to too many requests in 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": "ec7f182e-6010-4cb6-b994-70a6feed6e2f", + "id": "d625a230-bc8b-43a3-842e-a85e30d38d30", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96328,7 +96328,7 @@ } }, { - "id": "12695ac1-2e0a-4478-8614-d3e4b587e12c", + "id": "c04e55fc-6d0a-4236-b8ac-92c1bbf59ae9", "name": "Get Segment by ID", "request": { "name": "Get Segment by ID", @@ -96369,7 +96369,7 @@ }, "response": [ { - "id": "e4ffd5e2-f9d4-45c3-92b6-4b5fc6475a6f", + "id": "dab19aa9-3e6b-4b88-9fd8-dbd416c4c612", "name": "Segment", "originalRequest": { "url": { @@ -96413,7 +96413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3d8bf17-b3cc-4a1f-b9e3-ca0850e40018", + "id": "b3d72c8b-6442-49de-ae57-47a15a2eedb8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96457,7 +96457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98a5d673-1f05-4ddd-b745-2ec1dc5ce1fa", + "id": "cad3f431-f91b-4faf-8971-2f2e18039b04", "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": "a11b4eea-a189-4ecc-8e64-ad798ab1478e", + "id": "a810787a-418e-436b-844e-9370fb20d9d5", "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": "408db985-4859-41f2-a6f3-9bad7436e384", + "id": "53cb5079-a7b7-4865-9b04-30ff7292e403", "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": "40e6b302-a880-4b01-bf4f-3ba83200f7ae", + "id": "d34dbd93-7738-4475-88aa-6f8dc9348ea3", "name": "Too Many Requests - Returned in response to too many requests in 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": "7f13409a-7692-4951-ac82-2c0cb1dbed06", + "id": "41c3d99c-2157-4537-b180-69834ec48187", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96683,7 +96683,7 @@ } }, { - "id": "91889c25-d67f-41e2-b268-36be8bec5593", + "id": "d82c2bee-f66f-4614-b8d2-431bbf78fb7a", "name": "Delete Segment by ID", "request": { "name": "Delete Segment by ID", @@ -96724,7 +96724,7 @@ }, "response": [ { - "id": "bb8f7f93-8cf3-4910-a2a0-783a55de5c4d", + "id": "fcedd27e-9312-41f6-81b8-95273da8681e", "name": "No content.", "originalRequest": { "url": { @@ -96758,7 +96758,7 @@ "_postman_previewlanguage": "text" }, { - "id": "da8c1dd4-499d-4647-98fe-1222d798b0bc", + "id": "1da13c1a-cc3a-4505-b6d0-35555e25745e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96802,7 +96802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1344c738-35b8-4533-9075-61def9d7fe7d", + "id": "5a71d7d3-2f36-4ef9-9481-845a4c59a9ec", "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": "6893dd88-fb56-43a0-b52c-742f6ba16c73", + "id": "b63d8cf3-4b59-441f-973a-a725f91578a7", "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": "124f35f2-9fd9-4b0f-8bc0-602c9c2f0d22", + "id": "6fceb230-b701-451b-8bc8-c3ecda2cfb43", "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": "e931119a-0d1c-480d-9e6e-3f26a01b9c97", + "id": "66c7ac94-fc54-4bf6-9ee7-f7024dba58be", "name": "Too Many Requests - Returned in response to too many requests in 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": "483b3d53-e04a-483c-9055-b276c986d80f", + "id": "988cdebb-8ecf-48e5-9e03-f828163c9a43", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97028,7 +97028,7 @@ } }, { - "id": "c8e3789e-e8a2-4470-93dc-bdaf4c7fd283", + "id": "a878890e-31eb-4668-a45e-0200c54c1bac", "name": "Update Segment", "request": { "name": "Update Segment", @@ -97082,7 +97082,7 @@ }, "response": [ { - "id": "fb69736c-7340-4be2-a42a-44d47087b7f8", + "id": "1aa05564-7f0a-44de-b9d9-2d246149f010", "name": "Indicates the PATCH operation succeeded, and returns the segment's new representation.", "originalRequest": { "url": { @@ -97139,7 +97139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "435cc272-b13e-4516-9461-3dd58f71e6cd", + "id": "9a305e91-f58f-49f6-952d-8c4dc7cfb026", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97196,7 +97196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3c291fd-9c1f-48c9-9939-2a2584d0c381", + "id": "7a3a0320-0401-428b-b6a0-76be8888f290", "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": "3c7296e5-a7c8-4f36-bdd2-93420f334c7c", + "id": "7a5a5079-e5d6-4016-b0ac-41e29961f46e", "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": "d888c6a8-e292-4e8a-9a35-734acc0c00c6", + "id": "a72f9312-7326-4097-8080-8dc6ca6a4b3c", "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": "0a874107-0e8b-4a05-9f3a-3368c907198b", + "id": "4ef4adcc-22e1-4ab1-8b69-84df5e1b0000", "name": "Too Many Requests - Returned in response to too many requests in 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": "b4160fb2-0d23-4a9a-a628-d70e3e405e0c", + "id": "bf5244cd-85fa-4184-bc90-369afa3c86ed", "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": "945acaa7-f1fd-4367-bfb0-93d9b82b76a1", + "id": "027dd53c-7e6d-4b6d-8eb8-41f181f1ea4c", "name": "List existing Service Desk Integrations", "request": { "name": "List existing Service Desk Integrations", @@ -97568,7 +97568,7 @@ }, "response": [ { - "id": "f29dbb72-1cd2-4333-8785-64faa21e6bec", + "id": "317fa747-78fb-487c-9c8b-5bc9f09246cc", "name": "List of ServiceDeskIntegrationDto", "originalRequest": { "url": { @@ -97657,7 +97657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d027e4b-2ccb-4316-90f0-96b673fd9fa7", + "id": "e5777754-7023-4306-abb0-0926dac8bc34", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97746,7 +97746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a87d6ff-448a-4f70-a914-8f8867c5a616", + "id": "ae09885f-8654-44cb-a0d2-0ae361876c60", "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": "084e7f5f-c08b-4f71-941d-352c1d26e2de", + "id": "95e2b039-df7c-4a7d-88fa-0005ac1b06aa", "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": "7ae83e21-51dd-439d-9e3a-56185474608a", + "id": "3bd6bdfa-10d2-48e1-b8ba-9eea2c93e82e", "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": "f0aba590-a188-4f77-ab91-a179dff4e243", + "id": "7dd3c261-ee7a-4193-b7c7-37a7efc5ff5c", "name": "Too Many Requests - Returned in response to too many requests in 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": "ef419b6b-a264-4c6f-b189-c07e3d8ee4f6", + "id": "2324fe1e-67ca-4bf0-87b7-97a8c9576ee4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98197,7 +98197,7 @@ } }, { - "id": "41229680-5569-416f-b026-6c810372a6f6", + "id": "f57af193-63d6-4f0c-a97b-9d4c120543b9", "name": "Create new Service Desk integration", "request": { "name": "Create new Service Desk integration", @@ -98239,7 +98239,7 @@ }, "response": [ { - "id": "fd70dae7-de7d-45c3-a193-0c6e715743b9", + "id": "a2ff0a9f-12f2-4730-bf9b-0400e2c273b0", "name": "details of the created integration", "originalRequest": { "url": { @@ -98295,7 +98295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "851d365f-5391-4a97-8461-56c7d1f62960", + "id": "d84fdf2d-09ab-475a-8b67-f0456b784f47", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98351,7 +98351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d494cbe8-3909-4802-acb4-59ffbef0629e", + "id": "786833e8-3c53-4542-bd44-1c5d704f6640", "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": "16192ec2-7000-4686-add0-894471eaeb8f", + "id": "79c214bf-c0cf-4807-8245-bde9c9306a67", "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": "e8984375-9172-4b63-a03c-0d422c1c3ca0", + "id": "8cdd1e4f-8e0f-4d8d-85bf-0f8fab5d7995", "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": "47444228-b992-4740-beb7-7039c48484d8", + "id": "9e4284cf-3324-46a4-8895-e38ed3a05e15", "name": "Too Many Requests - Returned in response to too many requests in 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": "b074959f-0dac-4b44-8764-d56e0d5f7937", + "id": "adb17aba-39e4-4822-8a6a-bf53963b35a2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98637,7 +98637,7 @@ } }, { - "id": "9a5fa5bd-ed0f-4dcc-9c4b-4e9204548eca", + "id": "56ad0da3-4277-4874-a77e-c45e3dbe8d56", "name": "Get a Service Desk integration", "request": { "name": "Get a Service Desk integration", @@ -98678,7 +98678,7 @@ }, "response": [ { - "id": "6e700bf3-0207-49f8-8fa4-8ec49bc752a6", + "id": "7f3d4409-c23e-4807-a585-bf521da8fc1d", "name": "ServiceDeskIntegrationDto with the given ID", "originalRequest": { "url": { @@ -98722,7 +98722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2927d891-76c3-4345-8910-1096535ccd2d", + "id": "de97b2c8-370a-4ba2-ae15-bd636876d298", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98766,7 +98766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03f0297a-f38a-4ae5-9978-a3198c9fbbda", + "id": "d1445cea-82cb-4269-8c8f-1242be3983e8", "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": "9649cc80-8dc2-4f2b-a19d-98e2d0dc940e", + "id": "b126ec75-0009-4519-a91b-5330129e44df", "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": "89940cb5-de63-4f61-9db6-b96e452eaab9", + "id": "66cd2e6d-3ab4-4290-ac7d-f16daf70d5e9", "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": "45164bca-6d5f-4d43-9481-58e6f88d188f", + "id": "98f1a441-e2dc-458d-9728-e998a74d6eab", "name": "Too Many Requests - Returned in response to too many requests in 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": "b06afaec-58d0-43a2-82bd-c0d770697399", + "id": "4f0eff80-3165-4cec-b116-cafbb50a357b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98992,7 +98992,7 @@ } }, { - "id": "d98c1ad7-50d8-43e6-82fb-4ec054d95ad6", + "id": "2331550f-588d-4be6-a004-e203e6094736", "name": "Update a Service Desk integration", "request": { "name": "Update a Service Desk integration", @@ -99046,7 +99046,7 @@ }, "response": [ { - "id": "0e87af32-6c63-4d73-808a-51053c054341", + "id": "d45a7203-50b2-4862-97c7-61bb259ea2fd", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -99103,7 +99103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c650792e-b5f4-4361-a4e6-0106297cbefa", + "id": "64533323-7b8f-4e96-97e3-8e5ad9606047", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99160,7 +99160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ec9ff37-9b95-4304-ac74-e5ea2e8d2c25", + "id": "1ac21abd-5c46-42f3-a3b1-3282090227b2", "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": "d303993c-6a6d-4578-a82c-008c4e32b5cf", + "id": "9c6043c3-c40f-4398-bbff-35410cb0616c", "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": "cc2ef08c-91a4-4999-97ef-8b6b77c88a21", + "id": "95431f42-7f7f-4f27-8de3-54a3b75f1b29", "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": "f8bf2b3e-e5c8-4130-9528-09b78f8fbd06", + "id": "a82f598c-e5f0-4e12-814c-8debfbebe451", "name": "Too Many Requests - Returned in response to too many requests in 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": "7d80cc01-4787-43f2-a384-4f29d71b1b09", + "id": "fd2e5bba-92ea-451c-adf1-1d9950db1f83", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99451,7 +99451,7 @@ } }, { - "id": "8ea799bc-b239-4ab1-bf28-4545a65ec9b1", + "id": "7ec2f847-249b-4a79-8dc7-33db49a6ccd7", "name": "Delete a Service Desk integration", "request": { "name": "Delete a Service Desk integration", @@ -99492,7 +99492,7 @@ }, "response": [ { - "id": "50c4ca30-5303-44f8-8e74-af06a55b70b6", + "id": "5550b2b2-24b8-466c-9805-495016b10603", "name": "Service Desk integration with the given ID successfully deleted", "originalRequest": { "url": { @@ -99526,7 +99526,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ba483629-0597-4286-8822-d6ef824556ff", + "id": "9ddf9944-bdcd-4bf7-90e8-7ee2a3b79bc4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99570,7 +99570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "903d544a-0fed-416e-bb4a-214e5e10e21d", + "id": "e1c072e6-9ced-42ca-bf27-0d772f8b72a8", "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": "9de5848e-de72-46f2-95d2-1df191a76e07", + "id": "ff83e840-e8cb-417b-90c4-38c9c8ab6bc1", "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": "3c59f8ab-b6fc-40c9-8593-86ed875b6d4a", + "id": "a6d78217-8eb9-4939-bda3-31ddd586106a", "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": "f190d40b-b009-4417-ab4b-b6830f7e441a", + "id": "6bfc9b0b-54d7-4d00-888d-6cf3a53e1101", "name": "Too Many Requests - Returned in response to too many requests in 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": "9924344a-a9c3-41cc-9482-1084174fa278", + "id": "0aad8584-bf1d-44ad-9d7f-25c90e9390ae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99796,7 +99796,7 @@ } }, { - "id": "18fc73ac-bb0c-467a-a0c3-862fc6c16986", + "id": "cddff64f-4d5c-4e41-a163-4af5b13090f4", "name": "Service Desk Integration Update PATCH", "request": { "name": "Service Desk Integration Update PATCH", @@ -99850,7 +99850,7 @@ }, "response": [ { - "id": "2ba69af1-877f-4303-b78b-cc76d6377f1d", + "id": "3d55206a-f6a6-4f35-95f5-2e8f5b249505", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -99907,7 +99907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81ab4bd6-2361-43a1-8989-3a9fddb2a0a1", + "id": "65f24142-d3cb-451c-9920-2377159c308a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99964,7 +99964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99bf2538-9f54-4b1b-a83d-c3b99f205891", + "id": "1dd416c1-ee9f-47b0-a8b9-10a2775bbd3d", "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": "f796dae4-8432-489f-b919-d9f9553b3d42", + "id": "5db06f26-7eb2-49fc-ae76-abd53bdb4899", "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": "8120f315-22cd-4517-9aca-6e6cb7ff5e7b", + "id": "c406c6ee-ef20-4790-a03b-4a2478cf52d1", "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": "4293fcf6-c144-436e-88b1-42af34c2d22e", + "id": "1b2d3b0f-8e79-4b5a-b8c1-c6e4411a2529", "name": "Too Many Requests - Returned in response to too many requests in 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": "769f51f5-0a14-46a8-ad6a-e87f9d285c91", + "id": "7fdc3996-7e4e-4bae-92db-2b4885bd1a1a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100255,7 +100255,7 @@ } }, { - "id": "bb51285b-a69c-495f-9900-0707e727ee6e", + "id": "e4b9c29f-55f7-41ca-98d1-359f509d37e8", "name": "Service Desk Integration Types List.", "request": { "name": "Service Desk Integration Types List.", @@ -100285,7 +100285,7 @@ }, "response": [ { - "id": "b8b46b45-35d2-42be-b8c4-9f8b573257e2", + "id": "5b977ab3-0f31-49c1-9ed8-746a425eb7a3", "name": "Responds with an array of the currently supported Service Desk integration types.", "originalRequest": { "url": { @@ -100329,7 +100329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6fc8bc7-b0f1-4f3f-957f-e46dfef980cd", + "id": "0896f48b-5365-411c-b1e3-1311ef133e8d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100373,7 +100373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc4167bc-3ab7-4227-848d-20370f147caa", + "id": "21144603-3ec5-49bb-b09e-63f0c0744351", "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": "e20a9a53-f8de-4cd1-9517-5a2b1ad37f82", + "id": "07f215e3-874c-4930-b9c7-34847f69b2bb", "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": "5c1f68b0-ddf3-4513-b982-c5b4dd154b67", + "id": "5673c0fc-39b9-4e0f-9f66-04616c2dbb2f", "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": "dc2ef894-c829-4b1f-ac74-5f136086e71e", + "id": "aceba424-af32-43bb-9215-8307afa3378a", "name": "Too Many Requests - Returned in response to too many requests in 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": "95b547dc-c63c-43c3-8864-c2b497e7b716", + "id": "1ace42e2-85df-4687-be39-0af0618deb2f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100599,7 +100599,7 @@ } }, { - "id": "0d7bad31-eaec-41f2-b450-7b67d354230a", + "id": "ef8c3fdd-56bd-4f85-8530-fea0960897fe", "name": "Service Desk integration template by scriptName.", "request": { "name": "Service Desk integration template by scriptName.", @@ -100641,7 +100641,7 @@ }, "response": [ { - "id": "02aaff86-3c28-4840-a99d-44586fee7a75", + "id": "8d4c6d35-b1d6-41d4-b787-a62a60958498", "name": "Responds with the ServiceDeskIntegrationTemplateDto with the specified scriptName.", "originalRequest": { "url": { @@ -100686,7 +100686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "993dd9fe-affb-44ed-bf86-4b95754876ae", + "id": "42e00319-147b-4fe8-8439-d2a40229245e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100731,7 +100731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d10778a4-937f-44d7-b8d3-99e5b66bd411", + "id": "14f378e2-ba48-46de-9425-23880195c0d2", "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": "43c8bae8-8797-4fcd-8261-b6335fadd433", + "id": "1e9fa611-ec2e-47a6-95cb-6b60c9eb742d", "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": "a79a1db5-0235-4401-b5c0-02157ecc5164", + "id": "72f5ea60-cbed-4473-a3c3-179ba3392320", "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": "7aa0dfcd-2a56-4139-9fe0-c6b2ddc0cd9a", + "id": "166002c3-3f15-4b65-9c15-cb30422d4684", "name": "Too Many Requests - Returned in response to too many requests in 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": "efe20110-392a-48ac-977b-6da4a703e78b", + "id": "26a9c770-0afc-4a74-ab7a-761979fd3382", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100962,7 +100962,7 @@ } }, { - "id": "375ceb5d-20dc-441a-8c06-bf39a723b4eb", + "id": "3ecbc389-3d7c-41ef-8dc5-eaa9657e5469", "name": "Get the time check configuration", "request": { "name": "Get the time check configuration", @@ -100992,7 +100992,7 @@ }, "response": [ { - "id": "767443f4-2e99-4226-a9da-568686e15283", + "id": "e0594f45-a441-406a-a06b-6795226e64fd", "name": "QueuedCheckConfigDetails containing the configured values", "originalRequest": { "url": { @@ -101036,7 +101036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4aad2b5b-3456-40bb-8850-e570a90cd6a7", + "id": "3bae4d3e-c747-4c2a-8cf0-1e0e28dc38d7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101080,7 +101080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b73a51b9-89a7-49f4-8996-fb9765d565c3", + "id": "e0b42b47-1e7a-4f3b-bd21-494bf25673ab", "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": "e9c70fd1-7a6d-4f9f-af4d-0b9d723c88c1", + "id": "1ba43545-e6ce-499b-aea2-68708fa99073", "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": "1c8ee55a-3086-45d5-aa95-1562bd86a59d", + "id": "d032e390-2d27-45dd-a398-d38fde876f3a", "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": "a2963213-a49f-4e82-8e80-6b8869d4179e", + "id": "8f838ce3-8af7-4dd7-bfb2-9d5ff4fa17ce", "name": "Too Many Requests - Returned in response to too many requests in 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": "3b3a47c1-2469-4aa6-8bf4-41a60a341acb", + "id": "8a742730-3e2e-41b8-baf2-a12a6f85524e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101306,7 +101306,7 @@ } }, { - "id": "0f6263ce-2d07-4982-a0b6-b4b02cd33eef", + "id": "7955e70f-b6c4-4c84-910b-73feb2f5070d", "name": "Update the time check configuration", "request": { "name": "Update the time check configuration", @@ -101349,7 +101349,7 @@ }, "response": [ { - "id": "6fdc070a-c016-46be-8234-f5f21ca514df", + "id": "9537867d-efd2-417f-b354-76fac66c4be3", "name": "QueuedCheckConfigDetails as updated", "originalRequest": { "url": { @@ -101406,7 +101406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2275174f-4d88-43af-a9a4-c2b377a79ea2", + "id": "93f12ee0-d2df-47dd-9066-e28ad7324e97", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101463,7 +101463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cd798c0-8940-4401-ba26-950665f10f6f", + "id": "59daf989-17c3-49d0-9ae5-97fd5a1dcec0", "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": "8f31f536-3b6a-4108-ba25-8d62d57236f0", + "id": "8da331cd-e5f0-4fc6-9d12-ca8c428c1f33", "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": "f411f446-09a3-4dea-a33a-b730207d9998", + "id": "1268a951-0074-4dbd-96c8-1763df55c1ed", "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": "349483cc-3995-4c6e-a57b-6173bb7da0c3", + "id": "4c94a781-805d-4e0b-98c1-4ef0bc487c75", "name": "Too Many Requests - Returned in response to too many requests in 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": "ceb18b9c-8dd9-4d5c-8ed6-9a2825a253ab", + "id": "f73e2d65-dfe4-4d7f-9940-f4f6778ed382", "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": "50baf057-ca40-45fc-aed1-c37c35ef916d", + "id": "e9f25575-d628-4ca8-b81f-058afce85c07", "name": "Create SOD policy", "request": { "name": "Create SOD policy", @@ -101802,7 +101802,7 @@ }, "response": [ { - "id": "b1d8205c-f75a-45c7-ab13-52cb925c67db", + "id": "ddca7541-f77b-4e20-9acb-b857b0688b51", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -101858,7 +101858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "164b1f29-3d82-483e-bf36-749c8c9790e4", + "id": "08e07317-9c2c-4dc8-8631-761eb76396ac", "name": "General Policy", "originalRequest": { "url": { @@ -101914,7 +101914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30e0b6c2-9b3a-4a78-a51f-181b955cf721", + "id": "df4612b5-5bcc-4906-ac4e-9352df47afd8", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -101970,7 +101970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfa9f709-3e23-4a41-a46a-41423b00fdbc", + "id": "802a1960-909f-43d4-9198-fee7ee19708f", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -102026,7 +102026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a7b836a-4f5e-4bde-af6e-6c1a403a31e2", + "id": "2b99d470-cb7e-4a36-b5d0-bbab3a7390b6", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -102082,7 +102082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1cd8ed8-d2be-4ffe-a88f-a99caa9db02c", + "id": "05a3276a-a200-46e6-97ea-5f099bffa7b5", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -102138,7 +102138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cb7340d-989a-4818-9e56-8fa8c4f80cba", + "id": "86a7cbc8-8b20-4e2f-bcb2-6cac8766e4dc", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -102200,7 +102200,7 @@ } }, { - "id": "c464b36f-2166-49d8-a164-ecbe6b74513f", + "id": "68c2bca9-431c-41cc-b30f-3def45c74d81", "name": "List SOD policies", "request": { "name": "List SOD policies", @@ -102266,7 +102266,7 @@ }, "response": [ { - "id": "f1f8528a-6c20-47f1-acda-2107e074207b", + "id": "39ca73a5-fe28-4efa-aaf7-2a318ac5cabe", "name": "List of all SOD policies.", "originalRequest": { "url": { @@ -102346,7 +102346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b166b8d-f45d-4d62-bdd5-471484cf6419", + "id": "e9ff37ab-76ac-45c3-ae9c-f3e0256e21ba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102426,7 +102426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6237f0f-6c17-4f93-83d3-a57d37bacb72", + "id": "00b1af57-acb0-4571-94ae-2cd9aa7f3ba0", "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": "a7084044-7c12-4329-bc47-b5e840b16ad2", + "id": "4bce642e-9903-40a5-91fd-68d1f267844e", "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": "877f0ff0-1c10-419d-9caa-4c165ec1bfc9", + "id": "7eb95762-df87-4f7a-92fe-3f65879df004", "name": "Too Many Requests - Returned in response to too many requests in 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": "3263b7e0-05d8-493f-b430-01398f3ee9b9", + "id": "05f251a8-9195-4d33-803a-9918b1c13d4d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102752,7 +102752,7 @@ } }, { - "id": "3f65e535-6b5c-4a48-ada4-490bdb20614c", + "id": "cccb1f73-1c5c-430e-b947-6d19fca27e89", "name": "Get SOD policy by ID", "request": { "name": "Get SOD policy by ID", @@ -102793,7 +102793,7 @@ }, "response": [ { - "id": "bf21b3a3-5026-4197-b2f0-0f6224261703", + "id": "83ab5e93-a357-436a-91d9-0ddc550c6950", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -102837,7 +102837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d2856d2-4a27-4fb4-b0d5-14a3de11bcf8", + "id": "43f2fd20-2e52-46d3-bedc-5f077f966431", "name": "General Policy", "originalRequest": { "url": { @@ -102881,7 +102881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25f80c56-f2c8-4b76-9b54-fcba451059f7", + "id": "ef3620ab-e45e-4f24-82cd-74cdb1c50781", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102925,7 +102925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57c646af-3210-4cdd-98b4-c030e0bb8f64", + "id": "b22a666e-83ae-47dc-a76c-81c4cf89adcb", "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": "29795891-5cb2-458d-aebc-bfeb7d13b019", + "id": "026e7d7f-992e-4108-982f-c81afedbe626", "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": "534caab5-062d-4ba1-b07a-c0df2973fa0b", + "id": "b77c6db0-1f15-4316-885d-8a1e8f68d98a", "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": "30cd0555-a666-4df7-9c46-13ef3543db99", + "id": "e764361a-58df-4f38-9ee1-54d8e2d25c88", "name": "Too Many Requests - Returned in response to too many requests in 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": "88c297e3-b4ba-4808-aba3-c82ca630b5ac", + "id": "b865f345-c84e-4d7f-af76-37e98b406931", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103151,7 +103151,7 @@ } }, { - "id": "d0471c5e-bd38-47e4-a402-3aaa3879bbf9", + "id": "287e1aa2-05fb-42b3-9103-b20b292ee30b", "name": "Update SOD policy by ID", "request": { "name": "Update SOD policy by ID", @@ -103205,7 +103205,7 @@ }, "response": [ { - "id": "5e3854ce-a109-4d7a-a8e2-e9836c26f21c", + "id": "782c4dfd-f025-4d9f-9d35-796dd7bf6cc7", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -103262,7 +103262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "382455fc-8efc-4168-9128-5ad3c54ae495", + "id": "8149bd9a-a45f-4980-bfa5-4fd5c7c15e03", "name": "General Policy", "originalRequest": { "url": { @@ -103319,7 +103319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a8451d2-0bc3-4c82-97dc-9103ecf824b1", + "id": "54fc8077-0359-49c1-918e-2d5345ffbd19", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -103376,7 +103376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7047eb6-336f-4049-bafb-d18974d06278", + "id": "70966387-093f-4ab2-87e0-6129e974db4c", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -103433,7 +103433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bd908f6-18c3-414c-bcec-f71953af8672", + "id": "072cee3b-d6e4-49e0-bfbf-b7cce891e580", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -103490,7 +103490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a9af7e9-d472-4ad1-a0c0-fbb2dedbd201", + "id": "c9f636e2-05b5-44b7-9b55-7fb2b0124fe4", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -103547,7 +103547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2642c5ad-d4d2-4ccb-a0f9-690afd501bee", + "id": "571c90e4-2384-44be-9ee6-6faa1197e14e", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -103604,7 +103604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86d31f77-4362-4f99-9d1e-c07793f9ff57", + "id": "3f30eb6f-e4d4-413d-9fc0-a7281528c1ab", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -103667,7 +103667,7 @@ } }, { - "id": "15800378-460b-492f-b4f3-2f3ecec4f41f", + "id": "5344ea05-ac89-4ae9-8673-8f45ba1d882d", "name": "Delete SOD policy by ID", "request": { "name": "Delete SOD policy by ID", @@ -103718,7 +103718,7 @@ }, "response": [ { - "id": "64c0308a-2017-4ba2-af86-0b43a9768ec5", + "id": "94d065dd-7548-48f8-9a2e-7757b009aab9", "name": "No content.", "originalRequest": { "url": { @@ -103762,7 +103762,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7d9a8a43-e7ae-42fa-a571-61bcf6cca522", + "id": "d897f19d-d110-4dc5-a608-966c361a8caa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103816,7 +103816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd142049-0d5c-4c90-94e2-5d05e90e26b0", + "id": "37fb91dc-0ef6-4255-97a6-f2b68d21fa16", "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": "80b3b862-4faf-44d1-a69f-0c56bad6c1db", + "id": "14e15167-558a-46d3-ae66-00ef6339948a", "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": "03b4d89f-e785-44e8-8330-c1b4d7f8d90a", + "id": "894ce88b-4399-40cd-bad4-e8744706cefe", "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": "88ae0b68-571c-43b5-bb20-2a25fd07c9cd", + "id": "0eb06ccd-29c2-4a5c-a5ae-45df6b0fd30a", "name": "Too Many Requests - Returned in response to too many requests in 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": "db2d80f0-25dc-4b27-9e09-12c6795cc088", + "id": "bccb3110-2c58-472e-abaa-f948119ec76f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104092,7 +104092,7 @@ } }, { - "id": "c56d710c-1124-4b45-a0b7-2e09d7426f1f", + "id": "e5393f61-5158-42b7-bebc-8f0a48fe39e9", "name": "Patch SOD policy by ID", "request": { "name": "Patch SOD policy by ID", @@ -104146,7 +104146,7 @@ }, "response": [ { - "id": "573dfb52-527a-4daa-b196-fa51e0b57187", + "id": "71a984a7-35a6-4802-baf2-287c053c664d", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -104203,7 +104203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6132278-68f7-4623-9b65-3a56ca0b00f2", + "id": "42bd533e-1ca7-47a1-af0f-04891709975b", "name": "General Policy", "originalRequest": { "url": { @@ -104260,7 +104260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b6d6e27-4b7c-45a1-8a8c-0ed213a1e357", + "id": "f552c82a-b764-460a-abae-aafff9d84684", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -104317,7 +104317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af85a2be-67da-4c7b-9bdd-7b3c7f476a0e", + "id": "e4e86a8b-937b-44b0-ad8b-2bad1047b3af", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -104374,7 +104374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c4f53b3-2098-4d41-9ca7-52d394d31c72", + "id": "d20feab9-4ad1-4773-9e14-4da5d2b289da", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -104431,7 +104431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de07416b-d8ad-4951-8596-5887fe2dc1fd", + "id": "df1f6e7a-b605-4159-ab0a-ab02bd431721", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -104488,7 +104488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6864c03-3425-4fd0-809a-2cdbb0af8452", + "id": "81cd5f01-c31c-446c-9e1b-5a4bac3c9633", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -104545,7 +104545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41af2076-a7f6-4268-9a03-c0734f21e4d9", + "id": "4daa32c5-7835-4d90-98e1-58bd68582bcd", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -104608,7 +104608,7 @@ } }, { - "id": "8d1c40f6-6a20-44af-97b0-0a62ea3e86b9", + "id": "34c18149-85ec-4461-8abd-66ff6c5cc765", "name": "Evaluate one policy by ID", "request": { "name": "Evaluate one policy by ID", @@ -104650,7 +104650,7 @@ }, "response": [ { - "id": "28167168-0d2f-4e2c-b549-217d416957bc", + "id": "bb39eff6-4aa8-4f6e-bd78-50471fc523b7", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -104695,7 +104695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30849702-87fe-47ad-8024-95cca02d97d4", + "id": "4e405fb3-1d9b-4a3f-b9a8-fa159906c283", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104740,7 +104740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a538074-b1ca-4cce-9086-ebd65f9668a8", + "id": "f5efb8f1-5c43-45b0-ada3-cbf5a723a07c", "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": "18d61393-ff51-4636-967a-161ddc1880f7", + "id": "7f88fa51-5b5d-41b1-afae-86d45408736a", "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": "f707c8e1-cc4b-4d11-919b-87252e15b1e8", + "id": "1dcfb80d-aa7d-490e-8ba5-d951914daaae", "name": "Too Many Requests - Returned in response to too many requests in 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": "403c3874-feb9-47de-b1a2-718fc4fb5d7a", + "id": "e836bb5c-40c0-4dd6-aa26-3ebafbe2edcb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104926,7 +104926,7 @@ } }, { - "id": "bab5b63a-d501-4cd4-ac7b-7e04c5703133", + "id": "06caa672-05ef-45db-b468-bfec4c677400", "name": "Get SOD policy schedule", "request": { "name": "Get SOD policy schedule", @@ -104968,7 +104968,7 @@ }, "response": [ { - "id": "ad784c01-6ed1-49c1-bb52-59753087ccf0", + "id": "113a8c9b-ccd2-4f61-bd40-28771bbd8a10", "name": "SOD policy schedule.", "originalRequest": { "url": { @@ -105013,7 +105013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10de3ad1-85da-4f25-8cd2-eb07847b1a3f", + "id": "649c512a-53b6-4829-8e85-5990903b6b55", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105058,7 +105058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7a6e61d-a68b-4c4d-a892-e6f35151d8c9", + "id": "7e5fbc71-5c51-448f-a222-1ccfcf9d66cf", "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": "d79cfb26-7f75-43cb-84e8-5e998d544794", + "id": "5bb32156-88cb-4465-9c3b-eb6f0ac111d1", "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": "2134e448-5000-45da-bb75-55b2f1f707a0", + "id": "baaafa37-66d2-417a-8b86-217af100cf1e", "name": "Too Many Requests - Returned in response to too many requests in 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": "fedd9bbb-e961-4100-9ada-2e0bf9b81a29", + "id": "56affa53-77bd-4863-bf24-13280dcd2840", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105244,7 +105244,7 @@ } }, { - "id": "1284ecbc-d8fd-4e45-ab5b-eb1e12ee93e7", + "id": "86ed617a-5172-4a1d-8590-72500e1b4a4e", "name": "Update SOD Policy schedule", "request": { "name": "Update SOD Policy schedule", @@ -105299,7 +105299,7 @@ }, "response": [ { - "id": "9456b716-cf1e-40cc-b5b5-d3b1d41c4493", + "id": "84ed6c85-9309-4dbb-beca-e019b3458648", "name": "Created or updated SOD policy schedule.", "originalRequest": { "url": { @@ -105357,7 +105357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f83ad566-2c1f-48bd-8073-4c0f5ce2c1bc", + "id": "2c580c2a-248b-4df2-b02e-f7ada6d13630", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105415,7 +105415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a28adaf0-74c5-4392-bd30-37800cb87a7f", + "id": "da4aa998-7e51-45a2-8ec7-fb4be3727e63", "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": "5345045f-bed9-4bd1-931f-e5ec8c7228ac", + "id": "be0fb91c-88e6-4447-8049-47722b904409", "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": "77520ec1-5928-46af-9cf7-a984df2c9f0d", + "id": "aeb7dd79-06a7-4f36-8857-a82a91670aaa", "name": "Too Many Requests - Returned in response to too many requests in 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": "38e9f533-92b6-47f9-959a-20ccb3435ceb", + "id": "a07f4c11-dc50-41cd-9f78-e389a8b006fa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105653,7 +105653,7 @@ } }, { - "id": "d54c017c-44b5-4a57-992a-9386e4d379cf", + "id": "79c20e7b-e22f-45da-a3f2-427b5d37adec", "name": "Delete SOD policy schedule", "request": { "name": "Delete SOD policy schedule", @@ -105695,7 +105695,7 @@ }, "response": [ { - "id": "3935ea7a-532d-4b86-8ad6-fcd34c3b82dd", + "id": "fb71bdb0-13b1-4566-99f6-a9f8aff2b17e", "name": "No content response.", "originalRequest": { "url": { @@ -105730,7 +105730,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a3a34077-8a72-4d19-9cf0-883dee399b14", + "id": "7971a7a6-3160-4faf-b434-986cbff5a770", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105775,7 +105775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a52b731-fa3b-43a1-a13e-7fb54baaeb5c", + "id": "8d5932f6-9908-438c-9ef8-6d25d536aa1f", "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": "caf87f4b-f6dd-4c16-9a02-5ca6b69833f5", + "id": "3f225cf3-5287-4718-b64f-1d34631a9477", "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": "23f91359-f62a-45cf-9701-c0501a790cb5", + "id": "9883a0f9-4cfe-45cc-a8ab-1974908e04f6", "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": "e19c866a-17c8-42fa-8fc3-2c40501d05b4", + "id": "4ce16d57-85ec-46b9-83c7-e314b93fb956", "name": "Too Many Requests - Returned in response to too many requests in 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": "556c9956-e04f-431d-94ec-c9d808ab20b1", + "id": "320c3c6a-8b08-40d9-a416-d1368bfc29b0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106006,7 +106006,7 @@ } }, { - "id": "b7322938-f553-480a-8f2d-36b394227dde", + "id": "1d3bc55d-15b5-42f2-95ba-e4ab2d414494", "name": "Runs SOD policy violation report", "request": { "name": "Runs SOD policy violation report", @@ -106049,7 +106049,7 @@ }, "response": [ { - "id": "7178096a-5ef0-476b-898c-b1a1c21d9535", + "id": "b3c09897-15c4-4d72-bef0-4dcb9fdfb3e4", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -106095,7 +106095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9670127c-2fde-4bc9-b697-1d96b5004e23", + "id": "a6770eac-59e3-429f-8e35-fae8de162692", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106141,7 +106141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bea5bb8-0aa1-46d7-967e-c15731742f35", + "id": "3ec86352-0201-4d85-845e-e7af89d0a07c", "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": "f807134f-bfbe-4d58-9217-7cd66631213d", + "id": "8a3cce25-3cd6-4d07-b81c-6302727a80c7", "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": "45bcdc12-0d7b-434e-a9a1-7644e9a0909d", + "id": "cb4df1c0-710d-472d-ba00-100a9c17b918", "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": "488d7048-672e-4cea-a5d0-6f71aa6ecf88", + "id": "fc263fc0-08d3-4f2a-a36d-a1b0e899bfe0", "name": "Too Many Requests - Returned in response to too many requests in 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": "14e019c0-c880-4aac-916e-87aaf2a01104", + "id": "0b195d33-ab23-4fb5-a5c2-6150cbd18abb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106377,7 +106377,7 @@ } }, { - "id": "17730bc1-cf2e-4ee9-bcc7-b2a27ddcb67b", + "id": "a37a129d-f3eb-4b1a-a7a0-af7c52c73959", "name": "Get SOD violation report status", "request": { "name": "Get SOD violation report status", @@ -106419,7 +106419,7 @@ }, "response": [ { - "id": "ff8a7386-228d-4bd1-b654-3e0f9d0394c6", + "id": "7ced8e24-fe1c-4bd3-b2c3-2e06794feb73", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -106464,7 +106464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5df5837b-cdfa-4c76-940a-2c31158abcd4", + "id": "21ebaea7-6045-407b-b05d-53a83573b223", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106509,7 +106509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff15d8c5-b41a-482b-a217-7402108845cd", + "id": "143e5efb-03fc-45a4-984b-afe5b0282703", "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": "5088c2fd-37a2-4af0-8c5f-275a15fe8bd7", + "id": "029957a8-2e69-4a5f-945f-0122d57f86b7", "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": "8c438f8b-8ac0-4dd9-b8c7-a2e456cb9f66", + "id": "64c15051-0388-4648-9d0c-beac645d091b", "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": "61ad0991-65ce-42e4-9e3d-25c8c5213c56", + "id": "97a13690-360d-4d36-92f4-0bb73e31a2b1", "name": "Too Many Requests - Returned in response to too many requests in 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": "5dde3fe5-1cae-4fbc-9045-10e1a8a0e411", + "id": "2a06817f-f624-473d-b2ea-73e30c420587", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106740,7 +106740,7 @@ } }, { - "id": "2f5b45bf-9250-4d05-aafd-5feac8ea0266", + "id": "678612b7-416d-43fd-a8c0-9cc8fea1ba36", "name": "Get violation report run status", "request": { "name": "Get violation report run status", @@ -106782,7 +106782,7 @@ }, "response": [ { - "id": "2e891758-3fde-44ad-9514-4b50f38ba2ee", + "id": "1fb62679-536d-43ae-bbf4-2974f68550d4", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -106827,7 +106827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42ed64a5-6db3-4490-a11a-ba270f4f2222", + "id": "47a6c3d6-8835-457a-8c90-1e4b78a14cea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106872,7 +106872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ae3f210-0629-402d-8b80-27affda41210", + "id": "69d9fb47-72b0-4781-b64f-33b4a14190a9", "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": "4deb1afd-7f1e-4b2a-8786-e9bf8f061a80", + "id": "a0f45797-7d23-430a-b1dc-97eb69257e75", "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": "a0220c80-df80-4d2e-a085-e0bae9c1e7c2", + "id": "cc363355-940f-4df7-b307-f2f744e13108", "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": "72064814-97d6-424f-bb4a-37bae9159864", + "id": "4007cf16-f1b4-474c-aa5d-faa6a5c408db", "name": "Too Many Requests - Returned in response to too many requests in 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": "c3d59ec5-057d-4dbc-bb6c-22bad2ec4079", + "id": "200dadbb-2453-4f58-b6e7-cc6ca6766fa3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107103,7 +107103,7 @@ } }, { - "id": "f8b90e19-6fc3-4a72-8d06-ccff33fd07cd", + "id": "434d4f8b-4f46-4fb4-928c-484ece24672a", "name": "Runs all policies for org", "request": { "name": "Runs all policies for org", @@ -107146,7 +107146,7 @@ }, "response": [ { - "id": "cd052892-5421-4141-8307-94d975aa4365", + "id": "c9cc9789-da94-49ee-aa54-7ac843f2042b", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -107203,7 +107203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27a41cb6-5b2f-4bc3-a6ac-b48707a7d237", + "id": "423a1200-5ee6-4420-a1ef-6aab02873680", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107260,7 +107260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78cc5c87-cdae-4654-8083-e3d3712330f7", + "id": "22ab3136-2fbe-404b-94a5-a0e4c42e6ec1", "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": "6a9358ad-4a3a-4a8a-9dd8-f17cd95678a7", + "id": "c34d4ce4-40e4-4ade-af5c-77505ba58bf8", "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": "b1f46f6e-d552-4062-85a7-781f7367ee1c", + "id": "476afa11-7220-4759-b4b5-67e0224c1552", "name": "Too Many Requests - Returned in response to too many requests in 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": "821e806e-d67d-44ed-abf6-c1a9b5f04966", + "id": "dad5c7ae-12f1-48e6-832a-56b876d01c5e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107494,7 +107494,7 @@ } }, { - "id": "722768ce-1916-4abb-a0b5-14ba8cd79e15", + "id": "26d9f4cd-a007-4ad3-86fa-55408d43a217", "name": "Get multi-report run task status", "request": { "name": "Get multi-report run task status", @@ -107523,7 +107523,7 @@ }, "response": [ { - "id": "4637205b-cfb3-438a-801f-3a1f96c7b8da", + "id": "58fcf750-afcd-44d2-b7ed-579d0a5bae46", "name": "Status of the violation report run task for all policy run.", "originalRequest": { "url": { @@ -107566,7 +107566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d9e00ad-e83b-4ff0-b31b-da97753b0f1f", + "id": "85dc282e-874f-48e3-be2b-a9135ab03ad6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107609,7 +107609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f5759c1-a726-4cd5-a493-0cfc699655f4", + "id": "4bfbc572-bbd8-4aef-b4f0-d4b00f500e0b", "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": "4eb78a6c-25b7-41fe-97b5-b9076d159cc8", + "id": "24a94afb-5e34-47e7-9cf9-1daff696e17a", "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": "c73ebeb4-3164-45cb-b5fc-e31353f19e35", + "id": "f501b11f-11d2-4fb8-b180-d58dddecb7b9", "name": "Too Many Requests - Returned in response to too many requests in 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": "e53f882a-ca4d-461f-944f-af3964f44956", + "id": "269a0edb-485a-4240-a021-23cedc3db702", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107787,7 +107787,7 @@ } }, { - "id": "77071046-b45e-45dc-a64a-366fad4ff750", + "id": "e25d2361-388d-42a5-a4c8-285cccfc5698", "name": "Download violation report", "request": { "name": "Download violation report", @@ -107829,7 +107829,7 @@ }, "response": [ { - "id": "7ee87be3-5e4d-44b8-a5d4-778007e002b5", + "id": "803b017b-bede-46c1-915d-ffb44614d643", "name": "Returns the PolicyReport.zip that contains the violation report file.", "originalRequest": { "url": { @@ -107869,12 +107869,12 @@ "value": "application/zip" } ], - "body": "mollit incididunt nostrud", + "body": "irure est", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "32b3c262-bf55-4d3f-8d65-7ba6986670f4", + "id": "187ab4e7-5cf9-4292-b940-3a2186f1707a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107919,7 +107919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ff5f3c5-5d24-4468-b95b-59559650b0ce", + "id": "8250e348-bd17-42bc-a654-fc276fbdb181", "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": "c7f7f3fb-6153-40b0-a86e-664833b95bd6", + "id": "de4ee515-0efd-4a11-9c6c-178d8292f671", "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": "8d1d7d90-b4f9-477d-9680-a28480bd8dac", + "id": "8757ef6d-0196-4d0c-bda0-18e515913cc7", "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": "c6a92b7e-13db-40b3-9c70-1ac899890b1f", + "id": "cd64c2f4-1738-440c-8b90-0f29303ce7db", "name": "Too Many Requests - Returned in response to too many requests in 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": "c8f413ac-03fa-47d8-b96f-c434564f0f58", + "id": "4b717b2e-03b9-4d68-9ed3-cfc8766c3b4e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108150,7 +108150,7 @@ } }, { - "id": "d583ff92-76bf-4228-9235-5f475b581311", + "id": "7c67e80f-ae3a-49b6-b562-183c86a8d1b1", "name": "Download custom violation report", "request": { "name": "Download custom violation report", @@ -108203,7 +108203,7 @@ }, "response": [ { - "id": "391c9a8b-1bfa-4234-bb88-d184a48b23f7", + "id": "7375d9ac-59a2-42aa-9eec-0ba6df89fe70", "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": "mollit incididunt nostrud", + "body": "irure est", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "38c836d3-51af-4023-8c80-e4ab67717c1f", + "id": "a7046c53-fd13-45bb-b415-a05b7f194d35", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108295,7 +108295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bf9e196-1d99-498e-b32f-fe61cf0a1d98", + "id": "e8f58ad9-71d5-47b9-9f47-b8df8ac78a58", "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": "677612e1-f3ec-49a9-8b85-584380406d51", + "id": "1cc12f06-cfde-44b5-b416-b3ed6122243b", "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": "17a9701f-cd6c-4c01-abc7-2f949b53ca15", + "id": "bed6a983-6aab-425c-b30b-8f87bd76f2aa", "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": "6055eb54-1f00-4614-b619-3efccfee1ac7", + "id": "fe865811-b0b6-4901-b111-5210bfe2fed7", "name": "Too Many Requests - Returned in response to too many requests in 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": "ebb3dbdf-9f5b-472c-b470-1a6c3cb39af2", + "id": "ebbdf161-e0d2-40d7-8908-6223264ad755", "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": "5e2f726a-e7e4-415a-a1b8-818a594a4724", + "id": "5a7332fc-e6cd-4d88-be8b-900e74ad211d", "name": "Predict SOD violations for identity.", "request": { "name": "Predict SOD violations for identity.", @@ -108580,7 +108580,7 @@ }, "response": [ { - "id": "4f4bc859-52d2-457b-b88d-da5b40217233", + "id": "8503666b-1fb7-4e2e-87b1-450e33d6e221", "name": "Violation Contexts", "originalRequest": { "url": { @@ -108637,7 +108637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fbc5737-3177-4649-9b9b-4c9074237158", + "id": "fc2bca61-09d7-42b9-bcc4-344cd3cd13ca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108694,7 +108694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7e4564e-70e7-4a96-b30e-1ed032582fe4", + "id": "d1c4c22f-d88e-4674-8bbe-c68a3577ba74", "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": "521cba41-d1de-4fd7-9c21-3352d8d66b38", + "id": "45c3ba91-fbf9-438e-b422-cdc096b71fc6", "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": "1906215a-a8c6-45b7-8ba4-d05eb5aacacf", + "id": "3f10cf9b-980b-4be9-8a78-91e525894922", "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": "e58a6521-4a82-4788-9f52-d22eccdae354", + "id": "3953b5ed-2df7-46eb-bc8a-5f6d3b4db7ef", "name": "Too Many Requests - Returned in response to too many requests in 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": "764f27c6-793d-4e3e-8da1-ffa6b0b8ebf7", + "id": "c0eade84-a252-4657-8618-cdc6c1810c94", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108985,7 +108985,7 @@ } }, { - "id": "7da3e87e-cb69-407a-b21e-d0bdac7c4ffd", + "id": "905b22e7-8ddd-4839-9f74-353004e6c78a", "name": "Check SOD violations", "request": { "name": "Check SOD violations", @@ -109028,7 +109028,7 @@ }, "response": [ { - "id": "48507faf-d7d6-4559-ab49-b6d10e44f472", + "id": "0b617584-5abc-42b4-bed9-a25908fd1a02", "name": "Request ID with a timestamp.", "originalRequest": { "url": { @@ -109085,7 +109085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be7760b6-51fb-4839-a320-fc1f1f1cac07", + "id": "220328c1-5db1-494b-8f90-ebd1817f560e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109142,7 +109142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22a70518-2c4d-49e6-bc28-d39ce72d1f9f", + "id": "d7282ceb-dd30-4b4e-9d1b-0ed408d3f8e6", "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": "0ca1c1fb-d655-40cd-a7f9-dc5636f3117c", + "id": "f2292484-ff09-43ba-92f4-9604b8f84057", "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": "0ad99ba9-c28b-42f3-83e1-2924b92dcd33", + "id": "480922b7-5a70-4c0c-8394-617bda687e8c", "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": "2adbde66-5aef-4652-a15e-3b29c1a9509f", + "id": "e057892f-5b2b-4196-88d1-b3b73ea0a863", "name": "Too Many Requests - Returned in response to too many requests in 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": "afe2e487-dd01-4006-a723-a92a72d5ad3f", + "id": "616a86aa-c6a5-45ec-84f1-2f678537ddd7", "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": "94c004ab-492d-4ce1-bfbc-fb82f91bba7b", + "id": "e66f1ae3-8784-44aa-a6d3-f94430a5e930", "name": "Finds status of source usage", "request": { "name": "Finds status of source usage", @@ -109481,7 +109481,7 @@ }, "response": [ { - "id": "bdec3ee8-775f-48b1-a237-0ab15ec54126", + "id": "f5de8fde-eb31-4b53-b266-938da7b320bb", "name": "Status of the source usage insights setup by IDN source ID.", "originalRequest": { "url": { @@ -109526,7 +109526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9e9c20a-fb43-4249-92f0-96e9103bdfaa", + "id": "29352262-3f04-40a2-b78c-e9744797131d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109571,7 +109571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afa2417c-b174-4979-8db7-a0788c2511e1", + "id": "53ffa66e-0cb5-4d97-8c3f-cd753ad23193", "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": "ece96f17-980d-45ef-a57f-91d726804aa0", + "id": "76679c45-85aa-4383-82f0-d8a936ef414b", "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": "e19ba8e5-7915-4564-be4c-056c7e5df235", + "id": "2206517e-fca4-44a9-85a0-457fa404d302", "name": "Too Many Requests - Returned in response to too many requests in 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": "eec997e8-3270-41c5-bf43-8f6a293a31e2", + "id": "cc308b30-3641-4aa4-9314-a3cddc294efb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109757,7 +109757,7 @@ } }, { - "id": "0f405044-a7a9-4f79-8e89-414d3375dcac", + "id": "dc461ee4-b494-45ab-80f1-7023a7cd7359", "name": "Returns source usage insights", "request": { "name": "Returns source usage insights", @@ -109836,7 +109836,7 @@ }, "response": [ { - "id": "0c4b2aeb-3556-4b91-bfac-2ca03a2d4bcf", + "id": "e8437d70-c8ec-442e-8ad3-45a7c57a077b", "name": "Summary of source usage insights for past 12 months.", "originalRequest": { "url": { @@ -109918,7 +109918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7996afa2-ef24-4a14-b926-d1e0ffcf8fb3", + "id": "d75bbbe3-6f88-4b31-97c3-920bdc70ac00", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110000,7 +110000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18b6e7ae-376e-4e0b-8b08-bbdd2ab07db1", + "id": "d67c5a5f-2bca-4d8f-8439-ecf9f7e431ef", "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": "ce6c3eff-b1fa-4548-b8a5-21fb167beb55", + "id": "b445884c-94ad-43c5-8593-7fd6167bdd34", "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": "8176319a-6a6a-489e-adaa-5cbe5b02af5b", + "id": "06a3c2c9-0c87-49c7-bef9-932c635c9bec", "name": "Too Many Requests - Returned in response to too many requests in 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": "0bed4311-63fa-42d7-9c56-21b7848ec7b7", + "id": "4cd8deaf-481a-479d-b19a-b049b3b72d02", "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": "3ee85c11-68e2-48d7-a98c-eb277a1d36ac", + "id": "6c538ed2-9d50-4fbc-a26e-437c2003c466", "name": "Lists all sources in IdentityNow.", "request": { "name": "Lists all sources in IdentityNow.", @@ -110424,7 +110424,7 @@ }, "response": [ { - "id": "e5eebd0b-f038-4a5c-a7f6-a921b9970157", + "id": "357aa9d6-f5ee-4c20-9b27-248709f8ccfe", "name": "List of Source objects", "originalRequest": { "url": { @@ -110522,7 +110522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db0cac81-29d1-4a55-9806-93fc0824e11d", + "id": "4ad2fe8e-cac0-4d27-b9b9-70b7fa634cf0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110620,7 +110620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1af11622-c9d9-454d-a5b5-527aaef1ec6f", + "id": "0cfda338-6205-43d5-98ed-56a59638c708", "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": "d036e181-c273-4a39-ad1d-4acc2e0d81c7", + "id": "ff9f8fbb-4a79-467e-9135-869c96331535", "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": "2137315f-0799-4210-95d9-5b0707082042", + "id": "d55c9cef-6d0f-4ce8-b9ff-691d8ce1e4c7", "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": "4eac8719-c8b9-41e0-a039-8d1486e73507", + "id": "2134b54f-25f9-4585-9fdc-6a8e8b5b91e7", "name": "Too Many Requests - Returned in response to too many requests in 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": "7475a240-30ca-43d2-b29d-133096fa09b9", + "id": "86ce47c7-d77b-4532-958e-48cbcd195f6c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111116,7 +111116,7 @@ } }, { - "id": "bb33dde8-1215-4ca8-9b52-81017e418277", + "id": "ed11c10f-4328-4813-817b-6c02b176dad9", "name": "Creates a source in IdentityNow.", "request": { "name": "Creates a source in IdentityNow.", @@ -111168,7 +111168,7 @@ }, "response": [ { - "id": "720cf22a-296f-41a3-a922-b1ae95ff9404", + "id": "143b8877-68bb-4789-931e-0a203991cddb", "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": "b70a56b2-d6e9-482d-95e1-09476bb8db3d", + "id": "3b7ae5df-b953-498d-855e-93b3efc04094", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111300,7 +111300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91d2fc8b-4afe-4d78-bd0a-7dabfa5c0bf5", + "id": "4eebb647-f921-4de1-a5e8-3b2784f9e92d", "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": "b83f066e-41c1-474d-b487-550fb89bebe9", + "id": "c36507a9-f31e-4dec-b088-6df7cdd7f9c7", "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": "e6de0788-b53c-4e09-a503-851522b3ccc0", + "id": "21d57d0a-8102-4eb1-a919-15e98621e18c", "name": "Too Many Requests - Returned in response to too many requests in 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": "0a0d51ef-6ed9-4746-ae86-efec65ec8189", + "id": "0eebde13-f648-433a-92e6-8cc3a97ce178", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111570,7 +111570,7 @@ } }, { - "id": "269bf09d-f510-4bf2-a1ce-db55ff70b236", + "id": "bda3a6e4-070b-41e0-a461-29213cb69170", "name": "Get Source by ID", "request": { "name": "Get Source by ID", @@ -111611,7 +111611,7 @@ }, "response": [ { - "id": "7aff31bb-7767-4d49-bf8f-f89cc8b86543", + "id": "61f0c91a-46ae-492e-a9b4-799b05f5bf6e", "name": "A Source object", "originalRequest": { "url": { @@ -111655,7 +111655,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd940b5b-154d-41ea-a009-c4e0ee19ccf5", + "id": "43deb788-9f59-46c7-a196-b89883dfe0d4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111699,7 +111699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff870f77-e01a-41ce-b33a-a1be758318ea", + "id": "002de2bc-edea-40d8-bfdc-96e9588ce295", "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": "eb1436eb-4018-41aa-94a3-04c917aaadb2", + "id": "04f32111-e792-44d1-8832-41ee8cf6e716", "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": "b998c1fd-52bd-4da5-901d-20fcc45ace68", + "id": "eb05571d-ed5e-4fc5-ada6-1ec1376485b0", "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": "faf9e3ed-5f4a-4931-9923-f3be7e1c6f81", + "id": "7ec1cab0-0121-4421-9472-a86e5a6d1ac6", "name": "Too Many Requests - Returned in response to too many requests in 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": "5676b0f2-424f-4934-b79f-06431d861f07", + "id": "43386e3d-66a1-4249-ad35-e34bceb6be43", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111925,7 +111925,7 @@ } }, { - "id": "e6c44d35-c228-406d-9dd2-ed0ce88467be", + "id": "68c2445d-7c6b-4ca6-8656-5602f56cf789", "name": "Update Source (Full)", "request": { "name": "Update Source (Full)", @@ -111979,7 +111979,7 @@ }, "response": [ { - "id": "41c60475-20ab-4526-af0d-d30f938b3b60", + "id": "fef7309d-6f6e-4363-864d-314c804b1568", "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": "37c2690a-e880-4f42-94ed-c7d2f2baec6c", + "id": "3d5cb8a0-ee5c-4a7f-9bf3-85fd9a8426bd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112093,7 +112093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2ee3cc6-0572-4035-a85a-acd7283bad10", + "id": "ed8bf4a5-bce8-4123-8847-fd833e121e65", "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": "a6374b72-053a-4b66-8a9a-a3ec279a78c3", + "id": "8e9abdc4-eed2-4f8c-b38b-c6a7e6ad54c6", "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": "d840e0c7-5334-4863-b18f-24be40180700", + "id": "aea5c88b-066b-4316-ac8a-4d0002eb00ba", "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": "be735830-8b5c-4fdd-9a2d-98f689ecf4a2", + "id": "94729ec4-7063-40d7-a43f-5113c7e3b88c", "name": "Too Many Requests - Returned in response to too many requests in 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": "e5748c4c-ecf0-467a-a5a8-3cd5c3885095", + "id": "1cb5817b-8cd5-4873-a128-73b1ac4bba6b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112384,7 +112384,7 @@ } }, { - "id": "9d44f403-d1bd-416b-9e4d-435c33245f4e", + "id": "9ba5c7cd-168c-4ee4-861c-a5a6775e63e1", "name": "Update Source (Partial)", "request": { "name": "Update Source (Partial)", @@ -112438,7 +112438,7 @@ }, "response": [ { - "id": "5d194d9a-f3d2-478e-8b44-37f3ec5ef9ed", + "id": "69bb835a-dbc5-4de5-9ebd-6367c117ea13", "name": "Edit the source description", "originalRequest": { "url": { @@ -112495,7 +112495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32c0e8b7-681b-4707-80a9-86cf3933aa87", + "id": "1a52aed7-04d0-4a26-a5ae-338a8febdd12", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -112552,7 +112552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb745b8a-7a85-4557-a214-0fff264c6fe4", + "id": "d0e51ba1-4c00-4e5d-9460-fb341b0121cc", "name": "Edit source features", "originalRequest": { "url": { @@ -112609,7 +112609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27f4e518-6787-4d8c-b426-610d24a41be4", + "id": "00518bf9-2822-49f1-a4d0-897954b6f42e", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -112666,7 +112666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b96e5d4-e4d0-4b8d-b6c5-2a2f87d27399", + "id": "6f8eebfa-cd2b-49f2-88a5-442762948486", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -112723,7 +112723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2043436-5ed2-42d3-a9f1-d9825671afa7", + "id": "ae1f12aa-3b60-4933-ac56-c5534d22a7ea", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -112780,7 +112780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8ebfe9b-7f64-4014-80b4-b3cd1061c893", + "id": "2d905521-fef5-46e7-a0e2-92f573f66e70", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -112837,7 +112837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfe30b8e-8238-462a-8b26-70dfe608e871", + "id": "69d5be79-e92c-46c3-a2b7-aeb843b1b09a", "name": "Edit source features", "originalRequest": { "url": { @@ -112894,7 +112894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab4be06c-773b-482c-a76e-b40d0f46e170", + "id": "1617aeb0-2b64-4591-b1e5-77079a061f96", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -112951,7 +112951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "612d1a36-3ef9-4cb5-b2da-e86e1eb217e5", + "id": "8885cb39-2615-4321-a11a-b01d6053ff85", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -113008,7 +113008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d017a92-9ea5-4989-8aff-e2411d7d56c5", + "id": "5e418463-1a07-4212-86b2-1803142d259c", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -113065,7 +113065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "574e910a-234c-4255-ad5e-3c4121da23d9", + "id": "ba86976d-67f7-4ea1-8497-6b542ffef711", "name": "Edit source features", "originalRequest": { "url": { @@ -113122,7 +113122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78ee3c97-1292-4f1b-bccb-f1302371036c", + "id": "640194bc-69af-44f0-91c6-cdaf9337aedc", "name": "Change a source description and cluster in One Call", "originalRequest": { "url": { @@ -113179,7 +113179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae240cd9-8d42-4f9b-b467-638e7dc60213", + "id": "3b15f5dd-0451-412e-b477-ad571dd1310b", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -113236,7 +113236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f12b4350-521a-42e7-aec2-eb13759d8d42", + "id": "28751baf-36b6-4f80-a6a4-3cf082c940c8", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -113293,7 +113293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a0d16ec-ecab-410c-8148-1a5a9de87e1f", + "id": "fa2e743e-599e-4748-9b7a-e9f55d1e9d0d", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -113350,7 +113350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ebf1c45-0e64-4415-9496-9db0b4dcc31c", + "id": "92516fc7-a4d0-467c-88b3-cbc596c40c68", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -113407,7 +113407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20c9d050-dcb5-4000-ae71-c48220a02cfa", + "id": "f0344515-83e3-411a-bbe2-3fcf695066de", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -113464,7 +113464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e8c4d14-1e4d-4070-a816-72df1dd73ee9", + "id": "118dc86f-f479-4dd8-a41b-c39fed5da278", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -113521,7 +113521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d91724a-07ab-4d1c-92f8-cd717395946c", + "id": "6b88d5a8-a56c-4bdd-912f-68bc512ed119", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -113578,7 +113578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf798077-3c33-48cc-a8ae-77fec8d4f83f", + "id": "820e0902-7a61-45b6-a6c9-39062ce7d47e", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -113635,7 +113635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc398f1c-7b85-4c1a-977c-1fef505a1cb0", + "id": "f170d34c-4bd3-4d57-b1e3-4fd3105d2bf1", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -113698,7 +113698,7 @@ } }, { - "id": "10a3b65a-3e72-4baa-8030-a2593a6b7b05", + "id": "0b6eb7bf-faae-4ff1-bd11-af001de15abc", "name": "Delete Source by ID", "request": { "name": "Delete Source by ID", @@ -113739,7 +113739,7 @@ }, "response": [ { - "id": "7c5751cb-05fc-468b-89e0-8d4294dde97b", + "id": "a916a57a-bae3-4c54-9ec5-9374f59d77d5", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -113783,7 +113783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72ce5b0f-5732-414f-ae10-f052d49e994c", + "id": "1947465c-3f19-4a57-9afb-89c0e6a9013e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113827,7 +113827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fe67c4a-cc4d-4b8d-abb4-c723168c315f", + "id": "897df2e5-4712-4ec6-96ca-bbc25387ff49", "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": "99316c97-2b66-4669-b744-93f9732ff4ba", + "id": "94890166-c859-4412-a116-335208577910", "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": "3d13137a-fc19-4eda-a637-d92826e1b36a", + "id": "d24aba7d-7042-46e6-9bd8-28712bec48c4", "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": "c3c72ac7-854b-42a8-aff4-cc83d4b9201a", + "id": "f53bdac1-78e7-4495-a5ae-3d059e407e55", "name": "Too Many Requests - Returned in response to too many requests in 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": "51047892-9d5d-4f69-815d-f6ccf6890549", + "id": "6771c2d3-bcaf-4813-bc5a-c7b764338230", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114053,7 +114053,7 @@ } }, { - "id": "458d34a0-df33-4f5f-be2c-5d58b8b7ad53", + "id": "68949936-7fd6-4d24-a02d-f63b1560806a", "name": "Lists ProvisioningPolicies", "request": { "name": "Lists ProvisioningPolicies", @@ -114095,7 +114095,7 @@ }, "response": [ { - "id": "69cdd544-12a8-4f09-9fac-c215d2b9d442", + "id": "2289d595-93b8-4b9f-8d19-2841540d115e", "name": "List of ProvisioningPolicyDto objects", "originalRequest": { "url": { @@ -114140,7 +114140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca313c85-5378-49cd-884c-8a2fdb595053", + "id": "b14b7c98-8532-4389-b576-e2507f0904bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114185,7 +114185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10ca8f2c-2d35-4f90-8994-3b5fe595c8fc", + "id": "d6875d64-e863-49e7-8540-4be3aea61328", "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": "13bea1fb-0431-4787-bad5-3f3783f882a1", + "id": "518555ab-cc52-46d0-8310-f46ff2906f45", "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": "787defbb-f24b-4d89-8a9d-2f2750c37360", + "id": "205b4b54-423e-4185-a279-83ef7e3d69bc", "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": "416efcc3-a3e9-45df-849f-cfc27af028d1", + "id": "c54b0bca-69eb-4bc5-9ebe-c7298d616a78", "name": "Too Many Requests - Returned in response to too many requests in 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": "c2803a52-29a6-47ea-be1d-26afbe9dab86", + "id": "8b27e117-09d3-4ed6-915f-f660cdbbab6b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114416,7 +114416,7 @@ } }, { - "id": "ccb56ee3-38de-40dc-af19-2bb06072cc9c", + "id": "b071140a-a550-42f1-9503-11eec6e09a50", "name": "Create Provisioning Policy", "request": { "name": "Create Provisioning Policy", @@ -114471,7 +114471,7 @@ }, "response": [ { - "id": "81a7292d-5b7d-4177-bfc1-de77dbcd0549", + "id": "74f907e8-402e-4928-91f2-603b6217055a", "name": "Created ProvisioningPolicyDto object", "originalRequest": { "url": { @@ -114529,7 +114529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5adf6332-0bcc-4d92-afb8-d467301e9e67", + "id": "0351c410-047c-46dd-a7a8-3ad544d0294b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114587,7 +114587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bb17d2f-be73-4121-b011-484a3dbee455", + "id": "e0ae62fa-d19c-4795-8756-2cf76d1fad70", "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": "1ab9bfdc-675c-441e-9c8c-fd708a5a3037", + "id": "52af5bcf-d280-44f2-a645-b5831e45d1df", "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": "ea00d1ad-a416-4f19-b9bf-89538b05142e", + "id": "dc1b9d23-cf48-4f4c-b5d1-0a8739dfa71b", "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": "9adbc96e-3be4-447c-a516-b2cb2b3ea0be", + "id": "86245713-8733-4578-b373-9e80a5fff873", "name": "Too Many Requests - Returned in response to too many requests in 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": "4818a32c-f474-4bb4-9233-a1139082d8dd", + "id": "c27c48ca-0a4b-43de-b96e-c91baa18dc54", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114883,7 +114883,7 @@ } }, { - "id": "242634aa-497e-4150-b34b-b711f7a56b5e", + "id": "f4c2ee4b-4a5c-4cea-9406-adbc6b7e0112", "name": "Get Provisioning Policy by UsageType", "request": { "name": "Get Provisioning Policy by UsageType", @@ -114936,7 +114936,7 @@ }, "response": [ { - "id": "fc050514-0a66-4fb2-9ddf-225d4ee33d02", + "id": "62497eb8-a353-487e-bcd9-7979a5837876", "name": "The requested ProvisioningPolicyDto was successfully retrieved.", "originalRequest": { "url": { @@ -114982,7 +114982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bab42200-8079-4d42-862f-1170def12817", + "id": "14a1188b-fda3-4ceb-a9f4-29978a4a1f8b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115028,7 +115028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64ec48d9-3f5c-4266-9ff4-793abee008d1", + "id": "156c06ee-8043-4dcc-a9d1-d40748213e15", "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": "b62568f3-eb0e-4560-9ed2-be9278fade02", + "id": "6d302679-6ad7-4bd4-a4fe-3cd4bd23383b", "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": "f4ab33c2-fc6f-4d84-b94d-3436cff0119b", + "id": "148dce52-c63b-45c8-88ee-e8a71862befd", "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": "f13a35b8-2669-4ee7-8c6d-f3a68313ef48", + "id": "e7148559-544f-4afc-8d06-4e6eb7e5a30e", "name": "Too Many Requests - Returned in response to too many requests in 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": "f904e03d-99b7-4837-a7d1-6c1bb4192f92", + "id": "e0e48d84-c8e1-4662-931b-00000d4c99b8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115264,7 +115264,7 @@ } }, { - "id": "cffad794-0408-40ab-9157-355b7aa0efc0", + "id": "ea01fc86-ff00-4ba6-92dd-83cdc48b650b", "name": "Update Provisioning Policy by UsageType", "request": { "name": "Update Provisioning Policy by UsageType", @@ -115330,7 +115330,7 @@ }, "response": [ { - "id": "6dd3e330-a487-4eca-bfe2-307c238f5050", + "id": "78f00396-1b08-4563-9726-a24ccdb88a5a", "name": "The ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -115389,7 +115389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09ba332a-8131-497c-a0af-06b27ce905a9", + "id": "ffaf3f24-3ff3-4334-8b72-e1c71c9755f7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115448,7 +115448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44bf2315-b103-4850-a55e-f6c0f31e8669", + "id": "edd48c2c-dfc5-40f8-8ebf-0b9e693d1f4b", "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": "2f44fc8d-75a1-4db5-935a-4fa4d3550966", + "id": "5cd4f338-2b3b-4098-9e1f-14a60886d952", "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": "77d17760-4a39-4f61-9fda-f64b3dcecb99", + "id": "a5c95b4d-7160-456f-b836-afaf5622360f", "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": "7d6c5a30-c0f0-4e33-a54d-87345397099b", + "id": "45501144-f9cc-4072-9d4a-e5a4700e34d4", "name": "Too Many Requests - Returned in response to too many requests in 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": "dce331c5-2253-4835-9875-c0ac53caa8ed", + "id": "a1ef4219-a607-4022-8eb4-f6a1d64d47fa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115749,7 +115749,7 @@ } }, { - "id": "b9f4c202-7453-4398-9370-f324af0ddfb8", + "id": "3149f437-4b5b-4b6e-b495-cae8d4007eb1", "name": "Partial update of Provisioning Policy", "request": { "name": "Partial update of Provisioning Policy", @@ -115815,7 +115815,7 @@ }, "response": [ { - "id": "70e3bf2e-b5f5-44e2-bed2-b0570668f114", + "id": "1b665080-4d20-4ee7-9638-3f9f6dd7a862", "name": "The ProvisioningPolicyDto was successfully updated.", "originalRequest": { "url": { @@ -115874,7 +115874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbc7f3b9-39ca-443c-8e4d-18be8e8cf581", + "id": "4c03136e-71d5-4531-8ed5-3b3ae0bee1fa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115933,7 +115933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2841c1c3-e245-4d50-80be-7bdd4d950fcb", + "id": "f5519bbc-75fe-469a-99f0-9d03e1235d35", "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": "5bc0ea97-eb00-48d7-a145-18dd414c2fea", + "id": "99d42711-3a33-4d2c-9be5-c564d82370bc", "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": "b7fa2cab-9d88-49c2-b8fe-e0a2c5b78ab2", + "id": "a1d04d93-1a17-47ea-a9e7-5183e60a19b8", "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": "ee03567e-e5e0-4a63-b974-c0b4dc1736bc", + "id": "e06ffcb7-f49d-4f05-9bd9-6ebb32674a4b", "name": "Too Many Requests - Returned in response to too many requests in 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": "6dabfc27-3770-4fb7-98b0-eede73c85fc6", + "id": "f5856241-2f40-4728-b720-8968dff246d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116234,7 +116234,7 @@ } }, { - "id": "2feb8bf3-0c23-461d-81db-e4771abe8298", + "id": "3a8c828f-f830-4cb6-ba63-99157da2742a", "name": "Delete Provisioning Policy by UsageType", "request": { "name": "Delete Provisioning Policy by UsageType", @@ -116287,7 +116287,7 @@ }, "response": [ { - "id": "2a61455e-0a3f-4348-a1a7-6b6e08333983", + "id": "a025596c-c4e0-4f47-8f35-d5f4118eb599", "name": "The ProvisioningPolicyDto was successfully deleted.", "originalRequest": { "url": { @@ -116323,7 +116323,7 @@ "_postman_previewlanguage": "text" }, { - "id": "439882e5-9c3a-4eba-8284-0c9ccb1c5ab8", + "id": "774745a9-6da3-411c-b9e3-40a515f96908", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116369,7 +116369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b767b29-0c1a-4f82-88b7-e16df6a4505f", + "id": "b7b9ac34-99ea-408c-9084-a38538d5b69d", "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": "804a267b-8f3e-4554-b533-ec8df22fa86d", + "id": "6cbd54b1-e882-4a57-9413-fcddacf00e99", "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": "3d0e3719-b034-42f2-b40c-3a2a7dcdbb49", + "id": "2d1f1be2-7574-4e7c-9b39-a8f949af6c1a", "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": "d6872d0c-b25b-4911-a2b8-e6a41aa78d7f", + "id": "3140de3e-e7a1-4a70-a7b0-47bfa9b429cf", "name": "Too Many Requests - Returned in response to too many requests in 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": "3aeac191-c5d6-44ee-8a6a-e3bc0d0c8d02", + "id": "c012d98b-b73d-4cf5-abbd-a44bf6e564e4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116605,7 +116605,7 @@ } }, { - "id": "7a3a8248-b72a-4dea-9d47-275a516f8a86", + "id": "2b5e82fa-39a3-4ec7-9fdd-26509ae0ed47", "name": "Bulk Update Provisioning Policies", "request": { "name": "Bulk Update Provisioning Policies", @@ -116661,7 +116661,7 @@ }, "response": [ { - "id": "164c45d6-4ca8-46ca-b871-3e93b708eca3", + "id": "80dfdb54-34b6-452f-bfde-9a53292d8ec1", "name": "A list of the ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -116720,7 +116720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78f6b3a7-688d-4709-be0b-31850ff8e525", + "id": "f2348210-12c6-4797-b85d-f0f008e1c611", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116779,7 +116779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2513195f-3f53-4314-99d5-a9d01a66bdb0", + "id": "19e32e55-2702-475d-85d3-c4cd0e517605", "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": "32452ad2-4e1b-4fce-98c3-f30b255b8c0f", + "id": "6050fe5f-9742-460b-8654-2e107848f8f4", "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": "b6e2349d-3f3d-4da3-bc8f-d3f5dbb00002", + "id": "dbae795f-4761-4e26-84bb-3d2b93525ce4", "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": "4c47bb5c-2477-48d5-8d61-2941e5f479c5", + "id": "75cb3c3d-fa3c-4f4c-88f7-f36c31b39af9", "name": "Too Many Requests - Returned in response to too many requests in 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": "70347445-cc1c-4c66-808e-87083c75e1f1", + "id": "afa54b3f-2c4c-469f-99b8-b427de507858", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117080,7 +117080,7 @@ } }, { - "id": "2d84ae97-90a8-409e-b676-e0f7a8905bcb", + "id": "365079ef-62f6-4993-aeb0-bfc53bc2dd0b", "name": "List Schemas on a Source", "request": { "name": "List Schemas on a Source", @@ -117132,7 +117132,7 @@ }, "response": [ { - "id": "b9e6851f-3172-4670-abfa-28c4dc4559c9", + "id": "5301b108-9a2e-4256-9238-081788d264ca", "name": "The Schemas were successfully retrieved.", "originalRequest": { "url": { @@ -117187,7 +117187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a94e5c8a-479e-448a-882a-6ea09bfd7b2b", + "id": "9dfc2794-f298-49b7-af16-88840e0ee6db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117242,7 +117242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e10dbf2c-8cf1-42ab-9e71-8c3aa7478377", + "id": "ff37465d-a03d-49f9-bfa0-22b20c83112c", "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": "9360fbd8-650b-4994-b2e6-4b3bbf6a9f51", + "id": "99859410-eebe-4223-b853-6dbe9c2a4a33", "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": "96e527a6-b7d3-4716-8eba-e8da11bbb9cf", + "id": "aa1ad5ed-fdd8-4f3d-ac7d-fe2eb0f6de17", "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": "3d52cada-fd20-4dcb-b302-0825eb53fdb1", + "id": "30213827-176d-49c6-9c65-fe140ccbfa03", "name": "Too Many Requests - Returned in response to too many requests in 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": "5073cb76-f159-43ae-9a36-f162f419f5cb", + "id": "53333934-b647-4398-9974-d9b1b3ba72d0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117523,7 +117523,7 @@ } }, { - "id": "e8acbc03-1179-46b3-b9a9-b627848218db", + "id": "5f2acb04-2509-4953-b8f5-15a99a42c7c9", "name": "Create Schema on a Source", "request": { "name": "Create Schema on a Source", @@ -117578,7 +117578,7 @@ }, "response": [ { - "id": "7b33ce39-f50b-49e5-83a0-3d46ef4b24ab", + "id": "31db2eb0-529e-446c-a365-1977953c7320", "name": "The Schema was successfully created on the specified Source.", "originalRequest": { "url": { @@ -117636,7 +117636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05ca89c3-8fc9-436a-ba3c-d215809a71a9", + "id": "158e4c27-ea23-4a08-b704-6718f65eee2b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117694,7 +117694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "323809fa-5254-4f6a-a6a5-c9023b38ec6c", + "id": "c7f3113b-aaa0-41e1-98a8-548ad975453c", "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": "beaf4ad1-e977-43b5-a663-943f46c2f43c", + "id": "dabe26a3-01e3-4340-85d2-6bdb61ca13d5", "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": "f06fafc2-fab1-47b5-acb6-0d7e73398a6f", + "id": "8a8ed88d-b552-4f63-91fe-31ec50f4ff39", "name": "Too Many Requests - Returned in response to too many requests in 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": "d4428713-fc4c-4a5b-810c-0350b8c10bf6", + "id": "97130aa6-c80f-46cf-a78b-0832c6058a36", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117932,7 +117932,7 @@ } }, { - "id": "32cf32f6-aa11-4ed7-8977-1a8ed50cf9b1", + "id": "1f5f3151-7f38-4901-aa3e-e55aefc7e3c2", "name": "Get Source Schema by ID", "request": { "name": "Get Source Schema by ID", @@ -117985,7 +117985,7 @@ }, "response": [ { - "id": "e7e826a3-39bc-4a67-a94a-6b45293715a6", + "id": "3b68b76e-589b-4d01-80f4-89cce022579d", "name": "The requested Schema was successfully retrieved.", "originalRequest": { "url": { @@ -118031,7 +118031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "754f889c-af91-4271-b221-9371f94b4e56", + "id": "59d94768-0394-41f7-b062-4e2ca94369ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118077,7 +118077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a131fe4-3a1b-4343-b13e-48e1eb730915", + "id": "c13a0ccd-f15d-4587-a62a-9e9173f1cc28", "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": "dd7c090d-e030-46cc-af6b-1a98a01fcbfc", + "id": "9d4c6ad6-fc2a-4673-8914-1b6fd397fbc4", "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": "693f1919-0b97-410e-88d7-f28adbedd86b", + "id": "636ce01d-7462-486c-8032-354f76341268", "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": "75ab97a9-d7d4-4d8b-a072-c3d5f4e451a2", + "id": "b1f5a073-c05a-4783-89b1-4975406e5230", "name": "Too Many Requests - Returned in response to too many requests in 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": "bf1b1909-2c5a-42aa-8ab4-d9237e3290c0", + "id": "52c3dd6a-f012-4ec2-b31f-903f21376617", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118313,7 +118313,7 @@ } }, { - "id": "c0279571-e69e-4fc6-b91a-0866eae43fc3", + "id": "d3dc892c-e7c5-422a-a7d1-b2ec6aabcd98", "name": "Update Source Schema (Full)", "request": { "name": "Update Source Schema (Full)", @@ -118379,7 +118379,7 @@ }, "response": [ { - "id": "bdef2730-2640-419c-98b5-91b41a50b711", + "id": "c4adf9a9-bef4-4322-ad9f-882b8dd73837", "name": "The Schema was successfully replaced.", "originalRequest": { "url": { @@ -118438,7 +118438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97473785-fb12-48fa-bca3-186b259e8177", + "id": "bf903e6c-0ecf-47dd-bd04-806b8e5a02b6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118497,7 +118497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d292084a-5851-4d21-8728-fad69f659455", + "id": "d59e2814-7c01-40c8-a76d-a9b8356df80a", "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": "9bd11618-dbf7-4ad2-a5eb-4601f22499d0", + "id": "4a98d9a9-379a-442c-a262-1ba55eddcc04", "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": "25f45074-64f8-4e77-b117-004ebb3c65cb", + "id": "383f5d66-4054-40ff-bc61-ab56c8f79169", "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": "601dfb7f-4617-4ef9-9494-e688cf938a07", + "id": "aa5edabf-8282-4c38-b02f-537c6145ff0a", "name": "Too Many Requests - Returned in response to too many requests in 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": "7aa98d07-d61b-425f-96de-7e122f31f0ed", + "id": "eeac79fe-0de2-426f-bad1-84f434c6c7f3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118798,7 +118798,7 @@ } }, { - "id": "d72d52bc-248e-44b9-8bb0-40a3d3e55947", + "id": "814396f9-103b-4f70-96d0-2f55e1868833", "name": "Update Source Schema (Partial)", "request": { "name": "Update Source Schema (Partial)", @@ -118864,7 +118864,7 @@ }, "response": [ { - "id": "b13f3ecb-9aea-4f1d-ba11-29909c97dae9", + "id": "50cbf23d-ca02-4683-a3b0-562216685800", "name": "The Schema was successfully updated.", "originalRequest": { "url": { @@ -118923,7 +118923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82a9581b-ff1e-41fe-abcb-4a417dfe6141", + "id": "2b3bb19b-3eba-4e17-8abe-6a08811099fc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118982,7 +118982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "709d5f8c-9db2-4470-b05b-3ecf048cf60d", + "id": "b82d78e6-8fa8-4c10-82c8-9e1e46ce862a", "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": "eb6415d3-f503-4cbf-9533-44c99c1d4a24", + "id": "7e88a368-3f01-4bfc-b20b-83710063503d", "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": "0ad56eb5-ad01-42ed-864a-039b68dca95f", + "id": "a22a3eff-23b7-44a4-8496-3244f73a445e", "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": "83c233b1-0ce4-4c31-81f0-8c9caefb209b", + "id": "7f7fb5b4-f928-43e1-ba1d-5eb4c81e344d", "name": "Too Many Requests - Returned in response to too many requests in 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": "945f78db-66b5-4b6b-8fcd-80a592e50271", + "id": "6ec0f290-1b0c-4970-bccb-b700c7b117fc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119283,7 +119283,7 @@ } }, { - "id": "5951ee3a-3a3e-468a-b767-cea52c891fa8", + "id": "4bab1bdd-885c-4f5d-a5fb-cf0b385e6124", "name": "Delete Source Schema by ID", "request": { "name": "Delete Source Schema by ID", @@ -119333,7 +119333,7 @@ }, "response": [ { - "id": "efc05be4-baa6-4cdc-8c3c-f57be1ce8f7f", + "id": "517a4e1a-10f7-4455-bcb9-63604218b621", "name": "The Schema was successfully deleted.", "originalRequest": { "url": { @@ -119369,7 +119369,7 @@ "_postman_previewlanguage": "text" }, { - "id": "55c71085-f164-4787-ad51-2c72a0837ccf", + "id": "6f161a52-3d5e-4353-8e7b-9df23fa0df6b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119415,7 +119415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe36eee0-6d23-4b36-8db8-ee2299a5d384", + "id": "8b5c257b-a642-4129-9278-ba3f82dd7efe", "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": "4fe53993-f477-420a-811b-3d53462f55d1", + "id": "c09eb7b9-2bd5-426d-a1b2-0b330f521fb0", "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": "980db1d8-e828-4fea-91be-6903162c0bb8", + "id": "dac8ae83-2473-4e0c-8aa3-58dcbde6eaef", "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": "a80fa189-6c11-4736-b62a-751f3ec501d4", + "id": "735032e8-f9d8-4cbc-a15e-65e8328c7dad", "name": "Too Many Requests - Returned in response to too many requests in 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": "08f19aec-0d61-4065-8045-41ca74db5b06", + "id": "943503d8-0f4f-4392-8b11-0128dd9a7cb6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119651,7 +119651,7 @@ } }, { - "id": "b3b7edb3-509b-4410-a26d-402b6dfbb55c", + "id": "00bf66d1-2979-4955-97db-59728d95d197", "name": "Fetches source health by id", "request": { "name": "Fetches source health by id", @@ -119693,7 +119693,7 @@ }, "response": [ { - "id": "dda07be0-02fa-4970-b12f-a37c87502346", + "id": "e034c87b-d2ab-4264-b657-bf643bda90e7", "name": "Fetched source health successfully", "originalRequest": { "url": { @@ -119738,7 +119738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2fd50f3-8022-4212-a295-2ba424d3627d", + "id": "a8d657f8-27cf-4bc8-b125-6d31fde884e2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119783,7 +119783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8ba4b15-5075-4049-a025-f5944fda526d", + "id": "2b17b02f-3be3-4477-8472-db7842d6c9e6", "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": "857c4b4d-6a45-4368-a896-930c17c67916", + "id": "4a32fcf0-4f67-4ade-b057-d8d7f1f7420c", "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": "719d61c4-afe8-4651-8c95-a5861ae2c0e3", + "id": "fd011afc-6297-49f6-9f02-e634d61009c4", "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": "efa58e98-353c-4141-a79e-f49bbbb57302", + "id": "793bfb56-2174-4cf4-a0ea-75a8ffd827b0", "name": "Too Many Requests - Returned in response to too many requests in 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": "79537f42-671f-4114-a4f9-0e7f3ffe0e7c", + "id": "0012addb-9a9d-4b23-bb7a-0548af38569c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120014,7 +120014,7 @@ } }, { - "id": "869caa48-4b97-45b2-874b-95d59c4390f3", + "id": "1b34fa29-95e9-4b03-9919-657bf0a4b426", "name": "Downloads source accounts schema template", "request": { "name": "Downloads source accounts schema template", @@ -120057,7 +120057,7 @@ }, "response": [ { - "id": "ac014525-5b99-4670-bbee-e1e3c6fa6c12", + "id": "99dacbb3-61b5-4b11-bfc9-596857f0bcc0", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -120103,7 +120103,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7c595f1f-86f3-4c85-adf9-63d6069b89fd", + "id": "e56fb32d-d79e-4c51-8aa0-fb8c4acd6f55", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120149,7 +120149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc90120d-77e0-4244-b4b4-926d3d18f311", + "id": "f34badba-07dd-4d74-844d-10648997bc3c", "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": "85a74499-1411-4f65-aaa8-b12431b14d13", + "id": "f1eab16e-a5e6-47ad-a8d4-ce4ecd145b2c", "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": "8d5ba1a0-c485-47bb-9da6-53f6a5c8f203", + "id": "8ae914a6-dcf7-4c1b-abfa-0471b77c8ecb", "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": "08401232-6549-4ae5-9197-c44f7e8bc30a", + "id": "c1d3366f-91f6-4a77-ac14-4314727ebd1b", "name": "Too Many Requests - Returned in response to too many requests in 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": "6be78f49-1129-4b18-b443-f1b30206542e", + "id": "e53fad58-05f2-4092-9c36-5b40c98cdfcd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120385,7 +120385,7 @@ } }, { - "id": "364e4480-0b13-4a1d-be75-3c2f373cbb8c", + "id": "a2efd177-f336-4fa0-9c58-4fc854d2bb1a", "name": "Uploads source accounts schema template", "request": { "name": "Uploads source accounts schema template", @@ -120437,7 +120437,7 @@ "type": "text/plain" }, "key": "file", - "value": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -120445,7 +120445,7 @@ }, "response": [ { - "id": "f29132f3-8e2f-40a7-9726-776863865c2f", + "id": "1577a26a-f43a-4564-8e5c-079101dd12f6", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -120489,7 +120489,7 @@ "type": "text/plain" }, "key": "file", - "value": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -120508,7 +120508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b3bb370-aac8-497b-bffd-28f594cc34db", + "id": "e70a8168-6158-4777-aa21-8da547975200", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120552,7 +120552,7 @@ "type": "text/plain" }, "key": "file", - "value": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -120571,7 +120571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fb0e476-0b44-4967-8cb1-a6472bc0ceb7", + "id": "6b8a3cd0-f10d-4083-acc0-14cdda473eba", "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": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -120634,7 +120634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cb5c494-9439-47d9-968e-50122ff3c64b", + "id": "6df08ba0-5fe3-4e23-8fa4-e7f9e9ab5223", "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": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -120697,7 +120697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cb8783e-602e-41e4-829e-f9450decef54", + "id": "095a715a-23d0-4fad-87bb-d18a6d0f4039", "name": "Too Many Requests - Returned in response to too many requests in 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": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -120760,7 +120760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f977bd0-54e0-4e30-a80c-3343108f2baf", + "id": "ae5d5b1f-fe67-4136-93a2-9614acecc422", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120804,7 +120804,7 @@ "type": "text/plain" }, "key": "file", - "value": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -120829,7 +120829,7 @@ } }, { - "id": "dceec40b-d0d4-469b-897c-f56b409e1cd2", + "id": "260bf4c1-9e2e-4cbf-9b88-9da6040d34b4", "name": "Downloads source entitlements schema template", "request": { "name": "Downloads source entitlements schema template", @@ -120882,7 +120882,7 @@ }, "response": [ { - "id": "29979e2b-778e-4086-b645-5485a74b310e", + "id": "fe4cad7c-792f-4735-ba5f-a92502d52b45", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -120938,7 +120938,7 @@ "_postman_previewlanguage": "text" }, { - "id": "fbe1c490-2744-465f-96de-78bedf32d5ed", + "id": "68c39630-e35f-4e1d-b6d4-9e0157205b21", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120994,7 +120994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f0bc898-1090-497a-b827-bd3e7e991dbd", + "id": "befbdd12-c2a5-4372-aa3a-5f6477a402fc", "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": "29bcb263-9f52-40c0-9496-c648589cb937", + "id": "d3fd383c-42fc-419e-9133-17d49b34f9cc", "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": "47290200-7de1-49fc-9b02-21d676c61d28", + "id": "0c6e1bb9-ceac-4464-9937-1c58629d1a0f", "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": "6a5344ee-08e5-46ab-9e7c-af0a90fd0d1e", + "id": "469bd90b-2c58-4e9a-b61e-8c63af115c59", "name": "Too Many Requests - Returned in response to too many requests in 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": "abba90eb-b593-4fdc-9aff-4ff7e695a552", + "id": "7ed06d60-b1c3-494b-8589-7217b8b4620f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121280,7 +121280,7 @@ } }, { - "id": "2ec35730-13ea-4a0c-9cf6-d2ea91986ba1", + "id": "17bbc96d-bd39-4cce-99c0-811124014a3e", "name": "Uploads source entitlements schema template", "request": { "name": "Uploads source entitlements schema template", @@ -121342,7 +121342,7 @@ "type": "text/plain" }, "key": "file", - "value": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -121350,7 +121350,7 @@ }, "response": [ { - "id": "8701895b-7e1d-4bda-a1e1-d66058865108", + "id": "78e29bc0-402d-41c2-83f2-65b97e240014", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -121404,7 +121404,7 @@ "type": "text/plain" }, "key": "file", - "value": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -121423,7 +121423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90336f53-672b-466f-b30f-484e215a4828", + "id": "54184068-de9b-4478-8863-2d23b32279f7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121477,7 +121477,7 @@ "type": "text/plain" }, "key": "file", - "value": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -121496,7 +121496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "878c74b6-7543-43aa-8258-e4d04ab167ef", + "id": "3bf5a534-06ee-48ff-9150-44214aa22702", "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": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -121569,7 +121569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20bf78b9-36bc-4359-b164-f5d5f3e47faa", + "id": "ef6139b2-9bac-40f6-bae2-0ead2445cfe5", "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": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -121642,7 +121642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2363ba67-61de-4c09-ae5b-05aa81a2e0ff", + "id": "490548f8-4432-4a51-a4e1-3c85a6c4fd35", "name": "Too Many Requests - Returned in response to too many requests in 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": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -121715,7 +121715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cec56c48-5616-4be1-8890-5b92754f9779", + "id": "631e0a1f-536f-4cd2-8158-d4dfca9ffe10", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121769,7 +121769,7 @@ "type": "text/plain" }, "key": "file", - "value": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -121794,7 +121794,7 @@ } }, { - "id": "42d65514-9260-4608-a3c3-5a784d899b8d", + "id": "8a9475f6-6b80-4a53-a320-ce2d23b79f1c", "name": "Upload connector file to source", "request": { "name": "Upload connector file to source", @@ -121845,7 +121845,7 @@ "type": "text/plain" }, "key": "file", - "value": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -121853,7 +121853,7 @@ }, "response": [ { - "id": "0176cdcf-ac9e-4b31-9e6a-9292fcc8447d", + "id": "4d21b1dd-f5e1-4002-8e1b-497b3750b1d4", "name": "Uploaded the file successfully and sent all post-upload events", "originalRequest": { "url": { @@ -121896,7 +121896,7 @@ "type": "text/plain" }, "key": "file", - "value": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -121915,7 +121915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "beea93d5-d51b-4b9b-9dab-e041db904349", + "id": "c5ceb0ff-546f-44f1-a9d0-5175de37085f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121958,7 +121958,7 @@ "type": "text/plain" }, "key": "file", - "value": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -121977,7 +121977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06c7da39-6e06-42c3-82dc-ba475d912dd7", + "id": "dad65e15-bcde-4082-8f3e-bcedd20864b1", "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": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -122039,7 +122039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afdcbcf9-3692-4c9a-9389-aa4951e88c2d", + "id": "8b608237-41ce-4f4a-a632-9f6e712b8e25", "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": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -122101,7 +122101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ca3d30e-8b13-498e-a93c-f76632009bb2", + "id": "84740455-894a-4046-95f2-c3ea4548312c", "name": "Too Many Requests - Returned in response to too many requests in 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": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "type": "text" } ] @@ -122163,7 +122163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71c78538-68a1-450b-9413-0a1ce26b8e6b", + "id": "f5b69089-b55e-43e8-bbb0-b6bb47d96292", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122206,7 +122206,7 @@ "type": "text/plain" }, "key": "file", - "value": "amet deserunt dolor Excepteur", + "value": "tempor ut minim consectetur", "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": "02d80fe3-4883-48c4-9f60-ac2c63479260", + "id": "57f0f8e6-4230-49d8-90fb-f2147bf453a6", "name": "List Tagged Objects", "request": { "name": "List Tagged Objects", @@ -122303,7 +122303,7 @@ }, "response": [ { - "id": "6db809d0-d184-48d0-a256-9917cdfc4af3", + "id": "964b26a1-62e8-4ac0-ac37-8e6c646e133c", "name": "List of all tagged objects.", "originalRequest": { "url": { @@ -122383,7 +122383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "716ff3bc-4f86-46a9-b95b-da6d308e0132", + "id": "713bdf90-0b4b-4241-844a-0850b4183fec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122463,7 +122463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ace7ec93-0438-4994-a3c2-9ae08e78705f", + "id": "1ddd6072-93b7-490e-baad-a4025be3dcda", "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": "bed9becc-9054-4d44-9b37-8c387f448066", + "id": "c63a6442-59d2-48eb-9e86-4aa498f710d6", "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": "bc5e26f1-03a7-4702-922e-42b844941d0b", + "id": "aa2fbb4a-c5c6-4d18-9e3c-26a97f8c3d0a", "name": "Too Many Requests - Returned in response to too many requests in 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": "3db5410f-de2d-44e3-9897-089b74f7362d", + "id": "016008b1-e78f-4c1e-aae3-1862981cc249", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122789,7 +122789,7 @@ } }, { - "id": "36de5148-1ea0-4f1f-ad82-620ec79ec70e", + "id": "f9fc1245-fcc3-46f9-b7f7-f3657c156a49", "name": "Add Tag to Object", "request": { "name": "Add Tag to Object", @@ -122831,7 +122831,7 @@ }, "response": [ { - "id": "bd2ef285-89f8-42e3-ac46-abfcbf21bf4b", + "id": "c3187df3-e667-462c-894a-b8c733b92519", "name": "Created.", "originalRequest": { "url": { @@ -122877,7 +122877,7 @@ "_postman_previewlanguage": "text" }, { - "id": "26be1de4-c9fb-4039-a32d-e75670a36f84", + "id": "8627af3c-e942-480c-a7c1-8dddadda7716", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122933,7 +122933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab7c9982-9b03-4af5-b4a5-3f3599b8e5ea", + "id": "a43cf5b9-fdc2-42da-9bb6-f390180db1bd", "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": "0798e942-d1e7-48bb-b350-84f772349ee5", + "id": "a01c06b2-3419-4c15-938a-ce0dec7d38b5", "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": "da55cd9f-d440-4926-bfcc-10069da703aa", + "id": "9a1cd10d-eb77-4ee7-8455-addcd514d2af", "name": "Too Many Requests - Returned in response to too many requests in 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": "64f71bed-4594-4196-8064-d4702ffe48e1", + "id": "ecd4d523-4cfc-41f3-af9b-4630d93d3d72", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123163,7 +123163,7 @@ } }, { - "id": "17072ed7-f290-499c-bda9-206be74bd61e", + "id": "45f4b9ea-af75-4d5f-bc60-e5c4a01ec019", "name": "List Tagged Objects by Type", "request": { "name": "List Tagged Objects by Type", @@ -123241,7 +123241,7 @@ }, "response": [ { - "id": "a4462102-bd8d-4a40-b23a-5081347f36c7", + "id": "10cecce4-69bb-4964-a2b8-fbe8854a69cb", "name": "List of all tagged objects for specified type.", "originalRequest": { "url": { @@ -123322,7 +123322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eaa4da21-b167-43da-bc83-fd19d315de8c", + "id": "079b42c2-4340-4518-be12-378ca53806a9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123403,7 +123403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3b503f4-b2ac-4862-808e-c18f14c4016d", + "id": "61443307-9dfd-4529-835a-59e5cd47186a", "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": "2640cb7f-616f-4031-9971-609480a82db5", + "id": "dce450f5-68dd-4937-966f-bffa109839c4", "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": "c4f83cdc-6cd0-4fe8-8e11-a733e927e70c", + "id": "26aa3cb4-799d-4435-9f9a-c58d6b85edb4", "name": "Too Many Requests - Returned in response to too many requests in 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": "9c92458f-2fb3-43e5-84f7-698fa96323f6", + "id": "aa226196-db3b-4ca6-8724-b7a00dab785f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123733,7 +123733,7 @@ } }, { - "id": "511829d6-0e2f-4815-a191-2604731dc0cb", + "id": "338142b5-01f5-475c-8f5d-6369b1dfab94", "name": "Get Tagged Object", "request": { "name": "Get Tagged Object", @@ -123785,7 +123785,7 @@ }, "response": [ { - "id": "905a7718-b2e3-4e7a-a7aa-24cd07e9dbb6", + "id": "bc717191-3bb7-40e0-ac34-350af2b111a6", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -123830,7 +123830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8db1b5ba-e3d8-4016-9cee-0bf3e69dc241", + "id": "03ba564b-7227-45d3-ac35-9eb1643bd3b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123875,7 +123875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c26f9a05-2ff5-4be7-abb1-d37701f26d8a", + "id": "b228e609-73a4-4e01-9280-0a3f02e07e46", "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": "92fc8a0e-6b07-4355-805c-a3cc12824ed4", + "id": "a5998a90-42e6-4275-a33c-cfd426c46a4d", "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": "b64f4d47-83cb-4851-86c1-bd3f074e6c5c", + "id": "feea0dab-b06e-45de-a296-b1673b54bdb5", "name": "Too Many Requests - Returned in response to too many requests in 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": "3bd1af40-46f1-491b-ac00-9dc6680e264b", + "id": "72c203c4-1fb6-454a-a20c-c815e0727245", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124061,7 +124061,7 @@ } }, { - "id": "028cbe78-00d2-4e19-80b9-fada7860d4f1", + "id": "3c9fdd94-2d5e-4c1d-bb53-d54541ad851c", "name": "Update Tagged Object", "request": { "name": "Update Tagged Object", @@ -124126,7 +124126,7 @@ }, "response": [ { - "id": "5d692068-99e1-4010-8af6-48bd27dbc8bd", + "id": "98fded0f-d466-416a-9022-6194701f7181", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -124184,7 +124184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bea2258-2ee9-40d6-9b81-60624e5cfb10", + "id": "9eb8d5aa-0149-4807-b13e-82d66a1889d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124242,7 +124242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dba9ae4a-1e1c-4681-9a4d-fe372c767c68", + "id": "b55a92c1-809a-47a2-8ea4-79167ad3b625", "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": "a1436c8c-729c-4e0c-95e2-cda5735119ec", + "id": "8c946358-09a8-4b1b-93ec-4b425e7b8b59", "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": "29210fa9-8e29-4473-9c1c-8db1eedf427f", + "id": "1f8d741c-7174-480d-8edc-6bb74233e4d1", "name": "Too Many Requests - Returned in response to too many requests in 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": "b17a4063-efc6-4c2f-95cd-3c9bd82a8047", + "id": "012c000d-e269-4b85-89e1-8519a4a6e071", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124480,7 +124480,7 @@ } }, { - "id": "2d2e0e64-aa34-40b6-8da9-6c7ee4df72aa", + "id": "6a817047-dade-4cd9-ae4d-218fa30cc327", "name": "Delete Tagged Object", "request": { "name": "Delete Tagged Object", @@ -124532,7 +124532,7 @@ }, "response": [ { - "id": "a774ecbd-d222-47ab-9a28-b1e4ed19ac78", + "id": "500f1608-ccfb-4fc0-91c4-5e8c17157e82", "name": "No content.", "originalRequest": { "url": { @@ -124567,7 +124567,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8f1f8c11-778a-49c0-88fb-fcccfe4dd06f", + "id": "cee78d2e-ff56-4c20-b568-e5d31577a2e3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124612,7 +124612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b20cfa17-1b67-413e-9a4f-aca8943ae8d2", + "id": "92f1c4fd-c727-47e1-aab9-a081a35c2fee", "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": "ddef2c24-db55-4ad9-baef-f2849f09eefb", + "id": "d86a9f8b-f745-4714-a270-365e53796a65", "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": "53dcbc9b-b321-4975-9a57-0c8949919faa", + "id": "c9821e1f-f623-4ac1-9cb9-8bdf32d5c6a0", "name": "Too Many Requests - Returned in response to too many requests in 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": "0add5f62-84c3-41c5-87ac-44a7e9a2edfe", + "id": "8d3a94b5-b3be-45dd-ad99-a759c19efed1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124798,7 +124798,7 @@ } }, { - "id": "c9b11a87-1ab2-428b-9980-1e35de23a6f6", + "id": "195e0786-eadc-4a38-884d-61e017dc13ea", "name": "Tag Multiple Objects", "request": { "name": "Tag Multiple Objects", @@ -124841,7 +124841,7 @@ }, "response": [ { - "id": "c020023f-7279-4b05-aee3-83d9bddc4318", + "id": "18cb4fbe-4f9d-471b-a11f-db12f1538a73", "name": "Request succeeded.", "originalRequest": { "url": { @@ -124898,7 +124898,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7290181a-f830-4141-b083-b64df0bd44aa", + "id": "f00fac17-7723-4751-b7f1-857fc74a292e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124955,7 +124955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e617d998-40f3-4bab-a598-fc14f254f1fc", + "id": "e65de96c-e3f7-40b7-954b-3de5c5e2992d", "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": "955a67ab-0d72-4c8a-a67f-6e08bd15e5ea", + "id": "98102a7d-15e7-4dbb-bfd2-ed75bceb69f6", "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": "eb08f646-625b-41a2-b0f8-27c56b70bb74", + "id": "8b2a510c-76d7-4c15-ab8b-1d9014bca46a", "name": "Too Many Requests - Returned in response to too many requests in 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": "9ee7e959-e96f-41c8-8380-efcafca16767", + "id": "f4790296-bec7-4592-8606-b58ae557ee16", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125189,7 +125189,7 @@ } }, { - "id": "26e0c1c0-1a0d-4059-8360-3d8fff281fe3", + "id": "481ce507-b484-4884-95d6-63f4bc1eb4c5", "name": "Remove Tags from Multiple Objects", "request": { "name": "Remove Tags from Multiple Objects", @@ -125232,7 +125232,7 @@ }, "response": [ { - "id": "627b10f8-5836-42e9-8609-a5005d3f1fc8", + "id": "5d025927-e84b-4d34-99a8-19623e3a02ed", "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": "43b3b014-fcce-4199-95c2-f1bc09702412", + "id": "abe2c458-3e24-4043-af79-dfef06ed8b7f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125336,7 +125336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4aac4727-d8c9-4b2f-8e08-ed1a23763c45", + "id": "5ba5d3f4-50de-453e-b8b9-b076586e847e", "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": "35f1992f-c583-4f52-8760-165a61ac0191", + "id": "82782b4e-6ca8-4d34-a4be-28e0f44a6a0e", "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": "29e3217d-d9f8-4a7c-a25a-12c472119e5f", + "id": "be7d0b71-3b78-4115-a685-27480c9b9cc9", "name": "Too Many Requests - Returned in response to too many requests in 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": "473554c6-9680-4d3d-b047-87891fdad6d7", + "id": "eab5c63b-2974-40a5-883e-c4e3ec3c607e", "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": "c84d2f31-e89f-4dd8-aa6a-7b5761150073", + "id": "adee290c-0436-41a7-9b6d-2915c1d44979", "name": "List transforms", "request": { "name": "List transforms", @@ -125651,7 +125651,7 @@ }, "response": [ { - "id": "16067abb-13b8-4859-ab45-41398522dd32", + "id": "57ea1f38-43b7-45fd-b732-86b2623db179", "name": "A list of transforms matching the given criteria.", "originalRequest": { "url": { @@ -125740,7 +125740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47c93056-d87b-47df-9dd2-5bc05ec93df1", + "id": "57531574-e58d-496b-9565-4a651254cc23", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125829,7 +125829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b20402d5-0640-44ac-906a-f93c5025387f", + "id": "fccfdfd2-bd6b-41bf-9131-8512cc4c0d06", "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": "86873ac7-1d75-42da-a055-827b08e2e507", + "id": "0fb25490-8a5e-475c-9899-2a7bec76e9de", "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": "5a4451b5-07d6-4966-b04f-de7e184b47a1", + "id": "ccdd5740-a81a-48b9-8949-746bda7c2ffa", "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": "d83daadf-a803-4977-a710-936c26609c37", + "id": "eec7ac01-ecb1-4401-af89-21375ff0fce6", "name": "Too Many Requests - Returned in response to too many requests in 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": "61927816-f5a7-4dbc-9f28-7ce711694578", + "id": "8eb33c28-b1b7-449a-ae57-d77f74c8a724", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126280,7 +126280,7 @@ } }, { - "id": "e1cfb48b-b1dd-4f74-a9ad-17553e10e132", + "id": "8ab097f4-f3b5-4f00-983b-50604f216772", "name": "Create transform", "request": { "name": "Create transform", @@ -126322,7 +126322,7 @@ }, "response": [ { - "id": "3d1648fe-08b2-4195-8264-b51039992ea9", + "id": "68183bbc-1ca6-4afd-8ebe-bbbaf28c70f6", "name": "Indicates the transform was successfully created and returns its representation.", "originalRequest": { "url": { @@ -126378,7 +126378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c26fe7a8-9a76-4e3a-9682-2d8f78c8fd1b", + "id": "046009c5-8bd4-4a23-8b2b-1d5ea19b8760", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126434,7 +126434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7dddeba4-4d0f-46bd-9b3a-f72292b7eb7c", + "id": "2f1a74a9-8980-4dc8-9249-15ce5ae3a3a9", "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": "f924b26a-5918-400b-aa83-b349ec27bb6c", + "id": "f7e46971-28a0-4b00-a67f-a92048d6a598", "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": "72ebf68f-55a9-405b-875e-f3573cd47220", + "id": "fdb025b0-18e2-430a-bc9e-b77b5f1065a4", "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": "9b460e41-c3a7-451b-b7d7-0f274c073630", + "id": "a4da0515-839e-4e38-865a-e23f02e3abe2", "name": "Too Many Requests - Returned in response to too many requests in 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": "51584a60-ad90-408e-89e7-5baa3fc22fc2", + "id": "8fc21950-6b8a-4643-93cc-f205ec05f621", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126720,7 +126720,7 @@ } }, { - "id": "6c24ad4b-4831-4a2f-80bc-ba42626afe6b", + "id": "ccd552a1-ab82-45aa-bb20-f21d4cae121d", "name": "Transform by ID", "request": { "name": "Transform by ID", @@ -126761,7 +126761,7 @@ }, "response": [ { - "id": "40afbab1-3e3e-4fa0-ba33-6cabf83b16e2", + "id": "1ebc589c-b219-4068-ab72-7810d2238ec7", "name": "Transform with the given ID", "originalRequest": { "url": { @@ -126805,7 +126805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4da2f4f1-9521-46d8-824a-06d140327281", + "id": "375d7869-c317-4039-84c7-aa9df38813ac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126849,7 +126849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "578fe7b8-4c99-4706-bf3c-d93bb0103e3f", + "id": "9d458364-280a-4145-a8cc-9f8928906b1d", "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": "a92c92d4-b312-4493-b8e9-58525280fdf4", + "id": "bf5bdd1b-020b-4e55-b611-cdad3643c3c6", "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": "f98e378a-7267-45ea-a366-88a19693d3f6", + "id": "ba682425-8636-4f20-9b8d-8e28accd9c0a", "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": "863eb70f-d3a0-4d59-a64d-35375aed0ca9", + "id": "3731962d-54e8-4f2c-9eb3-e451ba7325a4", "name": "Too Many Requests - Returned in response to too many requests in 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": "a3cfdf5a-917c-475f-a3b4-95178ac803d4", + "id": "3328b4ba-af55-45bd-893c-7cbc501d5cae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127075,7 +127075,7 @@ } }, { - "id": "05f8359f-8d36-4e06-906d-e2e3cf5766e9", + "id": "b26d151c-ef07-46b2-84fb-eeaa961237de", "name": "Update a transform", "request": { "name": "Update a transform", @@ -127129,7 +127129,7 @@ }, "response": [ { - "id": "5465da13-0b84-4a98-b53d-e5530c0248f5", + "id": "e43208c1-d14b-488c-8e20-27fddcaac0f5", "name": "Indicates the transform was successfully updated and returns its new representation.", "originalRequest": { "url": { @@ -127186,7 +127186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53074107-568b-4b26-a278-01112e8cbb34", + "id": "e449c5d4-ad43-468f-a21d-474db5d4b974", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127243,7 +127243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f714e254-b238-4f32-84b1-a70c38b8e1a9", + "id": "28075183-7a47-4229-8e2d-779e3f7becd9", "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": "1ecf15af-8940-4a20-962e-bd582c7f5be1", + "id": "6e88d555-6740-410b-95d2-29cb86b466fd", "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": "7ab64f3a-e2e5-4d2c-a8f1-6a101f860800", + "id": "05aafbb5-bc77-48c4-8db7-a8a393b0e987", "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": "1308dee8-3615-4f77-b1cb-38f009840dc5", + "id": "d3238496-17b6-42e7-9bae-df782a985f43", "name": "Too Many Requests - Returned in response to too many requests in 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": "bfadd783-d958-4c0e-8fda-fef92c5e35f3", + "id": "a90250ce-11fe-40af-b13d-f26e9186c055", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127534,7 +127534,7 @@ } }, { - "id": "57fd27ae-9134-4eb1-b96f-726130ef861c", + "id": "ba55d5f3-e50f-4066-971d-35105ba5048e", "name": "Delete a transform", "request": { "name": "Delete a transform", @@ -127575,7 +127575,7 @@ }, "response": [ { - "id": "09af7d2a-adfc-4af1-ae36-3b7673f2fb24", + "id": "4cd92ebd-610e-4b82-a25b-86dff3b0c648", "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": "30fe2cdd-7a04-48df-87ae-4afbc4af9494", + "id": "21743682-b08e-477a-993f-7b5dddfcbfd7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127653,7 +127653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa80a83e-74ba-4cc6-abe9-8faa22725acc", + "id": "d9d97120-4625-4a9e-8256-9b9cb621f9bc", "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": "067418b7-7d56-4cb3-b906-8a44d6b249ee", + "id": "6c2236e5-7eec-4c9f-b852-7416470f1e98", "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": "9617931e-5b0a-4f2b-b208-a6b4bd24cb28", + "id": "a25cc961-eaac-4fd6-9bac-a42545baebed", "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": "a857ab09-7bc6-42b8-bfe1-7f081b9b6613", + "id": "654d6381-9cf6-453f-807d-e6e3cf960a9c", "name": "Too Many Requests - Returned in response to too many requests in 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": "57705a3f-2115-416f-a181-f991a97848a7", + "id": "4f1e400e-ce06-4949-acd4-a20131f87d18", "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": "3d722397-2b86-4e9f-b363-f6ef561e8bb1", + "id": "67072fc3-f3a3-4535-8bdb-9bf264f16017", "name": "List Work Items", "request": { "name": "List Work Items", @@ -127951,7 +127951,7 @@ }, "response": [ { - "id": "033e52f3-fee5-4ffd-b639-9e3debf59162", + "id": "3d1bd532-e422-4a5e-8e54-cf3a9f7f3097", "name": "List of work items", "originalRequest": { "url": { @@ -128031,7 +128031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfb8841e-54c0-413f-8379-a8b9500d12b9", + "id": "c320ec5a-6eee-408c-afaa-079765a7f0a5", "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": "f1fe43b3-7dbb-4206-bd56-004584354daf", + "id": "b7d48abb-d9f2-4d01-9b29-f3bec37000a9", "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": "6333c39b-70db-4c2e-a747-6fb1140e8dce", + "id": "cfc586ed-f1cc-4d30-87ec-de4fca43fd32", "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": "dcf29c6d-8308-4970-8b05-9104b9441e39", + "id": "ba6f3db9-043f-4ecd-9c49-8458ba2d09d0", "name": "Too Many Requests - Returned in response to too many requests in 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": "06696ef1-a894-41e2-ad2d-20cbee338ef1", + "id": "2270adce-3e93-4cef-baf9-2073a7017732", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128437,7 +128437,7 @@ } }, { - "id": "bc140198-d899-4273-91d9-7359e7981181", + "id": "d00ff8e1-495a-4859-90ee-4b749e82c596", "name": "Completed Work Items", "request": { "name": "Completed Work Items", @@ -128504,7 +128504,7 @@ }, "response": [ { - "id": "fe0752b8-ae96-444e-80ee-487154279bcc", + "id": "1c52ede2-9d6e-459c-b7a1-1ea48926a6d9", "name": "List of completed work items.", "originalRequest": { "url": { @@ -128585,7 +128585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e76b90a1-1313-408a-8b36-54a6afa46158", + "id": "224eda0d-3917-4e30-b3c6-504bfa3bb9f7", "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": "3e5e287a-4e2a-4b9f-8d40-d314df4d8d43", + "id": "0a135165-8936-4749-bdde-e78cec3fe197", "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": "1d35b941-8407-47c9-ad19-b2abe50f61aa", + "id": "90b08cd6-597b-406f-b5a2-c5602f9e6fbd", "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": "b04672d8-4320-4a20-8fba-9cb8bd4973b0", + "id": "a56d1728-2f1f-4e99-9c53-ccf09700af4e", "name": "Too Many Requests - Returned in response to too many requests in 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": "8e38987e-0c7c-487c-b29e-a33112e25e45", + "id": "caf4a072-f6f6-46d3-ab74-bdd7e8b862a3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128996,7 +128996,7 @@ } }, { - "id": "ed37742f-cdc6-4ad2-ac43-c79df7a80685", + "id": "0262c1c3-74ed-43e1-b020-227a170a0370", "name": "Count Work Items", "request": { "name": "Count Work Items", @@ -129036,7 +129036,7 @@ }, "response": [ { - "id": "a598f2fd-3cff-4ffc-8a36-1e1187da26f8", + "id": "62adcf87-1c94-489d-a64f-731ad7f53ab7", "name": "List of work items", "originalRequest": { "url": { @@ -129090,7 +129090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93f13a4e-e0f9-4dfe-9887-08a03b207930", + "id": "040c6ce0-439d-4640-90ce-98565a903985", "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": "92b0f8fe-9020-4eca-88b2-d0b05b8a5f94", + "id": "92d29373-1f02-4734-9753-1f15d8581c78", "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": "a4a8d7bc-9b59-49ac-b4bd-afee108198a3", + "id": "b7156a0d-1623-4299-b7fb-ced505fd2f38", "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": "e4bb6163-a770-4c18-9b3c-ec3e1feb50e6", + "id": "aac72326-88a3-417c-a88c-e415cbbf66a4", "name": "Too Many Requests - Returned in response to too many requests in 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": "47141d37-cae4-46d7-b3d1-289c8b2ad121", + "id": "c5b21d56-b762-46a4-858d-6cac95dc15fa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129366,7 +129366,7 @@ } }, { - "id": "f6934a93-c32d-4291-b5d1-027828e5abbb", + "id": "e03aabdc-23db-43d7-8504-959d94e26369", "name": "Count Completed Work Items", "request": { "name": "Count Completed Work Items", @@ -129407,7 +129407,7 @@ }, "response": [ { - "id": "304a2c3a-e9fd-423c-a38b-fd40313d21c5", + "id": "bd4a6671-2471-4142-9ffb-48344f34a87f", "name": "List of work items", "originalRequest": { "url": { @@ -129462,7 +129462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "873bfd8f-a64a-4617-a2a4-fa4572cd3324", + "id": "2f814067-fc02-45a1-9ddc-518adf28bb8a", "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": "de119c1c-664e-4bb5-94dc-4d1f13f1fb4e", + "id": "c0729e33-f927-4752-92b5-274420a9b09f", "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": "cf771940-13c3-4ddc-b95a-c6eef68fdf65", + "id": "08ee7c49-e71c-4dc8-89b2-db907cffbe9f", "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": "463fe857-5497-4a47-9253-d5b274abdaa7", + "id": "d251e479-8d73-4654-96e0-99e143ac2c15", "name": "Too Many Requests - Returned in response to too many requests in 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": "af94a8d5-7e25-4c53-8766-df6db10ff6d3", + "id": "93b5ed72-5959-4580-9ee5-a4fe4c18b876", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129743,7 +129743,7 @@ } }, { - "id": "44e43c2c-445f-47a9-93be-69a2c4f1d04a", + "id": "76402066-a032-4011-b231-f1b050acb02a", "name": "Work Items Summary", "request": { "name": "Work Items Summary", @@ -129783,7 +129783,7 @@ }, "response": [ { - "id": "d453c835-5c56-488b-b2d3-c46bf7ed560a", + "id": "1821c9e7-5ab5-40ce-af66-fd257c53f6d5", "name": "List of work items", "originalRequest": { "url": { @@ -129837,7 +129837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc96c759-1f41-46bc-b9b8-296d2454d77a", + "id": "be76c3f0-05d5-49c4-bcc4-c3967e8fe395", "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": "28c57c7e-548d-409e-9466-6e6ea848ddb3", + "id": "e24ce73b-b082-4370-9265-d31f88d3a22c", "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": "a2622e14-3241-4f97-9665-0f7681310f6f", + "id": "a905c67f-629f-422b-891e-b77da9d75435", "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": "79ec3b84-a2e7-4b12-a17d-3d279408aed2", + "id": "50b3159d-8f36-422b-a22e-8d44f44fb5dc", "name": "Too Many Requests - Returned in response to too many requests in 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": "1270d147-5319-43d4-bfe7-51272c1d4ab3", + "id": "fafe5d30-581a-41b0-b240-d0c594b5d9c8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130113,7 +130113,7 @@ } }, { - "id": "3365a763-6644-45c8-969b-c323d69f24b3", + "id": "efd97a9d-25ef-4cea-bb9e-5320aeb3bd6a", "name": "Get a Work Item", "request": { "name": "Get a Work Item", @@ -130154,7 +130154,7 @@ }, "response": [ { - "id": "d55f46ca-dfd6-46e3-ad98-8131abf150b4", + "id": "b6ec80f2-86a1-4924-ae85-32786792947c", "name": "The work item with the given ID.", "originalRequest": { "url": { @@ -130198,7 +130198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d8a5485-f9da-4090-820d-9d792c3fb90e", + "id": "34d593fd-b9b6-4186-97d8-956227275d5e", "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": "85464393-28f8-4ce0-9f58-cd2e54f2eb9a", + "id": "e3b63cd8-3d09-4526-9068-288bfcbaae1a", "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": "fe712688-d442-4264-9d80-fe03a8b0dd1e", + "id": "433481ff-bbc0-4265-a260-1f94b3cc4e60", "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": "5c9db0aa-9b6d-4834-9b7f-a91a6e48a3ac", + "id": "55f6f556-5066-46f8-aa62-65be6e3b6c53", "name": "Too Many Requests - Returned in response to too many requests in 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": "d06ef342-cd19-4c59-9b37-688a6376bb99", + "id": "9b30f7f0-c16d-4b3d-8bb4-ace053727c69", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130424,7 +130424,7 @@ } }, { - "id": "ba16aa98-d688-464f-8a68-fe9863df9717", + "id": "60b2f50a-a63c-4ba3-a4d1-c76554bae6bb", "name": "Complete a Work Item", "request": { "name": "Complete a Work Item", @@ -130465,7 +130465,7 @@ }, "response": [ { - "id": "fda78d16-84b3-4622-8d9a-5c88c8e1ac70", + "id": "ef06c447-ddf3-40f3-a939-3d40f8fe2411", "name": "A WorkItems object", "originalRequest": { "url": { @@ -130509,7 +130509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "998c92b0-d1ad-44f9-91f3-16b99106818d", + "id": "bc5cf400-952e-45a3-9e9a-75130659f8a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130553,7 +130553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80a19591-9d00-4a5d-afb0-024c03cf966b", + "id": "ea511035-6def-430c-8cb6-40aa1a0cca1c", "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": "343ae6c4-e455-42df-8dc0-4f22af1d20f2", + "id": "27f32f8a-dfed-47fc-8c88-c4e3bbb6bc3a", "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": "3b59e5b4-74d2-419c-adf0-0f8fa07f7999", + "id": "c4614a2b-d410-43ec-8ed9-5b997da71f27", "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": "5ebc94f9-3a23-410e-8bff-e5222cde4f6b", + "id": "f6ebca25-59bc-44c4-91bf-07087a32bd74", "name": "Too Many Requests - Returned in response to too many requests in 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": "6e4277fe-0b43-48f4-997b-f0083686c2cc", + "id": "f7d38f04-3d90-43fa-b883-21b493a5760b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130779,7 +130779,7 @@ } }, { - "id": "0f4269ee-31ef-44ad-8d28-9aa723894c9f", + "id": "00802e10-3a74-402e-8a9b-0743a3aa5607", "name": "Approve an Approval Item", "request": { "name": "Approve an Approval Item", @@ -130832,7 +130832,7 @@ }, "response": [ { - "id": "73801d23-5eb1-4f2e-91d8-5d5b4e2f7991", + "id": "ed9979ab-ca58-4824-bfd1-fa79ee1a3489", "name": "A work items details object.", "originalRequest": { "url": { @@ -130878,7 +130878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47dcf5bf-1d84-4d7b-a511-d6eb4c9b9f5e", + "id": "cbe9cb6c-fe87-4897-9cfb-953859b7a264", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130924,7 +130924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "717b2726-213c-44c2-8c91-f23465e59adb", + "id": "19c8fec9-ca13-43d7-8f67-783834610a0b", "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": "8b697d6a-97bc-4698-b3d8-87f3872b25f5", + "id": "ec661cda-3cfe-4789-86be-5baca0dd5cd3", "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": "d2c88071-9d1b-4f99-a13a-f575759709fd", + "id": "9db40374-3bdf-4362-b75f-857b12d2f74c", "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": "e511cd7f-9177-43a1-9dee-eee10b8ef377", + "id": "cf8cd031-5e04-4033-81de-63e13be03858", "name": "Too Many Requests - Returned in response to too many requests in 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": "b1fb2088-a6f2-408e-a855-7382bae95c8f", + "id": "7d845e8e-9560-4b48-b472-aa46a071ffac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131160,7 +131160,7 @@ } }, { - "id": "1ce6954b-3150-4f5e-884a-6e21686b34d8", + "id": "b1cb3aa7-af5d-4ab0-b25b-1a962b56df27", "name": "Reject an Approval Item", "request": { "name": "Reject an Approval Item", @@ -131213,7 +131213,7 @@ }, "response": [ { - "id": "040399d0-82ca-4ccf-8355-4d618780f0bd", + "id": "23df4aac-637a-49a5-81d1-15a9ee8948ff", "name": "A work items details object.", "originalRequest": { "url": { @@ -131259,7 +131259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "304dbfdb-5b7f-4e12-acac-107f9eccfbc7", + "id": "ce6d37c0-ef32-4b0e-ac14-033d519dd60f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131305,7 +131305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5927bb91-9898-4f17-b690-18d97fd9435d", + "id": "005bb378-23bf-46e5-8c9e-ed87fdcb6de6", "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": "dcfff2b4-607c-4d49-a59d-e23a3f8520e4", + "id": "f440e968-d7e7-4f9a-9084-8ead92595639", "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": "c42ecfd4-63fa-45b0-95c8-c2a65403da76", + "id": "aff0fafb-0256-42a4-9e49-cd273a9184a6", "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": "c40670b9-80fc-46de-916a-9a92bd399386", + "id": "8c6b558a-7866-40bb-a697-8c0e569d3451", "name": "Too Many Requests - Returned in response to too many requests in 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": "625329c6-e3bd-4614-a0d9-bb8e9ccb21c0", + "id": "d11fe673-cdfb-4a37-a090-bba2154479cf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131541,7 +131541,7 @@ } }, { - "id": "eaea3389-a96c-4645-8b10-ed6b5e6b20ce", + "id": "b2d2f27e-ea53-434c-b9e1-98cf98a23d6c", "name": "Bulk approve Approval Items", "request": { "name": "Bulk approve Approval Items", @@ -131583,7 +131583,7 @@ }, "response": [ { - "id": "b5b01f59-a071-4f02-a03c-6236a2352890", + "id": "c6c82975-998a-4d3f-a91e-7b5f5688106c", "name": "A work items details object.", "originalRequest": { "url": { @@ -131628,7 +131628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98918371-947f-427a-bfd1-076986b6a169", + "id": "9d2e5ce5-4d3d-4fdb-a433-f1a081795f09", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131673,7 +131673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc69d731-ddf0-4898-9088-45b1108f4bec", + "id": "43bd0864-af54-4238-9249-8758ccfad1e2", "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": "897a6683-6990-4b73-a492-f3f721b34f20", + "id": "a3fc0be2-87d8-46f5-9d09-7f9331180e77", "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": "d7e06b40-d54e-4db3-b1a6-06f8060c7d71", + "id": "e2d35330-0f42-450c-aeed-e4f6ad14a3a8", "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": "719968a9-1a6d-4f50-a5da-94c022193e20", + "id": "3f79e140-886c-4e4d-8e5f-31de5223c8dd", "name": "Too Many Requests - Returned in response to too many requests in 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": "dc28d4b8-04bd-4d1e-b75a-992f98e7d124", + "id": "73c03083-f87a-4a43-a01e-8bc2197752a7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131904,7 +131904,7 @@ } }, { - "id": "43dcdf02-061e-4669-8bc2-0add4fd975bc", + "id": "0730c9aa-c5e4-4eb0-bc16-99ab7d5d6fa3", "name": "Bulk reject Approval Items", "request": { "name": "Bulk reject Approval Items", @@ -131946,7 +131946,7 @@ }, "response": [ { - "id": "2e1efa57-74fb-409a-a9b6-e46e90ccbbd2", + "id": "dc76491f-288d-4932-b973-a7feb853bc81", "name": "A work items details object.", "originalRequest": { "url": { @@ -131991,7 +131991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d632482f-11a5-4bdb-88ce-f0d8c5b77fe8", + "id": "7a6f4562-b890-4241-bdd4-0186089e0772", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132036,7 +132036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe69dcf9-1c5f-4e01-9c51-31f9c85dcfbd", + "id": "a7c97c4c-c2f3-421d-a2e9-6a6690edca57", "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": "3d1aec81-0405-4316-869d-45ee917da1a9", + "id": "0d0f32cf-b0a4-4835-abf1-169ae03fa6b5", "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": "f567d4a4-e75c-4d2e-bc2b-1c618ededf96", + "id": "1a7dd583-38c0-4e0f-95c7-c698f03d647c", "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": "2f9d52cc-194d-41f4-a0ae-b6fc3ef2c59d", + "id": "4e1188e9-b7c0-421e-9df4-39d7c6a53f9d", "name": "Too Many Requests - Returned in response to too many requests in 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": "9fa40c4e-55a4-48dd-9dad-95a5044ba88e", + "id": "ba0767a1-905c-40c9-96da-7e2f143fbfb8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132267,7 +132267,7 @@ } }, { - "id": "88c5fe6c-28b3-4ab2-8ca2-873ca0b5875d", + "id": "81ccfec5-a5eb-4ef6-8e64-3c43439c33f0", "name": "Submit Account Selections", "request": { "name": "Submit Account Selections", @@ -132322,7 +132322,7 @@ }, "response": [ { - "id": "58bd6ae2-23cf-4b89-9cf4-8621a865c7c2", + "id": "d3f2d721-7c24-46a9-aadf-2ed04c311217", "name": "A work items details object.", "originalRequest": { "url": { @@ -132380,7 +132380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a45686a-49ae-4dbd-b5e0-e4f27ef3aa54", + "id": "ca0c61e7-b060-4ae0-9707-9488a9709288", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132438,7 +132438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c346713d-330f-4426-a814-5443ce79d17a", + "id": "61fce4a8-9cba-4513-9530-2da7f9ec54aa", "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": "364f4a8c-cc9b-48dc-89a1-d8171e044eb5", + "id": "07dc3488-27b4-4e65-872c-9f88de38d8d7", "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": "0802e40a-5279-4bdc-9cdb-96e70d9bf382", + "id": "7ae40232-88af-4528-b6f5-954f0db38321", "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": "73e8d691-4f1d-45e4-ba1c-edd146aa15c5", + "id": "558183ef-7f5e-41b9-bea7-b19941052c2e", "name": "Too Many Requests - Returned in response to too many requests in 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": "3fba25a4-780f-4837-88a4-fd09664f8e88", + "id": "21d30d99-6688-4634-87b6-b5973b74975d", "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": "4695d397-f485-48f9-a006-0006e25f4412", + "id": "20c25399-d92a-4a20-b4ad-07399b344810", "name": "List Workflows", "request": { "name": "List Workflows", @@ -132769,7 +132769,7 @@ }, "response": [ { - "id": "34e40a0b-e08e-4582-bf68-d1448f00baa1", + "id": "e47e74fd-7c4e-425a-8d1d-7d199791cbb7", "name": "List of workflows", "originalRequest": { "url": { @@ -132812,7 +132812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "319426b3-b7a5-4fc4-a1c9-531d3ad24c36", + "id": "b33a1cf9-f2c2-48ff-9f9d-bb06a9c4669b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132855,7 +132855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3fc5647-a393-40b7-ba24-81b275952f9b", + "id": "ccefbead-38ee-419a-bc0f-2eafa8cb511b", "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": "09f45a15-ba0f-4a74-9de0-541ca551dc2e", + "id": "1a01e4ad-3b57-4d39-86d4-f7f4836173da", "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": "ac81e783-29c8-430d-8967-55e2d8b627fa", + "id": "cb302ce1-302e-4c81-a082-8151b7f779f6", "name": "Too Many Requests - Returned in response to too many requests in 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": "6f725db2-c84b-4f67-9ea7-ad3146323408", + "id": "46caa894-2497-4e36-aaf9-150741b2c350", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133033,7 +133033,7 @@ } }, { - "id": "c7100ebf-5f53-40a0-a24f-1ce246ab3720", + "id": "e56e1038-0396-46e4-92a7-f553b5ee23ea", "name": "Get Workflow By Id", "request": { "name": "Get Workflow By Id", @@ -133074,7 +133074,7 @@ }, "response": [ { - "id": "c97d1326-26a0-4a7e-874b-6b8e978546ba", + "id": "98532062-76e9-4742-8912-aeea34994654", "name": "The workflow object", "originalRequest": { "url": { @@ -133118,7 +133118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2c6d1f4-795d-4ac2-bec2-6fd244210656", + "id": "c18dac8a-5c17-4038-87ec-4a48ba9fe6ac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133162,7 +133162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66cefdc9-d87f-4379-a6f0-9c0e17cb7224", + "id": "ef5c8584-a92a-4f24-9af5-fc5dc4828ffa", "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": "6002bdc1-d92f-4736-8443-849b79a17ff0", + "id": "471fc041-0911-4990-923c-46c1b7517492", "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": "c42176e0-6a92-43e3-93cd-d27764c2a499", + "id": "57ceb0e9-7c8e-4472-9aad-0817cab0218c", "name": "Too Many Requests - Returned in response to too many requests in 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": "f791c195-766b-4db8-a7ce-e3350a4af426", + "id": "38d3022f-77ed-4433-aeb8-fef3501ff5d2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133344,7 +133344,7 @@ } }, { - "id": "834f2301-73f9-4a88-9650-97d17ce864dc", + "id": "886bdda5-d9b4-4e6a-a533-02f33589a34b", "name": "Update Workflow", "request": { "name": "Update Workflow", @@ -133398,7 +133398,7 @@ }, "response": [ { - "id": "2b8459ed-6039-41e5-841d-2fdb97eb6d48", + "id": "86481c43-a2b8-4db0-8ebb-2f106f75f6dc", "name": "The Workflow object", "originalRequest": { "url": { @@ -133455,7 +133455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7777056-2058-4cfc-b0cc-1d6b6d26c316", + "id": "8b6c13ff-7082-4116-9b76-625ff6678bac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133512,7 +133512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "662d6550-9260-40bd-8119-39a0b9794a6e", + "id": "78561af8-9f14-410f-a1c4-b11fa708086a", "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": "419e45d0-f474-4716-b7f2-2db9f53104d5", + "id": "5cfa8a08-f896-4738-a0e5-a028af57f374", "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": "17b0bd2e-cf53-45ac-b4aa-4f73b0165b85", + "id": "73f345b9-718a-44a9-86a4-be384d7b0104", "name": "Too Many Requests - Returned in response to too many requests in 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": "ed2a645f-b1db-477e-a650-819c688b6a00", + "id": "5ed755b1-44fa-4b7d-b2a4-9f2b91388982", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133746,7 +133746,7 @@ } }, { - "id": "460ff4fc-3e92-452b-a72c-f49014fcc143", + "id": "1904e03c-7f53-4eea-8d17-56cb221f51f3", "name": "Patch Workflow", "request": { "name": "Patch Workflow", @@ -133800,7 +133800,7 @@ }, "response": [ { - "id": "e8346cd0-9a58-426e-a0d4-2823f216c688", + "id": "584cfdf3-ce33-4c68-a020-90f751e4ede2", "name": "The Workflow object", "originalRequest": { "url": { @@ -133857,7 +133857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af0312c1-72d3-4f9a-80bb-cdccf73fc27a", + "id": "4bb83a3a-f020-4a03-9b72-4cb8447d11cb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133914,7 +133914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "819d9bbd-98f2-48cb-9a28-2329428a6a83", + "id": "6740ddcf-0613-477e-a6df-307e8f95e3bf", "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": "c3950730-e21a-4287-a1cc-7bf0aa4a249d", + "id": "17b7e8f9-396d-42fd-bb3c-08369e922f36", "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": "5889a186-4461-4bbe-a72b-55e4a11262a3", + "id": "27fedfd6-5acf-45fc-a210-f2873c3413f8", "name": "Too Many Requests - Returned in response to too many requests in 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": "4983f0f8-04c6-4576-8dc4-72b3ccb589be", + "id": "f4a681a9-67bc-437b-af68-2c064fdb09ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134148,7 +134148,7 @@ } }, { - "id": "3ceb455c-f790-4c5a-b2d6-7581e4b4530c", + "id": "0e28706c-bc7b-41d1-978e-990dfa44b027", "name": "Delete Workflow By Id", "request": { "name": "Delete Workflow By Id", @@ -134189,7 +134189,7 @@ }, "response": [ { - "id": "fb4a3333-56f7-4bdd-baef-70bba6fd6197", + "id": "e1f619db-9367-4684-83da-6114b4404cad", "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": "8acd97e1-f1be-4b40-b409-ce06d2a142f1", + "id": "637c4e4a-99f7-431f-a72c-3131a97fb84a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134267,7 +134267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe7f69f3-6618-498d-a164-1dfa91ea7343", + "id": "9bc7d78a-f74d-438e-afe6-37d1eee40ab1", "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": "83b04eb5-f456-40a4-96fb-24f682136982", + "id": "d23950d0-03cc-4448-bb72-4c12cca74e18", "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": "04b0b5a4-7432-4842-8d01-67ab95ec5eaa", + "id": "441c0fd6-167c-49eb-b496-45fe299cd00a", "name": "Too Many Requests - Returned in response to too many requests in 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": "da901d20-7a52-4ac1-b59b-207cb88c2c2a", + "id": "155dc3df-fa97-4ca0-96d2-de725efff34e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134449,7 +134449,7 @@ } }, { - "id": "264af5b7-55b6-4362-8856-4e15bbed4e6d", + "id": "2268219f-ba58-4e5b-ad71-f9d29a23dd4c", "name": "Create Workflow", "request": { "name": "Create Workflow", @@ -134497,7 +134497,7 @@ }, "response": [ { - "id": "278f7d2f-6da8-4e29-8884-bccc3e40f3da", + "id": "025acc39-3139-4437-baf3-9d84977aa569", "name": "Event Trigger", "originalRequest": { "url": { @@ -134554,7 +134554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70a457a6-cc4c-4128-826d-5b11b5d194e5", + "id": "a1f6a273-7946-443e-b1d3-9a1ea3f8c0fb", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -134611,7 +134611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e513eac5-d07b-402c-afd3-3b23128a1630", + "id": "a7554e3e-abaa-460a-8a5c-2dfdb342c05a", "name": "External Trigger", "originalRequest": { "url": { @@ -134668,7 +134668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63fdcf2c-3b58-4863-83a2-0656c8e16b52", + "id": "9378600f-d1d2-4705-89ac-3b69feee3200", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -134725,7 +134725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "542d0395-6e75-4f1b-a5f4-9d9dc4013d74", + "id": "b9b15ce2-4a1b-4dfc-87f6-c9d704e73e99", "name": "External Trigger", "originalRequest": { "url": { @@ -134782,7 +134782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd2ad3ce-a4c2-484b-8acc-f5dd62e08d9b", + "id": "1dbb4d6f-c22c-42b5-860e-ef85deef2bc1", "name": "External Trigger", "originalRequest": { "url": { @@ -134839,7 +134839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d79c82f-c90a-41e1-9c5f-16c1f6224348", + "id": "c8274e37-f3ac-4808-bf44-9b106bf2338a", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -134896,7 +134896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd54debc-f1e3-4364-8cef-c6053500d865", + "id": "7e41bd49-ee89-415e-abf4-ee6a3e9039c4", "name": "Event Trigger", "originalRequest": { "url": { @@ -134953,7 +134953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bcbdcaa-9b23-4283-a154-7c3e628ce0fb", + "id": "75e07f05-3ca2-4aa7-8563-8442123efe20", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -135016,7 +135016,7 @@ } }, { - "id": "d9c86dbc-ac04-41dc-b989-04c4ea2c36e1", + "id": "687a48d5-d93d-4c0a-b0a4-cbf5d1aa636f", "name": "Test Workflow By Id", "request": { "name": "Test Workflow By Id", @@ -135071,7 +135071,7 @@ }, "response": [ { - "id": "78c8d412-c46a-42cf-9d2c-edff7e319b6a", + "id": "8d4c67c8-ea69-46ba-8926-50baf7658164", "name": "The Workflow object", "originalRequest": { "url": { @@ -135129,7 +135129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a432fd56-601b-4920-901c-ca3141166cbe", + "id": "4480c552-d6b1-448a-b303-309e8d1c1cd0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135187,7 +135187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efb401d0-51d3-4762-bdd0-3c4c677e72c1", + "id": "6f00136f-92dd-4886-b617-7611a20d9b64", "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": "93390d31-7039-44e8-b0e6-72a47e5c080c", + "id": "315fc3d5-6cb8-4674-8091-4ae1fb8f3151", "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": "00ef3695-4e0d-41f8-96cd-9d72f97961eb", + "id": "6b01a372-9d60-4dcc-9ab8-d48d33c11e92", "name": "Too Many Requests - Returned in response to too many requests in 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": "11fdc007-8afc-4b4f-bf0b-9372f51abb7d", + "id": "12ec8335-b328-41ab-9f75-324db76cf0d0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135425,7 +135425,7 @@ } }, { - "id": "5192dbc3-ab9a-4634-b894-ba5ba722ca5a", + "id": "773d12ca-62ee-42f7-89a2-2c9ff67e7fca", "name": "List Workflow Executions", "request": { "name": "List Workflow Executions", @@ -135504,7 +135504,7 @@ }, "response": [ { - "id": "6abb03c6-b108-4549-9385-fa97840dade3", + "id": "ae221531-6e43-4ddc-afae-ab6aca0064c1", "name": "List of workflow executions for the given workflow", "originalRequest": { "url": { @@ -135586,7 +135586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32cfb644-4435-404a-93b9-b4b7d4da11e9", + "id": "8a0506f9-e6f3-4ef3-bfa5-256e2f9dc12e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135668,7 +135668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf9796b9-7a7a-4641-a02b-32bead4a3f82", + "id": "8e2add9f-c966-4468-8a0e-7b041f976f04", "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": "bf1dd12d-da21-480e-b904-a977989c59d7", + "id": "6e01b62b-5943-4bea-81d9-65896655831f", "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": "e44e8912-ac7b-40a3-b1bd-e4fa28ca1766", + "id": "22b07e9e-b3d3-437e-bfaf-c8ed55843f8d", "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": "08b53ab1-cbcc-4023-917b-eca4b4aee608", + "id": "72c8196e-de15-45cd-9e01-d9fed3b6701a", "name": "Too Many Requests - Returned in response to too many requests in 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": "ee948c5a-237f-4d39-bcf3-2e5e2d776542", + "id": "2dc4bc60-95d7-467a-bbd7-53bd2eda7e71", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136084,7 +136084,7 @@ } }, { - "id": "3e501d98-bfbe-477a-8e86-538d6c023481", + "id": "78c26575-834b-4cd5-ae0f-5af7aa533d25", "name": "Get a Workflow Execution", "request": { "name": "Get a Workflow Execution", @@ -136125,7 +136125,7 @@ }, "response": [ { - "id": "a9dd27a0-5176-43d2-8bdd-15321f11b10e", + "id": "9bb2db46-56f1-47d7-80ff-333b70a815eb", "name": "The workflow execution", "originalRequest": { "url": { @@ -136169,7 +136169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d618b1d-dff8-4268-ada8-e47fb39764b3", + "id": "6b76b89f-52d5-45bb-9090-1ea1bfa0261e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136213,7 +136213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b7af640-ad7e-4bb0-a860-614d5e80f15b", + "id": "96783143-1e1a-4d15-a5d5-0dc8626c5caf", "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": "9619e5a2-324c-479e-a9e7-650b9270e3b6", + "id": "41a08c7f-6b9a-49fd-9230-c94aac4ea6e8", "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": "2f7914bb-2ad3-4b2d-b231-55aa68719dba", + "id": "6aa44f50-6923-4746-b345-d9d732ee1b3f", "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": "6de4319e-006a-4b91-ada8-475c1d80b0c0", + "id": "0298ffe2-4ca2-4353-952a-97fcb8e79bb4", "name": "Too Many Requests - Returned in response to too many requests in 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": "035d19ed-7eac-498b-bbc5-007389e65ab3", + "id": "118ac3d9-e8e1-483a-ab67-10d3889225e0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136439,7 +136439,7 @@ } }, { - "id": "19816f73-8f6a-47f4-b1c3-ad0568acaede", + "id": "7a9a3965-cecd-423a-bc23-cae23892b7b9", "name": "Get Workflow Execution History", "request": { "name": "Get Workflow Execution History", @@ -136481,7 +136481,7 @@ }, "response": [ { - "id": "97185c29-8b5d-410c-a426-464bceb20e20", + "id": "a4b5efe7-3b62-46db-a8d9-2e1ca61fa9cd", "name": "List of workflow execution events for the given workflow execution", "originalRequest": { "url": { @@ -136526,7 +136526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9120661e-af89-49ea-9a91-0fdc9af13e79", + "id": "b2720efd-4fbc-44d1-b128-ae81b1a35405", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136571,7 +136571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9640f74-18cd-498e-8d2b-75a58c4d19cf", + "id": "5270fd85-1934-4b89-b0ea-5c32ec9a9a10", "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": "ccc81ee6-e98f-4b5c-8cba-e5b005dbd919", + "id": "db150be5-3630-4f51-a6c0-5632b620296e", "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": "f607ae4e-fae3-49af-940b-ace853e4418e", + "id": "b7fd4b4a-918c-4564-ac22-7faa29d8db35", "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": "41c02a52-8a35-413d-8e3f-c2da9b669339", + "id": "83bf4066-0035-487b-96b2-d221ae50d7f0", "name": "Too Many Requests - Returned in response to too many requests in 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": "7b5dda55-4243-4cce-9402-b7ac4a78968d", + "id": "12f3091e-3a58-473d-8f7f-92e68f13a860", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136802,7 +136802,7 @@ } }, { - "id": "8cbe0e00-02cd-43cd-8677-e63b86f1ebee", + "id": "08529527-bb80-472c-b0ce-b0668c6c382e", "name": "Cancel Workflow Execution by ID", "request": { "name": "Cancel Workflow Execution by ID", @@ -136844,7 +136844,7 @@ }, "response": [ { - "id": "dcf7da85-f1d1-412b-91f4-aa46299a899e", + "id": "bcdc7082-b729-4553-81dd-2b209c0b04e9", "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": "bcfbfc42-25ba-4a58-8ea7-0274ddaa0e6b", + "id": "f16b58cc-8a26-472b-ac62-eda32a78bf41", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136924,7 +136924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91a0df04-b00b-4fd4-917c-08ebc5db8681", + "id": "9d2ef442-d175-4be1-b941-16cd40736863", "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": "7d85428d-886c-418f-82ea-e7c0849d6f60", + "id": "80e3fdac-d4ac-4f64-bf86-e3e1e2fddb1f", "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": "8ce23701-ec15-4294-a816-3cb18f85c8a3", + "id": "00a2a4a3-e6e9-4f5b-be9b-bddd8336169c", "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": "3bd379da-be09-4e1b-91bd-27c30ae35079", + "id": "d15c74af-a760-41ef-bc45-688064fd8977", "name": "Too Many Requests - Returned in response to too many requests in 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": "04fa7277-263a-4cb4-9421-2b9d64445894", + "id": "cf794d23-4356-43d9-8923-9ab156696459", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137155,7 +137155,7 @@ } }, { - "id": "4319e4ac-d1e4-43f7-a515-0fb71091a398", + "id": "4cc2242d-d2dc-48e8-a94e-9407eddacc58", "name": "List Complete Workflow Library", "request": { "name": "List Complete Workflow Library", @@ -137203,7 +137203,7 @@ }, "response": [ { - "id": "62aa7d36-f409-4d77-97fb-5fc3fb8bf431", + "id": "c2be5eb4-e57f-4aa0-b923-26659448764d", "name": "List of workflow steps", "originalRequest": { "url": { @@ -137265,7 +137265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4490255d-6b3b-4806-b25c-8cffe48a5394", + "id": "9a2400a9-6cd2-40b2-8ce5-639cc5e41e63", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137327,7 +137327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dc28da5-62fe-471e-badf-6622c083cb5a", + "id": "6ad036a0-8da0-4717-a01d-af1b6a92446e", "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": "d631c5a6-dafa-47e4-a7f6-23164ab1a092", + "id": "b9c178cb-0421-41b7-b284-097d5d7341dd", "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": "358fa51e-4a40-4be3-bcc6-7a792b055333", + "id": "8e679c2d-1420-4b62-b12a-698b820c125f", "name": "Too Many Requests - Returned in response to too many requests in 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": "5db66552-225e-469c-8970-9532f3663622", + "id": "9340233a-16b9-4e94-819b-ddfe119acf87", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137581,7 +137581,7 @@ } }, { - "id": "15c9f718-0b05-4181-bf68-85574e216603", + "id": "ab869cee-e672-4b36-9714-776e60e99960", "name": "List Workflow Library Actions", "request": { "name": "List Workflow Library Actions", @@ -137639,7 +137639,7 @@ }, "response": [ { - "id": "928c404a-7335-4232-9872-7e320898ffea", + "id": "16043576-3eef-4806-920d-7d76b4594578", "name": "List of workflow actions", "originalRequest": { "url": { @@ -137711,7 +137711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a37616e-fc13-466a-bbe9-63328702083d", + "id": "59d04d0f-8044-4d07-a908-a0c3b23ed403", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137783,7 +137783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c98effd9-54a3-4e75-8142-2f5f76448f16", + "id": "3dd5f451-11df-4d57-998c-fb5070a8a7ce", "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": "084967c2-2fa2-4c6d-a2b3-b6841bf8cefd", + "id": "6b65a96f-245c-4715-9ed7-32aa84091434", "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": "d19b1601-f856-4b3b-982a-ed47ab7a4e04", + "id": "2a63cff4-55de-4451-b54f-ba5fdd911448", "name": "Too Many Requests - Returned in response to too many requests in 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": "a3619a5d-2254-4e09-ac4d-d6d9fc5b3999", + "id": "55433bb9-4e15-4b67-ac07-f9616d83bce9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138077,7 +138077,7 @@ } }, { - "id": "ef657875-b9f8-4002-a065-6de282ef7942", + "id": "4bc399f8-3c3b-45df-8995-9b4884dfd411", "name": "List Workflow Library Triggers", "request": { "name": "List Workflow Library Triggers", @@ -138135,7 +138135,7 @@ }, "response": [ { - "id": "980a70ff-d443-42d4-943b-20283c9307c9", + "id": "d706015f-868e-4957-ad2e-5c07c1401258", "name": "List of workflow triggers", "originalRequest": { "url": { @@ -138207,7 +138207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adbe32d3-9630-4b94-af78-1f60dadb8525", + "id": "f441e892-9e8a-4103-85cd-b520a7067f85", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138279,7 +138279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed972c7d-daa4-485e-9d1e-322b684e8db9", + "id": "c354a225-4f95-41b7-98e2-0ada1585ab76", "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": "593c054b-5753-4dd5-ba36-0b6c28317d78", + "id": "984dee86-cfdc-4ac9-aa7a-1ad6e2c368a6", "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": "1d12c346-fd15-41ff-8df6-a8623d11d0d7", + "id": "f9014f63-e623-4fc9-bb48-9799ed6ca5cc", "name": "Too Many Requests - Returned in response to too many requests in 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": "143e8429-4eaa-431a-be7f-5b78d0c5f539", + "id": "2572513b-af11-4041-9078-8dd8d4d13233", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138573,7 +138573,7 @@ } }, { - "id": "af665ca4-a58c-4386-9224-136374b4ac46", + "id": "8eacdbac-9275-474f-8329-fc3217e73e8c", "name": "List Workflow Library Operators", "request": { "name": "List Workflow Library Operators", @@ -138603,7 +138603,7 @@ }, "response": [ { - "id": "d28d591a-af20-483f-8221-d712ad3ac4aa", + "id": "7293d72c-09b4-43ef-9422-17b9a21f4b0e", "name": "List of workflow operators", "originalRequest": { "url": { @@ -138647,7 +138647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34b5d3e8-f817-440c-be8b-f2610db320c4", + "id": "1788c3f6-2178-458c-97c2-0f1f656c22a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138691,7 +138691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1d4b67b-284a-47b0-8a1b-bcf72422427e", + "id": "f0fc2502-7e02-44d3-a64f-44c09f4c94d4", "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": "a6739700-4761-443b-9bc5-9ddd1abc194b", + "id": "206e932a-a7a6-49fd-94ce-51e55d65b554", "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": "2b7c3943-2212-4f18-9bc9-28566e0f4221", + "id": "9ffea05d-682a-46b8-adb0-bf0eebe39a71", "name": "Too Many Requests - Returned in response to too many requests in 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": "301f361f-4633-43d9-8c9d-1bd81ad0698c", + "id": "d5acd9d6-992f-42f5-a36e-66528aed2f3f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138873,7 +138873,7 @@ } }, { - "id": "1e549c4b-0279-4872-b90b-7f852875d174", + "id": "ff6f997b-b7fb-41ea-bdcc-b5ed4c95240f", "name": "Generate External Trigger OAuth Client", "request": { "name": "Generate External Trigger OAuth Client", @@ -138916,7 +138916,7 @@ }, "response": [ { - "id": "023fc620-6e32-49d3-96b6-3d85bf436ef8", + "id": "2a0ce183-2d64-428d-a874-1eabfeb12e7a", "name": "The OAuth Client object", "originalRequest": { "url": { @@ -138962,7 +138962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b7bdf95-e7b7-40bd-9c73-798739258001", + "id": "126f54d6-e531-4fde-a29e-7be755500a31", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139008,7 +139008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dc1088d-3e34-486b-9e14-1f653648389f", + "id": "92900e35-2e5f-4639-943f-27133832b069", "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": "77c4e02e-dfb4-4f07-93c2-df648dcba578", + "id": "929deb32-f173-4e12-952c-082bbacf6f16", "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": "e64c7032-e147-4b85-beb0-bc61899d5387", + "id": "e9f6e9e3-ded6-42a6-9362-d330af79a928", "name": "Too Many Requests - Returned in response to too many requests in 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": "290000b7-1c07-47cf-8b62-ac7ab73c17cc", + "id": "191d002a-8ad4-49a4-8366-9df51fb9f797", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139198,7 +139198,7 @@ } }, { - "id": "ff20fa48-d8d8-4944-8d3a-14451d26e258", + "id": "31f1e307-09fa-427b-8278-a9432ffa1683", "name": "Execute Workflow via External Trigger", "request": { "name": "Execute Workflow via External Trigger", @@ -139254,7 +139254,7 @@ }, "response": [ { - "id": "9ce3d85a-b285-43fc-84e8-d9d26672832d", + "id": "bd8f3825-d16c-4e3d-ae88-b4c394dc4a04", "name": "The Workflow object", "originalRequest": { "url": { @@ -139313,7 +139313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "353dddc6-6657-4a49-84f0-f50d79d9aa05", + "id": "0a2d82ec-fcb8-4455-92c6-e3081ff26096", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139372,7 +139372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56670ac7-d05a-484f-af69-485c8f18d244", + "id": "29dc623b-fe2d-4f3e-8931-7ce495f466c3", "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": "3ef05e52-95cc-43e7-ac1a-d4bed20e202c", + "id": "afd5ce78-d600-4a69-8459-00cdcee199e7", "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": "516d9630-6f0c-4009-803a-992ecaf096fd", + "id": "737d66b6-9deb-43d8-b838-0f0c50be3334", "name": "Too Many Requests - Returned in response to too many requests in 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": "9873d566-9dfc-49cd-bcc7-c84aa25680f0", + "id": "03d483ad-4667-4074-a216-ccf30408aa09", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139614,7 +139614,7 @@ } }, { - "id": "76f94151-f633-405f-863d-90c531e189b6", + "id": "e600e9e7-64d3-4b00-87eb-5c621410f28f", "name": "Test Workflow via External Trigger", "request": { "name": "Test Workflow via External Trigger", @@ -139671,7 +139671,7 @@ }, "response": [ { - "id": "b6a0ea15-5d40-4ec5-add3-38e38ea752bb", + "id": "e01cdd87-68eb-4e75-bef7-2b836fb61442", "name": "Responds with the test input", "originalRequest": { "url": { @@ -139731,7 +139731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19a1dccc-08e8-4ecb-8030-039b4fb791b8", + "id": "56b76991-f1ed-4fbe-bdd1-e982709834aa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139791,7 +139791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "474ef502-b270-43f3-b61d-1ba4f50041ab", + "id": "4d0db562-f23c-40d3-bfb6-bb90af965737", "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": "e1f9c687-0949-4c70-9e7a-82867d232628", + "id": "272fc70a-d3da-41ad-a09f-e71cee96a73f", "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": "40d4e101-f8ec-409d-9a25-c041da6949e5", + "id": "ea3d642c-bb9c-45da-aed2-9e7a0867caba", "name": "Too Many Requests - Returned in response to too many requests in 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": "c4877545-3ea7-4b91-b6b4-af1f6cb56d1b", + "id": "b40dff54-6df5-45d3-9b5b-68e8cf253e45", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140117,7 +140117,7 @@ } ], "info": { - "_postman_id": "d16c6c65-3087-4e99-ad54-7e3ca084a05d", + "_postman_id": "2291249c-5897-4e45-a145-9dbc858bd8f4", "name": "IdentityNow V3 API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": {